/*
    
TemplateMo 557 Grad School

https://templatemo.com/tm-557-grad-school

*/


@import url(fontawesome.css);

@font-face {
  font-family: 'BrushScript';
  src: url('../fonts/BrushScriptMT.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}



.third-edition {
  font-family: 'BrushScript', cursive;
  color: #ecfd40;
  font-size: 45px;
  text-transform: initial;
  font-weight: 100;
}


body {
  font-family: 'Montserrat', sans-serif;
}

.container-fluid {
  width: 80%;
}

/* Basic */

a {
  color: #3CF;
  text-decoration: none;
}

a:hover {
  color: #FC3;
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

p {
  font-size: 15px;
  line-height: 22px;
}

.text-primary {
  color: #f5a425 !important;
}

.section-heading {
  text-align: center;
  margin-bottom: 10px;
}

.section-heading h2:before {
  width: 1px;
  height: 50px;
  background-color: rgba(250, 250, 250, 0.1);
  position: absolute;
  top: -50px;
  content: '';
  left: 50%;
  transform: translate(-50%);
}

.section-heading h2 {
  margin-top: 50px;
  position: relative;
  color: #fff;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid rgba(250, 250, 250, 0.1);


  font-size: 30px;
  font-weight: 800;
  line-height: 40px;

}

.section-heading h2 em {
  font-style: normal;
  color: #f5a425;
}

/* 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: 36px;
    color: #fff;
    /* padding-right: 30px; */
    /* padding-top: 15px; */
  }

  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: 40em; */
    height: auto;
    overflow: hidden;
    /* 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: rgba(22, 34, 57, 0.95);
  height: 80px;
  position: fixed;
  z-index: 12;
  width: 100%;
  top: 0;
}

.main-header .logo {
  float: left;
  line-height: 80px;
  padding-left: 60px;
}

.main-header .logo a {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.main-header .logo a em {
  font-style: normal;
  color: #f5a425;
}

.main-menu {
  float: right;
  padding-right: 10px;
}

.main-menu li {
  display: inline-block;
  line-height: 79px;
  margin-left: 15px;
  position: relative;
}

.main-menu li:first-child {
  margin-left: 0px;
}

.main-menu li a {
  padding: 12px 5px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #fff;
  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 #f5a425;
}

@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 {
  position: relative;
  max-height: 100%;
  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;
}




.carousel-control-prev,
.carousel-control-next {
  z-index: 99;
}

.video-overlay {
  position: absolute;
  background-color: rgba(22, 34, 57, 0.85);
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

.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: 64px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

@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-header .logo a {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
  }

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 21px;
  }

  .counter {
    width: 100% !important;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    font-size: 24px !important;
    width: 100% !important;
    height: 111px !important;
  }


}


/* Features */
section.features,
.container-features {
  width: 95%;
  margin: auto;
}

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: #298cbb;
  color: #fff;
  padding: 20px;
}

.features-content:hover {
  background-color: #f5a425;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.features-content h4 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0px;
}

.features-content h4 i {
  margin-right: 15px;
  font-size: 24px;
}

.features-content p {
  margin-bottom: 0px;
  font-size: 17px;
}

.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;
}

@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;
  }

}


section.glimpse {
  /* background-image: url(../images/contact-bg.jpg); */
  background: linear-gradient(181deg, black, #162238);
  /* background-color: #172238; */
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  width: auto;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.highlight-img {
  cursor: pointer;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 15vh;
  object-fit: cover;

}

.highlight-img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

#highlightModal .modal-prev,
#highlightModal .modal-next {
  position: absolute;
  top: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transform: translateY(-50%);
}

#highlightModal .modal-prev {
  left: 10px;
}

#highlightModal .modal-next {
  right: 10px;
}

#highlightModal .modal-prev:focus,
#highlightModal .modal-next:focus {
  outline: none;
}


/* about */
section.about {
  /* background-image: url(../images/contact-bg.jpg); */

  background-color: #172238;
  background: linear-gradient(181deg, #101621, #162238, #172238);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
}

section.about h4 {
  margin-top: 60px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

section.about p {
  color: #fff;
  font-size: 19px;
  line-height: 34px;
  text-align: justify;
}

.about-details {
  padding-left: 52px;
  text-align: justify;
}

/* Why Choosing Us */
.page-header {
  background-image: url(../images/choosing-bg.jpg);
  background-color: #172238;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}

section.why-us {
  background-image: url(../images/choosing-bg.jpg);
  background-color: #172238;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}

#tabs {
  text-align: center;
}

.reg-bg {
  background: url(../images/bg-new.png) no-repeat center;
  background-size: cover;
  padding-top: 0;
  min-height: 62vh;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
}


#tabs ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  -webkit-column-count: unset;
  -moz-column-count: unset;
  column-count: unset;
}

#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;
  border-right: 1px solid rgba(250, 250, 250, 0.1);
  width: 75%;
}

#tabs ul li:last-child {
  border-right: none;
}

