:root {
  --heading-color: #0766A5;
  --text-color: #3B3B3B;
  --buttom-color: #8A1C1C;
  --color-white: #fff;
  --bg-color1: #004C8C;
  --bodyFont: "Poppins";
}

* {
  font-family: "Poppins", sans-serif;
}


/*---------------- scrollbar -------------*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #0766a527;
}

::-webkit-scrollbar-thumb {
  background-color: #0766a5bd;
  /* border-radius: 10px; */
}


/* ========cursor=============== */
/* .cursor-dot{
  width: 17px;
  height: 17px;
  background-color: #0766a588;
  transition: 0.15s;
} */
/* .cursor-outline{
    width: 60px;
    height: 60px;
    border: 1px solid #0766A5;
    transition: 0.1s;
} */
/* .cursor-dot, .cursor-outline{
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 99;
  pointer-events: none;
} */


.relative,
body,
html {
  position: relative;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-botton-90 {
  padding-bottom: 90px;
}

body,
ul {
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-weight: normal;
  line-height: 1.6 !important;
  font-size: 15px;
  font-family: var(--bodyFont);
  color: var(--secondary-color);
  background: #EEF3F8;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  min-height: 100%;
}

html {
  height: 100%;
}

ul {
  list-style: none;
}

.btns,
a,
button {
  display: inline-block;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btns,
a,
a:focus,
a:hover,
button {
  text-decoration: none;
  outline-style: none;
}

.btns {
  max-width: 210px;
  width: 100%;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background: var(--bs-white);
  font-size: 17px;
  color: var(--primary-color);
  font-weight: 500;
  border: var(--bs-white) 1px solid;
}

/* .btns:hover {
  background: transparent;
  color: var(--bs-white);
} */

.btnsm {
  font-size: 13px;
  max-width: 196px;
}

p {
  margin: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* .p-v-60 {
  padding: 60px 0;
} */

h1 {
  font-size: 76px;
  font-weight: 700;
  color: var(--heading-color);
}

h2 {
  font-size: 40px;
  color: var(--heading-color);
  font-weight: 700;
}

h4 {
  font-size: 35px;
  font-weight: 700;
}

h6 {
  font-size: 20px;
  font-family: var(--bodyFont);
}

.top-header {
  color: #8A1C1C;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
}

.font-size-20 {
  font-size: 20px;
}

.button {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 15px 47px;
  border-radius: 127px;
  background-color: var(--buttom-color);
  transition: 0.4s;
}

.button:hover {
  color: #fff;
  background-color: #640909;

}

.banner.inner-banner.one .text-wrapper .button {
  padding: 15px 47px;
}

.text {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
}

.font-size-45 {
  font-size: 45px;
  font-weight: 700;
  color: var(--heading-color);
}

.border-radius-32 {
  border-radius: 32px;
}






/* ===========================================header================================ */
header {
  background-color: #f9fcff52;
  padding: 25px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9;
}

header .border-button {
  background-color: transparent !important;
  border: 1px solid #004C8C;
  color: #004C8C !important;
}

header .border-button:hover {
  background-color: #004C8C !important;
  color: #fff !important;
}

header .bottom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .bottom-head .stellarnav {
  display: flex;
  align-items: center;
  gap: 23px;
}

header .bottom-head .stellarnav ul li a {
  padding: 0;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

header .stellarnav {
  width: auto;
}

header .bottom-head .stellarnav ul {
  gap: 15px;
  display: flex;
  align-items: center;
}

header .button-wrpper {
  display: flex;
  gap: 28px;
  align-items: center;
}

header .button-wrpper span a {
  background-color: var(--buttom-color);
  color: #fff;
  padding: 14px 25px;
  border-radius: 127px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.4s;
}

header .button-wrpper span a:hover {
  background-color: #640909;
}

.header.sticky {
  background-color: #fff;
}

.header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

header .dropdown-2 ul {
  display: none;
  background-color: #fff;
}

header .dropdown-2:hover ul {
  display: block;
}



/* ===============================footer======================================= */
footer {
  background-color: #CBD2DA;
  padding: 116px 0 0 0;
}

footer h6 {
  font-size: 17px;
  font-family: 800;
  color: #000;
  margin-bottom: 20px;
}

footer ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

footer .col-lg-7 .col-lg-5 ul {
  padding-top: 36px;
}

footer .logo-wrapper .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 23px;
}

footer .copy {
  background-color: #101010;
  padding: 17px 0;
  text-align: center;
  margin-top: 65px;
}

footer .copy p {
  color: #848484;
  font-size: 12px;
}

footer .col-lg-3 ul {
  padding-top: 35px;
}


/*===================================== banner=========================================== */
.banner {
  background-image: url(../images/banner-image-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 180px;
}

.banner .text-wrapper {
  margin-top: 280px;
}

.banner .text-wrapper h1 {
  margin-bottom: 23px;
}

.banner .text-wrapper p {
  color: var(--text-color);
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 34px;
}

.banner .text-wrapper.one p {
  color: var(--text-color);
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 60px;
}





/*============================= about========================================== */

.about .top-header {
  padding-bottom: 22px;
}

.about .content-wrapper p {
  margin-top: 45px;
  padding-bottom: 40px;
}

.about .image img {
  border-radius: 32px;
  object-fit: cover;
  height: 517px;
  width: 100%;
}

.about {
  padding: 100px 0;
}

.about .about-btn {
  display: none;
}

.about.one .content-wrapper .text {
  margin-top: 26px;
}

.how-it-work .button a {
  color: #fff !important;
}

/* ==============================courses============================================================= */
.courses {
  padding-bottom: 100px 0;
}

.heading {
  text-align: center;
  padding-bottom: 50px;
}

.heading .top-header {
  padding-bottom: 17px;
}

.courses .box h5 {
  font-size: 20px;
  width: 600;
  color: #fff;
  padding-bottom: 20px;
  line-height: 23px;
}

.courses .box p {
  color: #fff;
  padding-bottom: 29px;
}

.courses .box {
  background-color: var(--bg-color1);
  padding: 55px 45px;
  border-radius: 18px;
}

.courses .button-wrap span a {
  padding: 15px 72px;
}

.courses .button-wrap {
  text-align: center;
  margin-top: 60px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}



/* ==================================testimonials===================================================== */
.testimonials {
  padding: 100px 0 86px 0;
}

.testimonials .box img {
  border-radius: 18px;
  object-fit: cover;
}

.testimonials .box {
  padding: 20px;
  border: 1px solid #4E4E4E;
  border-radius: 18px;
}

.testimonials .box .icon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.testimonials .box .icon-box h6 {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

.testimonials .heading {
  padding-bottom: 60px;
}

.testimonials .button-wrapper {
  text-align: center;
  padding-top: 60px;
}

.testimonials .button-wrapper a {
  padding-left: 70px;
  padding-right: 70px;
}






/* =========================================choose============================== */
.choose {
  background-color: #fff;
  padding: 100px 0 80px 0;
}

.choose .box .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D9A441;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.choose .box:hover .icon {
  background-color: var(--heading-color);
}

.choose .box .icon p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1px;
  color: #fff;
  margin-bottom: 9px;
}

.choose .box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 23px;
}

.choose .box {
  background-color: #E8F0FA;
  border-radius: 18px;
  border-radius: 18px;
  box-shadow: 0px 0px 15.9px -6px #00000034;
  padding: 26px 26px 40px 26px;
  transition: 0.4s;
  height: 100%;
}

.choose .box:hover {
  box-shadow: 0px 2px 15.9px -6px #00000048;
  background-color: #99b8dd;
}

.choose .box p {
  font-size: 16px;
  color: #3B3B3B;
  line-height: 24px;
  padding-top: 10px;
}





/* ===============================partners============================= */
.partners {
  padding: 0 0 100px 0;
  background-color: #fff;
}

.partners .heading h2 {
  font-size: 48px;
  color: #8A1C1C;
}

.partners .heading {
  padding-bottom: 40px;
}





/* ===============================video======================================= */
.video {
  background-color: #EEF3F8;
  text-align: center;
}

.video .button {
  background-color: #ffffff57;
  padding: 15px 75px;
}

.video .button a {
  color: #000;
}

.video .wrapper {
  background-image: url(../images/home-bg-image-1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0 90px 0;
}

.video .wrapper h2 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  padding-bottom: 33px;
  padding-top: 27px;
}

#video-1 .modal-body {
  padding: 0rem !important;
}

/* #video-1{
  position: relative;
} */
#video-1 .modal-header {
  position: absolute;
  top: 3px;
  right: 7px;
  z-index: 9999;
}

#video-1 .modal-dialog {
  max-width: 800px !important;
  border-radius: 20px;
  border: 10px solid #ffffff;
  overflow: hidden;
}

