
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: #083E82;
  --white-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .940rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 14.4px;
    --normal-font-weight: bold;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
}

ul {
    text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color:white;
  z-index: var(--z-fixed);
}
.nav .nav__logo{
    width: 212px;
    height: 86.5px;
}
.nav .nav__logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: var(--black-color);
  font-size: 3.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
    .nav .nav__logo{
        width: 150px;
        height: 85px;
        padding-top: 30px;
    }
    .nav .nav__logo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nav__menu {
    text-decoration: none;
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    padding: 10rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav__item {
    text-decoration: none;
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: #083f82e3;
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  font-size: 17px;
  text-decoration: none;
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  text-decoration: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #083f82a6;
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span { 
  color: #083f82e3;
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 2.7rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 4.5rem;
  }
}
.slider{
    height: 100vh;
    
    position: relative;

}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;

}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.slider .list .item::after{
    content:'' ;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #100f0f9f 0.5%, transparent 
    );
}

.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 35%;
    width: 600px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content h3{
    font-size: 50px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}

@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;

    }
}

.slider .list .item.active h3{
    color: #eee;
    transform: translateY(30px);
    filter:L blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
} 
/*button arrows*/
.arrows{
    position: absolute;
    top: 25%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;

    
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 150px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;

}
.thumbnail .item{
    width: 150px;
    height: 100px;
    filter: brightness(.5);
    transition: .5s;

}
.thumbnail .item img{
    opacity: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 678px) {
    
    
    .header{
      height: 68px;  
    }
    .thumbnail{
        justify-content: start;
    }
    .slider{
        height: 500px;
    }
    .slider .list .item .content h3{
        left:5%;
        top: 50%;
        font-size: 30px;
    }
    .arrows{
        top: 20%;
    }
}

.cards{
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap {
    width: 200px;
    margin: 2rem;
    transform-style: preserve-3d;
    transform: perspective(100rem);
    cursor: pointer;
}
.item1 {
    --rX: 0deg;
    --rY: 0deg;
    --bX: 50%;
    --bY: 80%;
    width: 100%;
    background-color: #e3d9d98d;
    border-radius: 20px;
    transform: rotateX(var(--rX)) rotateY(var(--rY));
    transition: 0.2s;
    padding: 20px;
    box-shadow: 0 30px 20px #5555;
}
.item1 img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 20px #5559;
    z-index: -1;
}
h2{
    padding-top: 30px;
    text-align: center;
}

.content{
    width: 500px;
    margin-left: 150px;
    padding-left: 50px;
    margin-top: 20px;
    color: #083f8294;
    font-weight: 500;
}
.content h2{
    font-size: 35px;
    color: #083E82;
}
.content img{
    left: 48.5%;
    position: absolute;
    width: 600px;
    height: 300px;
    
    
}
.content p{
    color: #083f82c6;
    font-size: 20px;
    margin-top: 10px;
}
@media screen and (max-width: 678px){
    .item .content h3{
      margin-left: 0px;
    }
    .content{
      padding-left: 0;
      width: 300px;
      margin-left: 20px;
    }
    .content h2{
    text-align: center;
}
    .content img{
        top: 85%;
        left: 30px;
        width: 330px;
        margin-left:20px;
        position: absolute;
        
        
    }
    .content p{
        font-size: 10px;
        max-width: 300px;
        
    }

}

.vision{
    font-size: 20px;
    color: white;
}
.slider{
    height: 100vh;
    
    position: relative;

}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;

}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.slider .list .item::after{
    content:'' ;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #100f0f9f 0.5%, transparent 
    );
}

.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 35%;
    width: 600px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content h3{
    font-size: 50px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}

@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;

    }
}

.slider .list .item.active h3{
    color: #eee;
    transform: translateY(30px);
    filter:L blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
} 
/*button arrows*/
.arrows{
    position: absolute;
    top: 20%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;

    
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    visibility: hidden;
    bottom: 150px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;

}
.thumbnail .item{
    width: 150px;
    height: 100px;
    filter: brightness(.5);
    transition: .5s;

}
.thumbnail .item img{
    opacity: 0%;
    width: 0%;
    height: 0%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider{
        height: 500px;
    }
    .slider .list .item .content h3{
        top: 50%;
        font-size: 30px;
    }
    .arrows{
        top: 10%;
    }
}