#tabs ul li a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  outline: 0;
  padding-bottom: 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

#tabs ul li a:after {
  transition: all 0.3s;
  width: 10px;
  height: 10px;
  background-color: #fff;
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  top: 34px;
}

#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;
  top: 29px;
}

#tabs ul li span {
  display: block;
  margin-bottom: 0.75em;
}

#tabs ul .ui-tabs-active {}

#tabs ul .ui-tabs-active a {
  color: #f5a425;
}

#tabs ul .ui-tabs-active a:after {
  background-color: #f5a425;
  width: 15px;
  height: 15px;
}

#tabs ul .ui-tabs-active a:before {
  border-color: #f5a425;
}

#tabs h4 {
  margin-top: 60px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

#tabs p {
  color: #fff;
  font-size: 19px;
  line-height: 28px;
  text-align: justify;
}

.tabs-content {
  margin-top: 0px;
  text-align: left;
}

.why-ol {
  text-align: justify;
}

@media screen and (max-width: 767px) {

  .tabs-content {
    text-align: center;
  }

}

.tabs-content img {
  width: 100%;
  overflow: hidden;
  padding-right: 45px;
}

@media screen and (max-width: 767px) {

  .tabs-content img {
    padding-right: 0px;
  }

}


/* Coming Soon */
section.theme {
  background-image: url(../images/coming-soon-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 0px;
}

section.coming-soon {
  background-image: url(../images/coming-soon-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 0px 0px;
}

section.coming-soon h4 {
  margin-top: 60px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

section.coming-soon .continer .counter div {
  display: inline-block;
}

section.coming-soon .continer h4 {
  margin-top: 100px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 50px;
}

section.coming-soon p {
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: 29px;
}

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;
  }

}



.counter {
  position: relative;
  display: flex;
  /* background: red; */
  text-align: center;
  justify-content: center;
  align-items: center;
}

.counter .days,
.counter .hours,
.counter .minutes,
.counter .seconds {
  width: 12%;
  height: 99px;
  /* float: left; */
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}

@media screen and (max-width: 992px) {

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    font-size: 26px;
  }

  .counter .days .value,
  .counter .hours .value,
  .counter .minutes .value,
  .counter .seconds .value {
    margin-top: 40px !important;
  }

  .counter span {
    font-size: 14px !important;
  }

}

.counter .days,
.counter .hours,
.counter .minutes {
  margin-right: 4%;
}

.counter .days .value,
.counter .hours .value,
.counter .minutes .value,
.counter .seconds .value {
  margin-top: 15px;
  display: block;
  width: 100%;
}

.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;
}

section.coming-soon 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: 20px;
  letter-spacing: 0.5px;
}

section.coming-soon form input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}

section.coming-soon form::placeholder {
  color: #fff
}

section.coming-soon form input::placeholder {
  color: #fff;
}

section.coming-soon form input::placeholder {
  color: #fff;
}

section.coming-soon form button {
  margin-top: 10px;
  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;
}


