@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*
{
  font-family: 'Poppins';
  scroll-behavior: smooth;
}
body
{
  margin: 0;
  padding: 0;
}
.back-to-top
{
  position: fixed;
  bottom: 5%;
  right: 2%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(116, 185, 255,.5);
  z-index: 9999;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: .5s ease-in-out;
}
.back-to-top.fade-in
{
  opacity: 1;
  visibility: visible;
}
.back-to-top i
{
  color: #0984e3 !important;
  font-size: 23px;
  font-weight: 700 !important;
  line-height: 50px;
}
.navbar
{
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  background: linear-gradient(to right,#fff,#0052D4);
}
.navbar
{
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  background: linear-gradient(to right,#fff,#0052D4);
  z-index: 9999;
}
.navbar:before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right,#00c6ff,#0072ff);
  transition: .4s ease-in-out;
  z-index: -1;
}
.navbar.scrolled:before
{
  width: 100%;
}
.navbar .navbar-brand
{
  position: absolute;
}
.navbar .navbar-brand img
{
  margin-left: 30px;
  width: 150px;
  height: 120px;
  z-index: 2;
}
.navbar-nav .nav-item .nav-link
{
  text-decoration: none;
  margin: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  color: #fff !important;
  animation: menu-in 1s ease forwards;
}
.navbar-nav .nav-item:nth-child(1) .nav-link
{
  animation-delay: 0s;
}
.navbar-nav .nav-item:nth-child(2) .nav-link
{
  animation-delay: .2s;
}
.navbar-nav .nav-item:nth-child(3) .nav-link
{
  animation-delay: .4s;
}
.navbar-nav .nav-item:nth-child(4) .nav-link
{
  animation-delay: .6s;
}
.navbar-nav .nav-item:nth-child(5) .nav-link
{
  animation-delay: .8s;
}
.navbar-nav .nav-item:nth-child(6) .nav-link
{
  animation-delay: 1s;
}
@keyframes menu-in
{
  0%
  {
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }
  100%
  {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
}
.navbar-toggler
{
  position: relative;
  margin-right: 20px;
  border: 1px solid #fff !important;
  outline: none !important;
  z-index: 99999;
}
.navbar-toggler i
{
  color: #fff !important;
  font-size: 25px;
}
#banner
{
  position: relative;
  width: 100%;
  height: 60vh;
  background: url(../img/about/bg1.jpg);
  background-size: cover;
  background-position:top center;
  background-attachment: fixed;
  z-index: 1;
}
#banner:before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right,#6FB1FC,#4364F7,#0052D4);
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
  z-index: -1;
}
#banner:after
{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: rgba(0,0,0,.5);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 27.2% 100%);
  z-index: -1;
}
#banner .banner-sub
{
  position: relative;
  width: 50%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#banner .banner-sub .content
{
  color: #fff;
}
#banner .banner-sub .content h1
{
  font-size: 3em;
  text-align: center;
}
#banner .banner-sub .content h2
{
  font-size: 2.5em;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 300;
}
#about,
.about-us
{
  position: relative;
  width: 100%;
}
#about .about-us .abt-content
{
  width: 70%;
  margin: 0 auto;
  padding: 20px 0;
}
#about .about-us .abt-content h1
{
  text-align: center;
  margin-bottom: 20px;
}
#about .about-us .abt-content h1 span
{
  color: #0984e3;
  text-transform: uppercase;
}
#cards
{
  position: relative;
  width: 100%;
}
#cards .card-head
{
  text-align: center;
  font-size: 22px;
  margin: 20px 0 30px;
  font-weight: 500;
}
#cards .contain .box
{
  position: relative;
  width: 320px;
  background: #f2f5f7;
  margin: 0 auto 30px;
  padding: 100px 40px 60px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}
#cards .contain .box:before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff226d;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s;
}
#cards .contain .ser:nth-child(1) .box:before
{
  background: #0984e3;
}
#cards .contain .ser:nth-child(2) .box:before
{
  background: #00b894;
}
#cards .contain .ser:nth-child(3) .box:before
{
  background: #ff226d;
}
#cards .contain .box:hover:before
{
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform .5s;
}
#cards .contain .box h2
{
  position: absolute;
  left: 40px;
  top: 60px;
  font-size: 4em;
  font-weight: 800;
  z-index: 1;
  opacity: .1;
  transition: .5s;
}
#cards .contain .box:hover h2
{
  opacity: 1;
  color: #fff;
  transform: translateY(-40px);
}
#cards .contain .box h3
{
  position: relative;
  font-size: 1.5em;
  color: #333;
  z-index: 2;
  font-weight: 600;
  transition: .5s;
}
#cards .contain .box p
{
  position: relative;
  color: #333;
  z-index: 2;
  transition: .5s;
}
#cards .contain .box:hover h3,
#cards .contain .box:hover p
{
  color: #fff;
}

