@import url(fontawesome.css);
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Raleway:wght@200&display=swap'); */

body {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Poppins';
}

/* Basic */

a {
  color: #c6b473;
  text-decoration: none;
}

a:hover {
  color: #FC3;
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  /* list-style: none; */
}

p {
  font-size: 13px;
  line-height: 22px;
}


.section-heading {
  text-align: center;
  margin-bottom: 0px;
}

.section-heading h2:before {
  width: 1px;
  height: 66px;
  background-color: rgb(150 124 40);
  position: absolute;
  top: -67px;
  content: '';
  left: 50%;
  transform: translate(-50%);
}

.section-heading h2 {
  text-transform: uppercase;
  margin-top: 66px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    /* font-family: cursive; */
    color:  rgb(13 26 42);
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 15px 20px;
    border: 2px solid rgb(149 124 39);
}


/* Buttons */

.main-button a {
  background-color: #f5a425;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
}

a.menu-link {
  display: none;
}

@media screen and (max-width: 950px) {
  a.menu-link {
    float: right;
    display: block;
    font-size: 22px;
    color: #fff;
    padding-right: 30px;
    padding-top: 0px;
    margin-top: 25px;
  }

  nav[role="navigation"] {
    clear: both;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .js nav[role="navigation"] {
    overflow: hidden;
    max-height: 0;
  }

  nav[role="navigation"].active {
    max-height: 20em;
    height: 20em;
    overflow-y: scroll;
  }

  nav[role="navigation"] ul {
    top: 0;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(250, 250, 250, 0.25);
    background-color: rgba(22, 34, 57, 0.99);
  }

  nav[role="navigation"] li a {
    display: block;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
    text-align: center;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
  }

  nav[role="navigation"] li:hover a,
  nav[role="navigation"] li.active a {
    color: #f5a425;
  }

  @media screen and (min-width: 951px) {
    .js nav[role="navigation"] {
      max-height: none;
    }

    nav[role="navigation"] li {
      display: inline-block;
      margin: 0 0.25em;
    }

    nav[role="navigation"] li a {
      border: 0;
    }
  }
}

/* Header */

@media screen and (max-width: 1050px) {
  .main-header .logo {
    padding-left: 30px !important;
  }

  .main-menu {
    padding-right: 30px !important;
  }

  .main-menu li {
    margin-left: 5px !important;
  }
}


.main-header {
  /* background-color: rgb(12 26 43); */
  background-color: rgb(227 227 227);
  /* height: 80px; */
  position: fixed;
  z-index: 12;
  width: 100%;
  top: 0;
  padding-left: 10%;
  box-shadow: 1px 2px 15px rgb(108 108 108 / 30%);
}

.main-header .logo {
  float: left;
  /* line-height: 80px; */
  /* padding-left: 60px; */
}

.main-header .logo .logo-img {
  /* max-width: 45%; */
}

.main-header .logo a {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}

.main-header .logo a em {
  font-style: normal;
  color: #f5a425;
}

.main-menu {
  float: right;
  padding-right: 60px;
}

.main-menu li {
  display: inline-block;
  line-height: 100px;
  margin-left: 15px;
  position: relative;
}

.main-menu li:first-child {
  margin-left: 0px;
}

.main-menu li a {
  padding: 10px 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #0d1a2a;
  border: 2px solid transparent;
  transition: all 0.5s;
}

.main-menu li.has-submenu a:after {
  content: '\f107';
  font-family: "FontAwesome";
  margin-left: 5px;
}

.main-menu li.has-submenu ul li a:after {
  display: none;
}

.main-menu li .sub-menu {
  position: absolute;
  width: 160px;
  background-color: #18233a;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.main-menu li .sub-menu li {
  display: block;
  line-height: 20px;
  margin-left: 0px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #121b2f;
}

.main-menu li .sub-menu li:first-child {
  padding-top: 15px;
}

.main-menu li .sub-menu li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.main-menu li .sub-menu li a {
  font-size: 12px;
  font-weight: 500;
  padding: 0px 15px;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.5s;
}

.main-menu li .sub-menu li a:hover {
  color: #f5a425;
  border: none;
}

.main-nav li:hover a,
.main-nav li.active a {
   border: 2px solid #c0ab84;
}

@media (max-width: 950px) {

  .main-nav li:hover a,
  .main-nav li.active a {
    border: 2px solid transparent;
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
  }
}


/* Slider */

.main-banner {

  background-image: url(../images/hero.png);
  position: relative;
  max-height: 920px;
  max-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  /* margin-bottom: -7px; */

}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
    background-image: linear-gradient(180deg, #3a3a3aad, #ffff0000);
    top: 0;
    left: 0;
    bottom: 0px;
    width: 100%;
}

.banner-slider{
  padding-left: 0;
  padding-right: 0;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 49px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #e2d8c7;
  font-weight: 900;
  font-family: Marcellus SC;
  word-spacing: 10px;
}


@media screen and (max-width: 1180px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 58px;
  }

}

@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }

}


/* Features */

section.features .col-4 {
  padding-left: 0px;
  padding-right: 0px;
}

.features-post {
  position: relative;
  margin-bottom: 0px;
}

.features-thumb {
  overflow: hidden;
  position: relative;
}

.features-thumb img {
  width: 100%;
}

.features-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #c58452;
  color: #fff;
  padding: 40px;
}

.features-content:hover {
  background-color: #0a1a2d;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.features-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0px;
  text-align: center;
}

.features-content h4 i {
  margin-right: 15px;
  font-size: 24px;
}

.features-content p {
  margin-bottom: 0px;
}

.features-content a {
  margin-top: 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #fff;
}

.features-content p.hidden-sm {
  display: none;
}

.second-features,
.third-features {
  border-left: 1px solid rgba(250, 250, 250, 0.1);
}

.content-hide {
  margin-top: 15px;
  display: none;
}

.content-hide p {
  color: #fff;
  font-size: 17px;
  text-align: justify;
}

@media screen and (max-width: 767px) {

  .features-content {
    padding: 15px;
  }

  .features-content h4 i {
    display: block;
    margin-bottom: 10px;
  }

  .features-content h4 {
    font-size: 14px;
  }

  .features-content p {
    display: none;
  }

  .features-content p.hidden-sm {
    display: block;
  }

  .features-content a {
    letter-spacing: 0px;
    font-size: 13px;
    font-weight: 600;
  }

}



/* Why Choosing Us */

section.why-us {
  /* background-image: url(../images/bg.jpg); */
  /* background-color: #96202023; */
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;

}


