@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Titan+One&display=swap");
:root{
  --first-color:#bc1820; /*009B4D,A0006D,DD2E18,E85C0D*/
  --second-color:#fff;
  --first-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
*{
    font-family: "Poppins", sans-serif;
    margin:0;
    padding: 0;
}
a{
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
.error-message {
  color: red;
  font-size: 0.8em;
  margin-top: 4px;
  display: block;
}

.form-input.error {
  border-color: red;
}
.chatbot-toggler {
  position: fixed;
  bottom: 30px;
  right: 35px;
  font-size: 22px;
  height: 50px;
  width: 50px;
  outline: none;
  padding: 10px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: #2580d3;
  transition: all 0.2s ease;
  z-index: 100;
  border: none;
  box-shadow: 0 0 30px 5px #2580d3;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
}
.chatbot-toggler a{
  text-decoration: none;
  color: #fff;
}
.call-toggler {
  position: fixed;
  bottom: 90px;
  right: 35px;
  font-size: 32px;
  height: 50px;
  width: 50px;
  outline: none;
  padding: 5px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: #25D366;
  transition: all 0.2s ease;
  z-index: 100;
  border: none;
  box-shadow: 0 0 30px 5px #25D366;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
}
.call-toggler a{
  text-decoration: none;
  color: #fff;
}
@media(max-width:460px){
  .chatbot-toggler {
    right: 15px;
  }
  .call-toggler {
    right: 15px;
  }
}
.header{
  max-width: 1600px;
  width: 100%;
}
.header .top-bar{
  color: white;
  width: 100%;
  height: 54px;
  background: var(--first-color);
  display: flex;
  justify-content: center; 
  align-items: center;
}
.header .top-bar .left{
  width: 60%;
}
.header .top-bar .left i{
  padding: 4px;
  color: #fff;
  border-radius: 5px;
  background: #25D366;
  opacity: 1;
}
.header .top-bar .right i{
  padding: 5px;
}
.header .top-bar .right span{
  margin-top: 5px;
}
.header .gap{
  margin:0 5px 0 5px
}
@media(max-width:800px){
  .header .top-bar .right{
    display: none;
  }
  .header .top-bar .left .phone{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
nav{
    position: sticky;
    top:0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--second-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  .navbar ul a.active{
    border-bottom: 5px solid #1c2b57;
    
}
  nav .navbar{
    display: flex;
    justify-content: space-between; /* Distribute items along the main axis */
    align-items: center;
    padding: 0 5%;
  }
  .navbar .logo img{
    height:90px;
  }
  nav .navbar .nav-links{
    line-height: 70px;
    height: 100%;
  }
  nav .navbar .links{
    display: flex;
    gap: 25px;
  }
  nav .navbar .links li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 15px;
  }
  nav .navbar .links li a{
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #444444;
    font-size: 17px;
    font-weight: 600;
    margin-top: 5px;
  }
  .links li:hover .js-arrow,
  .links li:hover .home-arrow,
  .links li:hover .our-team-arrow,
  .links li:hover .study-arrow{
    transform: rotate(180deg);
    }
  
  nav .navbar .links li .arrow{
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #444444;
    transition: all 0.3s ease;
  }
  nav .navbar .links .fa-angle-right{
    line-height: 50px!important;
  }
  nav .navbar .links li .sub-menu{
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: var(--second-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
  }
  nav .navbar .links li:hover .js-sub-menu,
  nav .navbar .links li:hover .study-sub-menu{
    display: block;
  }
  .navbar .links li .sub-menu li{
    padding: 0 22px;
    border-left: 3px solid #e2e2e2;
  }
  
  .navbar .links li .sub-menu a{
    color: #444;
    font-size: 15px;
    font-weight: 600;
  }
  .navbar .links li .sub-menu li:hover {
    border-left-color: var(--first-color);
    background-color: #f1f1f1;
}
  .navbar .search-box{
    position: relative;
     height: 40px;
    width: 40px;
    margin-left: 10%;
    display: none;
  }
  .navbar .search-box i{
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 32px;
    color: #444444;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .navbar .search-box .input-box{
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    background: #1C2B57;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .navbar.showInput .search-box .input-box{
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #1C2B57;
  }
  .search-box .input-box::before{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #1C2B57;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
  }
  .search-box .input-box li{
    border-radius: 4px;
    color: var(--second-color);
    text-align: center;
    width: 200px;
    list-style: none;
    outline: none;
    padding: 15px;
    font-size: 16px;
    border: none;
  }
  .search-box .input-box li:hover{
    cursor: pointer;
  }
  .navbar .nav-links .sidebar-logo{
    display: none;
  }
  .navbar .fa-bars{
    display: none;
  }
  .down-btn-design{
    background-color: #1c2b57;
    color: var(--second-color);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}
  
@media (max-width:1150px){
    nav .navbar .logo{
        margin: 10px auto;
        align-items: center;
    }
    .navbar ul a.active{
        border-bottom: none;
    }
    .navbar .fa-bars{
      display: block;
    }
    nav .navbar .nav-links{
      position: fixed;
      top: 0;
      left: -100%;
      display: block;
      max-width: 420px;
      background:  var(--second-color);
      line-height: 40px;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.5s ease;
      z-index: 1000;
    }
    .navbar .nav-links .sidebar-logo{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .sidebar-logo .logo-name img{
      height: 80px;
    }
      .sidebar-logo  i,
      .navbar .fa-bars{
        font-size: 25px;
        color: #444;
      }
    nav .navbar .links{
      display: block;
      margin-top: 20px;
    }
    nav .navbar .links li .arrow{
      line-height: 40px;
    }
  nav .navbar .links li{
      display: block;
    }
  nav .navbar .links li .sub-menu{
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li{
    border-bottom: none;
  
  }
  .links li:hover .js-arrow,
  .links li:hover .study-arrow{
    transform: rotate(0deg);
    }
    nav .navbar .links li:hover .js-sub-menu,
    nav .navbar .links li:hover .study-sub-menu{
      display: none;
    }
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show4 .links .study-sub-menu{
        display: block;
    }
    .navbar .nav-links.show3 .links .js-arrow,
    .navbar .nav-links.show4 .links .study-arrow{
        transform: rotate(180deg);
    }
}
@media (max-width:400px){
    nav .navbar .nav-links{
        max-width: 100%;
    } 
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
    width: .6rem;
    background-color: #ffa5a5;
}
::-webkit-scrollbar-thumb{
    background-color: var(--first-color);
}
::-webkit-scrollbar-thumb:hover{
    background-color: var(--first-color); 
}  


/*=============== Hero Section ===============*/
.hero-section{
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.hero-section img{
  width: 100%;
  height: 100%;
  height: 550px;
  object-fit: cover;
}
.hero-section .overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171717;
  opacity: 0.5;
}
.hero-section .hero-in{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 5%;
  color: white;
  font-size: 28px; 
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}
.hero-section .hero-in h1{
    font-size: 42px;
}
.hero-section .hero-in p{
    /* margin: 10px 0; */
    font-size: 18px;
}
.hero-section .hero-in .btns{
    margin-top: 40px;
}
.hero-section .hero-in .btns a{
    text-decoration: none;
    border: 1px solid var(--first-color);
    color: var(--second-color);
    background-color: var(--first-color);
    padding: 10px;
    margin: 10px;
    font-size: 17px;
    border-radius: 4px;
}
.hero-section .hero-in .btns .explore-btn{
    background-color: var(--first-color);
    color: var(--second-color);
}
.hero-section .hero-in .btns .explore-btn:hover{
    background-color: var(--second-color);
    color: var(--first-color);
}
/* .hero-section .hero-in .btns  .contact-btn:hover{
    background-color: var(--first-color);
    color: var(--second-color);
} */
@media(max-width:760px){
  .hero-section{
    height: 500px;
  }
}
@media(max-width:432px){
  .hero-section .hero-in h1 {
    font-size: 36px;
  }
  .hero-section .hero-in p {
    font-size: 16px;
  }
  .hero-section .hero-in .btns{
    display: flex;
    flex-direction: column;
  }
}
@media(max-width:432px){
  .hero-section .hero-in h1 {
    font-size: 32px;
  }
}
/*===========contact popup*/
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.popup-container h2{
  font-size: 32px;
}
.popup-container h2 span{
  color: red;
}
/* Popup Content */
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Form Group Styling */
.form-group {
  text-align: left;
}

/* Form Input Styling */
.form-input {
  width: 95%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form-input.error {
  border-color: red;
}

.form-input.success {
  border-color: green;
}
/* Form Submit Button */
.form-submit-btn {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background-color: var(--first-color);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.form-submit-btn:hover {
  background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 600px) {
  .popup-content {
      padding: 15px;
  }
}
@media(max-width:460px){
  .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    position: relative;
    text-align: center;
  }
  .popup-container h2{
    font-size: 26px;
  }
  .form-group {
    margin-top: 0px;

  }
}




/*=============== query-section ===============*/
.query-section{
  background-color: var(--first-color);
  padding: 40px;
}
.query-section .query-in{
  display: flex;
  gap: 20px;
  padding: 1% 5%;
}
.query-section .query-in .query-left{
  color: var(--second-color);
  width: 50%;
  margin-top: 5%;
}
.query-section .query-in .query-left ol{
  margin: 10px 0 0 30px;
  counter-reset: item 0;
  list-style: none;
}
.query-section .query-in .query-left li{
  margin-top: 20px;
  counter-increment: item;
  margin-bottom: 5px;
}
.query-section .query-in .query-left ol li:before {
  margin-right: 10px;
  padding: 3px;
  content: counter(item);
  background: red;
  border-radius: 50%;
  color: white;
  width: 1.2em;
  text-align: center;
  display: inline-block;
}
.query-section .query-in .query-left ol p{
  margin-left: 35px;
}
.query-section .query-right{
  margin: 0 auto;
}
.query-section .query-right .query-box{
  border: 1px solid var(--second-color);
  background-color: var(--second-color);
  padding: 5% 10%;
  width: 400px;
  border-radius: 4px;
}
.query-section .query-right .query-box .query-label{
  display: flex;
  flex-direction: column;
  
}
input:focus, textarea:focus{
  outline: none;
}
.query-section .query-right .query-label input{
  height: 35px;
  border-radius: 4px;
  border: 1px solid;
  border-color: #d2d2d2;
  padding-left: 5px;
}
.query-section .query-right textarea{
  border: 1px solid;
  border-color: #d2d2d2;
  height: 70px;
}
.query-section .query-right .query-box input[type="submit"]{
  border: none;
  background-color: var(--first-color);
  color: var(--second-color);
  padding: 5px 20px;
  border-radius: 30px;
  margin-top: 10px;
  cursor: pointer;
}

@media(max-width:992px){
  .query-section .query-right .query-box {
    width: 350px;
  }
}
@media(max-width:880px){
  .query-section {
    padding: 0px;
  }
  .query-section .query-in .query-left {
    width: 100%;
    margin-left: 5%;
  }
  .query-section .query-in{
    flex-direction: column;
  }
  .query-section .query-right {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    width: 100%;
  }
  .query-section .query-in {
    gap: 30px;
    padding: 1% 5% 5% 5%;
  }
}
@media(max-width:600px){
  .query-section .query-right .query-box {
    width: 380px;
  }
}
@media(max-width:460px){
  .query-section .query-right .query-box {
    width: 300px;
  }
}
@media(max-width:432px){
  .query-section .query-in .query-left h1{
    font-size: 28px;
  }
  .query-section .query-in .query-left ol {
    margin: 10px 0 0 0px;
  }
}
@media(max-width:432px){
  .query-section .query-in .query-left h1{
    font-size: 24px;
  }
  .query-section .query-right .query-box {
    width: 240px;
  }
}




/*========== Company logos slider==============*/

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.partner-logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid #000;
}
.partner-logos h1{
  font-size: 21px;
  width: 100%; 
  text-align: center; 
  border-bottom: 1px solid #000; 
  line-height: 0.1em;
  margin: 10px 0 20px; 
}
.partner-logos h1 span{
  background:#fff; 
  padding:0 10px; 
}

.partner-logos:before, .partner-logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.partner-logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.partner-logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 5s slides infinite linear;
}

.partner-logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img{
  height: 50px;
  margin-right: 10px;
}
@media(max-width:460px){
  .partner-logos h1 {
    font-size: 14px;
  }
  .partner-logos:before {
    background: none;
  }
  
  .partner-logos:after {
    background: none;
  }
}
@media(max-width:360px){
  .partner-logos h1 {
    font-size: 12px;
  }
  .logo_items img {
    height: 70px;
  }
}
/*========= home about ==========*/
.home-about{
  padding: 40px;
}
.home-about .home-about-in{
  padding: 1% 5%;
  text-align: center;
}
.home-about .div-split{
  display: flex;
  margin-top: 30px;
}
.home-about .div-split img{
  max-width: 400px;
  border-radius: 4px;
}
.home-about .about-left{
  width: 50%;
}
.home-about .about-right{
  text-align: left;
  width: 50%;
}
.home-about .about-right h1{
  font-size: 23px;
  color: var(--first-color);
}
.home-about .about-right .first-p{
  color: rgb(253, 99, 124);
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}
.home-about .about-right .last-p{
  margin-top: 10px;
}
@media(max-width:880px){
  .home-about .home-about-in {
    text-align: left;
  }
  .home-about .div-split{
    flex-direction: column;
  }
  .home-about .about-left {
    width: 100%;
    text-align: center;
  }
  .home-about .about-left img{
    max-width: 440px;
  }
  .home-about .about-right {
    width: 100%;
  }
}
@media(max-width:880px){
  .home-about .about-left img{
    max-width: 350px;
  }
}
@media(max-width:432px){
  .home-about .home-about-in h1{
    font-size: 28px;
    text-align: center;
  }
  .home-about .about-right h1 {
    font-size: 23px;
  }
  .home-about .about-left img{
    max-width: 320px;
  }
}
@media(max-width:392px){
  .home-about .about-right h1 {
    font-size: 21px;
  }
  .home-about .about-left img{
    max-width: 300px;
  }
}
@media(max-width:360px){
  .home-about .home-about-in h1{
    font-size: 24px;
  }
  .home-about .about-left img{
    max-width: 270px;
  }
}


/* training-pacement home  */
.taining-home .training-title{
  text-align: center;
  padding-top: 20px;
}
.taining-home .box-container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.taining-home .box {
  padding: 10px 30px;
  box-shadow: var(--first-shadow);
  border: 1px solid var(--first-color);
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  border-radius: 4px;
}
.taining-home .box:hover {
  background-color: var(--first-color);
  color: var(--second-color);
}
.taining-home .box i{
  font-size: 18px;
}
.taining-home .content h1{
  font-size: 23px;
}
.taining-home .content p{
  margin-bottom: 15px;
}
.taining-home .box.active {
  border-bottom: 4px solid var(--first-color);
  position: relative;

}
.taining-home .box.active::after {
  content: '';
  position: absolute;
  top: 98%;
  right: 53px;
  transform: translateY(0%);
  rotate: 90deg;
  border: 16px solid transparent;
  border-left: 8px solid var(--first-color);
}
.taining-home .content {
  display: none;
  margin: 2% 5%;
  padding: 20px;
}
.taining-home .content a{
  background-color: var(--first-color);
  color: var(--second-color);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
}

.taining-home .content.active {
  display: block;
}
@media(max-width:540px){
  .taining-home .box {
    padding: 10px;
  }
  .taining-home .box.active::after {
    right: 33px;
  }
}
@media(max-width:440px){
  .taining-home .content h1{
    font-size: 21px;
  }
  .taining-home .box {
    padding: 15px;
    font-size: 13px;
  }
}
@media (max-width: 432px) {
  .taining-home .training-title{
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .taining-home .training-title{
    font-size: 24px;
  }
}

.wrapper-title{
  background-color: var(--first-color);
}
.wrapper-title h1{
  color: var(--second-color);
  text-align: center;
  padding-top: 20px;
}
.wrapper-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 0 35px;
}
.wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;

}

.wrapper .course-left {
  height: 50px;
  width: 50px;
  background: var(--first-color);
  color: var(--second-color);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 1.25 rem;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);

}

.wrapper .course-left:first-child {
  left: -22px;

}

.wrapper .course-left:last-child {
  right: -22px;

}
.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel :where(.card, .img) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel .card {
  scroll-snap-align: start;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  display: flex;
  cursor: pointer;
  width: 90%;
  padding: 15px;
  justify-content: center;
  flex-direction: column;
}

.card .img {
  width: 100%;
  height: 100%;
}

.card .img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.card h2 {
  font-weight: 600;
  margin: 30px 0 5px;
  font-size: 21px;
  text-align: center;
  color: #444;
}

.card span {
  color: #6a6d78;

}
.wrapper .fa-arrow-up-right-from-square{
  text-align: left;
  color: var(--second-color);
  background-color: var(--first-color);
  border: 1px solid var(--second-color);
  padding: 10px;
  border-radius: 50%;
}
.wrapper .fa-arrow-up-right-from-square:hover{
  text-align: left;
  color: var(--first-color);
  background-color: var(--second-color);
  border: 1px solid var(--first-color);
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);

  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
      grid-auto-columns: 100%;

  }
}
@media(max-width:432px){
  .wrapper-title h1{
    font-size: 28px;
  }
}
@media(max-width:360px){
  .wrapper-title h1{
    font-size: 24px;
  }
}


/* why us  */
.choose{
  text-align: center;
  margin-top: 30px;
}
.choose-op {
  display: grid; 
  gap: 20px;
  margin-top: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.choose .choose-us{
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-op .ch-column {
  text-align: center;
  background-color: var(--first-color);
  color: var(--second-color);
  border: 1px solid var(--first-color);
  width: 260px;
  height: 120px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}
.choose-op .ch-column:hover {
  background-color: var(--second-color);
  color: var(--first-color);
  cursor: pointer;
}
.choose-op .ch-column i{
  font-size: 32px;
}
@media (max-width: 1080px) {
  .choose-op {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
  }
  .choose-op .ch-column {
    width: 200px;
  }
}

@media (max-width: 720px) {
  .choose-op {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto auto auto;
  }
}

@media (max-width: 460px) {
  .choose-op {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
  }
  .choose-op .ch-column {
    max-width: 260px;
    width: 100%;
  }
}



/*======FAQ======*/
.home-faq{
  padding: 40px;
  max-width: 1250px;
  margin: 0 auto;
}
.home-faq h1{
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.home-faq-in{
  display: flex;
  gap: 20px;
  padding: 1% 5%;
}
.home-faq .home-faq-in .faq-left img{
  max-width: 400px;
  border-radius: 4px;
}
.faq-content {
  justify-content: space-between;
  margin: 0 auto;
}
.faq-content .faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #444;

}

.faq-content .panel-title {
  color: #444;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 70px;
  display: block;
  cursor: pointer;
}

.faq-content .panel-content {
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.faq-content .panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.faq-content .plus {
  color: var(--first-color);
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.faq-content .panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-content .panel {
  display: none;
}
@media(max-width:880px){
  .home-faq {
    padding: 0px;
  }
  .home-faq-in{
    flex-direction: column;
    margin-left: 5%;
  }
  .home-faq .home-faq-in .faq-left{
    text-align: center;
  }
  .home-faq .home-faq-in .faq-left img {
    max-width: 440px;
  }
  .faq-content {
    margin: 0;
    width: 90%;
  }
}
@media(max-width:600px){
  .faq-content {
    width: 80%;
  }
}
@media(max-width:460px){
  .home-faq .home-faq-in .faq-left img {
    max-width: 350px;
  }
}
@media(max-width:432px){
  .home-faq h1 {
    font-size: 28px;
  }
  .home-faq .home-faq-in .faq-left img {
    max-width: 320px;
  }
}
@media(max-width:392px){
  .home-faq .home-faq-in .faq-left img {
    max-width: 300px;
  }
  .faq-content .panel-content {
    margin: 0 0 0 40px;
  }
}
@media(max-width:360px){
  .home-faq .home-faq-in .faq-left img {
    max-width: 270px;
  }
  .home-faq-in{
    margin-left: 0%;
  }
}

.testi-container{
  position: relative;
  width: 100%;
  min-height: 450px;
}
.testi-container .contents-wraper{
  width: 70%;
  min-height: inherit;
  margin: 30px auto;
  text-align: center;
}
.contents-wraper .header h1{
  position: relative;
  font-weight: 600;
  text-align: center;
  font-size: 2em;
}

.contents-wraper .testRow{
  width: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
}
.testRow .testItem{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testRow .testItem:not(.active){
  top: 0;
  left: -100%;
}
.testRow .testItem img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  outline: 2px solid #006994;
  outline-offset: 2px;
}
.testRow .testItem h3{
  font-style: italic;
  padding: 7px;
}
.testRow .testItem h4{
  font-style: italic;
}
.testRow .testItem p{
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 10px;
}
.contents-wraper .indicators{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  cursor: pointer;
}
.contents-wraper .indicators .dot{
  width: 15px;
  height: 15px;
  margin: 0px 3px;
  border: 3px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}
.contents-wraper .indicators .active{
  background-color: #006994;
}
.rating{
  display: flex;

}
.rating .checked{
  color:orange;
}
@keyframes next1{
  from{
    left: 0%;
  }
  to{
    left: -100%;
  }
}
@keyframes next2{
  from{
    left: 100%;
  }
  to{
    left: 0%;
  }
}

@keyframes prev1{
  from{
    left: 0%;
  }
  to{
    left: 100%;
  }
}
@keyframes prev2{
  from{
    left: -100%;
  }
  to{
    left: 0%;
  }
}
@media(max-width:600px){
  .contents-wraper .indicators {
    bottom: 10px;
  }
}
@media(max-width:432px){
  .contents-wraper .indicators {
    bottom: -10px;
  }
  .contents-wraper .header h1 {
    font-size: 28px;
  }
}
@media(max-width:392px){
  .testRow .testItem p {
    font-size: 15px;
  }
  .contents-wraper .indicators {
    bottom: 0px;
  }
}


/* footer  */

footer-body{
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #1c2b57;
}


footer{
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  background-color: var(--first-color);
  padding: 60px 10%;
  border-bottom: 2px solid var(--second-color);
}



footer ul{
  list-style: none;
}

footer .footer-col{
  width: 25%;
}
footer .footer-col img{
  width: 200px;
}
footer .footer-col h4{
  /* position: relative; */
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 21px;
  color: #ffff;
  font-weight: 600;
  text-transform: capitalize;
}

footer ul li:not(:last-child){
  margin-bottom: 8px;
}

footer ul li a{
  display: block;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}
footer ul li p{
  display: block;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--second-color);
  text-decoration: none;
  transition: 0.4s;
}
footer ul li p .fa-envelope,
footer ul li p .fa-phone{
  margin-right: 15px;
}

footer ul li a:hover{
  padding-left: 2px;
}

footer .links a{
  display: inline-block;
  height: 44px;
  width: 44px;
  color: var(--first-color);
  background-color: #fff;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 44px;
  border-radius: 8px;
  transition: 0.4s;
}

footer .links a:hover{
  color: #4d4f55;
  background-color: white;
}
/* footer .letter{
  margin: 20px 0 20px 0;
} */
footer .letter{
  margin-top: -10px;
}
.footer-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .letter form{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--second-color);
  gap: 5px;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
  background-color: #fff;
}
footer .letter input{
  height: 40px;
  border: 2px solid #d2d2d2;
  border-radius: 8px;    
  background-color: #fff;
  color: #000;
  padding-left: 10px;
}
footer .letter input[type="submit"]{
  height: 40px;
  background-color: #25D366!important;
  color: #fff;
  border: 2px solid;
  border-radius: 8px;
}
.top-footer{
  margin-top: -5%;
}
@media(min-width: 820px) and (max-width: 915px){
  footer{
      padding: 60px 1%;
  }
}
@media(max-width: 820px){
  footer .footer-col{
      width: 50%;
      margin-bottom: 30px;
      text-align: center;
  }

  footer .footer-col h4::before{
      all: unset;
  }
  .exists{
      display: none;
  }
  .top-footer{
      margin-top: 3%;
  }
}

@media(max-width: 555px){
  footer .footer-col{
      width: 100%;
  }
}

.exists{
  visibility: hidden;
}
.complete{
  padding-top: 10px;
  background-color: var(--first-color);
  color: #fff;
  text-align: center;
}



/* contact us  */

.contact-us{
  position: relative;
  margin: 10%;
  z-index: 2;
}
.contact-us .contact-left{
  width: 40%;
  float: left;
}
.contact-us .contact-right{
  overflow: hidden;
}
.contact-us .contact-left .hear{
  font-size: 36px;
  color: var(--first-color);
  font-weight: 900;
  margin-bottom: 2%;
}
.contact-us .contact-left .hear span{
  color: orange;
}
.contact-us .contact-left .title{
  color: var(--first-color);
  font-size: 22px;
  margin-top: 3%;
}
.contact-us .contact-left .address{
  color: var(--first-color);
  font-size: 14px;
  width: 55%;
  margin-top: 2%;
}
.contact-us .contact-left .social i{
  border: 1px solid #e2e2e2;
  padding: 10px;
  color: #fff;
  background-color: #e2e2e2;
  border-radius: 8px;
  margin-left: 5px;
  margin-top: 5%;
}
.contact-us .contact-right form{
  border: 1px solid #e2e2e2;
  padding: 10%;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  
}
.contact-us .contact-right .area input{
  width: 100%;
  height: 45px;
  margin-bottom: 10px;
  padding-left: 3%;
  border:1px solid #e2e2e2;
  color: #737373;
  border-radius: 4px;
}
.contact-us .contact-right .area textarea{
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
  padding: 3%;
  border-color:#e2e2e2;
  color: #737373;
  border-radius: 4px;
}
.contact-us .contact-right .touch{
  font-size: 36px;
  color: var(--first-color);
  font-weight: 900;
  margin-bottom: 6%;
}
.contact-us .contact-right input[type="submit"]{
  padding: 10px;
  background-color: var(--first-color);
  border-radius: 4px;
  border: 1px solid var(--first-color);
  color: #fff;
  font-size: 16px;
}
.map iframe{
  /* margin: -8% 0 0 0; */
  width: 99%;
  height: 500px;
  z-index: 5;
}
@media(max-width:1100px){
  .map iframe{
      margin: -12% 0 0 0;
  }
  .contact-us .contact-right form{
      margin-left: 5%;
      
  }
}
@media(max-width:920px){
  .contact-us .contact-left{
      width: 50%;
  }
}
@media(max-width:820px){
  .contact-us .contact-left{
      width: 100%;
      float: none;
  }
  .contact-us .contact-right form{
      margin-top: 10%;
      
  }
}
@media(max-width:440px){
  .contact-us .contact-left .hear{
      font-size: 30px;
  }
}



/* about us  */



.about-mid .padding{
  padding: 5% 0 0 10%;
}
.about-mid .left{
  width: 50%;
  float: left;
  padding: 5% 0 0 0;
}
.about-mid .right{
  overflow: hidden;
  margin-top: 6%;
}
.about-mid .right img{
  height: 600px;
}
.about-mid .left .global-text{
  font-size: 36px;
  color: #1C2B57;
  font-weight: 900;

}
.about-mid .left .global-text span{
  color: orange;
}
.about-mid .left .text{
  margin-top: 5%;
  color: #202639;

}
.about-mid .menu{
  margin-top: 5%;
  background: transparent;
}
.about-mid .Single{
  width: 100px;
  display: inline-block;
  margin: 0 1%;
  padding: 10px;
  border-radius: 8px;
  background-color: white;
  border: 1px solid skyblue;
  cursor: pointer;
}
.about-mid .target_box{
  color: #202639;
  margin-top: 5%;
  background: transparent;
}
.about-mid .Single.mission-active{
  border-bottom: 4px solid var(--first-color);
  position: relative; 
}
.mission-active::after {
  content: '';
  position: absolute;
  top: 103%;
  right: 35px;
  transform: translateY(0%);
  rotate: 90deg;
  border: 8px solid transparent;
  border-left: 10px solid var(--first-color);
}
#divm2,
#divm3,
#divm4 {
display: none;
}
#divm2,
#divm3 {
display: none;
}






@media(max-width:820px){
  .about-mid .left{
      width: 100%;
      float: none;
      padding-top: 10%;
  }
  .about-mid .right{
    display: none;
  }
  .about-mid .padding{
      padding: 5% 10% 0 10%;
  }
  .about-mid .target_box{
      margin-bottom: 10%;
  }
}
@media(max-width:620px){
  .about-mid .padding{
      padding: 15% 10% 0 10%;
  }
  .about-top .text-part {
      padding: 7% 0 0 10%;
  }
}
@media(max-width:440px){
  .about-mid .padding{
      padding: 20% 5% 0 10%;
  }
  .about-mid .left .global-text{
      font-size: 28px;
  
  }
  .about-mid .Single{
      width: 90px;
  }
  .about-top .text-part {
      padding: 25% 0 0 10%;
  }
  
}



.about-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--first-color);
  margin-bottom: 3%;
}
.about-row .about-column {
  max-width: 180px;
  flex: 20%;
  padding: 20px;
  border-radius: 16px;
  margin: 10px;
  text-align: center;
}
.about-row .about-column i{
  font-size: 35px;
  margin-bottom: 10px;
  color: #DBDBDB;
}
.about-row .about-column h2{
  font-size: 32px;
  color: #fff;
}
.about-row .about-column p{
  font-size: 16px;
  margin-top: 5%;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .about-row .about-column {
    flex: 50%;
  }
  .about-row .about-column i{
      font-size: 30px;
    }
    .about-row .about-column h2{
      font-size: 31px;
    }
}
@media screen and (max-width: 570px) {
  .about-row .about-column {
      max-width: 200px;
      
  }
}
@media screen and (max-width: 440px) {
  .about-row .about-column {
      max-width: 170px;
      
    }
}
@media screen and (max-width: 392px) {
  .about-row .about-column {
      max-width: 150px;
      
    }
}

/* all top heading with img  */

.image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: grey;
  opacity: 0.7;
}

.image-container h1 {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  color: white;
  font-size: 28px; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}