html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #444444;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: #ff6600;

  text-decoration: none;
}

.bg_green{
  background-color: #0b3954 !important;
}

sup {
  font-size: 20px;
}

.custom_button {
  background: #ff6663;
  border: none;
  color: white !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 15px;
}

.accordion {
  background-color: transparent;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  font-weight: 600;

}

.active,
.accordion:hover {
  /* background-color: none; */
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


p {
  font-family: 'Inter', sans-serif;
}


a:hover {
  /* color: #ffbc2ce0; */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;

}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}


.row {
  margin: 0 auto;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff6600;
  ;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  #second_footer .footer-links {
    text-align: center;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;

  }


}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 76px;
  transition: all 0.3s;
  z-index: 999;
  /* z-index: 7; */
  /* box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px; */
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #0b3954;
  height: 70px;
  /* border-bottom: 2px solid white; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.2s;

}

.colored_a {
  color: yellow;
}


.header-scrolled:visited ul li .nav-link {
  color: #057c63;
  z-index: 9999;
  position: relative;
  visibility: visible;
  opacity: 1;
}


#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  /* color: #fff; */
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: -10px 0 0 0;
  /* max-height: 40px; */
  width: 200px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-radius: 0 0 5px 5px;
}

.mailid .form-control {
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  /* background: rgba(255,255,255,0.1); */
  background-color: #eaf1ff;
  border-radius: 10px;
  font-size: 15px;
  padding: 12px 15px;
  width: 100%;
  /*margin: 0px 0px 10px 0px;*/
  color: #000000;
  border: none;

}

.mailid .col-form-label {
  font-weight: 600;
}

.mailid .modal-title {
  font-weight: 600;
  font-size: 24px;

}

.mailid textarea.form-control {
  /*min-height: calc(1.5em + 0.75rem + 2px);*/
  min-height: 120px;

}

.modal-header {
  background: #fff;
  border: none;
}

.modal-body {
  background: #fff;
}

.modal-footer {
  background: #fff;
  border: none;
  display: flex;
  justify-content: center;

}

.modal-header .close {
  background: none;
  ;
  border: none;
  border-radius: 20px;

}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  /*color: #01036f;*/
  color: black;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff6600;
  ;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }



  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;

  }
}






/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: white;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.4s;
  font-weight: 600;
}



.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #f7ba16;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 20%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f7ba16;
}


.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

/* .navbar>ul>li>a:after {
  position: absolute;
        content: "";
        top: 90%;
        left: 40%;
        width: 50%;
        height: 3px;
        background: black;
        transform: scaleX(0);
        transform-origin: right;
        transition:  0.4s;
} */

/* .navbar a:hover:after,
.navbar li:hover>a:after,
.navbar .active:after {
  transform: scaleX(1);
  transform-origin: left;
        transition: 0.4s;
}

 .navbar a:hover,
.navbar .active,
.navbar .active:visited,
.navbar .active:focus,
.navbar li:hover>a {
  color: #057c63;
  font-weight: 600;
  transition: 0.2s;
}  */



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }




  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }


  .mySwiper-new p {
    color: black;
    padding: 10px;
    font-size: 22px;
    font-weight: 500;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #161616;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: black;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: black;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #ff6600;
}


.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  background: url("../img/bg-bgrnd.jpg");
  /* background: aliceblue; */
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 180px 0 0 0;
  min-height: 100vh;
}

#home:before {
  content: "";
  background: url("../img/bg-bgrnd.jpg");
  /* background: aliceblue; */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#home h1 {
  margin: 0 0 20px 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#home h1 span {
  color: #fff;
  border-bottom: 4px solid #ff6600;
  ;
}

#home h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#home .btn-get-started {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
}

#home .btn-get-started:hover {
  background: #17b57d;
}

#home .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#mainheading {


  margin: 0 0 20px 0;
  /*font-size: 46px;*/
  font-weight: 600;
  line-height: 56px;
  color: black;
  text-transform: none;
  background: #f4f9fd;
}

@media (min-width: 1024px) {
  #home {
    /* background-attachment: fixed; */
  }

  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

@media (max-width: 991px) {
  #home {
    /* padding-top: 80px; */
  }

  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }

  #home .animated {
    /* animation: none; */
  }

  #home .home-img {
    text-align: center;

  }

  #home .home-img img {
    max-width: 50%;
    border-radius: 50px;
  }

  #home h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #home h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #home .home-img img {
    width: 80%;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.home-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Inter', sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff6600;
  ;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  color: #010483;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }

  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #34e5a6;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #ff6600;
  ;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #3f43fd;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #010483;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0205a1;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ff6600;
  ;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ff6600;
  ;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #34e5a6;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* features */
.title-head {
  font-size: 35px;
  font-weight: 600;
  color: black;
  text-align: center;

}

.title-subTitle {
  font-size: 25px;
  font-weight: 700;
  color: black;
  text-align: left;

}

.line {
  background: #f7ba16;
  margin: 2px auto;
  width: 50px;
  height: 4px;
  border-radius: 5px;
}

.ftrs {
  background: #0b3954;
  min-height: 100vh;
}

