/******************************************************************


	------------------------
	-- TABLE OF CONTENTS --
	------------------------
	
	--  01. Basic
	--  02. Preloader
    --  03. Image Container
    --  04. Content Area
    --  05. Content Area --> Intro
    --  06. Content Area --> Work
    --  07. Content Area --> About
    --  08. Content Area --> Contact
    --  09. Content Area --> Footer


 ******************************************************************/




/** 1. Basic
*******************************************************************/

html
{
    font-size: 10px;
}

body
{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;

    color: #fff;
    background: #fff;

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-weight: normal;

    letter-spacing: .02em;

    color: #fff;
}

h1
{
    font-size: 7.2rem;
}

h2
{
    font-size: 3.9rem;
}

h3
{
    font-size: 3.4rem;
}

h4
{
    font-size: 2.9rem;
}

h5
{
    font-size: 2.3rem;
}

h6
{
    font-size: 1.9rem;
}

p
{
    font-size: 1.8rem;
    line-height: 1.7em;
}

a,
a:hover,
a:focus
{
    cursor: pointer;
    -webkit-transition: all 300ms ease;
         -o-transition: all 300ms ease;
            transition: all 300ms ease;
    text-decoration: none;

    color: #fff;
}

button
{
    border: 2px solid #fff;
    background: none;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active
{
    border-color: #fff !important;
    outline: none !important;
    background: none !important;
    -webkit-box-shadow: none;
            box-shadow: none;
}

@media (max-width:600px)
{
    html
    {
        font-size: 8px;
    }
}

@media (max-width:500px)
{
    html
    {
        font-size: 7px;
    }
}



/** 2. Preloader
*******************************************************************/

.preloader
{
    position: fixed;
    z-index: 100000;
    top: 0;
    right: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;

    background: #fff;
}

.preloader.hide-preloader
{
    width: 0;

    -webkit-transition: .7s ease .3s;
         -o-transition: .7s ease .3s;
            transition: .7s ease .3s;
}

.preloader .spinner
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;

    -webkit-animation: spinner-pulse .6s infinite ease-in-out;
            animation: spinner-pulse .6s infinite ease-in-out;
    text-align: center;

    opacity: 1;
    border-radius: 100%;
    background-color: #111;
}

.preloader.hide-preloader .spinner
{
    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;

    opacity: 0;
}

@-webkit-keyframes spinner-pulse
{
    0%
    {
        -webkit-transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1.0);

        opacity: 0;
    }
}

@keyframes spinner-pulse
{
    0%
    {
        -webkit-transform: scale(0);
                transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1.0);
                transform: scale(1.0);

        opacity: 0;
    }
}



/** 3. Image Container
*******************************************************************/

.image-container
{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.image-container .background-img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: opacity 1s ease;
         -o-transition: opacity 1s ease;
            transition: opacity 1s ease;

    background: url(../img/background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-filter: brightness(.52);
            filter: brightness(.52);
}



/** 4. Content Area
*******************************************************************/

.content-area
{
    position: relative;
    left: 0;

    width: 100%;
}

.content-area .content-area-inner
{
    position: relative;

    width: 100%;
    padding: 0 20px;
    overflow-x: hidden;
}

.content-area .content-area-inner section
{
    max-width: 700px;
    margin: 0 auto 20vh auto;
}

.content-area .content-area-inner section:last-child
{
    margin-bottom: 10vh;
}

.content-area .content-area-inner section h3.headline
{
    margin-bottom: 1.4em;
}



/** 5. Content Area --> Intro
*******************************************************************/

#intro
{
    position: relative;

    height: 100vh;
    margin-bottom: 0;

    text-align: center;
}

#intro .intro-logo
{
    position: absolute;
    z-index: 5;
    top: 3.5vh;
    left: 0;
    width: 100%;
    text-align: center;
}

#intro .intro-logo img
{
    display: inline-block;
    width: clamp(190px, 25vw, 320px);
    height: auto;
    -webkit-filter: brightness(1.25) saturate(1.08) drop-shadow(0 6px 18px rgba(0,0,0,.28));
            filter: brightness(1.25) saturate(1.08) drop-shadow(0 6px 18px rgba(0,0,0,.28));
    -webkit-transition: -webkit-transform .25s ease, -webkit-filter .25s ease;
    transition: -webkit-transform .25s ease, -webkit-filter .25s ease;
    -o-transition: transform .25s ease, filter .25s ease;
    transition: transform .25s ease, filter .25s ease;
    transition: transform .25s ease, filter .25s ease, -webkit-transform .25s ease, -webkit-filter .25s ease;
}

#intro .intro-logo:hover img
{
    -webkit-transform: translateY(-4px) scale(1.03);
        -ms-transform: translateY(-4px) scale(1.03);
            transform: translateY(-4px) scale(1.03);
    -webkit-filter: brightness(1.32) saturate(1.14) drop-shadow(0 12px 24px rgba(0,0,0,.38));
            filter: brightness(1.32) saturate(1.14) drop-shadow(0 12px 24px rgba(0,0,0,.38));
}

#intro .intro-lang-switch
{
    position: absolute;
    z-index: 6;
    top: 2.2rem;
    right: 2.2rem;
    font-size: 1.35rem;
    letter-spacing: .08em;
    padding: .55rem 1rem;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    background: rgba(0,0,0,.32);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    box-shadow: 0 6px 20px rgba(0,0,0,.28);
}

#intro .intro-lang-switch a
{
    color: rgba(255,255,255,.74);
    opacity: 1;
}

#intro .intro-lang-switch a.active
{
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.35);
}