.footer{
    background-color: #083E82;
    color: #eee;
    font-size: 18px;
    font-weight: 450;
    object-fit: cover;
    height: 350px;
    display: flex;
    padding-top: 20px;
}
.useful h4{
    color: #eee;
}
.links{
  margin-top: 15px;
    color: #eee;
    list-style: none;
    gap: 100px;
    font-size: 20px;
    font-weight: 450;
    
}
.links li a{
  gap: 20px;
  color: white;
    text-decoration: none;
}
.links li a:hover{
    color: #959191;
}
.contacts h4{
    color: #eee;
}
.contacts i{
    color: #eee;
}
.contacts{
    padding-left: 200px;
}
.social{
    padding-top: 25px;
    gap: 10px;
}
.social1{
    padding-left: 10px;
    gap: 20px;

}

.location{
    padding-left: 200px;
    color: #eee;
}
.copyright{
    height: 30px;
    color: #eee;
    background-color: #083E82;
    font-weight: 600;
    text-align: center;
}
@media screen and (max-width: 678px){
  .useful{
    display: flex;
    height: 200px;

  }


}


  

/*slider2*/
.slideshow-container {
    max-width: 80%;
    position: relative;
    margin: auto;
  }
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .active, .dot:hover {
    background-color: #717171;
  }
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 2.5s;
  }
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  .dot{
   height: 10px;
    width: 10px;
  }
}
  @media only screen and (max-width: 500px) {
    .prev, .next,.text {font-size: 14px}
  }

  @media screen and (max-width: 678px){
    .vision{
      padding-top: 30px;
  
    }
  
  
  }

  .footer{
    color: white;
    font-size: 18px;
    font-weight: 450;
    object-fit: cover;
    height: 350px;
    display: flex;
    padding-top: 20px;
}
.useful h4{
    color: white;
}
.links{
    color: #083f82ce;
    list-style: none;
    gap: 100px;
    font-size: 20px;
    font-weight: 450;
    
}
.links li a{
    text-decoration: none;
}
.links li a:hover{
    color: #beb1b1;
}
.contacts h4{
    color: white;
}
.contacts i{
    color: white;
}
.contacts{
    padding-left: 200px;
}
.social{
    padding-top: 25px;
    gap: 10px;
}
.social1{
    padding-left: 10px;
    gap: 20px;

}

.location{
    padding-left: 200px;
    color: white;
}
.copyright{
    height: 30px;
    color: #eee;
    background-color: #083E82;
    font-weight: 600;
    text-align: center;
}


.footer-5-column {
  background-color: #083E82;
  padding-top: 3rem;
  margin-top: 2rem;
}
.footer-5-column p {
  color: white;
}
.footer-5-column .footer-container {
  max-width: 1320px;
  width: 100%;
  margin-right: auto;
  margin-left: 196px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
.footer-5-column .footer-container .footer-navbar-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
 
  margin-right: auto;
  margin-left: auto;
}