.swiper-container {
  width: 100%;
  padding: 4em 0;
}
.swiper-container h3
{
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1.5em;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
}
.swiper-slide img
{
  position: relative;
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.swiper-slide .test-content
{
  position: relative;
  width: 70%;
}
.swiper-slide .test-content p
{
  margin: 20px 0;
  color: #666;
  font-weight: 300;
}
.swiper-slide .test-content h4
{
  text-transform: uppercase;
  font-weight: 700;
}
.swiper-slide .test-content span
{
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: #333;
}
footer
{
  position: relative;
  width: 100%;
  background: linear-gradient(to right , #eee, #f2f5f7);
}
footer .footer-sec
{
  position: relative;
  width: 90%;
  margin: 0 auto;
}
footer .footer-sec .grid
{
  border-bottom: 1px solid #999;
  padding:2em 0 1em;
}
footer .footer-sec .logo
{
  position: relative;
}
footer .footer-sec .logo img
{
  width: 200px;
  height: 170px;
}
footer .footer-sec .menu
{
  position: relative;
  text-align: center;
}
footer .footer-sec .menu ul
{
  display: block;
}
footer .footer-sec .menu ul li
{
  text-align: center;
  list-style: none;
  margin: 10px 20px;
}
footer .footer-sec .menu ul li a
{
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  color: #666;
  text-transform: uppercase;
}
footer .footer-sec .subscribe
{
  text-align: center;
}
footer .footer-sec .subscribe h4
{
  margin: 0px 0 20px;
  padding: 0;
  text-align: left !important;
  font-size: 18px;
  text-transform: uppercase;
  color: #666;
  font-weight: 500;
  letter-spacing: 1px;
}
footer .footer-sec .subscribe input
{
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border: none;
  outline: none;
  padding: 0 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #666;
  font-size: 16px;
}
footer .footer-sec .subscribe textarea
{
  width: 100%;
  height: 100px;
  border: none;
  outline: none;
  padding: 10px 20px;
  resize: none;
  color: #666;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .footer-sec .subscribe button
{
  position: relative;
  width: 180px;
  height: 45px;
  border: none;
  outline: none;
  font-weight: 500;
  background: #666;
  color: #fff;
  transition: .4s ease-in-out;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}
footer .footer-sec .subscribe button:hover
{
  background: transparent;
  border: 2px solid #666;
  color: #666;
}
footer .footer-sec .social ul
{
  display: flex;
}
footer .footer-sec .social ul li
{
  list-style: none;
  margin: 10px 15px;
  font-size: 25px;
}
footer .footer-sec .social ul li:first-child
{
  margin: 10px 20px 0 0;
}
footer .footer-sec .social ul li a
{
  text-decoration: none;
  color: #666;
  transition: .4s ease-in-out;
}
footer .footer-sec .social ul li a:hover
{
  color: #0984e3 !important;
}
footer .footer-sec .copy span
{
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 60px;
  display: block;
  color: #999;
}
@media only screen and (max-width: 800px)
{
  .navbar-brand
  {
    position: relative !important;
  }
  .navbar-brand img
  {
    margin-left: 0px !important;
    width: 100px !important;
    height:80px !important;
  }
  .navbar-nav .nav-item .nav-link
  {
    text-align: center;
    margin: 10px 0;
    color: #000 !important;
  }
  .navbar-collapse
  {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    background: #fff;
  }
  #banner:after
  {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: rgba(0,0,0,.5);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%);
    display: none;
    z-index: -1;
  }
  #banner .banner-sub
  {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner .banner-sub .content h1
  {
    font-size: 2em;
    text-align: left;
    letter-spacing: 1px;
  }
  #banner .banner-sub .content h2
  {
    font-size: 1.7em;
    text-align: left;
    letter-spacing: 1px;
  }
  #about .about-us .abt-content
  {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
  }
  .swiper-slide .test-content
  {
    position: relative;
    width: 100%;
  }
  .swiper-slide .test-content p
  {
    margin: 20px 0;
    color: #666;
    font-size: 16px;
    font-weight: 300;
  }
  .swiper-slide .test-content h4
  {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
  }
  .swiper-slide .test-content span
  {
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    font-size: 15px;
    color: #333;
  }
  footer .footer-sec .copy span
  {
    text-align: left !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    color: #999;
  }
}
@media only screen and (min-width: 750px) and (max-width: 1024px)
{
  .navbar-collapse
  {
    padding: 0 !important;
    margin: 0 !important;
    width: unset;
    background: transparent;
  }
  #cards .contain .box
  {
    position: relative;
    width: unset;
    background: #f2f5f7;
    margin: 0 auto 30px;
    padding: 100px 20px 60px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  }
}