#video-1 .modal-dialog {
  width: 100% !important;
}

#video-1 .modal-content {
  border: 0;
  background-color: #00000000;
}

#video-1 video {
  height: 100%;
}

#video-1 .modal-header {
  border: none;
}

#video-1 .btn-close {
  border: 2px solid #ffffff;
  background-color: #ffffff33;
  opacity: 0.8;
  background-image: url(../images/cross.png) !important;
}

#video-1 .btn-close .about-btn {
  display: none;
}




/* =========================inner-banner=========================== */
.inner-banner {
  padding-bottom: 120px;
  background-image: url(../images/inner-banner-bg-image.jpg);
}

.inner-banner .text-wrapper {
  max-width: 547px;
  width: 100%;
  margin-top: 188px;
}






/* ================================about-us about page========================= */
/* .about-us{
  padding: 90px 0;
} */
.about-us .justify-content-between {
  justify-content: space-between;
}

.about-us .inner-text {
  max-width: 757px;
  width: 100%;
}

.about-us .text-wrapper .top-header {
  padding-bottom: 15px;
}

.about-us .text-wrapper .inner-text h2 {
  padding-bottom: 21px;
}

/* .about-us .text-wrapper .inner-text:nth-child(1){
  margin-bottom: 100px;
} */
.about-us .image-wrap img {
  height: 570px;
}





