@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&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
{
  position: relative;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  background: linear-gradient(to right,#fff,#0052D4);
}
.navbar.scrolled
{
  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%;
}
#banner .banner-sub
{
  position: relative;
  width: 100%;
  height: 100vh;
}
#banner .swiper-container 
{
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 2;
}
#banner .swiper-slide:before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent,#fff);
}
#banner .swiper-container .swiper-slide
{
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/achievement/slide1.jpg) no-repeat;
  background-size: cover;
}
#banner .swiper-container .swiper-slide:nth-child(2)
{
  background: url(../img/achievement/slide2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
#banner .swiper-container .swiper-slide:nth-child(3)
{
  background: url(../img/achievement/slide3.jpg) no-repeat;
  background-size: cover;
}
#banner .swiper-container .swiper-slide:nth-child(4)
{
  background: url(../img/achievement/slide4.jpg) no-repeat;
  background-size: cover;
}
#banner .swiper-container .swiper-slide:nth-child(5)
{
  background: url(../img/achievement/slide5.jpg) no-repeat;
  background-size: cover;
  background-position: right;
}
#banner .banner-sub .banner-content
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  z-index: 2;
}
#banner .banner-sub .banner-content .heading
{
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 3.5em;
  opacity: 0;
}
#banner .banner-sub .banner-content .heading2
{
  font-size: 36px;
  font-weight: 600;
  opacity: 0;
}
#achieve
{
  position: relative;
  width: 100%;
  transition: transform .25s;
  will-change: transform;
}
#achieve .achieve-sub
{
  position: relative;
  width: 70%;
  margin: 0 auto;
}
#achieve .achieve-sub h1
{
  font-weight: 700;
}
#achieve .achieve-sub p
{
  font-size: 20px;
}
#achieve .achieve-sub div 
{
  position: relative;
  width: 100%;
}
#achieve .achieve-sub div img
{
  position: relative;
  width: 100%;
}
#achieve .achieve-sub div h2
{
  margin-top: 20px;
  font-weight: 600;
}
#achieve .achieve-sub div p
{
  font-size: 18px;
  line-height: 30px;
}
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)
{
  a.back-to-top
  {
    position: fixed;
    top: 75%;
    right: 2%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(116, 185, 255,.5);
    z-index: 99999;
    text-align: center;
  }
  .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 .banner-sub
  {
    height: 70vh;
  }
  #banner .swiper-container 
  {
    position: relative;
    width: 100%;
    height: 70vh;
  }
  #banner .banner-sub .banner-content .heading
  {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 3.5em;
    opacity: 0;
  }
  #banner .banner-sub .banner-content .heading2
  {
    font-size: 30px;
    font-weight: 600;
    opacity: 0;
  }
  #achieve .achieve-sub
  {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  #achieve .achieve-sub h1
  {
    font-weight: 700;
    font-size: 2em;
  }
  #achieve .achieve-sub p
  {
    font-size: 17px;
  }
  #achieve .achieve-sub div h2
  {
    font-size: 1.7em;
  }
  #achieve .achieve-sub div p
  {
    font-size: 16px;
  }
  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;
  }
}