.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details {
  width: 35%;
  max-width: 100%;
  flex: 0 0 auto;
  padding-right: 2rem;
  line-height: 1.428;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  {
      color: #eee;
  width: 250px;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-logo
  img {
  max-width: 100%;
  height: auto;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-logo
  svg {
  width: 100%;
  height: auto;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-content {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.8;
  padding-right: 1rem;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons {
  margin-top: 1.5rem;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons
  ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons
  ul
  li {
      color: white;
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-right: 14px;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons
  ul
  li
  a {
  width: 30px;
  padding: 6px;
}
.footer-5-column .footer-navbar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  flex-grow: 1;
  line-height: 1.428;
}

.footer-5-column .footer-navbar > .footer-navbar-col {
  width: 25%;
  flex: 0 0 auto;
}
.footer-5-column .footer-navbar .footer-navbar-col h5 {
  margin-bottom: 1.5rem;
  color: #eee;
  overflow-wrap: break-word;
  padding: 0 0.5rem 0 0;
}
.footer-5-column .footer-navbar .footer-navbar-col ul {
  color: #eee;
  padding: 0 0.5rem 0 0;
  margin: 0;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li {
  list-style: none;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li a {
  font-size: 16px;
  text-decoration: none;
  color: white;
  overflow-wrap: break-word;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li a:hover {
  color: #777777;
}

.footer-5-column .footer-copyright {
  padding: 2rem 0;
  border-top: 1px solid rgb(219, 215, 215);
}
.footer-5-column .footer-copyright p {
  font-size: 14px;
  margin-bottom: 0;
}

@media all and (max-width: 1140px) {
  .footer-5-column .footer-container .footer-navbar-container,
  .footer-5-column .footer-navbar {
    row-gap: 3rem;
  }
  .footer-5-column
    .footer-container
    .footer-navbar-container
    .footer-company-details,
  .footer-5-column .footer-container .footer-navbar-container .footer-navbar {
    padding: 0;
    width: 100%;
  }
  .footer-5-column .footer-container {
  margin-right: auto;
  margin-left: 0px;
  
}
}

@media all and (max-width: 992px) {
  .footer-5-column .footer-navbar .footer-navbar-col {
    width: 50%;
  }
  .footer-5-column .footer-container {
  max-width: 1320px;
  width: 100%;
  margin-right: auto;
  margin-left: 10px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
}
@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
.logos {
    overflow: hidden;
    padding-top: 0px;
    background: white;
    white-space: nowrap;
    position: relative;
  }
  
.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    content: "";
    z-index: 2;
}
  
 .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
  
 .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
 }
  
 .logos:hover .logos-slide {
    animation-play-state: paused;
}
  
 .logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}
  
.logos-slide img {
    height: 50px;
    margin: 0 40px;
     
}


.clients p{
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: #083E82;
}


.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp-icon {
  margin-top: 16px;
}

/* for mobile */
@media screen and (max-width: 767px){
  .whatsapp-icon {
    margin-top: 10px;
  }
  .whatsapp_float {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    font-size: 22px;
  }
}


section{
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 65vh;
    
}
section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    

}
.form{
    position: relative;
    
    min-width: 1100px;
    min-height: 550px;
    display: flex;
    z-index: 1;


}
.form .info-container{
    position: absolute;
    top: 40px;
    width: 350px;
    height:400px;  
    background-color: #083E82;
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.form .info-container h2{
    color: #fff;
    font-size: 24px;
    font-weight: 500;

}
.form .info-container ul.info{
    position: relative;
    margin: 20px 0;
}
.form .info-container ul.info li{
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;

}
.form .info-container ul.info li span:nth-child(1){
    width: 30px;
    min-width: 30px;
}
.form .info-container ul.info li span:nth-child(1) img{
    max-width: 100%;
    filter: invert(1);

}
.form .info-container ul.info li span:nth-child(2){
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
}
.form .info-container ul.sci{
    padding-left: 70px;
    position: relative;
    display: flex;
}
.form .info-container ul.sci li{
    list-style: none;
    margin-right: 15px;

}
.form .info-container ul.sci li a{
    text-decoration: none;
}
.form .info-container ul.sci li a img{
    filter: invert(1);
}

.form .form-container h2 {
    color: #083E82;
    font-size: 24px;
    font-weight: 500;
}

.form .form-container{
    position: absolute;
    padding: 70px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.15);
}

.form .form-container h2{
    color: #083E82;
    font-size: 24px;
    font-weight: 500;
}
.form .form-container .formBox{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}
.form .form-container .formBox .inputBox{
    position: relative;
    margin-bottom: 35px;

}
.form .form-container .formBox .inputBox.w50{
    width: 47%;
}
.form .form-container .formBox .inputBox.w100{
    width: 100%;
}
.form .form-container .formBox .inputBox input,
.form .form-container .formBox .inputBox textarea{
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #083E82;
}
.form .form-container .formBox .inputBox textarea{
    height: 120px;
}
.form .form-container .formBox .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: 0.3s;


}
.form .form-container .formBox .inputBox input:focus ~ span,
.form .form-container .formBox .inputBox input:valid ~ span,
.form .form-container .formBox .inputBox textarea:focus ~ span,
.form .form-container .formBox .inputBox textarea:valid ~ span{
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #083E82;
    font-weight: 500;

}
.form .form-container .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #083E82;
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 12px;
}
.form .form-container .formBox .inputBox input[type="submit"]:hover {
    background-color: #083E82;
}

@media (max-width : 1200px){
    .form{
        width: 90%;
        min-width: auto;
        margin: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
    .info-container{
        top: 0;
        height: 500px;
        position: relative;
        box-shadow: none;
    }

    .form .info-container{
        top: 0;
        height: 500px;
        position: relative;
        box-shadow: none;
    }
    .form .form-container{
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0px;
        margin-left: 0px;
        padding: 40px;
        height: 550px;
        box-shadow: none;



    }
}

@media (max-width: 991px)
{
    section
    {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: #083E82;
    }

    section::before
    {
        display: none;
    }

    .form
    {
        display: flex;
        flex-direction: column-reverse;
    }

    .form .form-container
    {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }

    .form .info-container
    {
        width: 100%;
        height: auto;
        flex-direction: row;
        border-radius: 0px;
    }
    .form .info-container ul.sci
    {
       position: relative;
       display: flex;
       justify-content: center;
       align-items: center;
    }
}

@media (max-width: 600px)
{
    .form .form-container
    {
        padding: 25px;
    }

    .form .info-container{
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .form .info-container ul.sci
    {
        margin-top: 40px;
    }

    .form .info-container .formBox .inputBox.w50
    {
        width: 100%;
    }
}

.counter-wrapper{
  background: #083f82;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.5rem;
  padding: 2rem 9%;
  margin-top: 2rem;
  position: relative;
}
.counter-wrapper::before{
  position: absolute;
  content: '';
  content: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #083f82;
  z-index: 1;
}
.counter{
 text-align: center;   
 color: #ddd;
 z-index: 2;
 position: relative;
}
.counter-wrapper .counter h1{
  font-size: 90px;
}
.counter::before{
  position: absolute;
  content: '';
  bottom: -1rem;
  left: 50%;
  width: 20%;
  height: .2rem;
  background: #eee;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.counter .count{
  font-size: 5rem;
  margin-bottom: 1rem;    
}
.counter p{
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}







@media (max-width: 991px) {
  html{
      font-size: 55%;
  }
}
@media (max-width: 768px) {
 .counter-wrapper{
     grid-template-columns: repeat(2, 1fr);
     grid-row-gap: 8rem;
 }
 .counter-wrapper .counter h1{
      font-size: 45px;
  }
}
@media (max-width: 450px) {
  html{
      font-size: 50%;
  }
  .counter-wrapper .counter h1{
      font-size: 35px;
  }
  .counter-wrapper{
      grid-template-columns: 1fr;
  }
}



section{
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 65vh;
    
}
section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    

}
.form{
    position: relative;
    
    min-width: 1100px;
    min-height: 550px;
    display: flex;
    z-index: 1;


}
.form .info-container{
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(80% - 80px);
    background-color: #083E82;
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.form .info-container h2{
    color: #fff;
    font-size: 24px;
    font-weight: 500;

}
.form .info-container ul.info{
    position: relative;
    margin: 20px 0;
}
.form .info-container ul.info li{
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;

}
.form .info-container ul.info li span:nth-child(1){
    width: 30px;
    min-width: 30px;
}
.form .info-container ul.info li span:nth-child(1) img{
    max-width: 100%;
    filter: invert(1);

}
.form .info-container ul.info li span:nth-child(2){
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
}
.form .info-container ul.sci{
    padding-left: 70px;
    position: relative;
    display: flex;
}
.form .info-container ul.sci li{
    list-style: none;
    margin-right: 15px;

}
.form .info-container ul.sci li a{
    text-decoration: none;
}
.form .info-container ul.sci li a img{
    filter: invert(1);
}



.form .form-container{
    position: absolute;
    padding: 70px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.15);
}

.form .form-container h2{
    color: #083E82;
    font-size: 24px;
    font-weight: 500;
}
.form .form-container .formBox{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}
.form .form-container .formBox .inputBox{
    position: relative;
    margin-bottom: 35px;

}
.form .form-container .formBox .inputBox.w50{
    width: 47%;
}
.form .form-container .formBox .inputBox.w100{
    width: 100%;
}
.form .form-container .formBox .inputBox input,
.form .form-container .formBox .inputBox textarea{
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #083E82;
}
.form .form-container .formBox .inputBox textarea{
    height: 120px;
}
.form .form-container .formBox .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: 0.3s;


}
.form .form-container .formBox .inputBox input:focus ~ span,
.form .form-container .formBox .inputBox input:valid ~ span,
.form .form-container .formBox .inputBox textarea:focus ~ span,
.form .form-container .formBox .inputBox textarea:valid ~ span{
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #083E82;
    font-weight: 500;

}
.form .form-container .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #083E82;
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 12px;
}
.form .form-container .formBox .inputBox input[type="submit"]:hover {
    background-color: #083E82;
}

@media (max-width : 1200px){
    .form{
        width: 90%;
        min-width: auto;
        margin: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
    .info-container{
        top: 0;
        height: 500px;
        position: relative;
        box-shadow: none;
    }

    .form .info-container{
        top: 0;
        height: 500px;
        position: relative;
        box-shadow: none;
    }
    .form .form-container{
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0px;
        margin-left: 0px;
        padding: 40px;
        height: 550px;
        box-shadow: none;



    }
}

@media (max-width: 991px)
{
    section
    {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: #083E82;
    }

    section::before
    {
        display: none;
    }

    .form
    {
        display: flex;
        flex-direction: column-reverse;
    }

    .form .form-container
    {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }

    .form .info-container
    {
        width: 100%;
        height: auto;
        flex-direction: row;
        border-radius: 0px;
    }
    .form .info-container ul.sci
    {
       position: relative;
       display: flex;
       justify-content: center;
       align-items: center;
    }
}

@media (max-width: 600px)
{
    .form .form-container
    {
        padding: 25px;
    }

    .form .info-container{
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .form .info-container ul.sci
    {
        margin-top: 40px;
    }

    .form .info-container .formBox .inputBox.w50
    {
        width: 100%;
    }
}



  .logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  
  .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  
  .logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
  }
  
  .logos-slide img {
    height: 50px;
    margin: 0 40px;
  }
  .logos h2{
    color: #083E82;
  }



.counter-wrapper{
  background: #083f82;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.5rem;
  padding: 2rem 9%;
  margin-top: 2rem;
  position: relative;
}
.counter-wrapper::before{
  position: absolute;
  content: '';
  content: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #083f82;
  z-index: 1;
}
.counter{
 text-align: center;   
 color: #ddd;
 z-index: 2;
 position: relative;
}
.counter-wrapper .counter h1{
  font-size: 90px;
}
.counter::before{
  position: absolute;
  content: '';
  bottom: -1rem;
  left: 50%;
  width: 20%;
  height: .2rem;
  background: #eee;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.counter .count{
  font-size: 5rem;
  margin-bottom: 1rem;    
}
.counter p{
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}











.counter-wrapper{
  background: #083f82;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.5rem;
  padding: 2rem 9%;
  margin-top: 2rem;
  position: relative;
}
.counter-wrapper::before{
  position: absolute;
  content: '';
  content: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #083f82;
  z-index: 1;
}
.counter{
 text-align: center;   
 color: #ddd;
 z-index: 2;
 position: relative;
}
.counter-wrapper .counter h1{
  font-size: 90px;
}
.counter::before{
  position: absolute;
  content: '';
  bottom: -1rem;
  left: 50%;
  width: 20%;
  height: .2rem;
  background: #eee;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.counter .count{
  font-size: 5rem;
  margin-bottom: 1rem;    
}
.counter p{
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.intro{
    background-color: #f4f2f2;
    margin-top: 30px;
}



.container2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 5px auto;
    gap: 2rem;

}
.intro_content{
  
 
    flex: 1;
    width: 600px;
    margin: 0px 25px;
     
}
.intro_content .heading p{
  color: #0093DD;
  padding-left: 0px;
  padding-bottom: 0px;
    font-family: monospace;
    font-size: 35px;
    font-weight: 600;
}

@media (max-width: 991px) {
  html{
      font-size: 55%;
  }
}
@media (max-width: 768px) {
 .counter-wrapper{
     grid-template-columns: repeat(2, 1fr);
     grid-row-gap: 8rem;
 }
 .counter-wrapper .counter h1{
      font-size: 45px;
  }
}
@media (max-width: 450px) {
  html{
      font-size: 50%;
  }
  .counter h1{
      font-size: 45px;
  }
  .counter-wrapper{
      grid-template-columns: 1fr;
  }
}


.intro_content p{
    color: #083f82c6;
    text-align: justify;
    margin-bottom: 30px;
    font-size: 20px;
    font-family: sans-serif;
}
.intro_content button{
    display: inline-block;
    background-color: #000957;
    color: #0093DD;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: ease;

}
.intro_content button:hover{
    background-color: #000957;
    transform: scale(1.05);
    color: #eee;
}
.intro_img{
    flex: 1;
    padding-top: 30px;
    width: 600px;
    margin: auto;

}
.intro_img img{
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px
     
}
@media screen and  (max-width: 768px){
  .intro{
    margin: 0px;
  }
  .container2{
    flex-direction: column;
    width: 100%;
    margin: 0px;
    padding: 0px 40px;

}
.intro_content{
  width: 300px;
  margin: 0px 15px;
   
}
.intro_content .heading p{
  color: #083E82;
  padding-left: 0px;
  padding-bottom: 0px;
  font-family: sans-serif;
  font-size: 25px;
  font-weight: 600;
}
.intro_content{
  width: 100%;
  margin: 35px 0px;
  margin-bottom: 0px;
}
.intro_content p{
  text-align: left;
  font-size: 15px;
  margin-bottom: 20px;
}
.intro_content button{
  font-size: 15px;
  padding: 7px 15px;

}
.intro_img{
  width: 100%;
  margin-top: 0px;
  padding-top: 0px;
}
}









