
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Noto Sans";
    color: #303030;
  }
  
  a {
    color: #303030;
    text-decoration: none;
  }
  
  a:hover {
    color: #54b36f;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color:black;
    font-family: "Noto Sans";
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #16df7e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #33eb92;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
  }
  
  #header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
  }
  
  #header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  #header .logo a {
    color: #5f687b;
  }
  
  #header .logo img {
    max-height: 50px;
  }
  
  @media (max-width: 991px) {
    #header {
      padding: 12px 0;
    }
  }
  

  .btn-phone.full{
    font-weight: 600;
    display: none;
}

.btn-phone.full i{
    margin-right: 10px;
    font-weight: 900;
}

.btn-phone.mobi{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px 10px 30px;
    border-radius: 44px;
    transition: 0.5s;
    color: #fff;
    background: #ff5959;    
}
  
  

  @media (max-width: 991px) {
    #header {
      padding: 12px 0;
    }
  }
  

  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 500;
    color: #303030;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #16df7e;
  }
  
  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 10px 25px;
    margin-left: 30px;
    border-radius: 4px;
    line-height: 1;
    color: #5f687b;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #cdd1d9;
  }
  
  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    background: #206bfb;
    color: #fff;
    border-color: #206bfb;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #16df7e;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #5f687b;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(73, 80, 94, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #5f687b;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #16df7e;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
    padding: 10px 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #16df7e;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 90vh;
    background: #fff;
    padding-top: 82px;
  }
  
  #hero h1 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 56px;
    /*color: #3e4450;*/
  }
  
  #hero h2 {
    
    margin: 10px 0 30px 0;
    font-size: 16px;
  }
  
  .btn-get-started {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px 10px 25px;
    border-radius: 44px;
    transition: 0.5s;
    color: #fff;
    background: #ff5959;
    
  }
  
  .btn-get-started:hover {
    background: #cc4747;
    color: white;
    
  }
  

  #hero .btn-get-started-invert {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px 10px 25px;
    border-radius: 44px;
    transition: 0.5s;
    border: 2px solid #ff5959;
    background: white;
    
    
  }
  
  #hero .btn-get-started-invert:hover {
    border: 2px solid #cc4747;
    background: #cc4747;
    color:white;
    
  }  
  #hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    transition: 0.5s;
    margin-left: 25px;
    color: #5f687b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  #hero .btn-watch-video i {
    color: #949cac;
    font-size: 32px;
    line-height: 0;
    margin-right: 8px;
  }
  
  #hero .btn-watch-video:hover i {
    color: #16df7e;
  }
  
  #hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  
  @media (max-width: 991px) {
    #hero {
      height: 100vh;
    }
  
    #hero .animated {
      animation: none;
    }
  
    #hero .hero-img {
      text-align: center;
    }
  
    #hero .hero-img img {
      width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    #hero {
      height: auto;
    }
  
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    #hero .hero-img img {
      width: 70%;
    }

    #hero .btn-get-started {
        padding: 10px 15px;
    }    
    #hero .btn-get-started-invert {
        padding: 10px 15px;
    }    
  }
  
  @media (max-width: 575px) {
    #hero .hero-img img {
      width: 80%;
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  
  .about h2 {
    font-size: 36;
    font-weight: 700;
  }
  





  
/*
	СЛАЙДЕР ДЛЯ ТРЕНЕРІВ
*/


.slider {
	padding-top:30px;
	/*padding-bottom:30px;*/
	transition: all 0.5s ease-in-out;
}

.Instructors h2 {
    text-align: center;
    font-size: 36;
    font-weight: 700;
  }

.slider .swiper-slide {
    /*max-width: 360px;*/
    max-height: 528px;
    border: 2px solid #54b36f;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 550px;
}

.slider .swiper-slide img{
    width: 100%;
}

.slider .swiper-slide h4{
    
    text-align: center;
    font-size: 24px;
    width: 100%;
}
 
.slider .swiper-slide p{
    text-align: center;
}

.corr-swiper-cli{
	width: 31% !important;
	min-height:250px !important;
	border-radius:10px;
	background-color: white;
	/*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);*/
	border:1px solid #dddddd;
	margin:1.6%;
}

@media (max-width: 991px) {
	.corr-swiper-cli{
		width: 50% !important;
		margin:2%;
	}
} 

@media (max-width: 768px) {
	.corr-swiper-cli{
		width: 100% !important;
		margin:2%;
	}
} 

 
.corr-swiper-cli h4 {
  padding-top: 5px;
  padding-bottom: 0px;
  margin-bottom: 1px;
	font-size:16px;
	font-weight: 600;
}

.corr-swiper-cli span {
	color:grey;
  padding-top: 2px;
  margin-right: 10px;
	font-size:14px !important;
}

.corr-swiper-cli i {
	color:#F8E015;
}

.corr-swiper-cli p {
	margin-top:10px;
	font-size:16px;
	
}

 

 /*
@media (max-width: 1400px) {
	.slider {
		margin-right:-400px;
	}
} 
@media (max-width: 1200px) {
	.slider {
		margin-right:-600px;
	}
} 
@media (max-width: 1000px) {
	.slider {
		margin-right:-820px;
	}
} 
 

@media (max-width: 768px) {
	.corr-swiper-cli{
		width:250px !important;
		margin-right:20px;
	}
	.slider {
		margin-right: -800px; 
	}
} 

@media (max-width: 500px) {
	.corr-swiper-cli{
		width:250px !important;
		margin-right:40px;
	}
	.slider {
		margin-right: -990px; 
	}
} */

.swiper-navi {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-navi i{
	font-size:24px;
}
.swiper-next, .swiper-next{
	margin:20px;
}

  




/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    transition: all 0.3s ease-in-out;
  }
  
  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #16df7e;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
  }
  
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #5f687b;
  }
  
  .portfolio .portfolio-item .portfolio-info p {
    color: #949cac;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #206bfb;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover,
  .portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #16df7e;
  }
  
  .portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
  }
  
  .portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
  }
  
  .portfolio img{
    border-radius: 20px;
    
  }

  .portfolio h2 {
    font-size: 36;
    font-weight: 700;
    text-align: center;
  }
  
  

  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #16df7e;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #16df7e;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(95, 104, 123, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  


  .video .video-caption {
    
        transform: rotate(-15deg);
    
      
  }

  .video .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 або 9:16 пропорція. (Висота / ширина) * 100% */
   
  }
  
  .video .youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
  }
  
  .video .video-caption  h2 {
    font-size: 36;
    font-weight: 600;
   
  }

  .video .video-caption h2 span {
    color:#54b36f;
  }
  

  .services .icon-box{
    position: relative;
  }

  .services h2 {
    font-size: 36;
    font-weight: 700;
    
  }  

  .services img.title {
    
    width: 40px;
  }  

  .services img {
    width: 120px;
  }

  .services p {
    text-align: center;
    color: black;
    font-size: 18px;
  }

  .services i.bi{
    color: #54b36f !important;
    font-size: 24px;
    position: absolute !important;
    display: none;
  }

  .services i.full{
    color: #54b36f !important;
    font-size: 200px;
    position: absolute !important;
    left: 10px;
    top:-50px;

    display: block;
    opacity: 0.07;

  }

  

  /*
    conduct
  */

  .conduct .title h2{
    text-align: center;
    font-weight: 600;
  }

  .conduct .title img{
    
    margin-top: -30px;
  }  
  .conduct .inner-info {
    border:2px solid #999;
    margin-bottom: 50px !important;
    position: relative; 
    border-radius: 20px;
  }

  .conduct .inner-info h4{ 
    position: absolute;
    transform: rotate(-15deg);
    top:-20px;
    left:-20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 20px;
    
  }

  .conduct ul{
    margin:25px;
  }

  .conduct li{
    margin:5px;
  }  
  .conduct .red h4 {
    background-color: #ff5959;
  }

  .conduct .green h4 {
    background-color: #54b36f;
  }

  .conduct .yellow h4 {
    background-color: #f1c413;
  }

  .conduct .inner-info.red {
    border-color:  #ff5959;
  }

  .conduct .inner-info.green {
    border-color:  #54b36f;
  }

  .conduct .inner-info.yellow {
    border-color:  #f1c413;
  }


  /*
    LOCATION
  */

  .location .title h2{
    font-weight: 600;
  }

  .location .title i{
    font-size: 26px;
    color: #ff5959;
  }

  .location p.day {
    color: #54b36f;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .location p { 
        font-size: 12px;
    }
  }  

  .location i {
    margin-right: 10px;
  }



  
  /*
    CONTACT
  */

  .contact .map{
    position: relative; 
  }

  .contact iframe {
    border-radius: 15px;
  }

  .contact  .div-name {
    position: absolute;
    left: -60px;
    top:-20px;
    width: 380px;
    height: 170px;
    background-color: white;
    border-radius: 15px;
    border:2px solid #ddd;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

  }

  @media (max-width: 768px) {
    .contact  .div-name {
        width:320px;
    }
    .contact  .div-name p{
        font-size: 12px;
    }

 
  }
    

   

  .contact  .div-name h4 {
    font-size: 24px;
    font-weight: 600;
    
  } 
  
  .condtact .div-name p{
    font-size: 14px;
  }

  .contact .div-name .bi{
    
    margin-right: 10px;
    font-size: 24px ;
    color:#ff5959;
  }




  .contact input {
    padding: 15px;
    border-radius: 15px;

  }



  .contact select {
    padding: 15px;
    border-radius: 15px;
  }  
  
  .contact button {
    border: none;
  }
  
  .contact h4 {
    font-weight: 600;
  }

  .contact .arrow {
    padding-top: 10px;
    height: 60px;
    margin-left: 10px;
  }

  .contact img.big{
    width: 100%;
    max-width: 400px;
  }

  .contact img.quest {
    padding-left: 20px;
    margin-top: -20px;
  }

  

  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
   
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }

  .contact  .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }  

  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }


  /*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
    
    padding: 60px 0;
  }
  
  .faq .section-title h4 {
    font-weight: 600;
    font-size: 24px;
  }
  
  .faq .faq-list {
    padding: 0 100px;
  }
  
  .faq .faq-list ul {
    padding: 0;
    list-style: none;
  }
  
  .faq .faq-list li+li {
    margin-top: 15px;
  }
  
  .faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
  }
  
  .faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 24px;
    
    padding: 0 30px;
    outline: none;
    cursor: pointer;
  }
  
  .faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color:#ff5959;
     
  }
  
  .faq .faq-list .icon-show,
  .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }
  
  .faq .faq-list .icon-show {
    display: none;
  }
  
  .faq .faq-list a.collapsed {
    color: #343a40;
  }
  
  .faq .faq-list a.collapsed:hover {
    color: #54b36f
  }
  
  .faq .faq-list a.collapsed .icon-show {
    display: inline-block;
  }
  
  .faq .faq-list a.collapsed .icon-close {
    display: none;
  }
  
  @media (max-width: 1200px) {
    .faq .faq-list {
      padding: 0;
    }
  }
  

  .footer {
    margin-top: 100px;
    padding: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  .footer img {
    max-width: 100px;
  }

  
  .footer ul {
    padding: 0px;
  }

  .footer li {
    list-style: none;
    padding: 5px;
    text-decoration:none
  }

  .footer .btn-get-started i.bi {
    margin-right: 10px;
  }

  .footer .btn-get-started:hover {
    color:white !important;
  }


  .footer .foot-a  {
    
    text-decoration: none !important;
    
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 500;
    color: #303030;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  
  
  
  .footer a:hover,
  .footer .active,
  .footer .active:focus,
  .footer li:hover>a {
    color: #16df7e;
  } 

  .footer i.soc {
    font-size: 24px;
    
    margin-right:10px;
    margin-left:10px;
    transition: 0.3s;
  }