section.testimonial {
  background-image: url(../images/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  /* padding-bottom: 100px; */
  padding: 0px;
}

/* Courses */

section.courses {
  background-image: url(../images/choosing-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding-bottom: 100px;
  padding: 0px 30px 100px 30px;
}

section.courses .item img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

section.courses .item .down-content {
  padding: 30px;
  background-color: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

section.courses .item .down-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
}

section.courses .item .down-content p {
  margin-bottom: 25px;
}

section.courses .item .down-content img {
  width: 40px;
  border: 2px solid #f5a425;
  border-radius: 50%;
  text-align: left;
  display: inline-block;
}

section.courses .item .down-content .text-button-pay {
  float: right;
  display: inline-block;
  margin-top: -30px;
}

section.courses .item .down-content .text-button-pay a {
  color: #f5a425;
  font-size: 13px;
}

section.courses .item .down-content .text-button-free {
  float: right;
  display: inline-block;
  margin-top: -30px;
}

section.courses .item .down-content .text-button-free a {
  color: #7a7a7a;
  font-size: 13px;
}

section.courses .owl-carousel .owl-nav {
  display: none;
}

section.courses .owl-carousel .owl-dots {
  text-align: center;
}

section.courses .owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 50px 10px 0px 10px;
  outline: none;
}

section.courses .owl-carousel button.active {
  background-color: #f5a425;
}





/* 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;
  line-height: 40px;
  margin-bottom: 20px;
}

section.video .left-content h4 em {
  font-style: normal;
  color: #f5a425;
}

section.video .left-content .main-button {
  margin-top: 30px;
}

.video-item {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0px auto 0;
}

@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/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding-bottom: 0px;
}

section.contact h4,
p {
  color: #fff;
}


section.contact form {
  background-color: rgba(250, 250, 250, 0.1);
  padding: 30px;
  width: 100%;
}


@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-color: #152036;
  text-align: center;
}

footer p {
  margin-bottom: 0px;
  padding: 25px 0px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

footer p a,
footer p a:hover {
  color: #f5a425;
}

@media screen and (max-width: 992px) {
  .features {
    background-color: #0c1228;
    width: 100% !important;
  }

  .features-content {
    position: relative;
  }

  .features-post {
    border-left: 0;
    margin: 2px;
  }
}

@media screen and (max-width: 950px) {
  .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;
  }
}

/* Loader styles */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#loader-wrapper.fade-out2 {
  opacity: 0;
  pointer-events: none;
}

.main-nav.active {
  display: block !important;
}

.countdown-title {
  color: #e8f93b;
}

/* Responsive menu for <= 1250px */
@media (max-width: 1725px) {

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 19%;
    height: 116px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
    margin-top: -32px;
    margin-bottom: 21px;
  }

  /* padding-right: 30px; */
  /* padding-top: 15px; */

  .counter span {
    font-size: 15px !important;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
  }

  .main-banner .caption h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 19%;
    height: 116px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
    margin-top: -32px;
    margin-bottom: 21px;
  }

}

@media (max-width: 1576px) {
  .slideshow {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 115vh !important;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    background: #111;
  }
}

@media (max-width: 1570px) {

  .main-menu li a {
    padding: 12px 5px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.5s;
  }


  .main-nav ul.main-menu li {
    margin: 0.5rem 0;
  }



  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 19%;
    height: 116px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
    margin-top: -32px;
    margin-bottom: 21px;
  }

  /* padding-right: 30px; */
  /* padding-top: 15px; */

  .counter span {
    font-size: 15px !important;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
  }

  .main-banner .caption h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 19%;
    height: 116px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
    margin-top: -32px;
    margin-bottom: 21px;
  }

}

@media (max-width: 1400px) {
  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block !important;
  }

  .menu-link {
    display: inline-block !important;
  }

  .main-nav ul.main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    background-color: rgba(22, 34, 57, 0.99);
    position: absolute;
    top: 80px;
    right: 0;
  }

  .main-nav ul.main-menu li {
    margin: 0.5rem 0;
  }

  .main-nav ul.main-menu li a {
    display: block;
    padding: 5px 0px;

    top: 10px;
    line-height: 1.2;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 19%;
    height: 116px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
    margin-top: -32px;
    margin-bottom: 21px;
  }

  /* padding-right: 30px; */
  /* padding-top: 15px; */

  .counter span {
    font-size: 15px !important;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
  }

  .main-banner .caption h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 19%;
    height: 116px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(250, 250, 250, 0.1);
    margin-top: -32px;
    margin-bottom: 21px;
  }

}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block !important;
  }

  .menu-link {
    display: inline-block !important;
  }

  .main-nav ul.main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    background-color: rgba(22, 34, 57, 0.99);
    position: absolute;
    top: 80px;
    right: 0;
  }

  .main-nav ul.main-menu li {
    margin: 0.5rem 0;
  }

  .main-nav ul.main-menu 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;
    border: none !important;
  }

  a.menu-link {
    float: right;
    display: block;
    font-size: 36px;
    color: #fff;
    top: 10px;
    /* padding-right: 30px; */
    /* padding-top: 15px; */
  }

  .counter span {
    font-size: 15px !important;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
  }

  .main-banner .caption h2 {
    margin-top: 70px;
    margin-bottom: 30px;
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }

  .counter {
    width: 100% !important;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 18%;
  }

  .content-show {
    text-align: center;
    border-bottom: 1px solid #ffffff7a;
    padding: 5px;
  }

  .features-content {
    position: relative;
    padding: 5px;
  }

  .content-hide {
    text-align: center;
  }

  .features-content h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0px;
  }
}