.ftrs .ftrs_img {
  width: 70%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ftrs .ftrs_fcolmn {
  /* overflow: hidden; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftrs .ftrs_contDiv {
  position: absolute;
  z-index: 9;
  top: 20%;
  left: 50%;
}

.ftrs .broad_box {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;

}

.ftrs .broad_box .btn {
  padding: 8px 35px;
  border-radius: 10px 10px 0px 10px;
  color: white;
  font-weight: 700;
  background: #cc0000;
  font-size: 18px;
}

.ftrs .sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
}

.sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
  font-size: 14px;
}

.ftrs h1 {
  font-weight: 700;
  font-size: 22px;
  color: black;
}

.ftrs .inner-flex {
  display: flex;
  align-items: flex-start;
}

.ftrs .ftrs-subtitle {
  /* color: #0245bc; */
  color: black;
  margin: 35px 0 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.inner-flex .bi-1 {
  font-size: 44px;
  line-height: 44px;
  color: #ff5828;
}


.inner-flex .bi-2 {
  font-size: 44px;
  line-height: 44px;
  color: #e361ff;
}

.inner-flex .bi-3 {
  font-size: 44px;
  line-height: 44px;
  color: #ff6600;
}

.inner-flex .bi-4 {
  font-size: 44px;
  line-height: 44px;
  color: #11dbcf;
}

.inner-flex .ftrs-content {
  padding: 0 15px;
}

.ftrs-content p {
  color: black;
  font-weight: 400;

}

.row-cont img {
  width: 100%;
}

.row-cont {
  padding-top: 30px;
}

.ftrs .box {
  padding: 21px 21px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.box1 {
  padding: 1px 20px 1px 0px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.box1 i {
  font-size: 25px;
}

.sub-ttl {
  font-size: 20px;
  color: black;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 1px;
  text-align: center;
}

.in-span {
  /* color: #ff6600;; */
  /* color: #b23229; */
  color: #ff6600;
}

.why-us .box img {
  width: 70%;
  text-align: center;
  margin: 15px 0;
}

.why-us .why-text {
  margin: 15px 0 0 0;
  font-size: 17px;
  color: #222;
}

.why-us .box:hover img {
  transform: scale(1.1);
  transition: .3s;

}




#about1 {
  padding: 50px 0 0 0;
}




#info {
  padding: 50px 0 0 0;
  /* transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s; */
  /* overflow: visible;  */
}

#info .content {
  display: flex;
  justify-content: center;
  /* background-color: #ecb1326c; */
  color: #fff;
  padding: 70px 0;
}

#info .count-box {
  /* border: 3px solid #ff6600;; */
  border-radius: 5px;
  transition: .2s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px 10px 10px 10px;
}

#info .count-box:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border: none;
  transition: .2s;
}

#info .count-box .bi {
  color: #bb0852;
  transition: .2s;
}

#info .info-content {
  font-size: 22px;
  text-align: center;
  color: rgba(47, 54, 117, 1);
  border-right: 1px solid #fff;
  padding: 0 10px;
}

.info-img {
  float: left;
}

.inf-col .bi {
  float: left;
  font-size: 64px;
}

#info .count {
  font-size: 38px;
  font-weight: 600;
}

.fir-span {
  /* font-size: 22px; */
  font-weight: 600;
  padding-left: 24px;
  font-weight: 700;

}

.count-box i {
  position: absolute;
  top: 30px;
  left: 40px;
  transform: translateX(-50%);
  font-size: 30px;
  color: black;
  width: 45px;
  height: 45px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.count-box img {
  position: absolute;
  top: 25px;
  left: 40px;
  transform: translateX(-50%);
  font-size: 30px;
  color: black;
  width: 45px;
  height: 45px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.count-box {
  padding: 20px 20px 20px 20px;
  width: 90%;
  position: relative;
  text-align: center;
  /* background: #f1f6fe; */
  margin: 10px;
  color: rgba(1, 4, 136, 0.9);

}

#info .info-p {
  padding-left: 42px;
  padding-top: 5px;
}

#info .e-line {
  position: relative;
}

#info .e-line:after {
  position: absolute;
  content: '';
  background: white;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  border-radius: 5px;
}

/* .........swipe....... */
.swiper-pagination {
  margin-top: 35px;
}

/* contact */
.contact-us {
  min-height: 100vh;
  margin-bottom: 20px;
}

.contact-us .contact-info {
  /* margin-bottom: 25px; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  margin: 25px 40px;
}

.contact-info .media-body p {
  color: #8a8a8a;
}

.contact-us .cont-box {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact-us label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  color: black;
}

.contact-us .form-group {
  margin-bottom: 20px;
}

.contact-us .form-group {
  padding-bottom: 8px;
}

.contact-us .form-control {
  border: 1px solid #c7b6eb;
  border-radius: 5px;
  height: 40px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
}

.contact-info__icon {
  margin-right: 20px;
}

.contact-info__icon .bi {
  color: #8f9195;
  font-size: 27px;
  margin-top: 10px;
  /* color: hsl(209, 94%, 46%); */
  color: rgba(1, 4, 136, 0.9);
}

.contact-info .media-body h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-size: 16px;
  /* color: #2a2a2a; */
  color: black;
  font-weight: 500;
  padding-top: 10px;
}

.contact-us .right-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact-us .cont-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 37px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
  border: none;
}

.contact-us .long-row {
  height: 70px;
}

/* ......testimonials... */
.testimonials .mySwiper-tt .swiper-pagination {
  margin-top: 20px;
  position: absolute;
  bottom: 0;

}

.testimonials .mySwiper-tt {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 50px;
}

.testimonials .swip-wrap {
  position: relative;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px 30px;
  /* margin: 10px 25px; */
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: .3s;
}

.testimonials .stars {
  margin-bottom: 20px;
}

.testimonials .stars .bi {
  font-size: 20px;
  color: #ff6600;
  ;
  margin: 0 1px;
}

.testimonials p {
  color: black;
  font-weight: 400;
  font-style: italic;
}

.testimonials .profile .testimonial-img {
  width: 60px;
  border: 1px solid white;
  border-radius: 50%;
}

.testimonials .stars .blk {
  color: black;
}

.testimonials .profile h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .profile h4 {
  font-size: 14px;
  margin: 0;
  color: #999;
}

.swiper-slide-active {
  filter: blur(0px);

}


.demo-pg {
  padding: 60px 0 0 0;
  position: relative;

}

#request {
  background-image: url(../img/curve-bg.png);
  background-size: cover;
  background-position: left;
  margin-top: -60px;
  padding: 100px 0;
  z-index: -4;
  background-attachment: fixed;

}

#request h3 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  color: rgba(1, 4, 136, 0.9);
  margin-bottom: 20px;
}

#request span {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}

#request .reg-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 10px;
  transition: 0.5s;
  background: black;
  color: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
  margin-top: 20px;





}

#mision {
  padding: 50px 0;
  background: #DF8932;
  margin-top: -60px;
}

#social {
  background-image: url(../img/slider/banner.jpg);
  padding: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: #b9dbf4; */
  background: black;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

.contactus a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.contactus a:hover {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}

#footer .footer-top .contactus {
  /*padding-top: 10px;
  padding-left: 30px;*/
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid #ff6600;
  ;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff6600;
  ;
  /* color: #fff; */
  text-decoration: none;
}