#tabs {
  text-align: center;
}

#tabs ul {
  margin: 0;
  padding: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}

#tabs ul::after {
  clear: both;
  content: "";
  display: table;
}






#tabs ul li {
  display: block;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-align: center;
}

#tabs ul li a {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  outline: 0;
  padding-bottom: 30px;
  color: rgb(71, 5, 5);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

#tabs ul li a:after {
  transition: all 0.3s;
  width: 10px;
  height: 10px;
  background-color: rgb(61, 2, 2);
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}

#tabs ul li a:before {
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  border: 2px solid transparent;
  background-color: transparent;
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -5px;
}

#tabs ul li span {
  display: block;
  margin-bottom: 0.75em;
}

#tabs ul .ui-tabs-active {}

#tabs ul .ui-tabs-active a {
  color: #082064;
}

#tabs ul .ui-tabs-active a:after {
  background-color: #255cf5;
  width: 15px;
  height: 15px;
}

#tabs ul .ui-tabs-active a:before {
  border-color: #030d69;
}

#tabs h4 {
  text-align: center;
  /* margin-top: 35px; */
  font-size: 32px;
  font-weight: 500;
  /* font-family: 'Marcellus SC'; */
  letter-spacing: 1px;
  color: rgb(159 0 0);
  /* margin-bottom: 30px; */
}

#tabs p {
  color: rgb(37, 2, 2);
  font-size: 15px;
  text-align: justify;
  /* justify-content: center; */
  line-height: 28px;
}

.tabs-content {
  margin-top: 60px;
  text-align: left;
}

#tabs-2 p,
h5 {
  text-align: center;
}

@media screen and (max-width: 767px) {

  .tabs-content {
    text-align: center;
  }

}

.tabs-content img {
  /* width: 100%;
  overflow: hidden;
  padding-right: 45px; */
  margin-top: 85px;
}

.d-img{
  /* border-radius: 71px 0px; */
  margin-top: 15px !important;
}

@media screen and (max-width: 767px) {

  .tabs-content img {
    padding-right: 0px;
  }

}


/* Coming Soon */

section.coming-soon {
  background-image: url(../images/main-slider-02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  /* padding: 120px 0px; */
  font-family: Marcellus SC;
}

section.coming-soon .centerIt table tr td {
  color: white;
  font-size: 27px;
  font-family: 'poppins';
  padding: 9px 26px;
}

section.coming-soon .centerIt table {
  margin-bottom: 90px;
  margin-top: -25px;
}


section.coming-soon .continer .counter div {
  display: inline-block;
}

section.coming-soon .continer h4 {
  margin-top: 14px;
  font-size: 38px;
  text-align: center;
  /* margin-left: 80px; */
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 50px;
}

section.coming-soon .continer h4 em {
  font-style: normal;
  color: #f5a425;
}

@media screen and (max-width: 767px) {

  section.coming-soon .continer h4 {
    text-align: center;
  }

}


section.coming-soon .continer .counter span {
  font-size: 18px;
  text-transform: uppercase;
  color: #f5a425;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0px;
  display: block;
}

section.coming-soon .right-content {
  margin-left: 30px;
}

@media screen and (max-width: 767px) {

  section.coming-soon .right-content {
    margin-top: 60px;
    margin-left: 0px;
  }

}

section.coming-soon .top-content {
  margin-bottom: -8px;
}

section.coming-soon .top-content h6 {
  font-size: 14px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.2);
  padding: 40px;
  text-align: center;
  line-height: 24px;
}

section.coming-soon .top-content h6 em {
  font-style: normal;
  font-weight: 600;
}

section.coming-soon form {
  background-color: rgba(250, 250, 250, 0.1);
  padding: 60px 40px;
  width: 100%;
  text-align: center;
}




/* highlights */

section.highlights {
  /* background-image: url(../images/bg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-color:#0c1a2b;
  padding-bottom: 100px;
  padding: 0px 30px 55px 30px;
}

section.highlights .section-heading {
  text-align: center;
  margin-bottom: 35px;
}

section.highlights .item img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  height: 200px;
}


section.highlights .item .down-content {
  padding: 10px;
  background-color: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

section.highlights .item .down-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #0c1a2b;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 5px;
  text-align: center;
}

section.highlights .item .down-content p {
  margin-bottom: 25px;
}

section.highlights .item .down-content img {
  width: 40px;
  border: 2px solid #f5a425;
  border-radius: 50%;
  text-align: left;
  display: inline-block;
}

section.highlights .item .down-content .text-button-pay {
  float: right;
  display: inline-block;
  margin-top: -30px;
}

section.highlights .item .down-content .text-button-pay a {
  color: #f5a425;
  font-size: 13px;
}

section.highlights .item .down-content .text-button-free {
  float: right;
  display: inline-block;
  margin-top: -30px;
}

section.highlights .item .down-content .text-button-free a {
  color: #7a7a7a;
  font-size: 13px;
}

section.highlights .owl-carousel .owl-nav {
  display: none;
} 

section.highlights .owl-carousel .owl-dots {
  text-align: center;
}

section.highlights .owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 50px 10px 0px 10px;
  outline: none;
}

section.highlights .owl-carousel button.active {
  background-color: #f5a425;
}

section.highlights .highlights-img {
  transition: 0.5s;
}

section.highlights .item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

section.highlights .item:hover .highlights-img {
  transform: scale(1.1);
}

section.highlights .item:hover {
  cursor: pointer;
}


/* Video */

section.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 120px 0px;
}

section.video .left-content {
  color: #fff;
}

section.video .left-content span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

section.video .left-content h4 {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: 'Marcellus SC';
  line-height: 40px;
  margin-bottom: 20px;
  word-spacing: 4px;
}

section.video .left-content h4 em {
  font-style: normal;
  color: #f5a425;
  font-family: 'Marcellus SC';
}

section.video .left-content p {
  font-size: 17px;
  margin-bottom: 40px;
}

section.video .left-content ul li {
  font-size: 17px;
  letter-spacing: 1px;
  text-align: justify;
  word-spacing: 2px;
}

@media screen and (max-width: 767px) {

  section.video .left-content {
    margin-bottom: 45px;
  }

  section.video .first-item .first-content h4,
  section.video .second-item .second-content h4 {
    text-align: center;
  }

}

.video-item figure {
  position: relative;
  width: 100%;
  font-size: 0;
}

.video-item figure img {
  width: 100%;
}