/* ====================================how-it-work==================================== */
.how-it-work {
  padding: 90px 0 100px 0;
  background-color: #fff;
}

.how-it-work .heading-wrapper {
  text-align: center;
}

.how-it-work .heading-wrapper .top-header {
  padding-bottom: 15px;
}

.how-it-work .text-wrapper p:nth-child(1) {
  margin-bottom: 35px;
}

.how-it-work .text-wrapper p:nth-child(2) {
  margin-bottom: 40px;
}

.how-it-work .text-wrapper {
  padding-bottom: 46px;
}

.how-it-work .image-wrapper img {
  height: 570px;
}

.how-it-work .text-wrapper .about-btn-2 .button {
  padding: 15px 114px !important;
}

.how-it-work .text-wrapper {
  max-width: 758px;
  width: 100%;
}

.partners.two {
  padding-bottom: 90px;
}







/* ============================inner-banner-2========================= */
.inner-banner-2 .text-wrapper {
  max-width: 100%;
}

.inner-banner-2 .text-wrapper p {
  max-width: 547px;
  width: 100%;
}

.inner-banner-2 .text-wrapper .button-wrapper span:nth-child(2) a {
  padding: 15px 51px;
  margin-left: 6px;
}








/* ===============================sliderTab==================================== */
.sliderTab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 29px;
  padding: 0;
  background: var(--color2);

  @media (max-width: 479px) {
    width: 100%;
  }

  .swiper-slide {
    padding: 0 11px;
    position: relative;
    z-index: 9;
    width: auto;

    a {
      display: block;
      color: #333;
      letter-spacing: .05em;
      transition: .25s;

      .slide__nav {
        &:after {
          content: "";
          display: block;
          position: absolute;
          left: 50%;
          bottom: 0;
          width: 0;
          height: 1px;
          background: var(--color1);
          transform: translateX(-50%);
          transition: .25s;
        }
      }
    }

    &.on {
      .slide__nav {
        color: var(--color1);
        text-shadow: 0 0 .6px var(--color1), 0 0 .6px var(--color1);

        &:after {
          width: 100%;
        }
      }
    }
  }

  .slide__nav {
    text-align: center;
    padding: 15px 10px 26px 10px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1;
    color: #2C2C2C;
    min-width: 205px;
    font-weight: 600;
  }
}

.sliderContent {
  width: 100%;

  .swiper-slide {
    padding: 0 30px;

    .title {
      margin-bottom: 15px;
      font-size: 30px;
      text-align: center;
    }

    .content {
      margin: 0 auto;
      max-width: 500px;
      font-size: 14px;
      line-height: 2;
      text-align: center;
    }
  }
}

/* information========================================== */
.information {
  position: relative;
  background-color: #fff;
  padding: 10px 0 25px 0;
}

.information .wrapper {
  position: relative;
}

.information .sliderTab__next {
  position: absolute;
  right: -20px;
  top: 11px;
}

.information .sliderTab__prev {
  position: absolute;
  left: -20px;
  top: 10px;
}

/* .information .zz .swiper-slide.on{
  color: var(--buttom-color);
  font-weight: 600;
  border-bottom: 8px solid #8A1C1C;
} */
.slide__nav::after {
  border-bottom: 8px solid #8A1C1C;
  border-radius: 10px;
}

.slide__nav {
  font-size: 16px;
  margin-bottom: 25px;
}

.information .swiper-container .swiper-slide .form-fild label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

.information .swiper-container .swiper-slide .form-fild input {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #C3C3C3;
  border-top: 0;
  border-left: none;
  border-right: none;
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 14px;
  outline: none;
  margin-right: 40px;
}

.information .swiper-container .swiper-slide .form-fild select {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #C3C3C3;
  border-top: 0;
  border-left: none;
  border-right: none;
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 16px;
  outline: none;
}