#footer .footer-top h4 {
  color: #ffffffc4;
  transition: 0.3s;
  display: inline-block;
  line-height: 3;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;

}

#footer .footer-top .final_h4 {
  text-transform: capitalize;
  font-size: 27px;
  text-align: left;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  padding-left: 20px;
}

#footer .footer-top .footer-links ul a i {
  font-size: 24px;
  color: white;
  padding: 10px;
  transition: .2s;
}

#footer .footer-top .footer-links ul a i:hover {
  transform: scale(1.1);
  transition: .2s;
}


#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .social_media {
  border-radius: 50%;
  border: 1px solid white;
  padding: 10px;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #cc0000;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  font-weight: bold;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #cc0000;
}


#footer .footer-newsletter {
  text-align: right;
}

#footer .footer-newsletter img {

  margin: 0 0 20px 0;
}

#footer .footer-top h5 {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: white;
  padding: 15px 0;
}

#footer .footer-top .form-control {
  padding: 15px;
  /* color: orange; */
  font-size: 15px;
  font-weight: 600;
}

.whatsapp:hover .bi {
  color: white;
}

#footer .footer-newsletter .cmx-img {
  width: 135px;

}

#footer .footer-newsletter h4 {
  font-size: 18px;
  font-weight: 500;
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}



#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.ftr {
  background: black;
  padding: 15px 0;
  border-top: 1px solid white;
}

.ftr .copyright {
  text-align: center;
  margin-left: 30px;
  color: black;
  /* padding-top: 20px; */
}

.ftr .copyright img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
}

.ftr .copyright span a {
  padding: 0 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #ffffffc4;
}


.ftr .credits {
  /* padding-top: 10px; */
  text-align: right;
  font-size: 14px;
  color: black;
  font-weight: 600;
  opacity: .7;


}

.ftr .final-a {
  color: #010351;
  /* opacity: .8; */
  transition: .1s;
}

.ftr .final-a:hover {
  transition: .1s;
  color: #010351;
  opacity: 1;
}

.right-social {
  position: fixed;
  top: 30%;
  /* right: 0; */
  width: 205px;
  z-index: 2;
  left: 91%;
}

/* .btn-whatsapp-pulse {
  background: #22bdd9;
  color: white;
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  border:none;
} */







.right-social a {
  width: 100%;
  margin-bottom: 5px;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 5px 0px 0px 5px;
  transition: all 0.3s ease-in-out;
  transform: rotate(-90deg);
  white-space: nowrap;
  color: white;
  background: #ff6600;
  ;

}

.right-social .vertical-btn {



  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 10px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

.right-social .btn {
  /* width: 100px; */
}

.service-item .box1 img {
  min-width: 50px;
  max-width: 50px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }



  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}


.why-us .icon-box {
  /* box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); */
  padding: 50px 30px;

  background: #fff;
  min-width: 100%;
  min-height: 270px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.icon-box:hover {
  transform: translateY(-10px);
}

.icon-box:hover a {
  color: #22bdd9;
  transition: all ease-in-out 0.2s;
}

#home .line-green span {
  color: #ff6600;
}



/* what-we   */

.whatwe .sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
}

.whatwesub .sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
}

.whatwesub .ftrs-subtitlehead {
  font-weight: 600;


}

.whatwesub .pro-box {
  background: aliceblue;
  border-radius: 10px;
  padding: 20px;
  transition: .3s;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
}

.pro-box:hover {
  transform: translateY(-10px);
  transition: .3s;
}

.pro-box:hover .bi {
  color: #ff6600;
  transition: all 0.3s ease-in-out;
}

.pro-box:hover p {
  color: #22bdd9;
  transition: all 0.3s ease-in-out;
}

.pro-box:hover .bx {
  color: black;
  transition: all 0.3s ease-in-out;
}

.whatwesub .pro-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whatwesub .pro-box ul li h5 {
  /* height: 50px; */
}

.whatwesub .pro-box ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #22bdd9;
  font-size: 18px;
  line-height: 1;
}

.whatwesub .pro-box ul a {
  color: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  font-size: 15px;
}

.whatwesub .pro-box:hover ul a {
  color: #22bdd9;
  transition: .3s;
}

.whatwesub .pro-box:hover {
  transition: .3s;
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
}

.whatwe h1 {
  font-weight: 600;
  font-size: 22px;
  color: #0245bc;
}

.whatwesub h1 {
  font-weight: 600;
  font-size: 19px;
  color: black;
  line-height: 25px;
  /* padding-bottom: 10px; */
}

.whatwe .inner-flex {
  display: flex;
  align-items: flex-start;
}

.whatwesub .inner-flex {
  display: flex;
  align-items: flex-start;
}

.ftrs-content p {
  color: black;
  font-weight: 400;
  font-size: 17px;
  margin: 15px 0;
}


.service-thumb {
  background: #ff6601;
  padding: 30px 30px 30px 30px;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 150px;
  width: 150px;
}

.whatwe .ftrs-subtitle {
  /* color: #0245bc; */
  color: black;
  margin: 35px 0 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.whatwesub .ftrs-subtitle {
  /* color: #0245bc; */
  color: #22bdd9;
  margin: 35px 0 10px 0;
  font-size: 22px;
  font-weight: 600;
}


.whatwesub .bi-check {
  /* color: #0245bc; */
  font-size: 30px;
  color: #22bdd9;

}

.display-5 {
  margin-bottom: 0px;
}

.whatwesub .bi-cpu,
.bi-broadcast-pin,
.bi-cash-coin,
.bi-clipboard2-pulse,
.bi-laptop,
.bi-cast,
.bi-bar-chart-fill,
.bi-mortarboard,
.bi-airplane,
.bi-shield-lock,
.bi-layout-text-window-reverse,
.bi-clipboard2-data,
.bi-building-gear,
.bi-person-rolodex,
.bi-boxes,
.bi-disc,
.bi-graph-up-arrow,
.bi-app-indicator,
.bi-stack,
.bi-window-stack,
.bi-bezier2 {
  font-size: 60px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /*align-self: center;*/
  margin-top: 15px;
}

.inner-flex .ftrs-content {
  padding: 0 15px;
}

.whatwe .box {
  padding: 21px 21px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.whatwesub .box {
  padding: 21px 21px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.whatwe {
  padding: 80px 0;
  overflow: hidden;
  background: #057c63
}

.whatwesub {
  padding: 60px 0;
  overflow: hidden;
}

#mentor_banner {
  background-image: url(../img/man_smiled.jpg);
  background-position: top;
  background-size: cover;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#event_banner {
  background-image: url(../img/online_meet.jpg);
  background-position: top;
  background-size: cover;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}


.parallax {
  /* background-attachment: fixed; */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}


#mentor_banner .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}


#event_banner .overlay {
  padding: 200px 0;
}

#social-about {
    /* background-image: url(../img/plane-top2.jpg); */
    /* background-image: url(../img/top-img.avif); */
    background-image: url(../img/banner.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0;
    width: 100%;
    min-height: 50vh;
}

#social-about::before {
content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#social-contact {
  background-image: url(../img/banner-cont.jpeg);
  background-position: right;
  background-size: cover;
  padding: 0;
  width: 100%;
}