.video-item figure a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 60px;
  height: 60px;
  margin-top: -32.5px;
  margin-left: -32.5px;
  border-radius: 50%;
  background-color: #f5a425;
  z-index: 10;
}

.video-item figure a:after {
  content: '';
  position: absolute;
  bottom: 27.5px;
  right: 20px;
  margin-top: -12.5px;
  margin-left: -7px;
  border: solid 13px transparent;
  border-left: solid 20px;
  border-left-color: #fff;
  z-index: 10;
}

.video-item figure a:hover:before {
  background-color: #f5a425;
}

.video-item .video-caption {
  position: absolute;
  z-index: 10;
  background-color: rgba(250, 250, 250, 0.75);
  height: 80px;
  width: 100%;
  padding: 27px 30px;
  bottom: 0;
}

.video-item .video-caption h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}



/* Contact */

/*section.contact {*/
/*  background-image: url(../images/footer.jpg);*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*  background-color: #172238;*/
/*  padding-bottom: 64px;*/
/*  height: 856px;*/
/*}*/


/* section.contact form {
    background-color: rgba(250,250,250,0.1);
    padding: 75px;
    width: 100%;
    height: 530px;
}


@media screen and (max-width: 767px) {  
  section.contact form {
      margin-bottom: 30px;
  }
}

section.contact form input {
    width: 100%;
    height: 40px;
    background-color: rgba(250,250,250,0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

section.contact form textarea {
    width: 100%;
    height: 220px;
    max-height: 280px;
    min-height: 220px;
    background-color: rgba(250,250,250,0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

section.contact form input:focus,
section.contact form textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
    color: #fff;
    background-color: rgba(250,250,250,0.1);
} */

section.contact form::placeholder {
  color: #fff
}

section.contact form input::placeholder {
  color: #fff;
}

section.contact form input::placeholder {
  color: #fff;
}

section.contact form::placeholder {
  color: #fff
}

section.contact form textarea::placeholder {
  color: #fff;
}

section.contact form textarea::placeholder {
  color: #fff;
}

/* section.contact form button {
    background-color: #f5a425;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: none;
}


} */


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  /* background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../images/choosing-bg.jpg) fixed center center; */
  background: linear-gradient(rgb(8 8 8), rgb(0 0 0 / 63%)), url(https://media.licdn.com/dms/image/C4D12AQERqrZPMCyLow/article-cover_image-shrink_600_2000/0/1603233219780?e=2147483647&v=beta&t=aPZ7QtUKi3r1mP5HJG_geCASxH6teXmu4iixsloBmhc) fixed center center;
  
  background-size: cover;
  padding-bottom: 55px;
  background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
   
}

/* #footer {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
} */

#footer .footer-top {
  /* background: #f6f6f6; */
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info p strong {
  margin-right: 7px;
}

#footer .footer-top .footer-info p span {
  margin-right: 7px;
}


#footer .footer-top .footer-info h3 {
  color: #ffd17b;
  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 {
  color: white;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 24px;
  display: inline-block;
  /* background: #3fbbc0; */
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background:#c6b473;
  text-decoration: none;
}

#footer .footer-top h4 {
  color: #ffd276;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 7px;
    color: #f7b548;
    font-size: 10px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  font-size: 15px;
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc449;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3fbbc0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #65c9cd;
}

#footer .copyright {
  font-size: 12px;
  color: white;
  text-align: center;
  padding-top: 0px;
}

#footer .credits {
  color: white;
  padding-top: 3px;
  text-align: center;
  font-size: 12px;
}

#footer .credits a {
  color: #f7b449;
}

.footer-address {
  margin: 0;
  margin-bottom: -18px !important;
}

@media only screen and (min-width:1300px) and (max-width:1400px) {
  #footer .footer-top .footer-links ul a {
    font-size: 13px !important;
  }
}
.footer-map:hover{
  opacity: 0.4;
}


@media screen and (max-width: 992px) {
  .features {
    background-color: #0c1228;
  }

  .features-content {
    position: relative;
  }

  .features-post {
    border-left: 0
  }
}

@media screen and (max-width: 950px) {
 .main-menu{
     display:none;
 }
  .main-menu {
    padding-right: 0 !important;
  }

  .main-header .logo {
    line-height: 73px;
  }

  .main-menu li {
    display: block;
    line-height: 1;
    margin-left: 0 !important;
  }

  .main-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .main-menu li .sub-menu li:last-child {
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
  }
}

@media screen and (max-width: 950px) and (max-height: 400px) {
  nav[role="navigation"].active {
    max-height: calc(80px + 100vh);
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25px;
  }
}








.float-facebook {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 53px;
  right: 34px;
  /* background-color: #014d80; */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 1;
}

.float-facebook img {
  /* filter: invert(1); */
  border-radius: 50%;
}


.float-call {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 100px;
  right: 34px;
  /* background-color: #014d80; */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 1;
}

.float-call img {
  /* filter: invert(1); */
  border-radius: 50%;
}


.float-whatsapp {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 150px;
  right: 34px;
  /* background-color: #014d80; */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 1;
}

.float-whatsapp img {
  /* filter: invert(1); */
  border-radius: 50%;
}



.faa-float.animated,
.faa-float.animated-hover:hover,
.faa-parent.animated-hover:hover>.faa-float {
  -webkit-animation: float 2s linear infinite;
  animation: float 2s linear infinite
}

.faa-float.animated-hover.faa-fast:hover,
.faa-float.animated.faa-fast,
.faa-parent.animated-hover:hover>.faa-float.faa-fast {
  -webkit-animation: float 1s linear infinite;
  animation: float 1s linear infinite
}

.faa-float.animated-hover.faa-slow:hover,
.faa-float.animated.faa-slow,
.faa-parent.animated-hover:hover>.faa-float.faa-slow {
  -webkit-animation: float 3s linear infinite;
  animation: float 3s linear infinite
}



.block-9 .form-control {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
  color: rgb(207, 167, 36);
  padding: 21px;
  background-color: rgba(250, 250, 250, 0.1);
}

.block-9 .form-group .btn-primary {
  background-color: #690404;
  border: #690404;
}

.block-9 .form-group .btn-primary:hover {
  background-color: #b8ac0d;
  border: #b8ac0d;
  color: black;
}

.block-9 .contact-bg {
  background-color: rgba(250, 250, 250, 0.1);

}

.block-9 .iframe-col {
  /* border: 3px solid #0d4f5e; */
  width: 100%;
}




.notification {
  margin: 0;
}

.notification .noti {
  padding-left: 0px !important;
}

