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


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




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

html
{
    font-size: 10px;
}

body,.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body{
    color: #000;
    background: black
}


h1,.major-mono-display-regular {
  font-family: "Major Mono Display", monospace;
  font-weight: 400;
  font-style: normal;
}

p.desc {
    font-size: 30px;
    line-height: 30px;
}

.listwork p {
    line-height: 15px;
    font-size: 20px;
}


b, strong {
    font-weight: normal;
    font-size: 4rem;
}
h1,
h2,
h3,
h4,
h5,
h6
{
    font-weight: normal;

    letter-spacing: .02em;

    color: #000;
}

h1
{
  font-size: 10vw;
}

h2
{
    font-size:4rem;
}

h3
{
    font-size: 8rem;
}

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: #000;
}

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

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active
{
    border-color: #000 !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;
    }
}



/* PRELOADER — fade-in з чорного */
.preloader {
    position: fixed;
    z-index: 100000;
    inset: 0;
    background: #000; /* чорний */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: preloaderFadeIn 0.8s forwards; /* плавна поява */
}

@keyframes preloaderFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* SPINNER */
.preloader .spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    animation: spinnerPulse .6s infinite ease-in-out;
    opacity: 1;
}

@keyframes spinnerPulse {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* HIDE PRELOADER — плавне затемнення */
.preloader.fade-out {
    animation: preloaderFadeOut 0.8s forwards;
}

@keyframes preloaderFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; visibility: hidden; }
}


/** 3. Image Container
*******************************************************************/
.image-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

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

    width: 100%;
    height: 115%; /* запас висоти, щоб не відкривався фон */

    background: radial-gradient(transparent,rgba(0,0,0,.5)90%),url(/assets/img/bg_cover.jpg) center no-repeat;
    background-size: cover;

    will-change: transform;
    transition: transform 0.3s ease-out;
}

/* SCROLLBAR — Apple style */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.6);
}

/* FireFox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) transparent;
}
/* ховаємо стандартний курсор */


/** 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;
}

section#service
{
    /*max-width: 90%;*/
    /*margin: 0 auto 20vh auto;*/
}

h3.headline.scroll-animated, button.btn.btn-primary,.minwidth {
    max-width: 700px;
    margin: auto;
}

.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;
}

#portfolio-modal {
  position: fixed;
  inset: 0;
 background: rgba(2, 0, 0, .4);
   backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 40px;
  transition: opacity .3s ease;
}

#portfolio-modal.open {
  display: flex;
  opacity: 1;
}

#portfolio-modal.closing {
  opacity: 0;
}

.modal-wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  max-width: 1200px;
   background: rgba(255, 255, 255, .4);
   backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  overflow: hidden;
  animation: zoomIn .3s ease;
}

@keyframes zoomIn {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* LEFT — BACKGROUND SLIDER */

.modal-left {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.modal-slider {
  width: 100%;
  height: 100%;
}
.slide-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    transition: opacity .4s ease;
    background-size: cover;
}

/* arrows */
.slider-arrows {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
}
/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
    margin-top: 20px;
}

.portfolio-item {
    color: #000;
    padding:5px;
    border-radius: 1px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 25px;
    border: 2px solid transparent;
    text-align: center;
}
.portfolio-item:hover {
    background: rgba(0, 0, 0, .1);
    border: 2px solid #000;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateY(-5px);
    text-align: center;
}
.slide-arrow {
  background: rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
    font-family: monospace;
}

.slide-arrow:hover {
  background: rgba(255,255,255,0.3);
}

/* RIGHT — TEXT */

@media (max-width:600px){
    .modal-wrapper {
    grid-template-columns: 100%;
    width: 100%;
    }
    .modal-left {
    height: 220px;
 }
}

.modal-right {
  padding: 40px;
  color: #000;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 38px;
  cursor: pointer;
  opacity: .7;
}

.close-modal:hover {
  opacity: 1;
}

.modal-link {
    display: inline-block;
    font-size: 40px;
    color: #000;
    margin-top: 20px;
    position: absolute;
    right: 30px;
    bottom: 10px;
}

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

#intro {
    position: relative;
    height: 100vh;
    margin-bottom: 0;
    text-align: center;
    max-width: 100vw !important;
}

#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-bottom: -60px;
    font-size: 10em !important;
*/
}

#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:0 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;
}

#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 --> About
*******************************************************************/

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

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

#about .clients img
{
    margin-top: 3rem;
}



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

#service .services-list
{
    margin-bottom: 0;
    padding: 0;

    list-style: none;
}

#service .services-list li
{
    display: block;
}

#service .services-list li button {
    font-size: 3rem;
    font-weight: 300;
    line-height: 2em;
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0;
    text-align: left;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
}
#service .services-list li button:after
{
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 1.7rem;

    position: absolute;
    top: 50%;
    right: 0;

    content: '\f078';
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);

    color: #000;
}

#service .services-list li .well
{
    min-height: 20px;
    margin-bottom: 0;
    padding: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;

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

    border: none;
    border-radius: 0;
    background-color: rgba(0,0,0,0);
    -webkit-box-shadow: none;
            box-shadow: none;
}



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

#work .showcase .item
{
    position: relative;

    overflow: hidden;

    width: 100%;
    height: 22rem;
    margin: 0;
    margin-bottom: 6vh;

    cursor: pointer;

    border-radius: 0;
    background: #111;
}

#work .showcase .item:last-child
{
    margin-bottom: 0;
}