/* Responsive menu for <= 1250px */
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block !important;
  }

  .menu-link {
    display: inline-block !important;
  }

  .main-nav ul.main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    background-color: rgba(22, 34, 57, 0.99);
    position: absolute;
    top: 80px;
    right: 0;
  }

  .main-nav ul.main-menu li {
    margin: 0.5rem 0;
  }

  .main-nav ul.main-menu 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;
    border: none !important;
  }

  a.menu-link {
    float: right;
    display: block;
    font-size: 36px;
    color: #fff;
    top: 10px;
    /* padding-right: 30px; */
    /* padding-top: 15px; */
  }

  .counter span {
    font-size: 15px !important;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
  }

  .main-banner .caption h2 {
    margin-top: 70px;
    margin-bottom: 30px;
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }

  .counter {
    width: 100% !important;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 18%;
  }

  .content-show {
    text-align: center;
    border-bottom: 1px solid #ffffff7a;
    padding: 5px;
  }

  .features-content {
    position: relative;
    padding: 5px;
  }

  .content-hide {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block !important;
  }

  .menu-link {
    display: inline-block !important;
  }

  .main-nav ul.main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    background-color: rgba(22, 34, 57, 0.99);
    position: absolute;
    top: 80px;
    right: 0;
  }

  .main-nav ul.main-menu li {
    margin: 0.5rem 0;
  }

  .main-nav ul.main-menu li a {
    display: block;
    padding: 2px 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;
    border: none !important;
  }

  a.menu-link {
    float: right;
    display: block;
    font-size: 36px;
    color: #fff;
    top: 10px;
    /* padding-right: 30px; */
    /* padding-top: 15px; */
  }

  .counter span {
    font-size: 15px !important;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
  }

  .main-banner .caption h2 {
    margin-top: 135px;
    margin-bottom: 30px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }

  .counter {
    width: 100% !important;
  }

  .counter .days,
  .counter .hours,
  .counter .minutes,
  .counter .seconds {
    width: 18%;
    margin-top: 0;
    margin-bottom: 9px;
  }

  .content-show {
    text-align: center;
    border-bottom: 1px solid #ffffff7a;
    padding: 5px;
  }

  .features-content {
    position: relative;
    padding: 5px;
  }

  .content-hide {
    text-align: center;
  }

  .testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 28px;
    text-align: center;
    align-items: center;
  }

  section.about p {
    color: #fff;
    font-size: 19px;
    line-height: 34px;
    width: 100%;
    text-align: justify;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  section.about h4 {
    margin-top: 60px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
  }

  section.coming-soon .continer h4 {
    margin-top: 25px;
    font-size: 25px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 40px;
    margin-bottom: 50px;
  }

  section.coming-soon p {
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    line-height: 29px;
    text-align: justify;
    width: 100%;
  }

  #tabs ul li a {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    outline: 0;
    padding-bottom: 30px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
  }

  .tabs-content img {
    padding-right: 0px;
    width: 248px
  }

  #tabs h4 {
    margin-top: 9px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
  }

  section.why-us {
    padding-bottom: 0;
  }

  .djc {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center !important;
    justify-content: center;
    margin-top: 18px;
  }

  .djc2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center !important;
    justify-content: center;
  }

  .djc2 i {
    display: none;
  }

  section.features,
  .container-features {
    width: 100%;
    margin: auto;
  }

  .flip-container {
    perspective: 1000px;
    display: inline-block;
    margin-top: 0rem !important;
    margin-bottom: 50px;
  }

  .flip-container img {
    width: 92px;
  }

  #tabs p {

    width: 80% !important;
    margin: auto;
  }

  .quote {
    width: 80% !important;
    margin: auto;
    text-align: justify !important;
    font-size: 1rem !important;
  }

  #openModalBtn {

    font-size: 17px !important;
    width: 35px !important;
  }

  .features-post {
    border-left: 0;
    width: 86%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 8px;
  }

  .features-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0px;
  }

  .content {
    width: 82% !important;
  }

  .content {
    & .title {
      font-size: 1rem !important;
    }
  }

  .content {
    & .description {
      font-size: 0.9rem !important;
    }
  }
}

.menu-link {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 30px;
  /* top: 30px; */
  z-index: 10001;
}