.parallax {
  /* background-attachment: fixed; */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

#social-contact .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}

.whatwe-ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

.whatwesub-ul li {
  padding: 7px 0;
  display: flex;
  align-items: start;
}



.whatwe-ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #00339b;
  font-size: 18px;
  line-height: 1;
}

.whatwesub-ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #00339b;
  font-size: 18px;
  line-height: 1;
}


.whatwe-ul a {
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.whatwesub-ul a {
  font-size: 16px;
  /*font-weight: 600;*/
  color: black;
}


.php-email-form {
  /* background: #fff;
  padding: 15px; */

  padding: 15px;
  height: 100%;
  border-radius: 15px;

}

.php-email-form .form-control {
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  background-color: white;
  border-radius: 4px;
  font-size: 15px;
  padding: 12px 15px;
  width: 100%;
  margin: 0px 0px 10px 0px;
  color: #000000;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  position: relative;
  z-index: 2;
}

.php-email-form .form-control:focus {
  outline: 2px solid #f9b911;
}

.contact-h5 {
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.careers .car-btn {
  background: #22bdd9;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.career-input input {
  font-size: 13px;
}

.career-input {
  overflow: hidden;
}

.php-email-form label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  /* color: #656d78; */
  font-weight: 700;
  color: black;
  margin-bottom: 10px;

}

.banner-back {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.mySwiper-bnr .swiper-wrapper .swiper-slide {

  /* padding: 180px 0 0 0; */
  background: url("../img/bg_banner1.svg");
  background-position: center;
  background-size: cover;
  width: 100%;
  max-height: 100vh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

.row {
  margin: 0 auto;
}



.ftrs .ftrs-subtitle {
  color: #22bdd9;
  margin: 35px 0 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.in-span {
  color: #ff6600;
  ;
}

.in-span1 {
  color: #ff6600;
  ;
}

.in-span2 {
  /* color: #feeba7; */
  /* color: #22bdd9; */


  color: #fff;
  /* font-size: 92px; */
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #095fab 10%, #22bdd9, 50%, #57d75b 60%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 1.5s linear infinite;

  /*font-size:32px;*/
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}


.in-span3 {
  color: #feeba7;
  /*font-size:46px;*/
}



.service-item .box1 img {
  min-width: 50px;
  max-width: 50px;
}



.row-cont img {
  width: 100%;
}

#what-services {

  /* background-image: url(../img/top-img.avif); */
  background-image: url(../img/serv-banner.jpg);
  background-position: right;
  background-size: cover;
  padding: 0;
  width: 100%;
}

.parallax {
  /* background-attachment: fixed; */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

#what-services .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}

#industry-page {
  background-image: url(../img/project-banner.jpg);
  background-position: right;
  background-size: cover;
  padding: 0;
  width: 100%;
}

#industry-page .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}

#careers-page {
  background-image: url(../img/banner-quote.jpg);
  background-position: right;
  background-size: cover;
  padding: 0;
  width: 100%;
}

#careers-page .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}

.member-info p {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
}

.member-info h3 {
  color: #f7ba14;
  font-size: 25px;
  font-weight: 600;
  padding: 0;
}



.mySwiper-demo {
  width: 100%;
  height: 100%;
  background: #000;

  background-position: center;
  background-size: cover;
  width: 100%;
  max-height: 100vh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiper-demo .swiper-slide {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*padding: 40px 60px;*/
  display: flex;
  justify-content: center;
}

.mySwiper-demo .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: bottom;
  background-image: url(../img/banner.jpg);


}

.mySwiper-demo .parallax-bg::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.partner .member:hover .bi {
  border-color: #ff6600;
  color: #ff6600;
  transition: .3s;
}

.contact-adrs {
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  /* justify-content: space-between; */
}


.get-quote {

  background: #161616;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  padding: 0;
}

.get-quote .inner-qte {
  background: url(../images/dot.png);
  background-repeat: repeat;
  padding: 60px 20px;
}

.get-quote .center h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
  color: white;
}

.get-quote .qte-p {
  white-space: normal;
  width: 70%;
  /* margin: 0 auto; */
  color: white;
  font-size: 15px;
}

.get-quote .click-qte {
  background: #22bdd9;
  border: 0;
  padding: 10px 24px;
  color: white;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 600;
}

.get-quote .first {
  background: url(../img/plumbing.jpg);
  position: relative;
}

.get-quote .first::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background: #22bdd9;
}

.member-info .aligning {
  margin: 0;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 36px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}


.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 47px;
  right: 43px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse:hover {
  color: white;
}

.ftr .dream h6 {
  color: white;
  text-align: right;
  margin: 0 30px 0 0;
}

.secondmini_title {
  font-weight: 700;
  font-size: 22px;
  color: black;
  margin: 25px 0;
}



.swiper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

.mySwiper-new .swiper-wrapper .swiper-slide {
  width: 100%;
  background-size: cover;
  min-height: 100vh;
  background-position: center;
  padding: 95px 0 0 0;
  display: flex;
  align-items: center;
  
}