.information .left-form .form-fild {
  padding-right: 45px;
}

.information .heading-wrap h2 {
  padding-bottom: 25px;
  line-height: 51px;
}

.information .heading-wrap .button {
  padding: 15px 50px;
  outline: none;
  border: none;
}

.information .swiper-container.sliderContent {
  background-color: #E8F0FA;
  border-radius: 18px;
  padding: 38px 12px 38px 15px;
  overflow: hidden;
  box-shadow: 0px 0px 15.9px -6px rgba(0, 0, 0, 0.25);
}

/* .information .swiper-wrapper .swiper-slide form {
  background-color: #E8F0FA;
  padding: 38px 12px 38px 15px;
  box-shadow: 0px 0px 15.9px -6px rgba(0, 0, 0, 0.25);
  border-radius: 18px;
} */

.information .left-form .form-fild:nth-child(1) {
  margin-bottom: 28px;
}

.information .right-form .form-fild:nth-child(1) {
  margin-bottom: 28px;
}

.information .swiper-container.sliderTab {
  position: relative;
}

.information .swiper-container.sliderTab::after {
  width: 98%;
  height: 1px;
  background-color: #C7C7C7;
  position: absolute;
  content: "";
  top: 53px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 10px;
}

.information .sliderTab__next svg path {
  fill: #787878;
}

.information .sliderTab__prev svg path {
  fill: #787878;
}





/* ======================================about-us-1======================================== */
.about-us.about-us-1 .image-wrap img {
  height: 410px;
  object-fit: cover;
}

.about-us.about-us-1 .text-wrapper .inner-text {
  max-width: 753px;
  width: 100%;
}

.about-us.about-us-1 .text-wrapper .inner-text h2 {
  padding-bottom: 25px;
}

.about-us.about-us-1 .inner-text h2 {
  line-height: 46px;
}







/* ================================training============================= */
.training .heading-wrapper {
  text-align: center;
}

.training .wrapper {
  background-color: #fff;
  border-radius: 47px 47px 47px 47px;
  padding-top: 70px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 50px;
}

.training .wrapper h2 {
  line-height: 50px;
  margin-bottom: 26px;
}

.training .wrapper .heading-wrapper {
  max-width: 1053px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px 35px 15px;
}

.training .wrapper .box p {
  background-color: var(--bg-color1);
  color: #fff;
  font-size: 20px;
  padding: 32px 25px 35px 28px;
  border-radius: 18px;
  height: 100%;
}

.training .botton-text {
  max-width: 1053px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.training .botton-text {
  padding-top: 45px;
}

.training .botton-text .inner-heading {
  margin-top: 42px;
}








/* ============================cta-1========================== */
.cta-1 {
  padding: 100px 0;
}

.cta-1 .content-wrapper .text h2 {
  padding-bottom: 23px;
  color: #fff;
  /* line-height: 50px; */
}

.cta-1 .content-wrapper .text:nth-child(1) {
  margin-bottom: 35px;
}

.cta-1 .wrapper {
  background-color: #004C8C;
  padding: 75px 17px 70px 17px;
  border-radius: 47px;
}

.cta-1 .content-wrapper .text p {
  color: #fff;
  font-size: 20px;
  line-height: 23px;
}

.cta-1 .image-wrapper img {
  border-radius: 24px;
  height: 348px;
  object-fit: cover;
}







/* ======================================course-program================================== */
.course-program {
  padding-bottom: 45px;
}

.course-program .content-wrapper {
  background-color: #fff;
  border-radius: 47px 47px 47px 47px;
  padding: 100px 0 70px 0;
}

.course-program .content-wrapper .box-wrap .box-heading h6 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding-bottom: 2px;
}

.course-program .content-wrapper .box-wrap {
  background-color: #E8F0FA;
  border-radius: 24px;
  padding: 60px 50px 50px 30px;
  height: 100%;
}

.course-program .icon-box-wrap ul li span {
  width: 40px;
  height: 40px;
  background-color: #D9A441;
  border-radius: 50px;
  margin-right: 50px;
}

.course-program .bottom-text h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  padding-bottom: 10px;
}

.course-program .icon-box-wrap ul li {
  display: flex;
  padding: 20px 0;
  position: relative;
  line-height: 33px;
}

.course-program .icon-box-wrap ul li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  border-bottom: 1px dashed #A2A2A2;
  content: "";
  width: 82%;
}

.course-program .icon-box-wrap ul li:nth-child(3)::after {
  border-bottom: 1px dashed #c0181800;
}

