:root{
    --logo-bg:#2C318C;
    --main-color:#2C318C;
    --main-text:#636464;
    --sub-text: #3E3E3E;
}

/*======= start genral styles ==========*/
*{
    box-sizing: border-box;
}

body {
    background: #fff;
    position: relative;
    width: 100vw;
    margin: 0;
    padding: 0;

    left: 0;



    overflow-x: hidden;
}
.overflow-hidden{
    overflow: hidden;
}
.container{
    position: relative;
    
}
ul{
    list-style-type:none;
}
.row{
 
    margin: 0;
}

a{
    color:#fff;
    text-decoration:none;
}
a:hover{
    color:#fff;
    text-decoration:none;
}
.centered{
     display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
}
/*======= end genral styles ==========*/




/*======= start header styles ==========*/
#nav {
    position:relative;
    overflow-x: hidden;
    width: 100vw;
    background: rgba(40, 45, 51, 0.644)
  
}
#nav .navbar{
  background: rgba(0, 0, 60,0.4);
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  overflow: hidden;
  position: relative;
  padding: 0;
  width: 100vw;
  z-index: 5;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
#nav .navNew{
  background: rgb(245, 247, 252) !important;
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  
}
#nav .navbar .navbar-brand img{
  padding: 10px;
  height: 105px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
   -webkit-filter: drop-shadow( -1px 1px 1px rgba(0, 0, 0,1));
  filter: drop-shadow( -1px 1px 1px rgba(0, 0, 0, 1));
}

#nav .navNew .navbar-brand img{
  padding: 0px;
  height:55px !important;
   -webkit-filter: drop-shadow( -1px 1px 1px rgba(0, 0, 0, 0));
  filter: drop-shadow( -1px 1px 1px rgba(0, 0, 0, 0));
} 
#nav .navbar .navbar-collapse{
  height: 100px;
  padding: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
#nav .navNew .navbar-collapse{
  height: 70px;
}
#nav .show{
  height: 100% !important;
  background: rgb(245, 247, 252);
  border-radius: 10px;
  transition: all .3s;
  width: 90vw;

 
}

#nav ul{
  /* height: 100%; */

}
#nav ul li{
  /* height: 100%; */
  position: relative;
}
#nav .show ul li{
  height: 30px;
 
}
#nav .oldNav ul li a::after{
  content: "";
  background: #fff !important;
  height: 1px;
  width: 0px;
  position: absolute;
  right: 20px;
  bottom: 21px;
  transition: all .3s;
}
#nav .navNew ul li a::after{
  content: "";
  background: #2C318C !important;
  height: 1px;
  width: 0px;
  position: absolute;
  right: 20px;
  bottom: 21px;
  transition: all .3s;
}


#nav ul li:hover a::after,
#nav ul li a.active::after{
  width: calc(100% - 40px);
  background: #2C318C;
  transition: all .3s;

}  
#nav ul li a{
  padding: 0 10px ;
  line-height: 70px;
  margin: 0 auto;
  color: #ffffff;
  z-index: 10;
  /* -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; */
 
}
#nav .show ul li a{
  height: 40px;
  color: #636464 !important;
  line-height: 35px !important;
}

#nav ul li a.active{
  background-color:rgba(0, 0, 0, 0) 
}
#nav .navNew ul li a{
  color: #636464 !important;
  line-height: 70px ;
  
}
#nav .navNew .show ul li a{
  height: 40px;
  color: #636464 !important;
  line-height: 35px !important;
}

/*======= end header styles ==========*/



/*======= start home styles ==========*/

#home{
    position: relative;
    width: 100% ;   
    height: 85vh;
    overflow: hidden;
}

#home .swiper-slide::after  {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .3;
    z-index: 1;
    background: #2C318C;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, rgba(143, 148, 251, 0.7), rgba(78, 84, 200, 0.8));  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, rgba(143, 148, 251, 0.7),  rgba(78, 84, 200, 0.8)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
}
#home .swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  
}
#home  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
#home .swiper-container .first{
    background:url(../img/1.jpg) center top;
    background-size: cover;

}
#home .swiper-container .second{
    background:url(../img/2.jpg) center top;
    background-size: cover;

}
#home .swiper-container .third{
    background:url(../img/3.jpg) center top;
    background-size: cover;

}#home .swiper-pagination{
  margin-bottom: 40px 
}
#home .swiper-pagination span{ 
    background: #fff;
}
#home h3{
    width: 80%;
    z-index: 2;
    color: #fff;
    font-size: 3rem;
    font-family: Georgia, serif;
    font-style: italic;
    letter-spacing: .1rem;
}
#home .swiper-button-next ,
#home .swiper-button-prev {
    background:transparent;
    
 }
 