#intro .intro-lang-switch span
{
    margin: 0 .45rem;
    color: rgba(255,255,255,.5);
    opacity: 1;
}

#intro .container-mid
{
    position: absolute;
    top: 50%;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

#intro .container-mid h1
{
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: .6em;
    text-align: center;
}

#intro .container-mid a
{
    font-size: 2.5rem;
    line-height: 2.92em;

    position: relative;

    display: inline-block;
    overflow: hidden;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    letter-spacing: .04em;

    border-radius: 100px;
}

#intro .container-mid a .circle
{
    font-size: 1em;
    line-height: 5.7rem;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 5.7rem;
    height: 5.7rem;
    margin-left: 1em;

    vertical-align: middle;

    border: 3px solid #fff;
    border-radius: 100%;
}

#intro .container-mid a .circle i
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

#intro .container-mid a .circle i:first-child
{
    top: -50%;
}

#intro .container-mid a:hover .circle i:first-child
{
    top: 50%;

    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
}

#intro .container-mid a .circle i:last-child
{
    top: 50%;
}

#intro .container-mid a:hover .circle i:last-child
{
    top: 150%;

    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
}

@media (max-width: 991px)
{
    #intro .intro-logo
    {
        top: 2.8vh;
    }

    #intro .intro-logo img
    {
        width: clamp(160px, 30vw, 250px);
    }

    #intro .intro-lang-switch
    {
        top: 1.8rem;
        right: 1.6rem;
    }

    #intro .container-mid h1
    {
        max-width: 12em;
        font-size: 5.8rem;
        line-height: 1.14;
    }
}

@media (max-width: 640px)
{
    #intro .intro-logo
    {
        top: 2vh;
    }

    #intro .intro-logo img
    {
        width: clamp(130px, 42vw, 190px);
    }

    #intro .intro-lang-switch
    {
        top: 1.4rem;
        right: 1.2rem;
        font-size: 1.2rem;
        padding: .45rem .8rem;
    }

    #intro .container-mid
    {
        padding: 0 1.2rem;
    }

    #intro .container-mid h1
    {
        max-width: 10em;
        font-size: 4.6rem;
        line-height: 1.16;
        margin-bottom: .8em;
    }

    #intro .container-mid a
    {
        font-size: 2.1rem;
        line-height: 2.6em;
    }

    #intro .container-mid a .circle
    {
        width: 4.8rem;
        height: 4.8rem;
        line-height: 4.8rem;
        border-width: 2px;
    }
}

#intro .animation-container
{
    -webkit-transition: .5s ease;
         -o-transition: .5s ease;
            transition: .5s ease;
}

#intro .animation-container.animation-fade
{
    opacity: 0;
}

#intro .animation-container.animation-fade.run-animation
{
    opacity: 1;
}

#intro .animation-container.animation-fade-up
{
    -webkit-transform: translateY(10vh);
        -ms-transform: translateY(10vh);
            transform: translateY(10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-up.run-animation
{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);

    opacity: 1;
}

#intro .animation-container.animation-fade-down
{
    -webkit-transform: translateY(-10vh);
        -ms-transform: translateY(-10vh);
            transform: translateY(-10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-down.run-animation
{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);

    opacity: 1;
}

#intro .animation-container.animation-fade-left
{
    -webkit-transform: translateX(10vh);
        -ms-transform: translateX(10vh);
            transform: translateX(10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-left.run-animation
{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 1;
}

#intro .animation-container.animation-fade-right
{
    -webkit-transform: translateX(-10vh);
        -ms-transform: translateX(-10vh);
            transform: translateX(-10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-right.run-animation
{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 1;
}




/** 6. Content Area --> Work
*******************************************************************/

#work
{
    width: calc(100vw - 40px);
    max-width: 1500px;
}

#work .showcase
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.8rem;
}

#work .showcase .item
{
    position: relative;
    overflow: visible;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 5.4rem) / 4);
            flex: 0 0 calc((100% - 5.4rem) / 4);
    max-width: calc((100% - 5.4rem) / 4);
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0;
    cursor: default;
    background: transparent;
}

#work .showcase .item .item-card
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

#work .showcase .item .background-image
{
    position: relative;
    z-index: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: min(18.5vw, 260px);
    height: min(18.5vw, 260px);
    margin-bottom: 1.8rem;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 4px solid rgba(255,255,255,.92);
    -webkit-box-shadow: 0 0 0 10px rgba(255,255,255,.16), 0 18px 44px rgba(0,0,0,.45);
            box-shadow: 0 0 0 10px rgba(255,255,255,.16), 0 18px 44px rgba(0,0,0,.45);
    -webkit-transition: -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
    transition: -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
    -o-transition: transform .25s ease, box-shadow .25s ease;
    transition: transform .25s ease, box-shadow .25s ease;
    transition: transform .25s ease, box-shadow .25s ease, -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
}

#work .showcase .item:hover .background-image
{
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 0 0 12px rgba(255,255,255,.2), 0 24px 52px rgba(0,0,0,.52);
            box-shadow: 0 0 0 12px rgba(255,255,255,.2), 0 24px 52px rgba(0,0,0,.52);
}

#work .showcase .item .info
{
    position: relative;
    z-index: 2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    height: auto;
    color: #fff;
    background: none;
}

#work .showcase .item .info .container-mid
{
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
}

#work .showcase .item .info .container-mid h5
{
    margin: 0;
    max-width: 240px;
    min-height: 2.6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2.8rem;
    line-height: 1.3;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    opacity: 1;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

#work .showcase .item .info .container-mid p
{
    max-width: 260px;
    margin: .8rem auto 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: .01em;
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

#work .showcase .item .info .container-mid p:before
{
    display: none;
}

html[lang="en"] #work .showcase
{
    gap: 1rem;
}

html[lang="en"] #work .showcase .item
{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 3rem) / 4);
            flex: 0 0 calc((100% - 3rem) / 4);
    max-width: calc((100% - 3rem) / 4);
}

html[lang="en"] #work .showcase .item .info .container-mid h5
{
    max-width: 290px;
}

html[lang="en"] #work .showcase .item .info .container-mid p
{
    max-width: 330px;
    font-size: 1.7rem;
    line-height: 1.35;
}

@media (max-width: 991px)
{
    #work .showcase .item
    {
        -ms-flex-preferred-size: calc((100% - 1.8rem) / 2);
            flex-basis: calc((100% - 1.8rem) / 2);
        max-width: calc((100% - 1.8rem) / 2);
    }

    #work .showcase .item .background-image
    {
        width: min(32vw, 240px);
        height: min(32vw, 240px);
    }
}

@media (max-width: 640px)
{
    #work .showcase
    {
        gap: 2.4rem;
    }

    #work .showcase .item
    {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
    }

    #work .showcase .item .background-image
    {
        width: min(72vw, 300px);
        height: min(72vw, 300px);
    }

    #work .showcase .item .info .container-mid h5
    {
        max-width: 320px;
    }

    #work .showcase .item .info .container-mid p
    {
        max-width: 320px;
    }
}

/** 7. Content Area --> About
*******************************************************************/

#about p
{
    margin-bottom: 2.2em;
}

#about p:last-child
{
    margin-bottom: 0;
}

#about .clients img
{
    width: 100%;
    height: 100px;
    margin-top: 3rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    -webkit-filter: drop-shadow(0 4px 10px rgba(0,0,0,.24));
            filter: drop-shadow(0 4px 10px rgba(0,0,0,.24));
    -webkit-transition: -webkit-transform .25s ease, -webkit-filter .25s ease;
    transition: -webkit-transform .25s ease, -webkit-filter .25s ease;
    -o-transition: transform .25s ease, filter .25s ease;
    transition: transform .25s ease, filter .25s ease;
    transition: transform .25s ease, filter .25s ease, -webkit-transform .25s ease, -webkit-filter .25s ease;
}

#about .clients .col-md-3:hover img,
#about .clients .col-xs-6:hover img
{
    -webkit-transform: translateY(-4px) scale(1.03);
        -ms-transform: translateY(-4px) scale(1.03);
            transform: translateY(-4px) scale(1.03);
    -webkit-filter: drop-shadow(0 10px 18px rgba(0,0,0,.34));
            filter: drop-shadow(0 10px 18px rgba(0,0,0,.34));
}



/** 8. Content Area --> Contact
*******************************************************************/

#contact #contact-form
{
    position: relative;
}

#contact #contact-form .fhp-input
{
    display: none;

    pointer-events: none;

    opacity: 0;
}

#contact #contact-form input,
#contact #contact-form textarea,
#contact #contact-form button
{
    font-size: 2rem;

    margin-bottom: 3.4vh;

    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;

    color: #fff;
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    outline: none !important;
    background: none;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

#contact #contact-form.success input,
#contact #contact-form.success textarea,
#contact #contact-form.success button
{
    border: none;
}

#contact #contact-form.success input,
#contact #contact-form.success textarea,
#contact #contact-form.success button
{
    line-height: 0;

    height: 0;
    margin: 0;
    padding: 0;

    opacity: 0;
}

#contact #contact-form input::-webkit-input-placeholder,
#contact #contact-form textarea::-webkit-input-placeholder
{
    color: #fff;
}

#contact #contact-form input:-ms-input-placeholder,
#contact #contact-form textarea:-ms-input-placeholder
{
    color: #fff;
}

#contact #contact-form input::-ms-input-placeholder,
#contact #contact-form textarea::-ms-input-placeholder
{
    color: #fff;
}

#contact #contact-form input::placeholder,
#contact #contact-form textarea::placeholder
{
    color: #fff;
}

#contact #contact-form input.error,
#contact #contact-form textarea.error
{
    border-color: red;
}

#contact #contact-form input
{
    line-height: 3.2em;

    height: 3.4em;
    padding: 0;
}

#contact #contact-form textarea
{
    line-height: 1.7em;

    min-width: 100%;
    max-width: 100%;
    height: 8em;
    margin-bottom: 4.4rem;
    padding: 0;
    padding-top: 1em;
}

#contact #contact-form button
{
    line-height: 3.2em;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: auto;
    height: 3.2em;
    margin-bottom: 0;
    padding: 0;

    border: none !important;
    background: none !important;
}

#contact #contact-form button:disabled
{
    cursor: not-allowed;
    opacity: .65;
}

#contact #contact-form button .circle
{
    font-size: 1em;
    line-height: 5rem;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 5rem;
    height: 5rem;
    margin-left: 1em;

    vertical-align: middle;

    border: 2px solid #fff;
    border-radius: 100%;
}

#contact #contact-form button .circle i
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

#contact #contact-form button .circle i:first-child
{
    -webkit-transform: translate(-100%,-50%);
        -ms-transform: translate(-100%,-50%);
            transform: translate(-100%,-50%);
}

#contact #contact-form button:hover .circle i:first-child
{
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
            transform: translate(0,-50%);
}

#contact #contact-form button .circle i:last-child
{
    -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
            transform: translate(0,-50%);
}

#contact #contact-form button:hover .circle i:last-child
{
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: translate(100%,-50%);
        -ms-transform: translate(100%,-50%);
            transform: translate(100%,-50%);
}


#contact #contact-form .success-message
{
    font-size: 2rem;
    line-height: 0;

    position: relative;
    bottom: 0;
    left: 0;

    height: 0;
    margin-top: -1.6em;
    padding: 0 2em;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    pointer-events: none;

    opacity: 0;
    color: #fff;
    border: 2px solid limegreen;
    border-radius: 0;
    background: none;
}

#contact #contact-form.success .success-message
{
    line-height: 6em;

    height: 6em;

    pointer-events: all;

    opacity: 1;
}

#contact #contact-form .success-message i
{
    font-size: 2.4rem;

    margin-right: .7em;
}

#contact #contact-form .error-message
{
    font-size: 1.8rem;
    line-height: 1.6;

    display: none;
    margin-top: 1.6rem;
    padding: 1rem 1.4rem;

    color: #fff;
    border: 2px solid #ff6b6b;
}

#contact #contact-form.submit-error .error-message
{
    display: block;
}



/** 9. Content Area --> Footer
*******************************************************************/

#footer .social-icons
{
    padding: 0;

    list-style: none;
}

#footer .social-icons li
{
    display: inline-block;
}

#footer .social-icons li a
{
    font-size: 1.5rem;
    line-height: 5rem;
    line-height: calc(5rem - 4px);

    position: relative;

    display: block;
    overflow: hidden;

    width: 5rem;
    height: 5rem;
    margin: 0;
    margin-right: 1em;

    text-align: center;

    color: #fff;
    border: 2px solid #fff;
    border-radius: 100%;
    background: none;
}

#footer .social-icons li a i
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

#footer .social-icons li a i:first-child
{
    top: -50%;
}

#footer .social-icons li a:hover i:first-child
{
    top: 50%;

    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
}

#footer .social-icons li a i:last-child
{
    top: 50%;
}

#footer .social-icons li a:hover i:last-child
{
    top: 150%;

    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
}

#footer p
{
    margin-top: 2em;
}

#footer p a
{
    color: #fff;
    border-bottom: 1px solid #eee;
}