.scrolling-bar {
  width: 100%;
  padding: 9px;
  position: fixed;
  bottom: 0px;
  height: auto;
  overflow: hidden;
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  z-index: 1;
  background: #0b1a2c;
}

.scrolling-bar .head h2 {
  float: right;
  color: #e6f4a5;
  font-size: 18px !important;
  font-weight: 100 !important;
  font-family: Arial, Helvetica, sans-serif;
}

.news-scroll .marquee a {
  font-family: Arial, Helvetica, sans-serif;
  /* font-weight: 500; */
  position: relative;
  font-size: 15px;
  color: rgb(255 255 255);
  padding: 0 8px;
}

.news-scroll .marquee a:after {
  content: "";
  width: 2px;
  background-color: #d48e45;
  height: 17px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@-webkit-keyframes blinker {
  from {
    opacity: 1.0;
  }

  to {
    opacity: 0.1;
  }
}

.blink {
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
}




section.news {
  padding: 0px 50px 60px 50px;
  background: #202e3f29;
      /*margin-top: 20px;*/
}

.news .section-heading{
  margin-bottom: 15px;
}

.news-section .grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  background: #0000;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
  border: 2px solid gray;
  border-radius: 50px 0px;
}

.news-section .grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  width: 100%;
  opacity: 9;
}

.news-section .grid figure figcaption {
  margin-top: -2px;
  padding: 20px 20px 10px 10px;
  /* background-color: #2b208d; */
  color: #fff;
  font-weight: 600;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}



@media only screen and (min-width:1300px) and (max-width:1400px) {
  .news-section .grid figure figcaption {
    padding: 5px 4px 1px 17px;
  }



  .news-section .grid figure figcaption {
    padding: 4px 2px 1px 10px;
  }

  .prev {
    margin-top: 118px !important;
  }

  .next {
    bottom: 128px !important;
  }

  .news-section .grid figure figcaption p {
    font-size: 17px !important;
  }
}

/* @media(width:1600px) {
  .news-section .grid figure img {
    height: 214px !important;
  }
} */

.news-section .grid figure figcaption p {
  font-size: 20px;
  text-align: initial;
}



.news-section .grid figure .figure1 {
  background-color: #c59400;
}

.news-section .grid figure .figure1:hover {
  background-color: #1b2165;
}

.news-section .grid figure .figure1 span i {
  padding-right: 7px;
}

.news-section .activity .grid figure figcaption {
  background-color: #1b2165;
}

.news-section .activity .grid figure figcaption:hover {
  background-color: #c59529;
}


.news-section .zoom {
  /* height: 222px; */
  padding: 0;
  transition: transform .6s;
  margin: 0 auto;
}

.news-section .grid:hover .zoom {
  transform: scale(1.1);
}

.prev {
  border: 1px solid rgb(255 255 255);
  padding: 10px;
  /* background-color: white; */
  /* border-radius: 57%; */
  margin-top: 160px;
  margin-left: 16px;
  position: absolute;
  width: 35px;
  z-index: 1;
  opacity: 0.5;
}

.prev i,
.next i {
  color: white;
}

.next {
  border: 1px solid rgb(255 255 255);
  margin-left: 93%;
  position: absolute;
  bottom: 119px;
  /* border-radius: 50%; */
  padding: 10px;
  opacity: 0.5;
  /* background-color: white; */
  width: 35px;
}


.news-section .grid figure span {
  font-size: 14px;
  display: flex;
}




.news-section  .grid figure figcaption p {
  font-size: 15px;
  font-weight: 500;
}



.news-section  .grid figure figcaption {
  padding: 10px 10px 1px 10px;
}

.features-section ul {
  list-style: none;
}

.features-section ul li{
  /* font-family: "Cera Pro"; */
  font-weight: 500;
  position: relative;
  font-size: 18px;
  color: #ffffff;
  padding: 0 8px;
  line-height: 40px;
}
.features-section ul li:before {
  content: "*";
  color: #ffd700;
  width: 4px;
  height: 17px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  margin-right: 20px
}
.features-section ul p{
  margin-left: 35px;
    font-size: 15px;
    font-weight: 400;
    color: white;
}

/* .features-section {
  width: 721px;
  background-image: linear-gradient(45deg, #0b1a2c82, #cf89476e);
  background-image: url(../images/demo.png);
  padding: 93px;
} */

.features{
  background-image: url(../images/demo.png);
  padding: 0px 93px 40px 93px;
}

.features .section-heading h2 {
  margin-top: 69px;
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  /* font-family: cursive; */
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid rgb(214 183 183 / 48%);
}

.features .section-heading h2:before {
  width: 1px;
    height: 67px;
    background-color: rgba(240, 184, 184, 0.548);
    position: absolute;
    top: -69px;
    content: '';
    left: 50%;
    transform: translate(-50%);
}



.features .section-heading {
  text-align: center;
  margin-bottom: 30px;
}



section.video-section {
  padding: 100px;
  background-color: #eff6ff;
}


.hero-wrap{
  width: 100%;
  height: 94vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}
.hero-wrap::before{
  content: "";
    background: rgb(6 47 74 / 78%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}





.management {
  /* background: linear-gradient(rgb(0 0 0 / 11%), rgb(0 0 0 / 14%)), url(../images/demo.png) fixed center center; */
  padding: 65px 65px;
	position: relative;
	width: 100%;
}
.management .section-heading h2{
  margin-top: 1px;
  color: rgb(105, 0, 0);
  text-transform: uppercase;
}


.HomeImg {
	width: 145px;
	box-shadow: 1px 0px 7px 2px #474747;
	left: 12px;
  top: 16px;
	position: absolute;
}

.HomeDesc {
	margin-top: 56px;
    margin-left: 93px;
    font-size: 15px;
    padding: 21px;
}

.Bg-red {
  font-family: Arial, Helvetica, sans-serif;
	background-color: #7c0005;
}
.Bg-blue {
	background-color: #00226b;
}
.HomeDesc a{
  color: yellow;
}
.HomeDesc a:hover{
  color: #90c3ff;
}





@media only screen and (min-width:1300px) and (max-width:1400px){
  /* .features-section{
    width: 612px !important;
    padding: 57px !important;
  } */
  .scrolling-bar .head h2{
    font-size: 21px !important;
  }
  .main-header{
    padding-left: 2% !important;
  }
  .main-header .logo .logo-img{
    /* max-width: 32% !important; */
  }
  .HomeImg{
    top: -3px;
  }
  #management .section-heading{
    margin-bottom: 40px !important;
  }
  .HomeDesc {
    margin-top: 45px;
  }
  
}