#home i{
     color: #fff;
 }

 .snip1505 {
    font-family: 'Roboto', Arial, sans-serif;
    color: #ffffff;
    cursor: pointer;
    padding: 0px 40px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    line-height: 2.7em;
    letter-spacing: 1.5px;
    font-size: 1em;
    outline: none;
    position: relative;
    font-size: 16px;
    border: 3px solid #fff;
    background-color: transparent;
    border-radius: 15px 15px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2;
  }
  .snip1505:before {
    content: "";
    position: absolute;
    left: -3px;
    top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 35px 0 0;
    border-color: #2C318C transparent transparent transparent;
    z-index: 1;
  }
  .snip1505:hover,
  .snip1505.hover {
    border-color: #2C318C;
  }
  .snip1544 {
    font-family: 'Roboto', Arial, sans-serif;
    color: #ffffff;
    cursor: pointer;
    padding: 0px 40px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    line-height: 2.7em;
    letter-spacing: 1.5px;
    font-size: 1em;
    outline: none;
    position: relative;
    font-size: 16px;
    border: 3px solid #fff;
    background-color: transparent;
    border-radius: 0 15px 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2;
  }
  
  .snip1544:before {
    content: "";
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 35px 35px;
    border-color: transparent transparent #2C318C transparent;
    z-index: 1;
  }
  
  .snip1544:hover,
  .snip1544.hover {
    border-color: #2C318C;
    color:#fff;
    text-decoration:none;
  }

  

/*======= end home styles ==========*/

/*======= start about styles ==========*/
#about{
  position: relative;
 padding: 100px 0;
    overflow: hidden;
}
#about .box{
    position:relative;
}
#about .box1{
background: #f7be16 ;
height: 500px;
width: 5000px;
transform: rotateZ(10deg);
position: absolute;
top: -150px;
left: 0px;

}
#about .box2{
  background: #2C318C;
  height: 200px;
  width: 5000px;
  transform: rotateZ(-5deg);
  position: absolute;
  top: -80px;
  right: 0px;
  z-index: 0;
}



.mouse-cont{
  position: absolute;
  top: -135px;
 
  
  width: 100%;
  z-index: 2;
  margin: 0 ;
  display: flex;
  justify-content:center;

}
.m-bord{
  position: relative;
  background: #fff;
  width: 70px;
  height: 70px;
  border: #2C318C 10px solid;
  border-radius: 50%
 }

 .icon-scroll {
 cursor: pointer;
 position: absolute;
 top: 40%;
 left: 51.8%;
 width: 1em;
 height: 3.125em;
 transform: translateX(-50%) scale(1.5);
 z-index: 99999;
}




.icon-scroll .mouse {
 height: 1.375em;
   width: .875em;
   box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
   border: 1px solid rgba(0,0,0,1);
   background: rgba(0, 0, 0, 0.1);
 border-radius: 2em;
}

.icon-scroll .wheel {
 position: relative;
 display: block;
 height: 0.1875em;
 width: 0.1875em;
 margin: 0.1875em auto 0;
 box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
 background: rgba(0,0,0,1);
 animation: mouse-wheel 1.2s ease infinite;
 border-radius: 50%;
}

@keyframes mouse-wheel {
 0% {
   opacity: 1;
   transform: translateY(0);
 }

 100% {
   opacity: 0;
   transform: translateY(.375em);
 }
}

@keyframes mouse-scroll {
 0%   { opacity: 0; }
 50%  { opacity: .5; }
 100% { opacity: 1; }
}
 

#about .lines{
  
  display: flex;
  /* height: 300px; */
}
#about .line{
  margin-top: 80px;
  height: 1px;
  width: 35px;
  background: #2C318C;
 
}
#about .line2{
  height: 1px;
  width: 35px;
  background: #2C318C;
 justify-self: flex-end;
 margin: 0 0 0 118px;
 /* margin-bottom: 80px; */
}
#about .title{
 padding: 0;
 margin-top: 20px;
 position: relative;
 
}
.title h3{
  color:#2C318C;
  text-transform:capitalize;
}
#about .text{
  padding: 10px 0px ;

}

#about .line3{
  height: 1px;
  width: 35px;
  background: #2C318C;
  margin: 0 auto;
  margin-bottom: 15px;
  
}


#about .stands .s-cont{
  padding: 0;
  display: inline-block;
  margin: 50px 0px;
}
#about .stands .s-cont .icon{
  padding: 0;
  
  margin-top: 10px
}
#about .stands .s-cont .icon i{
  background: -webkit-linear-gradient(#2C318C, #719bcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*======= end about styles ==========*/





/*======= start services styles ==========*/

#services .box3{
background: #f7be16 ;
height: 200px;
width: 5000px;
transform: rotateZ(6deg);
position: absolute;
top: -263px;
right: -5px;
z-index: -1;
}