.slide1 {
  /* light black shade */
  background-image: url(../img/banner.jpeg);
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .slide2 {
  background-image: url(../img/banner2.jpg);
  position: relative;
}

.slide3 {
  background-image: url(../img/banner3.jpg);
  position: relative;
}

.slide4 {
  background-image: url(../img/banner_4.jpg);
  position: relative;
} */

.slide5 {
  background-image: url(../img/banner2.jpg);
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide6 {
  background-image: url(../img/banner3.jpg);
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .slide7 {
  background-image: url(../img/banner_7.jpg);
  position: relative;
} */

.banner-h1 {
  padding: 5px 0 5px 0px;
  border-radius: 2px;
  opacity: 1;
  font-size: 57px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-size: 35px;
}

.slide1::before {
  content: "";
  background: rgb(0 0 0 / 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.slide2::before {
  content: "";
  background: rgb(0 0 0 / 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


.slide3::before {
  content: "";
  background: rgb(0 0 0 / 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.slide4::before {
  content: "";
  background: rgb(0 0 0 / 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.slide5::before {
  content: "";
  background: rgb(0 0 0 / 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.slide6::before {
  content: "";
  background: rgb(0 0 0 / 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.slide7::before {
  content: "";
  background: rgb(0 0 0 / 20%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about-p {
  font-size: 15px;
}

.home-title span {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 1.2;
}

.home-title span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  animation: a-ltr-after 2s cubic-bezier(.77, 0, .18, 1) forwards;
  transform: translateX(-101%);
}

.home-title span::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  animation: a-ltr-before 2s cubic-bezier(.77, 0, .18, 1) forwards;
  transform: translateX(0);
}

.home-title span:nth-of-type(1)::before,
.home-title span:nth-of-type(1)::after {
  animation-delay: 1s;
}

.home-title span:nth-of-type(2)::before,
.home-title span:nth-of-type(2)::after {
  animation-delay: 1.5s;
}

@keyframes a-ltr-after {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(101%)
  }
}

@keyframes a-ltr-before {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(200%)
  }
}


.glowing {
  color: #fff;
  animation: glow 1s ease-in-out infinite alternate;
}


@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 2px #fff, 0 0 5px white, 0 0 1px white, 0 0 10px black, 0 0 1px black, 0 0 1px #000000, 0 0 1px black;
  }


  to {
    text-shadow: 0 0 2px #fff, 0 0 5px white, 0 0 1px white, 0 0 10px black, 0 0 1px black, 0 0 1px black, 0 0 1px black;
  }
}

.descrip {
  font-weight: 500;
  padding: 0 25px;
  max-width: 90%;
  text-align: center;
  font-size: 15px;
}

.recent-work-wrap {
  /* width: 280px; */

}

.recent-work-wrap img {
  width: 100%;
  padding: 7px;
  overflow: hidden;
}

.pro-box:hover .no-hover:hover {
  color: black;
}

.serv-responce {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 480px) {
  .serv-responce {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .ftr .copyright {
    text-align: center;
  }

  .ftr .dream h6 {
    text-align: center;
  }

  .btn-whatsapp-pulse {
    position: fixed;
    bottom: 37px;
    right: 43px;
    font-size: 30px;
    padding: 25px;

  }
}

.mySwiper {
  width: 100%;
  height: 100%;

}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
}


.world_map {
  /* background-image: url(../img/map.jpg); */
  /* width: 100vw; */
  /* overflow: hidden; */
  position: relative;
}

.world_map h2 {
  position: absolute;
  top: 10%;
  left: 30%;
  font-size: 5vmin;
}


.cont {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 80px auto 30px;
}

.select-btn {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.select-btn .btn-text {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}

.select-btn .arrow-dwn {
  display: flex;
  height: 21px;
  width: 21px;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  background: rgb(91, 73, 255);
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.select-btn.open .arrow-dwn {
  transform: rotate(-180deg);
}

.list-items {
  position: relative;
  margin-top: 15px;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  max-height: 220px;
  overflow-y: scroll;
  overflow-x: hidden;
  display: none;
}

.select-btn.open~.list-items {
  display: block;
}

/* Always show the scrollbar of the dropdown */
.select-btn.open~.list-items::-webkit-scrollbar {
  width: 8px;
  height: 0;
}

.select-btn.open~.list-items::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .2);
  border-radius: 8px;
}

.select-btn.open~.list-items::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, .3);
}

.list-items .item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 8px;
}

.list-items .item:hover {
  background-color: #e7edfe;
}

.item .item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease-in-out;
}

.item.checked .checkbox {
  background-color: rgb(91, 73, 255);
  border-color: rgb(91, 73, 255);
}

.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}

.item.checked .check-icon {
  transform: scale(1);
}




/* finaal drop */
.sec-center {
  position: relative;
  max-width: 100%;
  text-align: center;
  z-index: 200;
  display: inline-block;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.dark-light:checked+label,
.dark-light:not(:checked)+label {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 20000;
  display: block;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: all 200ms linear;
  box-shadow: 0 0 25px rgba(255, 235, 167, .45);
}

.dark-light:checked+label {
  transform: rotate(360deg);
}

.dark-light:checked+label:after,
.dark-light:not(:checked)+label:after {
  position: absolute;
  content: '';
  top: 1px;
  left: 1px;
  overflow: hidden;
  z-index: 2;
  display: block;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #102770;
  background-image: url('https://assets.codepen.io/1462889/moon.svg');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 200ms linear;
  opacity: 0;
}

.dark-light:checked+label:after {
  opacity: 1;
}

.dark-light:checked+label:before,
.dark-light:not(:checked)+label:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  display: block;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  background-color: #48dbfb;
  background-image: url('https://assets.codepen.io/1462889/sun.svg');
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 200ms linear;
}

.dark-light:checked+label:before {
  background-color: #000;
}

.light-back {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  overflow: hidden;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
  height: 100%;
  width: 100%;
  transition: all 200ms linear;
  opacity: 0;
}

.dark-light:checked~.light-back {
  opacity: 1;
}

.dropdown:checked+label,
.dropdown:not(:checked)+label {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  height: 50px;
  transition: all 200ms linear;
  border-radius: 4px;
  width: 220px;
  letter-spacing: 1px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: flex-start;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #102770;
}

.dark-light:checked~.sec-center .for-dropdown {
  background-color: #102770;
  color: #ffeba7;
  box-shadow: 0 12px 35px 0 rgba(16, 39, 112, .25);
}

.dropdown:checked+label:before,
.dropdown:not(:checked)+label:before {
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: auto;
  pointer-events: none;
}

.dropdown:checked+label:before {
  pointer-events: auto;
}

.dropdown:not(:checked)+label .uil {
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}

.dropdown:checked+label .uil {
  transform: rotate(180deg);
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}

.section-dropdown {
  position: absolute;
  padding: 5px;
  background-color: #111;
  top: 70px;
  left: -7%;
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 14px 35px 0 rgba(9, 9, 12, 0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
}

.dark-light:checked~.sec-center .section-dropdown {
  background-color: #fff;
  box-shadow: 0 14px 35px 0 rgba(9, 9, 12, 0.15);
}

.dropdown:checked~.section-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-dropdown:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
  display: block;
  z-index: 1;
}

.section-dropdown:after {
  position: absolute;
  top: -7px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #111;
  content: '';
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.dark-light:checked~.sec-center .section-dropdown:after {
  border-bottom: 8px solid #fff;
}

.sec-center a {
  position: relative;
  color: #fff;
  transition: all 200ms linear;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  margin: 2px 0;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: distribute;
}

.dark-light:checked~.sec-center .section-dropdown a {
  color: #102770;
}

.dark-light:checked~.sec-center .section-dropdown a:hover {
  color: #ffeba7;
  background-color: #102770;
}

a .uil {
  font-size: 22px;
}

.dropdown-sub:checked+label,
.dropdown-sub:not(:checked)+label {
  position: relative;
  color: #fff;
  transition: all 200ms linear;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: distribute;
  cursor: pointer;
}

.dropdown-sub:checked+label .uil,
.dropdown-sub:not(:checked)+label .uil {
  font-size: 22px;
}

.dropdown-sub:not(:checked)+label .uil {
  transition: transform 200ms linear;
}

.dropdown-sub:checked+label .uil {
  transform: rotate(135deg);
  transition: transform 200ms linear;
}

.dropdown-sub:checked+label:hover,
.dropdown-sub:not(:checked)+label:hover {
  color: #102770;
  background-color: #ffeba7;
}

.dark-light:checked~.sec-center .section-dropdown .for-dropdown-sub {
  color: #102770;
}

.dark-light:checked~.sec-center .section-dropdown .for-dropdown-sub:hover {
  color: #ffeba7;
  background-color: #102770;
}

.section-dropdown-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  padding-left: 10px;
  padding-right: 3px;
  overflow: hidden;
  transition: all 200ms linear;
}

.dropdown-sub:checked~.section-dropdown-sub {
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
}

.section-dropdown-sub a {
  font-size: 14px;
}

.section-dropdown-sub a .uil {
  font-size: 20px;
}




/* second footer */
#second_footer {
  /* background: #b9dbf4; */
  background: white;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
}

#second_footer .footer-top {
  padding: 60px 0 30px 0;
}


#second_footer .footer-top .contactus {
  /*padding-top: 10px;
  padding-left: 30px;*/
}

#second_footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid #ff6600;
  ;
  text-align: center;
  padding: 30px 20px;
}

#second_footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#second_footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

#second_footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#second_footer .footer-top .social-links a:hover {
  background: #ff6600;
  text-decoration: none;
}

#second_footer .footer-top h4 {
  color: black;
  transition: 0.3s;
  display: inline-block;
  line-height: 2.4;
  text-transform: capitalize;
  font-size: 23px;
  font-weight: 700;

}