.course-program .icon-box-wrap ul li span {
  width: 30px;
  height: 30px;
  background-color: #D9A441;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex: 0 0 30px;
  font-size: 20px;
  color: #fff;
  margin-top: 7px;
}

.course-program .icon-box-wrap ul li p {
  font-size: 18px;
  color: #3B3B3B;
  width: 356px;
}

.course-program .content-wrapper .col-lg-5:nth-child(2) .bottom-text {
  margin-top: 40px;
}

.course-program .button-wrapper .button {
  padding: 15px 94px;
}

.course-program .button-wrapper {
  text-align: center;
  padding-top: 46px;
}

.course-program .content-wrapper .cta {
  align-items: end;
}

.course-program .content-wrapper .cta .left .text h6 {
  font-weight: 700;
  color: #fff;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-right: 15px;
}
.course-program .content-wrapper .cta .left .text:nth-child(2) {
  display: grid;
  padding-bottom: 15px;
}

/* .course-program .content-wrapper .cta .left .text:nth-child(1) h6 {
  padding-bottom: 24px;
} */

/* .course-program .content-wrapper .cta .left .text:nth-child(2) h6 {
  padding-bottom: 17px;
} */

.course-program .content-wrapper .cta .left {
  gap: 20px;
  width: 55%;
  display: grid !important;
}
.course-program .content-wrapper .cta .left .text{
  display: flex;
  align-items: center;
}

.course-program .content-wrapper .cta .left .text p {
  font-weight: 400;
  color: #fff;
}

.d-button-left ul {
  left: -50px;
}

.course-program .content-wrapper .cta .left .text h3 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.course-program.course-program-box .cta .font-size-20 {
  font-size: 16px;
}

.course-program.course-program-box .cta .button {
  font-size: 14px;
}

.course-program .content-wrapper .cta {
  background-color: var(--bg-color1);
  padding: 49px 50px 55px 50px;
  border-radius: 47px;
  margin-top: 40px;
  align-items: center;
}

.course-program .content-wrapper .cta .button-wrap span:nth-child(1) .button {
  padding: 15px 43px;
}

.course-program .content-wrapper .cta .button-wrap span:nth-child(2) .button {
  padding: 15px 49px;
  margin-left: 22px;
}

.course-program .content-wrapper .text-icon {
  padding-top: 86px;
}

.send-message.register-page form {
  background-color: transparent;
}

.training .one-box .text {
  height: 100%;
}

.training .one-box .text p {
  height: 100%;
}

.training .one-box .col-lg-6 {
  margin-bottom: 32px;
}

.training .box-wrapper .text {
  height: 100%;
}

.training .box-wrapper .col-lg-6 {
  padding-bottom: 32px;
}





/* =================================messages====================================== */
.messages {
  padding: 50px 0;
}

.messages .messages-box {
  text-align: center;
}

.messages .messages-box img {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  object-fit: cover;
}

.messages .messages-box h6 {
  font-weight: 700;
  color: #000;
  padding-top: 12px;
  padding-bottom: 24px;
}

.messages .messages-box .inner-text {
  background-color: #fff;
  padding: 40px 47px 27px 47px;
  border-radius: 18px;
  height: 100%;
}

.messages .messages-box {
  padding: 27px;
  border: 1px solid #4E4E4E;
  border-radius: 18px;
  height: 100%;
}

.messages .heading {
  padding-bottom: 77px;
}





/* ===========================================testimonials-1============================= */
.testimonials.testimonials-1 {
  padding-top: 50px;
  padding-bottom: 100px;
}

.testimonials.testimonials-1 .heading {
  padding-bottom: 40px;
}




/* =================================partners-2==================================== */
.partners.partners-2 {
  padding-top: 60px;
}

.partners.partners-2 .heading {
  padding-bottom: 36px;
}