/* .main-nav.active {
  display: block !important;
  position: absolute;
  top: 70px;
  right: 0;
  background: #fff !important;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
  z-index: 10002;
  background-color: #fffbe6 !important;
  border: 2px solid red !important;
} */


section.main-banner {
  position: relative;
  z-index: 9;
}

/* Ensures carousel fills screen (optional styling) */
.carousel-inner {
  height: 100vh;
}

.carousel-item {
  height: 100%;
}

.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 10s ease-in-out;
}

.carousel-item.active img {
  opacity: 1;
  transform: scale(1.05);
  /* Zoom in */
}

/* Optional: dark overlay + text */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.0);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-overlay .caption {
  color: white;
  text-align: center;
  pointer-events: auto;
}

.main-button a {
  color: white;
  background-color: #007bff;
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 15px;
  font-size: 21px;
}

.nesac-shg {
  font-size: 23px;
  color: #FFEB3B;
  font-weight: 500;
  margin: 22px;
}

section.features {
  position: relative;
  z-index: 9;
}

.tr-logo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 9999;
}

.slideshow {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  background: #111;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-name: zoomIn2;
  animation-duration: 8s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  user-select: none;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  animation-name: fadeInOut;
  animation-duration: 8s;
  animation-iteration-count: 1;
}

@keyframes zoomIn2 {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Centered overlay text */
.overlay-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-size: 3rem;
  text-align: center;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  max-width: 90%;
  opacity: 1;
  transition: opacity 0.5s ease;
  white-space: nowrap;
  z-index: 99;
}

/* Responsive */
@media (max-width: 900px) {
  .slideshow {
    height: 50vh;
  }

  .overlay-text-container {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .slideshow {
    width: 100vw;
    height: 125vh !important;
    border-radius: 0;
    box-shadow: none;
  }

  .overlay-text-container {
    font-size: 1.3rem;
    white-space: normal;
    padding: 0 10px;
  }

  .testimonial-content h2 {
    color: #fff;
    border-bottom: 1px solid;
    font-weight: 600;
    margin-bottom: 39px;
    width: 305px !important;
  }

  .third-edition {
    font-family: 'BrushScript', cursive;
    color: #ecfd40;
    font-size: 29px;
    text-transform: initial;
    font-weight: 100;
    margin-bottom: 10px;
  }
}


/* WHY & WHO ATTEND SECTION CSS START HERE */

.why-attend {
  background: linear-gradient(90deg, #FDBB2D 0%, #22C1C3 100%);
  padding: 10px;
}

.why-attend ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-attend ul li {
  color: #000;
  margin: 0 0 10px;
  font-weight: 500;
  padding: 5px 10px;
  font-size: 18px;
}

.numbering1 {
  background-color: aliceblue;
  width: 38px;
  height: 38px;
  text-align: center;
  border-radius: 42px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #FFC107;
  font-size: 14px;
  position: relative;
}

.numbering2 {
  background-color: aliceblue;
  width: 38px;
  height: 38px;
  text-align: center;
  border-radius: 42px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #82bf82;
  font-size: 21px;
  position: relative;
}

.why-attend-list {
  background: linear-gradient(45deg, white, transparent);
  padding: 13px;
  margin-left: -18px;
  display: flex;
  padding-left: 30px;
  font-size: 21px;
  margin-bottom: 7px;
}

/* Modern Testimonial Section Styles */
.testimonials-modern .card {
  transition: box-shadow 0.2s;
  border-radius: 1rem;
}

.testimonials-modern .card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.10);
}

.testimonials-modern .rounded-circle {
  border: 4px solid #0d6efd;
  background: #fff;
  object-fit: cover;
}

.testimonials-modern .card-title {
  font-weight: 600;
}

.testimonials-modern .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0d6efd;
  opacity: 0.3;
  margin: 0 4px;
  border: none;
}

.testimonials-modern .carousel-indicators .active {
  opacity: 1;
}

.testimonials-modern .btn-outline-primary {
  min-width: 90px;
}

@media (max-width: 767.98px) {
  .testimonials-modern .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.testimonial-container {
  width: 100%;
  /* max-width: 56rem; */
  padding: 2rem;
}

.testimonial-grid {
  display: grid;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 370px;
  height: 10rem;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.testimonial-image {
  position: absolute;
  width: 150px;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content h2 {
  color: #fff;
  /* border-bottom: 1px solid; */
  font-weight: 600;
  margin-bottom: 39px;
  /* width: 515px; */
}

.name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.25rem;
}

.designation {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 2rem;
}

.quote {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.75;
}

.arrow-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}

.arrow-button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: #f5a425;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.arrow-button:hover {
  background-color: #00a6fb;
}

