:root {
  --orange: #013466;
  --white: #ffffff;
  --gray: #D1D1D1;
  --darkblue: #06084d;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





.float {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 0;
  background-color: #013466;
  color: #c8aa6e;
  border-radius: 0 10px 10px 0;
  text-align: center;
  font-size: 24px;
  z-index: 100;
}

.float i {
  padding: 12px 5px 0 0;
}

.float-whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 50%;
  right: 0;
  background-color: #013466;
  color: #c8aa6e;
  border-radius: 10px 0 0 10px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}








.header-wrapper {
  padding: 5px 0;
}

.navbar {
  background: #fff;
}

.navbar-brand img {
  width: 250px;
  height: 70px;
}

.contact {
  font-size: 22px;
  position: relative;
}

.contact .contact-inner {
  text-decoration: none;
  color: red;
  font-size: 21px;
  font-weight: 500;
}

.contact .contact-inner::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  background: url(../images/icon-call.png) no-repeat 50% 50%/100%;
}

.contact .contact-inner .number {
  color: #013466;
}



.slider-hero {
  height: 562px;
  position: relative;
  margin-top: 86px;
}

#landing-header {
  opacity: 1 !important;
  position: relative;
  z-index: 9 !important;
}

.slideshow {
  width: 100%;
  height: 562px;
  top: 0;
  left: 0;
  z-index: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.slideshow span {
  width: 100%;
  height: 562px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  animation: imageAnimation 30s linear infinite;
}

.slideshow span:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero-section/slide-1.png);
}

.slideshow span:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero-section/slide-2.png);
  animation-delay: 5s;
}

.slideshow span:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero-section/slide-3.png);
  animation-delay: 10s;
}

.slideshow span:nth-child(4) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero-section/slide-4.png);
  animation-delay: 15s;
}

.slideshow span:nth-child(5) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero-section/slide-5.png);
  animation-delay: 20s;
}

.slideshow span:nth-child(6) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero-section/slide-6.png);
  animation-delay: 25s;
}

.slideshow span:nth-child(7) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero-section/slide-7.png);
  animation-delay: 30s;
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }

  10% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  20% {
    opacity: 1;
  }

  30% {
    opacity: 0;
  }
}

/* Older browser support - .no-cssanimations class added by modernizr */
.no-cssanimations .slideshow li {
  opacity: 1;
}


.banner-wrapper {
  height: auto;
  margin-top: 50px;
}

.small {
  height: auto;
  padding: 92px 0 !important;
}

.banner-info .title {
  width: 100%;
  color: #ffffff;
  font-size: 52px;
  font-size: 700;
  padding-left: 5px;
  padding-top: 90px;
}

.banner-info .inner-title {
  width: 100%;
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  padding-left: 5px;
  padding-top: 10px;
}

.downlode {
  padding: 10px 20px;
  margin: 20px 0 0 0;
  background: #013466;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 0;
  border-radius: 10px;
}

.form-head {
  padding: 0 0 0 20%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 40px;
}

.inputs {
  margin-top: 20px;
}

input:focus {
  outline: none !important;
}

select:focus {
  outline: none !important;
}

.inputs ul li {
  list-style: none;
}

.inputs ul .places {
  padding: 5px;
  width: 80%;
  margin: 10px 0 0 15%;
  background: rgba(255, 255, 255, 0.623);
  height: 40px;
  list-style: none;
  border-radius: 10px;
}

input {
  padding: 3px 0 0 0;
}

