@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} 
p{
  text-align: justify;!important;
}
.psocial{
  text-align: center;
}
nav{
  display: flex;
  height: 80px;
  width: 100%;
  background: #21413E;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  vertical-align: middle;
}
.helper{
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

img{
    vertical-align: middle;
    width: 100%;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #fff;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1680px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 1150px) {
  nav{
    border-bottom: 1px solid #EAEAEB;
  }
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #21413E;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    z-index: 1;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    border-bottom: 1px solid #EAEAEB;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: #D19525;
    font-weight: 700;
  }
  .services{
    display: flex;
    flex-direction: column;
  }

  .main-content{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box{
    margin: 5px 0;
  }
}
.carousel{
    max-width: 100%;
    padding: 0;
  }
.text-content{
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}
.text-content div{
  font-size: 40px;
  font-weight: 700;
}
.cards{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
  }
  .cards h2.header{
    font-size: 40px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .services{
    display: flex;
    align-items: center;
  }
  .content{
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    margin: 20px;
    padding: 20px;
    border: 2px solid #21413E;
    border-radius: 4px;
    transition: all .3s ease;
  }
  .content .fab{
    font-size: 70px;
    margin: 16px 0;
  }
  .content .fas{
    font-size: 70px;
    margin: 16px 0;
  }
  .content > *{
    flex: 1 1 100%;
  }
  .content:hover{
    color: white;
  }
  .content:hover a{
    border-color: white;
    background: white;
  }

  .content-1:hover{
    border-color: #0E76A8;
    background: #0E76A8;
  }
  .content-1:hover a{
    color: #0E76A8;
  }
  .content-2:hover{
    border-color: #21413E;
    background:linear-gradient(to right, #76977A 0, #76977A 33%, #D19525 33%, #D19525 66%, #7B6268 66%, #7B6268 100%);
  }
  .content-2:hover a{
    color: #21413E;
  }
  .content-3:hover{
    border-color: #3B5998;
    background: #3B5998;
  }
  .content-3:hover a{
    color: #3B5998;
  }
  .content h2{
    font-size: 30px;
    margin: 16px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .content p{
    font-size: 17px;
    font-family: 'Poppins',sans-serif;
  }
  .content a{
    margin: 22px 0;
    background: #21413E;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #21413E;
    padding: 15px 0;
    border-radius: 25px;
    transition: .3s ease;
  }
  .content a:hover{
    border-radius: 4px;
  }

  footer{
    width: 100%;
    background: #21413E;
    color: #fff;
  }
  .main-content{
    display: flex;
  }
  .main-content .box{
    flex-basis: 50%;
    padding: 10px 20px;
  }
  .box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .box .footer-content{
    margin: 20px 0 0 0;
    position: relative;
  }
  .box .footer-content:before{
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #21413E;
  }
  .box .footer-content:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 35%;
    background:linear-gradient(to right, #76977A 0, #76977A 33%, #D19525 33%, #D19525 66%, #7B6268 66%, #7B6268 100%);
    top: -10px;
  }
  .left .footer-content p{
    text-align: justify;
  }
  .center .footer-content .social{
    margin: 20px 0 0 0;
  }
  .center .footer-content .social a{
    padding: 0 2px;
  }
  .center .footer-content .social a span{
    height: 40px;
    width: 40px;
    background: #21413E;
    line-height: 40px;
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
  }
  .center .footer-content .social a span:hover{
    background: #D19525;
  }
  .center .footer-content .social a span:visited{
    color: #fff;
  }
  .center .footer-content .fas{
    font-size: 1.4375rem;
    background: #21413E;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
  }
  .center .footer-content .fas:hover{
    background: #D19525;
  }
  .center .footer-content .text{
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
  }
  .center .footer-content .phone{
    margin: 15px 0;
  }
  .right .footer-content .email .text a{
    color: #fff;
  }
  .right .footer-content .email .text a:hover{
    background: #7B6268;
  }
  .right .footer-content .email .text a:visited{
    color: #fff;
  }
  
  .bottom center{
    padding: 5px;
    font-size: 0.9375rem;
    background: #151515;
  }
  .bottom center span{
    color: #656565;
  }
  .bottom center a:hover{
    text-decoration: underline;
  }