#work .showcase .item .info
{
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;

    width: 0;
    height: 100%;

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

    color: #fff;
    background: #fff;
    background: -webkit-linear-gradient(left, rgba(143,151,219,1) 1%,rgba(0,0,0,0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, rgba(143,151,219,1)),to(rgba(0,0,0,0)));
    background:      -o-linear-gradient(left, rgba(143,151,219,1) 1%,rgba(0,0,0,0) 100%);
    background:         linear-gradient(to right, rgba(143,151,219,1) 1%,rgba(0,0,0,0) 100%);

    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8f97db', endColorstr='#00000000',GradientType=1 );
}

#work .showcase .item:hover .info
{
    width: 100%;
}

#work .showcase .item .info .container-mid
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    padding: 0 6rem;

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

#work .showcase .item .info .container-mid h5
{
    margin: 0;
    margin-bottom: .2em;

    -webkit-transform: translateX(4vh);
        -ms-transform: translateX(4vh);
            transform: translateX(4vh);

    opacity: 0;
    color: #fff;
}

#work .showcase .item:hover .info .container-mid h5
{
    -webkit-transition: .15s ease .15s;
         -o-transition: .15s ease .15s;
            transition: .15s ease .15s;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 1;
}

#work .showcase .item .info .container-mid p
{
    position: relative;

    margin-bottom: 0;
    padding-left: 1.4rem;

    -webkit-transform: translateX(4vh);
        -ms-transform: translateX(4vh);
            transform: translateX(4vh);
    letter-spacing: .025em;

    opacity: 0;
}

#work .showcase .item:hover .info .container-mid p
{
    -webkit-transition: .15s ease .2s;
         -o-transition: .15s ease .2s;
            transition: .15s ease .2s;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 1;
}

#work .showcase .item .info .container-mid p:before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: .6em;
    height: 1px;

    content: '';
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);

    background: #fff;
}

#work .showcase .item .background-image
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.featherlight .featherlight-content
{
    max-height: 95%;
    padding: 0;

    border-bottom: 0;
    background: rgba(140, 148, 216, .7);
}

.featherlight .featherlight-content  .featherlight-close-icon
{
    font-size: 2.8rem;
    line-height: 2em;

    top: 4.5vh;
    right: 4vh;

    width: 2em;

    -webkit-transform: translate(50%,-50%);
        -ms-transform: translate(50%,-50%);
            transform: translate(50%,-50%);

    color: #fff;
    outline: none !important;
    background: none;
}

.featherlight .featherlight-content .work-lightbox
{
    max-width: 900px;
    padding: 9vh 8vh;

    text-align: center;
}

.featherlight .featherlight-content .work-lightbox img
{
    margin: 0 auto 6vh auto;
}

.featherlight .featherlight-content .work-lightbox h3
{
    margin-bottom: .2em;
}

.featherlight .featherlight-content .work-lightbox p.subline
{
    margin-bottom: 1.6em;

    letter-spacing: .025em;
}

.featherlight .featherlight-content .work-lightbox p
{
    max-width: 660px;
    margin: 0 auto;
    margin-bottom: 2em;
}

.featherlight .featherlight-content .work-lightbox p:last-child
{
    margin-bottom: 0;
}



/** 9. 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;
    color:#000;
    margin-bottom: 3.4vh;

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

    color: #000;
    border: none;
    border-bottom: 2px solid #000;
    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: #000;
}

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

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

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

#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 .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 #000;
    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;
}


.site-title {
font-family: "Major Mono Display", monospace;
  position: fixed;
  top: 20px;
  left: -150px; /* прихована зліва */
  font-size: 20px;
  opacity: 0;
  transition: all 0.45s ease;
  z-index: 999;
  pointer-events: none;
}

.apple-nav {
    position: fixed;
    top: 20px;
    right: 0;
    transform: translateX(-50%);
    display: flex;
    z-index: 998;
}
.apple-nav > ul>li{list-style:none;}

/* NAV WHEN MOVED TO BOTTOM */
.apple-nav.bottom {
  top: auto;
  bottom: 20px;
  transform: translateX(-50%) translateY(0);
}

/* UL and LINKS */
.apple-nav ul {
  position: relative;
  display: flex;
  gap: 35px;
}

.apple-nav a {
  font-family: "Bebas Neue", sans-serif;
  color: #000;
  text-decoration: none;
  padding: 5px 0;
        font-size: 20px;
}

/* UNDERLINE */
.apple-nav .underline {
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: #000;
  transition: all .35s cubic-bezier(0.22, 1, 0.36, 1);
}
/* ==== MOBILE VERSION ==== */
@media (max-width: 768px) {

  /* ЛОГО ПО ЦЕНТРУ */
  .site-title {
      left: 50% !important;
      transform: translateX(-50%) !important;
      top: 20px !important;
      opacity: 1 !important;
  }

  /* МЕНЮ ВНИЗУ */
  .apple-nav {
      top: auto !important;
      bottom: 20px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      right: auto !important;
      background: rgba(0, 0, 0, 0.35); /* легке затемнення */
      backdrop-filter: blur(12px);      /* розмиття фону */
      -webkit-backdrop-filter: blur(12px); /* для iOS Safari */
      padding: 12px 22px;
      border-radius: 20px;
  }

  /* Рівне розташування елементів */
  .apple-nav ul {
      gap: 25px !important;
      padding-left: 0;
  }
}


/** 10. 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: 3.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: #000;
    border: 2px solid #000;
    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: #000;
    border-bottom: 1px solid #eee;
}