#second_footer .footer-top .final_h4 {
  text-transform: capitalize;
  font-size: 27px;
  text-align: left;
}

#second_footer .footer-top .footer-links {
  margin-bottom: 30px;
  padding-left: 20px;
}

#second_footer .footer-top .footer-links ul a i {
  font-size: 24px;
  color: white;
  padding: 10px;
  transition: .2s;
}

#second_footer .footer-top .footer-links ul a i:hover {
  transform: scale(1.1);
  transition: .2s;
}


#second_footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  /* margin: 0; */
}

#second_footer .footer-top .social_media {
  border-radius: 50%;
  border: 1px solid white;
  padding: 10px;
}

#second_footer .footer-top .footer-links ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #cc0000;
  font-size: 18px;
  line-height: 1;
}

#second_footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  font-weight: bold;
  align-items: center;
}

#second_footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#second_footer .footer-top .footer-links ul a {
  color: black;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#second_footer .footer-top .footer-links ul a:hover {
  color: #fab914;
}


#second_footer .footer-newsletter {
  text-align: right;
}

#second_footer .footer-newsletter img {

  margin: 0 0 20px 0;
}

#second_footer .footer-top h5 {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: white;
  padding: 15px 0;
}

#second_footer .footer-top .form-control {
  padding: 15px;
  /* color: orange; */
  font-size: 15px;
  font-weight: 600;
}

.whatsapp:hover .bi {
  color: white;
}

#second_footer .footer-newsletter .cmx-img {
  width: 135px;

}

#second_footer .footer-newsletter h4 {
  font-size: 18px;
  font-weight: 500;
}

#second_footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}



#second_footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


#second_footer .social-list {
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  align-items: center;

}

#second_footer .soc-item {
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  margin-right: 0.5rem;
}

#second_footer .soc-item .bi {
  color: black;
  font-size: 19px;
}

#second_footer .second_col p {
  font-size: 16px;
  line-height: 1.7;
  color: black;
  font-weight: 600;
}

#second_footer .final_colm .first-ul {
  margin-right: 30px;
}


@-webkit-keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

@keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

.mySwiper-new p {
  color: black;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
}

.feature_slide .head_p {
  font-size: 17px;
}

@media only screen and (max-width: 1138px) {
  .slide1 {
    /* background-image: url(../img/banner1_media.jpg); */
    position: relative;
  }

  .slide2 {
    /* background-image: url(../img/banner2_media.jpg); */
    position: relative;
  }

  /* .mySwiper-new .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    min-height: 100vh;
    background-position: top;
    padding: 95px 0 0 0;
  } */

  .world_map h2 {
    position: absolute;
    top: 10%;
    left: 40%;
    font-size: 5vmin;
  }

}