.arrow-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #555;
  transition: transform 0.3s;
}

.arrow-button:hover svg {
  fill: #ffffff;
}

.prev-button:hover svg {
  transform: rotate(-12deg);
}

.next-button:hover svg {
  transform: rotate(12deg);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 5fr;
  }

  .arrow-buttons {
    padding-top: 0;
  }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #06b1e8;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #048bb3;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #06b1e8 #f1f1f1;
}

#map {
  /* Adjust the height as needed */
  width: 100%;
  height: 309px;
  width: 100%;
  border: 1px solid #06b1e80f;
  border-radius: 1px;
}

.highlight-title {
  color: #fff;
  border-bottom: 1px solid;
  border-top: 1px solid;
  width: 50%;
  margin: auto;
  margin-top: 53px;
  padding: 6px;
  text-transform: initial;
}

.download-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: white;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #06b1e8;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

#scrollToTopBtn:hover {
  background-color: #048bb3;
}

/* Highlight Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.highlight-carousel .highlight-img {
  cursor: pointer;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.highlight-carousel .highlight-img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.tourism-btn-animated {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.tourism-tooltip {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background: #207797;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 16px;
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  z-index: 10;
  font-size: 1rem;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s cubic-bezier(.4, 1.7, .7, 1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.tourism-btn-animated:hover .tourism-tooltip,
.tourism-btn-animated:focus .tourism-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

#openModalBtn {
  background-color: #f5a425f7;
  padding: 33px 15px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  border-radius: 0px 5px 5px 0px;
  position: fixed;
  top: 40%;
  left: 0px;
  z-index: 9;
  color: white;
  border: none;
  width: 45px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

#openModalBtn:hover {
  background-color: #0056b3;
}

#testModal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.5s;
}

.tourism-modal {
  background-color: transparent;
}

#testModal .modal-content-wrapper {
  position: relative;
  margin: 5% auto;
  padding: 0px;
  width: 100%;
  /* max-width: 1200px; */
  height: 90%;
}

#testModal .modal-content {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  /* Hide scrollbars for Webkit browsers */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

#testModal .modal-content::-webkit-scrollbar {
  display: none;
}

.close-test-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reg-header {
  background-color: #FFEB3B;
  color: #162238 !important;
}

.reader-content {
  background-color: #3c3c3c;
}

.reader-close {
  background: transparent;
  border: none;
  color: #fff;
  position: absolute;
  right: 7px;
  top: 31px;
  font-weight: 600;
}


.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.nelogo a:hover {
  border: 0px solid red !important;
}



.flip-container {
  perspective: 1000px;
  /* Perspective to give the 3D effect */
  display: inline-block;
  margin-top: 1rem;
}

.flip-img {
  width: 100px;
  /* Ensure the image takes the container width */
  height: auto;
  transition: transform 0.6s;
  /* Add transition for smooth animation */
  transform-style: preserve-3d;
  /* Ensures 3D effect when flipping */
  backface-visibility: hidden;
  /* Hide the back face during flip */
}

.flip-container:hover .flip-img {
  transform: rotateY(180deg);
  /* Flip on hover */
}


.blink-border {
  display: inline-block;
  /* Ensure the element wraps the image correctly */
}

.blink-border img {
  border: 5px solid transparent;
  transition: border 0.3s ease;
  border-radius: 50px;
  background: #ffffff1f;
}

@keyframes blink-border {
  0% {
    border-color: transparent;
  }

  50% {
    border-color: #ffffff54;
    /* Color for the border while blinking */
  }

  100% {
    border-color: transparent;
  }
}

.blink-border img {
  animation: blink-border 1s infinite;
  /* Apply blinking animation */
}


.yt-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  text-decoration: none;
}

.yt-link i {
  font-size: 64px;
  color: #ff0000;
  transition: transform 0.2s;
}

.yt-link span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.yt-link:hover i {
  transform: scale(1.1);
}

.yt-link:hover span {
  color: #fff;
}

.reg-button {
  width: 274px;
  height: 60px;
  font-size: 23px;
  font-weight: 600;
  background: #f5a425;
  border: 0;
  color: #fff;
}

.who-box {
  height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.who-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}