/* ==================================inner-banner-3======================================= */
.inner-banner-3 {
  background-image: url(../images/inner-banner-bg-image.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 293px;
  padding-bottom: 210px;
}



/* ======================testimonials-page================================================== */
.testimonials.testimonials-page .col-lg-3 a {
  margin-bottom: 40px;
}

.testimonials.testimonials-page {
  padding-top: 68px;
  padding-bottom: 125px;
}



/* ================================================partners-testimonials-page======================== */
.partners.partners-testimonials-page {
  padding-top: 60px;
  padding-bottom: 90px;
}






/* =================================================send-message===================================== */
.send-message {
  padding: 100px 0;
}

.send-message form label {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

.send-message form {
  background-color: #E8F0FA;
  border-radius: 18px;
  box-shadow: 0px 0px 15.9px -6px rgba(0, 0, 0, 0.25);
  padding: 95px 110px 77px 110px;
}

.send-message form input {
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #C3C3C3;
  background-color: transparent;
  outline: none;
  border-radius: 0;
  padding-left: 0;
  padding-bottom: 14px;
  margin-bottom: 53px;
}

.send-message .button {
  outline: none;
  border: none;
  text-align: center;
  padding: 15px 100px;
}

.send-message .form-control:focus {
  background-color: transparent;

  box-shadow: none;
}

.send-message textarea {
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #C3C3C3;
  background-color: transparent;
  outline: none;
  border-radius: 0;
  padding-left: 0;
  padding-bottom: 50px;
  margin-bottom: 72px;
}

.send-message .heading {
  padding-bottom: 75px;
}







/* ====================================contac-partners============================= */
.partners.contac-partners {
  padding: 58px 0 90px 0;
}

.partners.contac-partners .heading {
  padding-bottom: 36px;
}




/* =============================inner-banner one============================= */

.banner.inner-banner.one {
  padding-bottom: 50px;
}

.banner.inner-banner.one .text-wrapper {
  margin-top: 250px;
}




















.swiper-slide.swiper-slide-next.on .slide__nav {
  color: var(--buttom-color);
}

.swiper-slide.on.swiper-slide-active .slide__nav {
  color: var(--buttom-color);
}

/* .course-program .content-wrapper .cta{
  display: block !important;
} */
.course-program .button-wrap {
  display: flex;
}

/* .testimonials.testimonials-1.one{
      padding-top: 50px;
} */


.information .swiper-slide.on .slide__nav {
  color: var(--buttom-color) !important;
}





/* ================================dropdown-1============================= */
.header .stellarnav .dropdown-1 ul li:hover {
  background-color: var(--buttom-color);
}

.header .stellarnav .dropdown-1 ul li a {
  color: #000 !important;
}

.header .stellarnav ul li:hover a {
  color: #8A1C1C;
}

.header .stellarnav .dropdown-1 ul {
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  box-shadow: 0px 3px 3px 3px #00000018;
}

.header .stellarnav .dropdown-1:hover ul {
  opacity: 1;
  visibility: visible;
}

.header .stellarnav .dropdown-1 ul li {
  width: 100%;

  border-bottom: 1px solid #640909;
}

.header .stellarnav .dropdown-1 ul li a {
  padding: 10px 20px;
}

.header .stellarnav ul ul ul {
  left: 226px;
}

.header .stellarnav .dropdown-1 ul li:hover a {
  color: #fff !important;
  width: 100%;
}

.header .stellarnav .dropdown-1 ul {
  gap: 0;
  width: 250px;
}

.header .stellarnav li.has-sub>a:after {
  border-top: 6px solid #000000;
}

.header .stellarnav li:hover.has-sub>a:after {
  border-top: 6px solid #a50b0b;
}

.header .stellarnav .dropdown-1 .dropdown-2 ul li a {
  color: #000 !important;
}

.header .stellarnav .dropdown-1 .dropdown-2 ul li:hover a {
  color: #fff !important;
}

.header .stellarnav .dropdown-1 .dropdown-2 ul {
  opacity: 0;
  visibility: hidden;
}

.header .stellarnav .dropdown-1 .dropdown-2:hover ul {
  opacity: 1;
  visibility: visible;
}




/* ======================================blog-wrapper================================ */
.blog-section {
  padding: 70px 0 100px 0;
}

.blog-section .blog-wrapper {
  border: 1px solid #4E4E4E;
  border-radius: 18px;
  /* box-shadow: 0px 4px 4px 3px #0000002d; */
  padding: 20px 20px 40px 20px;
  height: 100%;
}

.blog-section .blog-wrapper:hover {
  box-shadow: 0px 4px 4px 3px #0000002d;
}

.blog-section .blog-wrapper h5 {
  font-size: 19px;
  font-weight: 600;
  line-height: 25px;
  color: #0766A5;
  margin-top: 15px;
  margin-bottom: 15px;
}

.blog-section .blog-wrapper .image a {
  width: 100%;
}

.blog-section .blog-wrapper .image a img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px 18px 18px 18px;
}

.blog-section .blog-wrapper .text p {
  line-height: 1.6;
  max-height: calc(1.6em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  color: #3B3B3B;
  margin-bottom: 25px;
}

.blog-section .blog-wrapper .button {
  height: 45px;
  line-height: 15px;
  font-size: 13px;
  text-transform: capitalize;
  /* width: 100%;
  text-align: center; */
}

.blog-section .blog-wrapper .image {
  position: relative;
}

.blog-section .blog-wrapper .image .date {
  font-size: 12px;
  color: #fff;
  background-color: #004C8C;
  padding: 7px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0px 0px 0px 18px;
}









/* ===========================register-form=========================== */
.send-message.register-form .mform-inner-heading {
  padding-bottom: 30px;
}

.send-message.register-form .mform-inner-heading h6 {
  font-size: 20px;
  font-weight: 700;
  color: #0766A5;
}

.send-message.register-form form {
  padding: 0;
  color: transparent;
  box-shadow: none;
}

.send-message.register-form form .register-form-wrap {
  background-color: #E8F0FA;
  border-radius: 18px;
  box-shadow: 0px 0px 15.9px -6px rgba(0, 0, 0, 0.25);
  padding: 50px 110px 30px 110px;
  margin-bottom: 30px;
}

.send-message.register-form form .register-form-wrap select {
  width: 100%;
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #C3C3C3;
  background-color: transparent;
  outline: none;
  border-radius: 0;
  padding-left: 0;
  padding-bottom: 14px;
  margin-bottom: 53px;
  background-color: transparent;
}

.send-message.register-form form .register-form-wrap select option {
  width: 100%;
  background-color: transparent;
}

.send-message.register-form form .register-form-wrap input.image {
  height: 37px;
}

.send-message.register-form form .register-form-wrap ul {
  padding-left: 20px;
}

.send-message.register-form form .register-form-wrap ul li {
  font-size: 18px;
  color: #3B3B3B;
  list-style-type: disc;
  padding-bottom: 15px;
  font-weight: 600;
}

.inner-banner-3.details-banner .banne-text {
  width: 70%;
}

.inner-banner-3.details-banner .banne-text h2 {
  line-height: 45px;
}







/* ==============================details-section============================ */
.details-section {
  padding: 70px 0 80px 0;
}

.details-section .details-wrapper img {
  height: 370px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 30px;
}

.details-section p {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 15px;
  color: #3B3B3B;
}

.details-section h5 {
  font-size: 28px;
  font-weight: 700;
  color: #0766A5;
  line-height: 35px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 15px;
}

/* .details-section.blog-section .details-right-content{
  padding: 30px 25px;
  background-color: #ffffff;
  border-radius: 18px;
} */
.details-section.blog-section .details-right-content .right-content-wrap h6 {
  font-size: 17px;
  line-height: 24px;
  max-height: calc(1.6em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

.details-section.blog-section .details-right-content .right-content-wrap p {
  font-size: 14px;
  line-height: 20px;
  max-height: calc(1.6em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.details-section.blog-section .details-right-content .right-content-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid #4E4E4E;
  padding: 12px 15px;
  border-radius: 15px;
  background-color: #fff
}

.details-section.blog-section .details-right-content .right-content-wrap .inne-imge {
  flex: 0 0 100px;
}

.details-section.blog-section .details-right-content .right-content-wrap .inne-imge img {
  border-radius: 10px;
}

.details-section.blog-section .details-wrapper ul li {
  font-size: 18px;
  color: #0766A5;
}

.details-section.blog-section .details-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  list-style-type: disc;
  padding-left: 20px;
}

/* .details-section.blog-section .details-right-content{
  width:30%;
  right:0;
  top: 100px;
} */





/* .faq-section */
.faq-section {
  padding: 50px 0 100px 0;

}

.faq-section .heading-wrapper h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--heading-color);
  /* max-width: 700px;
  width: 100%; */
  text-align: center;
  margin: 0 auto;
  padding-bottom: 20px;
}

.faq-section .heading-wrapper p {
  /* max-width: 700px;
  width: 100%; */
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.faq-section .accordion-button {
  padding: 20px 20px 20px 20px;
  /* background-color: var(--bg-color1); */
  border-radius: 5px;

}

.faq-section .accordion-item {
  margin-bottom: 10px;
}

.faq-section .accordion-item .accordion-button {
  box-shadow: 0px 4px 4px 4px #00000010;
}

/* .faq-section .accordion-button:focus {
  background-color: var(--bg-color1);
  color: #fff;
} */

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url(../images/angle-small-down-111.png);
  background-size: 25px;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--bg-color1);
  color: #fff;
}

/* .faq-section .accordion-button {
  background-color: var(--bg-color1);
  color: #ffff;
} */
.faq-section .accordion-item .accordion-body ul {
  padding-left: 20px;
  padding-top: 5px;
}

.faq-section .accordion-item .accordion-body ul li {
  list-style-type: disc;
  font-size: 14px;
  padding-top: 5px;
  color: #000000b4;
}

.testimonials.testimonials-page {
  padding-bottom: 60px;
}








/* ==========================special-offer-section================ */
.special-offer-section form .form-fild label {
  display: block;
}

.special-offer-section {
  padding: 50px 0 90px 0;
}

.special-offer-section .offer-wrapper {
  background-color: #cbd2da;
  padding: 40px 25px 40px 25px;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0px 3px 3px 1px #00000013;
}

.special-offer-section .offer-wrapper h4 {
  font-size: 27px;
  font-weight: 700;
  color: #004C8C;
  margin-bottom: 17px;
}

.special-offer-section .offer-wrapper h6 {
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  line-height: 23px;
  padding-bottom: 10px;
}

.special-offer-section .offer-wrapper .usd {
  font-size: 18px;
  color: #000000;
  padding-bottom: 6px;
}

.special-offer-section .offer-wrapper .offer {
  font-size: 22px;
  color: #004C8C;
  font-weight: 600;
}

.special-offer-section .offer-wrapper p {
  font-size: 14px;
  color: #000000;
}

.special-offer-section form {
  background-color: #004C8C;
  padding: 23px 25px;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0px 3px 3px 1px #00000013;
}

.special-offer-section form input {
  background-color: transparent;
  outline: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.753);
  border-top: none;
  color: rgba(255, 255, 255, 0.753);
  padding: 10px 10px 10px 0px;
}