@media only screen and (max-width: 991px) {
  .slide1 {
    /* background-image: url(../img/banner1_media.jpg); */
    position: relative;
  }

  .mySwiper-new p {
    color: black;
    padding: 10px;
    font-size: 23px;
    font-weight: 500;
  }

  .ftrs .ftrs_fcolmn {
    /* overflow: hidden; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature_slide .head_p {
    font-size: 23px;
  }

  .ftrs-content p {
    color: black;
    font-weight: 400;
    font-size: 23px;
    margin: 15px 0;
  }

}

@media only screen and (min-width: 768px) {
  .world_map h2 {
    position: absolute;
    top: 10%;
    left: 35%;
    font-size: 5vmin;
  }


}

@media (min-width: 769px) and (max-width: 2000px) {
  .world_map h2 {
    position: absolute;
    top: 10%;
    left: 40%;
    font-size: 5vmin;
  }
}


.whited_a {
  color: white;
}

/* services */
.services {
  min-height: 100vh;
}

.services .img_box {
  padding: 40px 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 10px;
  /* background: #b2d3c2; */
  background: #d0e7d4;
  width: 100%;
  transition: .3s;


}

.services .img_box:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgb(5, 124, 99) 0px 2px 4px -1px;
  transform: translateY(-15px);
  transition: .3s;
}

.services .img_box:hover .icon {
  background: #057c63;
  transition: .4s;
}

.services .img_box .serv_h4 {
  margin: 20px 0 15px 0;
  transition: .2s;
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
}

.services h3 {
  font-size: 25px;
  font-weight: 700;
  color: white;
  text-align: left;
  line-height: 1.5;
}

.services .img_box:hover .title_p {
  transition: .2s;
  color: black;
}

.services .img_box .title_p {
  font-size: 20px;
  font-weight: 600;
  transition: .2s;
  position: relative;
}

.services .img_box .title_p::after {
  background: #f8bb0f;
  position: absolute;
  bottom: -15%;
  left: 40%;
  content: '';
  width: 20%;
  height: 3px;
  border-radius: 20px;
  transition: .2s;
}

.services .img_box:hover .title_p::after {
  width: 0;
  transition: .2s;
}

.services .img_box .icon {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #057c63;
  transition: .4s;
}

.services .img_box .icon .bi-mortarboard-fill {
  font-size: 30px;
  /* color: #fab816; */
  color: white;
}

.services .img_box:hover .icon .bi-mortarboard-fill {
  font-size: 30px;
  color: #fab816;
}


.services .title-subMini {
  font-size: 20px;
  font-weight: 600;
  color: black;
  text-align: left;
  line-height: 1.5;
}

.services .pic .bi {
  color: #0b3954;
  font-size: 25px;

}

.services .address {
  color: black;
  font-size: 14px;
  text-align: left;
}


.services .content_p {
  text-align: justify;

}

.services .left_icon i {
  color: #fab914;
  background: #0b3954;
  font-size: 65px;
  padding: 20px 25px;
  border-radius: 50%;
}

.services .left_icon .bi {
 width: 75px;
}

.services .left_icon {
  background: #0b3954;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .left_icon img {
  width: 70px;
}

.mentors {
  background: #0b3954;
}

.mentors .right_filter {
  position: relative;
  /* margin-right: 30px; */
}

.mentors .right_filter i {
  position: absolute;
  /* left: 3%; */
  line-height: 45px;
  color: #0b3954;
  font-size: 25px;

}

.mentors .right_filter .form-control {
  height: 45px;
}


.below_title i {
  padding: 0;
  margin: 0;
  color: #fab914;
  font-size: 28px;
}



.mentors .mentor_box .mentor_item {
  padding: 30px 60px 30px 30px;
  margin: 0 15px 0 0;
  min-height: 247px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: white;
  width: 90%;
  border-radius: 5px;

}


.mentors .our_members_info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b3954;
}

.mentors .our_members_info p {
  text-align: right;
  line-height: 1.3;
  line-height: 1.3;
  font-size: 15px;
  color: #999;
  text-align: left;
  /* padding-top: 5px; */
}


.mentors .our_members_info .role {
  font-size: 15px;
  font-weight: 600;
  color: #f7ba14;

}

.mentors .our_members_info .italic {
  font-size: 15px;
  font-style: italic;
}

.mentors .mentor_box img {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 85px;
  border-radius: 10px;
  border: 3px solid #f7ba16;
}

.mentors .our_members_img {
  background-color: #f7ba14;
  min-height: 255px;
  /* background-image: url(./img/event_1.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.mentors .our_members_info .bi-quote {
  font-size: 22px;
  color: #0b3954;
}

.mentors .mentor_box .mentor_item .bi-quote:last-child {
  display: inline-block;
  transform: scale(-1, -1);
  position: relative;
  top: 7px;
}

.mentors .our_members {
  background: white;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  overflow: hidden;
}

.mentors .our_members .our_members_info {
  padding: 10px 5px;
  min-height: 355px;
}

.mentors .dropdown-item {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

.mentors .dropdown-item:focus,
.dropdown-item:hover,
.mentors .active {
  background-color: #f7ba14;
}

.news {
  min-height: 100vh;
}

.news .dropdown-item:focus,
.dropdown-item:hover,
.news .active {
  background-color: #f7ba14;
}

.news .first_column {
  background: #0b3954;
  padding: 20px 20px;
}

.news .first_column h4 {
  font-size: 23px;
  margin: 0;
}

.news .first_column .date_box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.news .title_box p {
  color: white;
  font-size: 15px;
  font-weight: normal;

}

.news .first_column .date_box::after {
  position: absolute;
  content: '';
  background: #f7ba14;
  top: 25%;
  height: 50%;
  right: -13%;
  width: 3px;
  border-radius: 20px;
}

.news .outer_flex .text-dull {
  color: #b9b3b3;
}

.news .first_column .date_box p {
  font-size: 50px;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.news .first_column h6 {
  padding-top: 20px;
  line-height: 1.5;
}

.news .first_column .date_box span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.news .second_column {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  padding: 20px 25px;
}

.news .second_column h6 {
  line-height: 1.5;
  font-weight: 600;
  margin: 10px px 0;
  color: #0b3954;
}

.news .first_column h6 {
  line-height: 1.5;
  font-weight: 600;
  margin: 10px px 0;
  color: #0b3954;
}


.news .second_column a {
  color: black;
  text-align: center;
  margin: 0 auto;
  display: block;
  font-weight: 500;
}

.title-subMini {
  font-size: 25px;
  font-weight: 700;
  color: black;
  text-align: left;
  line-height: 1.5;
}

.client_logos {
  background: #f7ba14;
}

.client_logos img {
  transition: .4s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.client_logos img:hover {
  transform: translateY(-15px);
  transition: .4s;
}

.dream span a {
  color: #605757c4;
  font-size: 14px;
  font-weight: 600;
}

.green_after {
  position: relative;
  background: #ebebeb;
  z-index: -2;
}

.green_after::after {
  content: '';
  position: absolute;
  background: #0b3954;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  z-index: -1;
  border-radius: 5px;
}

#contact_us .form_button {
  background: #f7ba14;
  font-family: 'Inter', sans-serif;
  width: auto;
  margin: 20px auto;
  padding: 10px 60px;
  border: none;
  font-weight: 600;
  font-size: 17px;
  color: white;
}

.green_after .list_p {
  color: white;
  font-size: 15px;
  text-align: left;
}




@media (min-width:768px) and (max-width:991px) {
  .services .left_icon {
    width: 75px;
    height: 75px;
  }

  .services .left_icon img {
    width: 50px;
  }
}


.checkBg {
  color: red;
}



/* select */
.select-box {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: 'Open Sans', 'Helvetica Neue', 'Segoe UI', 'Calibri', 'Arial', sans-serif;
  font-size: 18px;
  color: #60666d;
  z-index: 1;
}

@media (min-width: 768px) {
  .select-box {
    width: 70%;
  }
}

@media (min-width: 992px) {
  .select-box {
    /* width: 50%; */
  }
}

@media (min-width: 1200px) {
  .select-box {
    /* width: 30%; */
  }
}

.select-box__current {
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
  background: #ffffff;
  border-radius: 20px;
  color: #0b3954;
}

.select-box__current:focus+.select-box__list {
  opacity: 1;
  animation-name: none;
}

.select-box__current:focus+.select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  opacity: 1;
  transition: 0.2s ease;
}