.places select {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.tel-number {
  background: rgba(255, 255, 255, 0.623);
  height: 40px;
  width: 80%;
  border-radius: 10px;
  margin: 10px 0 0 15%;
  padding: 5px;
}

.input {
  font-size: 16px;
  font-weight: 600;
  border: 0;
  background: transparent;
  width: 100%;
}

.select {
  height: 50px;
  font-size: 16px !important;
  color: #000;
  letter-spacing: 1px;
}

.telephone {
  font-size: 16px;
}

.course {
  font-size: 16px !important;
  font-size: 600 !important;
}

/* .checkbox{
  width: 70%;
  margin: auto;
    background: none !important;
    margin-top: 10px !important;
    height: auto !important;
} */
.button-submit {
  width: 70%;
  margin: auto;
  background: none !important;
}

.button-submit button {
  padding: 5px 30px;
  margin-top: 10px;
  color: #fff;
  font-size: 16px !important;
  font-weight: 600;
  letter-spacing: 1px;
  background: #013466;
}

.button-submit button:hover {
  background: #fff !important;
  color: #013466 !important;
}



.master-wrapper {
  height: auto;
  background: #013466;
  padding-bottom: 50px;
}

.master-info {
  text-align: center;
  color: #fff;
  padding: 50px 0 0 0;
}

.master-info h2 {
  text-align: center;
  font-weight: 900;
  font-size: 30px;
  line-height: 48px;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
}

.master-info hr {
  width: 40%;
  margin: auto;
  background-color: #ffffff !important;
  opacity: 1;
  height: 2px;
}

.master-info h3 {
  font-size: 28px;
  line-height: 48px;
  text-align: center;
  margin: 5px 0 0 10px;
  color: #FFFFFF;
}

.master-wrapper .col-xxl-2 {
  height: 200px;
}

.master-row {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  padding: 20px 0;
}

.master-row .master-column {
  width: 60%;
  margin: auto;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
}

.master-column img {
  width: 100%;
  height: 100%;
}




.bullets-wrapper {
  height: auto;
}

.bullets-wrapper .main-row {
  margin: 20px 0;
}

.list-1 {
  padding: 5px 0;
}

.list-circle {
  color: #013466;
  background: #c8aa6e;
  border-radius: 50%;
  padding: 1px 5px;
  margin-right: 20px;
}

.list-1 h4 {
  color: #013466;
  font-size: 18px;
}



/*  
.counter-wrapper{
    height: auto;
    background: #013466;
}
.counter-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    grid-gap: 50px;
}
.counter-column{
    height: 150px;
    border-radius: 10px;
    margin: 25px 0;
    border: solid 1px #fff  ;
}
.counter-info{
    margin: 20px 0;
    text-align: center;
    color: #fff;
}
.counter-info h1{
    font-weight: 700;
}
.counter-info p{
    width: 80%;
    margin: auto;
} */


/* 
.why-us-wrapper{
    height: auto;
}
.why-us-heading h1{
    color: #013466;
    font-size: 38px;
}
 .why-us-wrapper .container-lg {
    box-shadow:  0 0  14px #ccc;
    margin: 50px auto ;
    padding: 20px;
 }
 .why-us-wrapper .container-lg .pera p{
  color: #333 !important;
  font-size: 16px;
  line-height: 135%;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 300;
    padding:  20px 0;
 }
.inner-heading h4{
  font-size: 22px;
    color: #e43d30;
}
.reason-row{
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(48% , 1fr));
    grid-gap:  10px;
    margin-top: 30px;
}
.reason-row .reason-column{
    height: auto !important;
}
.reason-row .reason-column p{
  border: solid thin #c4c4c4;
  text-align: center;
  color: #333;
  margin: 3px 10px;
  padding: 10px;
  font-size: 13px;
  align-items: center;
  justify-content: center;

    font-weight: 700;
    color: #333;
} */






.services-wrapper {
  width: 90%;
  margin: auto;
}

.we-offer-area .item {
  overflow: hidden;
  padding: 10px;
  position: relative;
  z-index: 1;
  height: auto !important;
}

.we-offer-area.text-center .item {
  border: medium none;
  padding: 30px 0;
}

.equal-height .item {
  transition: 0.5s ease;
}

.equal-height .item:hover {
  border-bottom: 5px solid #013466;
}

.we-offer-area .item i {
  color: #000;
  display: inline-block;
  font-size: 54px;
}

.we-offer-area .item h4 {
  color: #333;
  margin: 20px 0;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.text-left .item i {
  background: #000 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}







.program-wrapper {
  height: auto;
  background: transparent;
  margin-top: 30px;
}

.program-heading {
  text-align: center;
  color: #000;
}

.program-heading h4 {
  font-size: 42px;
}

.program-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* .program-container{
  width: 100%;
  margin: auto;
} */
/* .row-2{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.row-program-column{
  width: 18%;
  margin:  35px 1.3%;
} */
.program-column {
  margin: 20px 10px;
  height: auto;
  box-shadow: 0 0 7px #ccc;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 10px 0;
  width: 13rem;
}

.program-column a {
  text-decoration: none;
}

.info {
  padding: 30px 10px 10px 10px;
}

.info-img i {
  font-size: 50px;
  color: #000;
}

.inner-info h5 {
  color: #000;
  margin-top: 20px;
  font-size: 18px;
}

.program-column:hover {
  box-shadow: 0 0 5px #333;
}


.modal-header {
  background: #013466;
  color: #fff;
}

.modal-body input,
.modal-body textarea {
  border-radius: 50px;
  font-size: 18px;
  padding: 5px 20px;
  font-weight: 600;
  border-width: 3px;
}

.modal-footer .submit {
  background: #013466;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.modal-footer .submit:hover {
  border: solid 2px #013466 !important;
  background: transparent !important;
  color: #013466;
  box-shadow: 0 0 8px #013466;
}



.button-callback {
  text-align: center;
  margin: 30px 0;
}

.button-callback .callback {
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  background: #013466;
  border-radius: 6px;
  font-weight: 400;
  padding: 5px 20px;
  transition: all ease .5s;
  text-decoration: none;
  border: 0;
}





.facility-wrapper {
  height: auto;
  text-align: center;
}

.facility {
  height: auto !important;
  margin: 5px 0;
}

.facility h1 {
  margin-top: 50px;
  border: 3px solid #c8aa6e;
  border-radius: 50%;
  max-width: 150px;
  height: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facility h1 span img {
  width: 80px;
  height: 80px;
}

.facility p {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
}






.certi-wrapper h1 {
  font-size: 42px;
  text-align: center;
  padding: 0 0 20px 0;
  color: #013466;
}

.certi-wrapper {
  height: auto;
  margin: 20px 0;
}

.certi-wrapper .col-md-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certi-wrapper .column-certi {
  padding-top: 100px;
}

.certi-img {
  width: 400px;
  height: 400px;
}






/* Slider */
/* .company-head{
      color: #013466;
  }
  .company-head span{
      color: #e43d30;
  }
  .slide{
      height: 130px !important;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 7px #ccc;
      padding-top: 20px;
    }
    .slick-slide {
      margin: 10px 20px;
    }
    
    .slick-slide img {
      width: 80%;
      margin: auto;
    }
    
    .slick-list {
      position: relative;
      display: block;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }
    
    .slick-list:focus {
      outline: none;
    }
    
    .slick-list.dragging {
      cursor: pointer;
      cursor: hand;
    }
    
    .slick-slider .slick-track,
    .slick-slider .slick-list {
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .slick-track {
      position: relative;
      top: 0;
      left: 0;
      display: block;
    }
    
    .slick-track:before,
    .slick-track:after {
      display: table;
      content: "";
    }
    
    .slick-track:after {
      clear: both;
    }
    
    .slick-loading .slick-track {
      visibility: hidden;
    }
    
    .slick-slide {
      display: none;
      float: left;
      height: 100%;
      min-height: 1px;
    }
    
    [dir="rtl"] .slick-slide {
      float: right;
    }
    
    .slick-slide img {
      display: block;
    }
    
    .slick-slide.slick-loading img {
      display: none;
    }
    
    .slick-slide.dragging img {
      pointer-events: none;
    }
    
    .slick-initialized .slick-slide {
      display: block;
    }
    
    .slick-loading .slick-slide {
      visibility: hidden;
    }
    
    .slick-vertical .slick-slide {
      display: block;
      height: auto;
      border: 1px solid transparent;
    }
    
    .slick-arrow.slick-hidden {
      display: none;
    } */





.testimonial-wrapper {
  width: 80%;
  margin: auto;
  height: 310px;
  background: url(../images/world-map.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial {
  height: auto;
}

.testimonial .img-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial .img-2 {
  position: absolute;
  top: 60%;
  right: 0;
}

article {
  position: absolute;
  margin: 20px auto;
  width: 80%;
  padding: 1em;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 1em;
  color: #013466;
}

.quote {
  background: transparent;
  padding: 15px 20px 5px 15px;
  border-radius: 5px;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.quote h4 {
  font-weight: 500;
  font-style: italic;
  font-size: 1.2rem;
}

.quote h5 {
  font-weight: 900;
}

.owl-buttons {
  display: none;
}




.enquiry {
  height: auto;
  background: linear-gradient(rgba(1, 52, 102, 0.5), rgba(1, 52, 102, 0.5)), url(../images/hero-section/slide-5.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.need-info {
  text-align: center;
  padding: 70px 0;
  color: #fff;
}

.need-info h1 {
  font-size: 50px;
}

.need-info p {
  font-size: 14px;
  margin-top: 30px;
}

.need-info .enquiry-now {
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  background: #013466;
  border-radius: 6px;
  font-weight: 400;
  padding: 5px 20px;
  transition: all ease 0.5s;
  text-decoration: none;
}

.need-info .enquiry-now:hover {
  background: #fff;
  color: #013466;
}



/* .footer-info{
    text-align: center;
    padding:  40px 0 20px 0;
  }
   .footer-info h6{
    font-size: 14px;
    color: #333;
  }
  .footer-info h4{
    margin-top: 20px;
  }
  .footer-info h4 a{
    text-decoration: none;
    color: #013466;
    font-size: 26px;
    position: relative;
    font-weight: 400;
    padding-left: 40px;
    background: url(../images/icon-call.png) no-repeat 0 50%/30px;
    cursor: pointer !important;
  } */


.footer {
  padding: 10px 0 0 0;
  background: #013466;
}

.address-footer {
  text-align: center;
  padding: 30px;
  color: #fff;
}

.address-icon {
  padding: 10px 15px;
  color: #013466;
  background: #c8aa6e;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 700;
}

.address {
  margin: 20px 0;
}

.address .address-title h5 {
  letter-spacing: 1px;
}

.address .address-inner p {
  color: #ccc;
  font-weight: 400;
}

.address .contact-numbers p {
  font-size: 18px;
  color: #ccc;
  font-weight: 600;
}

.telephone-country-code input {
  width: 100% !important;
}

.model-country-select{
    border: 3px solid #ced4da !important;
    border-radius: 30px !important;
}