#services{
  position: relative;
  background: #2C318C;
  color: #fff;
  padding-top: 80px;
 
}
#services .line{
  background: #fff;
  height: 1px;
  width: 35px;
  margin: 0 auto;
}
#services p{
  padding: 10px 0;
  margin-bottom: 50px;
}

#services ul{
  padding: 0;
  margin: 0;
  width: 100%;
}
#services ul li{
  padding: 0;
  margin: -6px -4px;
  width: 25.20%;
  display:inline-block;
}
@media screen and (max-width: 600px) {
  #services ul li{
    width: 50%;
  }
  
}

.snip1519 {

  position: relative;
  overflow: hidden;
  margin: 10px 0;
  /* min-width: 250px; */
  max-width: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #f7be16;
  color: #9e9e9e;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.snip1519 *,
.snip1519 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1519 figcaption {
  padding: 12% 10% 14%;
}

.snip1519 i {
  font-size: 54px;
  color: #fff;
  width: 80px;
  line-height: 80px;
  background-color: #2C318C;
  border-radius: 50%;
  padding: 0;
  margin: 0 0 10px;
  text-align: center;
  display: inline-block;
}

.snip1519 h3 {
    color: #3c3c3c;
    font-size: 20px;
    /* font-weight: 300; */
    line-height: 24px;
    margin: 10px 0;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.snip1519 p {
  color:#636464;
  font-size: 0.9em;
  font-weight:300;
  margin: 0 0 20px;
}

.snip1519 .button {
  text-decoration: none;
  color: #777;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 5px 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.snip1519 .button:before {
  background-color: #2C318C;
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  z-index: -1;
  opacity: 0;
}

.snip1519 .button:hover {
  color: #fff;
}

.snip1519 .button:hover:before {
  top: 0;
  opacity: 1;
}

.snip1448 {
    font-family: 'Roboto', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 0px;
   padding: 0;
    width: 100%;
    color: #fff;
    font-size: 16px;
    background-color: #282D33;
    transform: translateZ(0);
  }
  .snip1448 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  .snip1448 img {
    max-width: 100%;
    vertical-align: top;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  }
  .snip1448 figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
  .snip1448 h3 {
    -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
    filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 300;
    font-size: 1.4em;
    padding:  0 0  0 40px ;
    margin: 0;
    line-height:40px;
  }
  .snip1448 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  .snip1448:hover img,
  .snip1448.hover img {
    -webkit-transform: translate(40px, 40px);
    transform: translate(40px, 40px);
  }
 

/*======= end services styles ==========*/




/*======= start clients styles ==========*/
#clients {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
 
}

#clients .box1{
  background: #f7be16 ;
  height: 200px;
  width: 5000px;
  transform: rotateZ(6deg);
  position: absolute;
  top: 62px;
  left: -5px;
  z-index: -1;
}
#clients .box2{
  background: #2C318C ;
  height: 200px;
  width: 5000px;
  transform: rotateZ(-6deg);
  position: absolute;
  top: 62px;
  right: -5px;
  z-index: -1;
}
#clients .line{
  background: #2C318C;
  height: 1px;
  width: 35px;
  margin: 0 auto;
  margin-bottom: 50px;
}
#clients  h2{
  margin-top: 20px;
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
}
#clients  .clients{
 
  position: relative;
 
}

#clients  .clients .swiper-slide  {
  position: relative;
  height: 100px;
  
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#clients  .clients .swiper-slide:hover{
  transform: scale(1.2);
  transition: all .3s;
}
#clients  .clients .swiper-slide img {
  height: auto;
    max-width: 100%;
    max-height: 100%;
}


/*======= end clients styles ==========*/



/*======= start contacts styles ==========*/

#contacts{
  position: relative;
  /* background: rgb(64,30,203); */
  background: url(../img/form.jpg) center center;
  /* background: linear-gradient(0deg,  #3e79e7 0%, #12a2bf 100%); */
  background-size: cover;
  
}
#contacts h2{
  color: rgb(225, 255, 255);
  margin-top: 80px;
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
}
#contacts h2 span{
  color: rgb(255, 255, 255);
}
#contacts .overlay{
  width: 100%;
  height: 100%;
  background: #2C318C;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, rgba(4, 68, 140, 1), rgba(113, 155, 204, 1));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, rgba(4, 68, 140, 1),  rgba(113, 155, 204, 1)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
}