@media(max-width:991px){
  /* .features-section{
    width: 350px !important;
    padding: 14px !important;
  } */
  .features-section ul li{
    font-size: 12px !important;
    line-height: 25px !important;
  }
  .features-section ul p{
    font-size: 12px !important;
  }
  section.video-section{
    padding: 32px 0px !important;
  }
  #tabs ul li a{
    font-size: 10px !important;
  }
  #tabs h4{
    margin-top: 0px !important;
    font-size: 17px !important;
  }
  section.why-us{
    padding-bottom: 35px !important;
  }
  .section-heading{
    margin-bottom: 25px !important;
  }
  .scrolling-bar .head h2{
    float: left;
  }
  .main-header{
    height: 80px !important;
  }
  .hero-wrap{
    height: 60vh !important;
  }
  .section-heading h2{
    font-size: 16px !important;
  }
  .main-header .logo .logo-img{
    /* max-width: 25% !important; */
  }
  #footer{
    padding-bottom: 97px !important;
  }
  
}











section.institution {
  /* background-image: url(../images/bg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0b1a2c;
  padding-bottom: 100px;
  padding: 0px 30px 55px 30px;
}

section.institution .section-heading {
  text-align: center;
  margin-bottom: 35px;
}

section.institution .section-heading h2{
  color: white;
}



section.institution .inst-box {
  position: relative;
  width: 100%;
}

.imagess {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s;
}

.overlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(0 0 0 / 75%); 
  color: #f1f1f1; 
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-size: 18px;
  padding: 10px;
  text-align: center;
}

.inst-box:hover .overlay {
  opacity: 0;
}
section.institution .inst-box:hover .imagess {
  transform: scale(1.1);
}




.side-icons {
  position: fixed;
  top: 30%;
  right: 80px;
  width: 197px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

/* .side-icons:hover {
  right: 0;
} */


.side-icons a,
.side-icons a:visited {
  position: relative;
  text-decoration: none;
  line-height: 1;
  padding: 4px;
  font-size: 16px;
  background: rgb(112, 0, 0);
  color: #fff;
  margin: 2px;
  text-align: left;
  border-radius: 3rem 0rem 0rem 3rem;
  transform: translateX(7rem);
  transition: all .5s;
}

.side-icons a i {
  display: inline-block;
  margin-right: 1rem;
  background-color: #fff;
  color: rgb(10, 26, 45);
  height: 2rem;
  width: 2rem;
  text-align: center;
  line-height: 2rem;
  border-radius: 50%;
  transition: all .5s;
}

.side-icons a:hover {
  background-color: rgb(10, 26, 45);
  /* transform: translate(0); */
}

.side-icons a:hover i {
  transform: rotate(360deg);
  color: rgb(10, 26, 45);
}





@media(max-width:1000px){
  .management{
    padding: 62px 4px !important;
  }
  .HomeDesc{
    margin-top: 145px;
    margin-left: 0px;
    font-size: 15px;
    padding: 13px;
  }
  .HomeImg{
    left: auto;
    top: 67px;
  }
  .features{
    padding: 0px 7px 35px 7px;
  }
}



/* ABOUT */



.about {
  padding: 40px 0px;
  background: #fafafa;
}

.about .about-item h3 {
  color:  #0b1a2c;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
}

.about .about-item .btn-get-started {
  border: 1px solid #0b1a2c;
  color: #212529;
  padding: 4px 30px 7px 30px;
  border-radius: 4px;
  font-size: 15px;
}

.about .about-item .btn-get-started:hover {
  background-color: #8d8686;
  color: white;
}

.about .about-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.about .about-item .image-stack .stack-front {
  transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

.about .about-item .image-stack .stack-front:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: grabbing;
}


.about .about-item .image-stack .stack-back {
  transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.about .about-item .image-stack .stack-back:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: grabbing;
}


.about .about-item img {
  border: 6px solid white;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}


/* --------------------- */

/* Vision and Mission */

.serviceBox{
  background: linear-gradient(to right, #166fd9, #0b1a2c);
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  padding: 5px 30px 25px;
  margin: 10px 0 0 0;
  border-radius: 0 30px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}
.serviceBox:before{
  content: "";
  background: #fff;
  width: calc(100% - 10px);
  height: 100%;
  border-radius: 0 30px 0 30px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
  position: absolute;
  top: -10px;
  left: 0;
  z-index: -1;
}
.serviceBox .service-icon{
  color: #fff;
  background: linear-gradient(to right, #0b1a2c 50%, #054ca0 130%);
  font-size: 40px;
  width: 70%;
  padding: 8px 25px 6px;
  margin: 0 0 35px -30px;
  border-radius: 0 50px 50px 0;
  box-shadow: -5px 5px 5px 0px rgba(0,0,0,0.2) inset;
}
.serviceBox .title{
  color: #0b1a2c;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 19px 17px 5px;
}
/*.serviceBox .title:after{*/
/*  content: '';*/
/*  background-color: #0b1a2c;*/
/*  height: 2px;*/
/*  width: 60%;*/
/*  margin: 5px auto 0;*/
/*  display: block;*/
/*  clear: both;*/
/*}*/
.serviceBox .description{
  color: #262626;
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  text-align: justify;
  margin: 0 0 25px;
}
.serviceBox .read-more{
  color: #999;
  font-size: 13px;
  transition: all 0.3s ease 0s;
}
.serviceBox .read-more i{ font-size: 11px; }
.serviceBox .read-more:hover{
  color: #ff9901;
  text-decoration: underline;
}
.serviceBox.green{ background: linear-gradient(to right,#ABED1A,#38AE3E); }
.serviceBox.green .service-icon{ background: linear-gradient(to right,#ABED1A 50%,#38AE3E 130%); }
.serviceBox.green .title{ color: #38AE3E; }
.serviceBox.green .title:after{ background-color: #38AE3E; }
.serviceBox.green .read-more:hover{ color: #38AE3E; }
@media only screen and (max-width:990px){
  .serviceBox{ margin: 10px 0 40px; }
}

/* Testmonial */

.testimonial{
  text-align: center;
  padding: 85px 50px 45px 70px;
  margin: 70px 15px 35px;
  background: #f9f9f9;
  box-shadow: 8px 4px 0 0 #0c1a2b;
  position: relative;
}
.testimonial .pic{
  width: 120px;
  height: 120px;
  border: 5px solid #0c1a2b;
  margin: 0 auto;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
}
.testimonial .pic img{
  width: 100%;
  height: 100%;
}
.testimonial .description{
  font-size: 15px;
  color: #757575;
  line-height: 27px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial .description:before{
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 32px;
  color: #0c1a2b;
  position: absolute;
  top: -15px;
  left: -35px;
}
.testimonial .testimonial-profile{
  position: relative;
  margin: 20px 0 10px 0;
}
.testimonial .testimonial-profile:after{
  content: "";
  width: 50px;
  height: 2px;
  background: #957c26;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
.testimonial .title{
  display: inline-block;
  font-size: 18px;
  color: #4a5184;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.testimonial .post{
  display: inline-block;
  font-size: 15px;
  color: #757575;
  text-transform: capitalize;
}


/*--------------------------------------------------------------
# Card General
--------------------------------------------------------------*/
@media (max-width: 767px) {

  .card-box-a,
  .card-box-b,
  .card-box-c,
  .card-box-d {
    margin-bottom: 2.5rem;
  }
}

.card-box-a span,
.card-box-b span,
.card-box-c span,
.card-box-d span {
  line-height: 0;
}

@media (min-width: 768px) {

  .grid .card-box-a,
  .grid .card-box-b,
  .grid .card-box-c,
  .grid .card-box-d {
    margin-bottom: 2.5rem;
  }
}

.card-box-a,
.card-box-b,
.card-box-d {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-box-a .img-a,
.card-box-a .img-b,
.card-box-b .img-a,
.card-box-b .img-b {
  transition: 0.8s all ease-in-out;
}

@media (min-width: 768px) {

  .card-box-a:hover .img-a,
  .card-box-a:hover .img-b,
  .card-box-b:hover .img-a,
  .card-box-b:hover .img-b {
    transform: scale(1.2);
  }
}

@media (min-width: 768px) {

  .card-box-a .price-a,
  .card-box-b .price-a {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {

  .card-box-a .price-a,
  .card-box-b .price-a {
    font-size: 1rem;
  }
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card-shadow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-shadow:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}



.box{
  font-family: 'Raleway', sans-serif;
  overflow: hidden;
  position: relative;
  border: 1px solid;
  margin: 10px;
}
.box img{
  width: 100%;
  height: auto;
  height: 380px;
    /* margin: 40px; */
  transition: all 0.5s ease;
}
.box:hover img{
  transform: scale(1.12);
  transform-origin: right center;
}
/*.box .box-content{*/
/*  color: #fff;*/
/*  background-color: rgba(0,0,0,0.5);*/
/*  padding: 10px 50px 10px 15px;*/
/*  box-shadow: 0 0 10px rgba(0,0,0,0.5);*/
/*  position: absolute;*/
/*  bottom: 0px;*/
/*  right: 0%;*/
/*  z-index: 2;*/
/*  transition: all 0.5s ease 0s;*/
/*}*/
.box .box-content {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 50px 10px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 50%;
    /*right: 15%;*/
    left:13%;
    z-index: 2;
    transition: all 0.5s ease 0s;
    }
.box:hover .box-content{ 
    /*right: -100%; */
    display:none;
}
/*.box .title{*/
/*  color: #fff;*/
/*  font-size: 14px;*/
/*  font-weight: 300;*/
/*  text-transform: capitalize;*/
/*  letter-spacing: 1px;*/
/*  margin: 0 0 2px;*/
/*}*/
 .box .title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 2px;
    }
.box .post{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}
.box .icon{
  background-color: rgba(0,0,0,0.5);
  padding: 8px 30px 8px 8px;
  margin: 0;
  list-style: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: absolute;
  right: -100%;
  bottom: 15px;
  transition: all 0.5s ease 0.1s;
}
.box:hover .icon{ right: 0; }
.box .icon li{
  margin: 0 3px;
  display: inline-block;
}
.box .icon li a{
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 35px;
  height: 35px;
  width: 35px;
  border: 1px solid #fff;
  display: block;
  transition: all 0.3s ease;
}
.box .icon li a:hover{
  color: #000;
  background-color: #fff;
}
@media only screen and (max-width:990px){
  .box{ margin: 0 0 30px; }
}


/* form */
.form-container{
  background-color: #fff;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 25px -15px rgba(0, 0, 0, 0.3);
}
.form-container .title{
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 25px;
  
}
.form-container .title:after{
  content: '';
  background-color: #0d1a2a;
  height: 3px;
  width: 60px;
  margin: 10px 45% 0;
  display: block;
  clear: both;
}
.founder-2:after{
     content: '';
    background-color: #0d1a2a;
    height: 3px;
    width: 60px;
    margin: 13px 37% 0;
    display: block;
    clear: both;
}
.form-container .sub-title{
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.form-container .form-horizontal{ font-size: 0; }
.form-container .form-horizontal .form-group{
  color: #333;
  width: 50%;
  padding: 0 8px;
  margin: 0 0 15px;
  display: inline-block;
}
.form-container .form-horizontal .form-group:nth-child(4){ margin-bottom: 30px; }
.form-container .form-horizontal .form-group label{
  font-size: 15px;
  /* font-weight: 600; */
}
.form-container .form-horizontal .form-control{
  color: #888;
  background: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  height: 40px;
  padding: 6px 12px;
  border-radius: 10px;
  border: 2px solid #e7e7e7;
  box-shadow: none;
  font-size: 12px;
}
.form-container .form-horizontal .form-control:focus{ box-shadow: 0 0 5px #dcdcdc; }
.form-container .form-horizontal .check-terms{
  padding: 0 8px;
  margin: 0 0 25px;
}
.form-container .form-horizontal .check-terms .check-label{
  color: #333;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  vertical-align: top;
  display: inline-block;
}
.form-container .form-horizontal .check-terms .checkbox{
  height: 17px;
  width: 17px;
  min-height: auto;
  margin: 2px 8px 0 0;
  border: 2px solid #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease 0s;
}
.form-container .form-horizontal .check-terms .checkbox:before{
  content: '';
  height: 5px;
  width: 9px;
  border-bottom: 2px solid #00A9EF;
  border-left: 2px solid #00A9EF;
  transform: rotate(-45deg);
  position: absolute;
  left: 2px;
  top: 2.5px;
  transition: all 0.3s ease;
}
.form-container .form-horizontal .check-terms .checkbox:checked:before{ opacity: 1; }
.form-container .form-horizontal .check-terms .checkbox:not(:checked):before{ opacity: 0; }
.form-container .form-horizontal .check-terms .checkbox:focus{ outline: none; }
.form-container .signin-link{
  color: #333;
  font-size: 14px;
  width: calc(100% - 190px);
  margin-right: 30px;
  display: inline-block;
  vertical-align: top;
}
.form-container .signin-link a{
  color: #00A9EF;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}
.form-container .signin-link a:hover{ text-decoration: underline; }
.form-container .form-horizontal .signup {
  color: #fff;
  background: #0c1a2b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 160px;
  padding: 5px 12px 6px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  margin: auto;
}
.form-container .form-horizontal .btn:hover,
.form-container .form-horizontal .btn:focus{
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
  box-shadow: 3px 3px rgba(0,0,0,0.15),5px 5px rgba(0,0,0,0.1);
  outline: none;
}
@media only screen and (max-width:479px){
  .form-container .form-horizontal .form-group{ width: 100%; }
  .form-container .signin-link{
      width: 100%;
      margin: 0 10px 15px;
  }
}

.form-bg{
  margin-top: 100px;
    background: #0c1a2b;
    padding:50px;
}

.full-width {
  width: 100% !important;
}

.btn-primary {
  color: #fff;
  background-color: #0d1a2a;
  padding: -1px;
  padding: 8px !important;
  /* border-color: #007bff; */
  font-size: 12px;
}
button.browse.btn.btn-primary.px-4 {
  margin-left: 10px;
}

.submit {
    width: 100%;
    margin: auto;
    display: flex;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0d1a2a;
  border-color: #0d1a2a;
}
img.img-fluid.logo-img {
  height: 85px;
  padding-top: 15px;
}

i.fa.fa-bars {
  color: white;
  z-index: 22222222;
}
.projects{
  display: grid;
  grid-template-areas: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.pic {
  margin-bottom: 30px;
}
.heading-banner{
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 1;
}
.heading-banner h3{
  color: #e3d290;
  font-size: 38px;
  margin-bottom: 15px;
}
.get-started {
  border: 1px solid #0b1a2c;
  color: #dedede;
  padding: 9px 35px 9px 35px;
  border-radius: 4px;
  font-size: 15px;
  background: #0c1a2b;
}
i.fa-solid.fa-play {
  font-size: 12px;
  margin-left: 5px;
}
/* .footer{
  background-image: url('https://www.sanadquran.com/wp-content/uploads/2023/09/Quran-Footer.jpg');
} */


/* animation */

/* svg drawing animation */
.brown{
  stroke:#B2835E;
  stroke-width: 1.1;
  stroke-dasharray: 810; 
  stroke-dashoffset: 810;
  fill-opacity: 0;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;

  
  animation-name: DrawLine, FadeStroke, FillIn;
  animation-duration: 3s, 1s, 1s;
  animation-delay: 0s, 3.1s, 3s;
}
.white{
  stroke: #fff;
  stroke-width: 1.1;
  stroke-dasharray: 810; 
  stroke-dashoffset: 810;
  fill-opacity: 0;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;

  
  animation-name: DrawLine, FadeStroke, FillIn;
  animation-duration: 3s, 1s, 1s;
  animation-delay: 0s, 3.1s, 3s;
}

@keyframes offset {
  100% {
    stroke-dashoffset: 0; 
  }  
}

@keyframes fill-it-lightBlue {
  0%{
    fill: #ffffff;
  }
  100% {
    fill: #0097A7; 
  }
}

@keyframes fill-it-darkestBlue {
    0%{
    fill: #ffffff;
  }
  100% {
    fill: #006064; 
  }
}

@keyframes fill-it-darkBlue {
    0%{
    fill: #ffffff;
  }
  100% {
    fill: #00838F; 
  }
}


@keyframes fill-it-lightestBones {
    0%{
    fill: #ffffff;
  }
  100% {
    fill: #E0F7FA; 
  }
}

@keyframes DrawLine {
  to { stroke-dashOffset: 0; }
}

@keyframes FadeStroke {
  to { stroke-opacity: 0; }
}

@keyframes FillIn {
  from { fill-opacity: 0; }
  to { fill-opacity: 1; }
}

.pl {
  margin: 100px auto;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  margin: 0 auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .pl svg {
  margin-left: 40.5%;
  margin-top: 20%;
} */

/*@media(max-width:1000px) {*/
/*  .pl svg {*/
/*    margin-left: 25% !important;*/
/*    margin-top: 80% !important;*/
/*  }*/
/*}*/

@media(max-width:450px){
    .form-container{
        padding: 7px;
    }
    .form-bg{
        padding:0px;
        padding-top: 40px;
        margin-top: 80px;
        padding-bottom: 40px;
    }
    img.img-fluid.logo-img {
    height: 75px;
    padding-top: 13px;
    margin-left: -13px;
   }
   .form-container .form-horizontal .form-control {
       font-size: 11px;
   }
   .text-white {
    color: #d9cccc !important;
    }
    .hero-wrap {
        height: 30vh !important;
        margin-top: 80px;
    }
    .heading-banner h3{
        font-size: 18px;
    }
    .heading-banner{
        top: 30%;
    }
    .get-started{
        font-size: 11px;
        padding: 9px 25px 9px 25px;
    }
    i.fa-solid.fa-play {
    font-size: 9px;
    margin-left: 5px;
    }
    .box .box-content {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 50px 10px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 50%;
    right: 15%;
    z-index: 2;
    transition: all 0.5s ease 0s;
    }
    .box .title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 2px;
    }
    .form-container .title:after{
                margin: 10px 40% 0;
    }
    svg {
    overflow: hidden;
    vertical-align: middle;
    width:50%;
    margin-bottom:45%;
    }
    .projects.aos-init.aos-animate {
    display: grid;
    grid-template-columns: 1fr;
    }
    .about .about-item h3 {
    color: #0b1a2c;
    font-weight: 700;
    font-size: 19px;
    margin-top: 15px;
    text-transform: uppercase;
    }
    .courses .wrapper{
    display :grid;
    grid-template-columns:1fr;
    margin-left: -40px;
    }
    .mb-screen-1 h2 {
    display: none;
    }
    .section-heading.mb-screen-2 {
    margin: auto;
    margin-bottom: -20px !important;
}

 
}
@media(min-width:451px){
    .mb-screen-2  {
        display:none;
    }
}
    section.donate {
    margin-top: 130px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #171717;
  min-height: 40px;
  margin-top: 101px;
  /* width: 100%; */
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  color: white;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: white;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
    color: white;
  }
}
@media (max-width:450px){
  .breadcrumbs{
    margin-top: 80px;
  }
}
.bank-deatails{
    
    box-shadow: -2px -1px 10px -5px;
    padding: 2%;
    margin-bottom: 20px;

}

.overlay1 {
  position: absolute;
  bottom: 0;
  background: rgb(0 0 0 / 75%);
  color: #f1f1f1;
  width: 91%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-size: 18px;
  padding: 10px;
  text-align: center;
}

.effect-zoe img{
    height:100%;
    width:100%;
    /*border-radius: 1px 81px;*/
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #0d1a2a;
  border-bottom: 3px solid #0d1a2a;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #0d1a2a;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  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: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #989006;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #c6b473;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #0d1a2a;
  border-bottom: 3px solid #0d1a2a;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  /*padding-bottom: 8px;*/
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.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 .form-group {
  /*margin-bottom: 20px;*/
}

.contact .php-email-form label {
  /*padding-bottom: 8px;*/
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 60px;
}

.contact .php-email-form button[type=submit] {
  background: #0d1a2a;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #c6b473;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modal-content{
    width:100%;
}

@media (max-width: 450px) {
    .overlay1 {
        position: absolute;
        bottom: 0;
        background: rgb(0 0 0 / 75%);
        color: #f1f1f1;
        width: 88.5%;
        transition: .5s ease;
        opacity: 1;
        color: white;
        font-size: 18px;
        padding: 10px;
        text-align: center;
    }
    .modal-content{
    width:100%;
    }
}


.captcha-btn{
    height:43px;
}
.founder-2{
    margin-bottom: 15px;
    margin-top: 5px;
    font-size: 21px;
}


/* Courses inner-------------- */

.wrapper {
	display: flex;
	gap: 40px;
}

.card {
	position: relative;
	width: 350px;
	height: 350px;
}

.face {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 10px;
	overflow: hidden;
	transition: .5s;
}

.card .front {
	transform: perspective(600px) rotateY(0deg);
	box-shadow: 0 5px 10px #fff;
}

.card .front img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text-h1 {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 45px;
	line-height: 45px;
	color: #fff;
	background: rgba(0, 0, 0, .4);
	text-align: center;
	font-size :20px;
}

.card .back {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	transform: perspective(600px) rotateY(180deg);
	background: rgb(3, 35, 54);
	padding: 15px;
	color: crimson;
	text-align: center;
	box-shadow: 0 5px 10px #fff;
}

.text-p {}

.links {
	border-top: 1px solid crimson;
	height: 50px;
	line-height: 50px;
}

.link-a {
	color: crimson;
}

.card .back .text-h2 {
	font-size: 23px;
	letter-spacing: 2px;
	color: #c6b473;
}

.card .back .text-p {
	letter-spacing: 1px;
	color: #c6b473;
}

.card:hover .front {
	transform: perspective(600px) rotateY(180deg);
}

.card:hover .back {
	transform: perspective(600px) rotateY(360deg);
}
.visionaries h3 {
    font-size: 19px;
}

section.visionaries.m-5 .row {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
}
h2.text-center.vs-heading {
    font-size: 25px;
    color: #103a79;
}
.founder-2-img{
    border: 5px solid #d9dce2;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
}
.visionaries-1 h3{
    font-size:20px;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border: 4px solid white;
}
.pic img{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border: 1px solid white;
    border-radius: 5px;
}

button.owl-prev span {
    color: white;
    font-size: 50px;
    position: absolute;
    top: 32%;
    left: -23px;
}
button.owl-next span {
    color: white;
    font-size: 50px;
    position: absolute;
    top: 32%;
    right: -23px;
}




/* members*/


:root{ 
  --white:#fff;
  --black:#000;
  --main-color: #DD1D26; 
}
/* .demo{ background-color: #f5f5f5; } */
.product-grid{
  font-family: "Outfit", sans-serif;
  text-align: center;
  margin: 0 0 10px;
  border: 10px solid var(--white);
  transition: all 0.4s ease 0s;
      box-shadow: 0 7px 30px rgba(0, 0, 0, 0.13);
}
.product-grid:hover{ box-shadow: 0 7px 30px rgba(0, 0, 0, 0.13); }
.product-grid .product-image{ position: relative; }
.product-grid .product-image a.image{display: block; }
.product-grid .product-image img{
  width: 100%;
  height: auto;
}
.product-grid .product-links{
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: translateX(-50%);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transition: all .3s ease 0s;
}
.product-grid .product-links li{
  margin: 0 2px;
  display: inline-block;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.product-grid .product-links li a{
  color: var(--black);
  background-color: var(--white);
  font-size: 18px;
  line-height: 41px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.7s ease 0s;
}
.product-grid .product-links li a:hover{
  color: var(--white);
  background: var(--main-color);
}
.product-grid:hover .product-links li{ opacity: 1; }
.product-grid .product-links li a:before,
.product-grid .product-links li a:after{
  content: attr(data-tip);
  color: var(--white);
  background-color: var(--black);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  padding: 5px 10px;
  white-space: nowrap;
  display: none;
  border-radius: 3px 3px;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -32px;
  transition: all 0.3s;
}
.product-grid .product-links li a:after{
  content: '';
  height: 15px;
  width: 15px;
  border-radius: 0;
  transform: translateX(-50%) rotate(45deg);
  top: -24px;
  z-index: -1;
}
.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after{
  display: block;
}
.product-grid .product-content{ 
  background: var(--white);
  padding: 18px 12px 12px;
  position: relative;
}
.product-grid .title{
  font-size: 16px;
  /*font-weight: 600;*/
  text-transform: capitalize;
  margin: 0 0 10px;
}
.product-grid .title a{
  color: var(--black);
  transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{     color: #c6b473; }
.product-grid .price{
  color: var(--black);
  font-size: 17px;
  font-weight: 700;
}
.product-grid .price span{
  color: #9b9b9b;
  font-weight: 500;
  text-decoration: line-through;
  margin: 0 0 0 5px;
}
@media screen and (max-width: 990px){
  .product-grid{ margin-bottom: 30px; }
}
.row.my-5.d-flex.justify-content-center {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 10px;
}

.max-250{
  max-width: 250px;
}


input.form-control.check-box {
  width: 40px;
  margin-right: 20px;
}

.instruction-ul{
  font-size: 14px
}

.modal-body {
  background: #050c14;
}

.modal-button{
  background-color: #b38362;
}