.select-box__value {
  display: flex;
}

.select-box__input {
  display: none;
}

.select-box__input:checked+.select-box__input-text {
  display: block;
  font-size: 14px;
}

.select-box__input-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 11px 20px;
  background-color: #fff;
}

.select-box__list {
  position: absolute;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  animation-name: HideList;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.select-box__option {
  display: block;
  padding: 11px 20px;
  background-color: #fff;
  font-size: 14px;
  transition: .3s;
  color: #0b3954;
  font-weight: 400;
}

.select-box__option:hover,
.select-box__option:focus {
  color: white;
  background-color: #0b3954;
  transition: .3s;
}

@keyframes HideList {
  from {
    transform: scaleY(1);
  }

  to {
    transform: scaleY(0);
  }
}


.about_us img {
  margin-right: 20px;
  margin-bottom: 20px;
}

.end_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-yellow {
  font-weight: 600;
  background-color: #f7ba14;
  padding: 5px 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
}

.btn-yellow i {
  font-size: 25px;
  padding-left: 3px;
  transition: .2s;

}

.btn-yellow:hover {
  color: #0b3954;
  background: white;
}

.btn-yellow:hover i {
  transform: translateX(15px);
  transition: .2s;
  color: #f7ba14;
}

.btn-yellow:active {
  background-color: #f7ba14;
}

.btn-yellow:focus {
  background-color: #f7ba14;
}




.btn-green {
  font-weight: 600;
  background-color: #f7ba14;
  padding: 5px 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
}

.btn-green i {
  font-size: 25px;
  padding-left: 3px;
  transition: .2s;

}

.btn-green:hover {
  color: white !important;
  background: #0b3954;
}

.btn-green:hover i {
  transform: translateX(15px);
  transition: .2s;
  color: #f7ba14;
}

.btn-green:active {
  background-color: #f7ba14;
}

.btn-green:focus {
  background-color: #f7ba14;
}

.about_us .content {
  padding-right: 0;
  padding-left: 0;
}


@media screen and (max-width: 991px) {

  .dark-light:checked+label,
  .dark-light:not(:checked)+label {
    top: 20px;
    right: 20px;
  }

  .about_us .content {
    padding-right: 10px;
    padding-left: 10px;
  }

  .about_us img {
    float: none;
    width: 100%;
  }

  .about_us img {
    float: none;
    width: 100%;
  }

}


.swiper-pagination-bullet-active {
  background: #f7ba16;
}

.swiper-pagination-bullet {
  background: #f7ba16;
}

#header .mini_nav {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0%;
  left: 0;
  background: #0b3954;
  content: '';
  z-index: -1;
  transition: .2s;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.heightinc {
  height: 80px !important;
  background: #0b3954;
  z-index: -1;
  transition: all 0.3s;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.register_div {
  color: #f7ba14;
  padding-left: 10px;
  font-size: 19px;
  position: relative;
  width: fit-content;
}

/* .register_div::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 10%;
  background: white;
  height: 2px;
  width: 90%;

} */

#aboutus .title-subMini span {
  border-bottom: 2px solid white;
  border-radius: 2px;
  padding-bottom: 3px;
}

@media screen and (max-width: 750px) {

  .mySwiper-new .swiper-wrapper .swiper-slide{
    background-size:cover;
    min-height: 35vh;
  }

  .swiper-slide{
    background-size: auto;
  }

  .mySwiper-new .swiper-wrapper .swiper-slide {
background-repeat: no-repeat;

  }

  .swiper {
    min-height: auto;
   
  }

  .banner-h1{
    font-size: 35px;
  }



}

@media screen and (max-width: 450px){
  .banner-h1{
    font-size: 22px;
  }
}

.member .mailto{
  color: #cccccc;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #cccccc;
}


@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }

  .green_after .list_p {
    color: black;

  }

  .services h3 {
    font-size: 25px;
    font-weight: 700;
    color: black;
    text-align: left;
    line-height: 1.5;
  }

  #second_footer .social-list {
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .green_after::after {
    content: '';
    position: absolute;
    background: #0b3954;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    border-radius: 5px;
  }
}

@media (max-width: 575px) {
  #second_footer .second_col p {
    font-size: 16px;
    line-height: 1.7;
    color: black;
    font-weight: 600;
    text-align: left;
}
  }