.special-offer-section form h6 {
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 10px;
}

.special-offer-section form input::placeholder {
  color: rgba(255, 255, 255, 0.753);
  opacity: 1;
  /* Firefox */
}

.special-offer-section form input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgba(255, 255, 255, 0.753);
}

.special-offer-section form button {
  background-color: #ffffff00;
  border: 1px solid #fff;
  color: #fff;
  outline: none;
  height: 40px;
  margin-top: 20px;
  border-radius: 18px;
}


/* .dropdown-1.has-sub.open .icon-plus {
  transform: rotate(0deg) !important;
}

.dropdown-1.has-sub .icon-plus {
  transform: rotate(135deg) !important;
} */






/* ==========================gallery-section======================== */
.blog-section.gallery-section .blog-wrapper .image img {
  height: 210px;
  object-fit: cover;
}

.blog-section.gallery-section .blog-wrapper span h5 {
  margin-bottom: 20px;
}

.inner-banner-3.gallery-banner .banne-text h2 {
  line-height: 40px;
  width: 80%;
}

.blog-section.gallery-details .image-wrapper .image-1 {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.blog-section.gallery-details .image-wrapper .image-2 {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  object-fit: cover;
}

.blog-section.gallery-details .image-wrapper a {
  position: relative;
  transition: 0.6s;
}

.blog-section.gallery-details .image-wrapper a:hover::after {
  background-color: #0766a58f;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.blog-section.gallery-details .image-wrapper a:hover:before {
  background-image: url(../images/eye-icon.png);
  background-position: center;
  background-size: 60px;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
}

.blog-section.gallery-details {
  padding-top: 100px;
}

.information .about-us.about-us-1 {
  padding-top: 90px;
}




.testimonials iframe {
  height: 475px;
  border-radius: 18px;
}

.send-message.coursee form select {
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #C3C3C3;
  background-color: transparent;
  outline: none;
  border-radius: 0;
  padding-left: 0;
  padding-bottom: 14px;
  margin-bottom: 53px;
  width: 100%;
}

.send-message.coursee form .select-box {
  padding-bottom: 5px;
}

.faq-two .heading-wrapper h3 {
  padding-bottom: 60px;
}

.send-message.register-page.register-form .submit-form .register-form-wrap .col-lg-6 {
  position: relative;
}

.send-message.register-page.register-form .submit-form .register-form-wrap .col-lg-6 .text-danger {
  position: absolute;
  top: auto;
  left: 10px;
  font-size: 14px;
  bottom: 30px;
}

.send-message .submit-form .col-lg-6 {
  position: relative;
}

.send-message .submit-form .col-lg-12 {
  position: relative;
}

.send-message .submit-form .col-lg-6 .text-danger {
  position: absolute;
  top: -23px;
  left: 10px;
}

.send-message .submit-form .col-lg-12 .text-danger {
  position: absolute;
  top: -23px;
  left: 10px;
}

.courses .box {
  min-height: 422px;
}

.courses .box p {
  min-height: 206px;
}

textarea {
  resize: none;
}








/* ===================================0000000000000000000000000000000000000000000 */
/* 
.sidebar-wrapper {
  position: relative;
}

@media (min-width: 992px) {
  .details-right-content {
    position: sticky;
    top: 120px;
  }
} */

.icon-wrapper a:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.courses .course-item {
  margin-bottom: 30px;
}

.messages.one .row .col-lg-6 {
  margin-bottom: 20px;
}