#contacts .contact-form .form-group .form-control {
  border: 0px;
  height: 45px;
  padding: 5px 10px;
  font-size: 16px;
  font-weight:300; 
  line-height: 1.42857143;
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  box-shadow: none !important;
  outline: none !important;
  margin-bottom: 25px;
  border-radius: 0;
}
#contacts .contact-form .form-group textarea.form-control {
  height: auto;
}
#contacts .btn-custom{
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  display: inline-flex;
  background:  #fff;
  padding: 15px 35px;
  border-radius: 50px;
  color: #4f8ace;
  box-shadow: 0px 14px 80px rgba(131, 131, 131, 0.2);
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  border: #fff 2px solid;
  transition: 0.5s;
}
#contacts .btn-custom:hover{
  display: inline-flex;
  background-image: linear-gradient(147deg, #2C318C 0%, #719bcc 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(131, 131, 131, 0.2);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  transition: 0.5s;
  border: #fff 2px solid;
}
.form-control::-webkit-input-placeholder { color: white; }  /* WebKit, Blink, Edge */
.form-control:-moz-placeholder { color: white; }  /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder { color: white; }  /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder { color: white; }  /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder { color: white; }  /* Microsoft Edge */

#contacts .map{
margin: 0;
padding: 0;
height: 70vh;
margin-top: 50px;
-webkit-filter: grayscale(60%);
-moz-filter: grayscale(60%);
-ms-filter: grayscale(60%);
-o-filter: grayscale(60%);
 filter: grayscale(60%);
}
#contacts .map iframe{
width: 100%;
display: block;
pointer-events: none;
position: relative; /* IE needs a position other than static */
}
#contacts .map iframe.clicked{
pointer-events: auto;

}
/*======= end contacts styles ==========*/




/*======= start footer styles ==========*/
footer{
  /* height: 200px; */
  background: #2C318C;
 padding-top:50px; 
 -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  
}
footer ul li{
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  
}
.contacts-data{
  padding: 50px 0;
  background:#2C318C;

 color: #fff;
  position: relative;
  
  
}
.contacts-data .cont-txt h3{
  font-size: 2.5rem;
  color: #F7BE16;
 
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
 
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));

}
.contacts-data .cont .title::after{
  margin-bottom:0px; 
  background: transparent !important;
}
footer   h3.footer-title span{
  font-weight: bold;
  color: #E0EAFC;
  font-weight: 900;
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));

}
.contacts-data .cont-txt p{
  color: #fff;
  font-size: 1.25rem;
  font-family: Roboto;
  margin-top: 1.5em;
  line-height: 1.5em;
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
}
.contacts-data .cont {
  position: relative;
  display: flex;
  justify-content:flex-start;
  flex-direction: column;
  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  
}
.contacts-data .cont .title{
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}
.contacts-data .cont a{
  text-decoration: none;
  
}
.contacts-data .cont .i-container{
  color: #E0EAFC;
}
.contacts-data .cont .title{
  font-size: 1.25rem;
  font-weight: bold;
  color: #F7BE16;
  margin-top: 1em;
}
.contacts-data .cont .breaker{
  background: #E0EAFC;
  height : 3px;
  width : 40px;
  align-self: center;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.contacts-data .cont .data a{
  font-size: 1.2rem;
  margin-top: 1.5em;
  line-height: 1.5em;
  color: #F7BE16;
  text-align:center;
  width: 100%;
    display: block;
}
.contacts-data .cont .data{
  font-size: 1.2rem;

  line-height: 1.5em;
  color: #F7BE16;
  text-align:center;
}
.contacts-data .cont .phones{
    margin : 0 ;
}

.container-inner {
  margin: 0 auto;
  display: flex;
  flex-direction:column; 
}

footer h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color:#F7BE16;

  -webkit-filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  filter: drop-shadow( 3px 3px 3px rgba(0, 0, 0, 0.2));
  
}


nav {
  text-align: center;
}

ul, li, a {
  display: inline-block;
  padding: 0;
}

li {

  padding: 5px 5px 5px 5px;
}

.container-inner .line{
  background: #fff;
  height: 3px;
  width: 45px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.container-inner a {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-decoration: none;
  color: #fff;
  font-family: "zocial", sans-serif;
  font-size: 24px;
  border-radius: 10px;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
footer ul  a:hover:nth-child(1) {
  background-color: #4267B2;
  color: #fff
}
footer ul a:hover:nth-child(2) {
  background-color: #4267B2;
  color: #fff
}
footer ul a:hover:nth-child(3) {
  background-color: #B74238;
  color: #fff
}
footer ul a:hover:nth-child(4) {
  background-color: #1DA1F2;
  color: #fff
}
@media only screen and (max-width: 400px) {
 .responsive-ul{
     transform: scale(0.8);
 }
}
footer .copyright {
  font-size: 10px !important;
   color: #fff
}
/*======= end footer styles ==========*/
.navbtn{
    text-transform: capitalize;
    padding: 0px 25px;
    margin: 0px;
    font-size: 14px;   
}
.navNew .navbtn,
.show .navbtn{

    color:#636464; 
}


