*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body, html{
  overflow-x: hidden;
}

 .about-hero {
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
          url("assets/images/about-us/about-hero-bg.jpg");
        background-size: cover;
        background-position: center;
        color: white;
        padding: 50px 0 50px;
        text-align: center;
          font-family: "Dosis", Arial, Sans-serif !important;

      }
@media (max-width: 768px) {
    .about-hero {
              padding: 30px 0 30px;

    }
    .hero-title {
          font-size: 2.8rem;
        }
}
      .hero-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }
   
      .hero-subtitle {
        font-size: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
      }


p{
  color: #495057;
}

button:focus{
  outline: none !important;
}

.sans-serif-font {
    font-family: "Dosis", Arial, Sans-serif !important;

}

#form_number::-webkit-outer-spin-button,
#form_number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#form_number {
  -moz-appearance: textfield;
}

#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#scroll-to-top.show {
  opacity: 1;
}

#scroll-to-top:hover {
  background-color: rgba(0, 0, 0, 0.9);
}


/* MODAL FOR AFFLITATE=== */

/* Modal Styling */
.affiliate-modal {
  display: none ;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

.affiliate-modal-content {
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  height: 600px;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #dbdbdb #f1f1f1;
}


.affiliate-modal-content::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
  border-radius: 8px;
}

.affiliate-modal-content::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}

.affiliate-modal-content::-webkit-scrollbar-thumb {
  background: #FFD700; /* Scrollbar color */
  border-radius: 10px;
  transition: background 0.3s;
}

.affiliate-modal-content::-webkit-scrollbar-thumb:hover {
  background: #e6c300; /* Darker color on hover */
}

.aff-close {
  position: absolute;
  top: 0;
  right: 15px;
  margin-bottom: 20px;
  font-size: 44px;
  cursor: pointer;
}

h2 {
  text-align: center;
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-top: 10px;
}

.affiliate-modal input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

textarea {
  resize: none;
}

.aff-submit-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 10px;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e6c300;
}
.mobile-aff-btn{
  display: none;
}
.register-now-btn{
  /*background: #e6c300;*/
background: #F4F4F4;
  color: #fff;
  padding: 10px 30px;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.desktop-aff-btn {
  /* background: #e6c300; */
  color: #F4F4F4;
  /*color: #e6c300;*/
  border: 1px solid #F4F4F4;
  padding: 10px 40px;
  /* margin-top: 15px; */
  margin-right: 15px;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}
.desktop-aff-btn a{
  color: #F4F4F4;
  font-size: 12px;
}



@media (max-width: 993px){
  /* .desktop-aff-btn{
    display: none;
  } */
  .mobile-aff-btn{
    display: block;
    background: #e6c300;
    color: #000000;
    border: none;
    padding: 10px 20px;
    margin-top: 25px;
    margin-bottom: -20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
  }
}



/* ======SCROLL DOWN========= */

.scroll-btn {
  position: fixed;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
}

.scroll-btn.left {
  left: 20px; 
}

.scroll-btn.right {
  right: 20px; 
}

.scroll-btn.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}


.scroll-btn:hover {
  background-color: #555;
}

.scroll-btn.hide {
  opacity: 0;
  pointer-events: none;
}



.industry h2{
  text-align: left;
}



/* LATO CSS CLASSSES=============== */

.lato-thin {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular, p {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
}
.lato-bold, header {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
}


/* =============MONTSERRAT CSS CLASSES ============= */

.montserrat-regular {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.montserrat-bold {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  /*color: #ffda00;*/
}


/* =========OPEN SANS CSS CLASSES ===== */

.open-sans-regular {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.open-sans-bold {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.translation-contain{
  display: flex;
  gap: 10px
}
.mobile-translation-contain{
  display: flex;
  gap: 8px;
  margin-right: 8px;
}

.translation-contain a, .mobile-translation-contain a{
  color: #fff;
  font-weight: 700;
}

@media (max-width: 992px) {
  .translation-contain a{
    color: #000;
  }
  
}


img {
  max-width: 100%;
  height: auto;
}




/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
@media (min-width: 576px) {
  .large-gutters {
    margin-right: -25px;
    margin-left: -25px;
  }
  .large-gutters > .col,
  .large-gutters > [class*='col-'] {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (min-width: 576px) {
  .xl-gutters {
    margin-right: -60px;
    margin-left: -60px;
  }
  .xl-gutters > .col,
  .xl-gutters > [class*='col-'] {
    padding-right: 60px;
    padding-left: 60px;
  }
}

.wp-caption-text {
  font-size: 0.875rem;
}

.footer-menu .footer-menu-links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.footer-menu .footer-menu-links a{
  color: #fff;
  transition: color 0.3s ease-in-out;
}
/*.footer-menu .footer-menu-links a:hover{*/
/*  color: #E6C300;*/
/*}*/

.footer-menu .footer-menu-links li {
  display: inline-block; 
  padding: 0 15px; 
  position: relative;
}

.footer-menu .footer-menu-links li:not(:last-child)::after {
  content: "|"; 
  position: absolute;
  right: -10px;
  color: #fff; 
}


/* ----------------------------------------------------
HOME AND ALUMNI PAGE STYLE
--------------------------------------------------------
*/
.inner-container-sec, .inner-container-sec-left, .inner-container-sec-right{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* gap: 50px; */
}
.dual-row-container {
  display: flex;
  /* flex-wrap: wrap; */
  /* height: 90vh;  */
  justify-content: center;
}
.header-icons{
  display: flex;
  gap: 7px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  margin-bottom: -40px;
}


.light-gray{
  color: #a7a7a7;
}


.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding-left: 80px;
  padding-right: 80px; */
  padding-top: 200px;
  padding-bottom: 200px;
  /* min-width: 50%; 
  max-width: 50%;  */
  width: 100%;
  overflow: hidden; 
  word-wrap: break-word; 
}

.text-container h1 {
  max-width: 500px;
}
.text-container p{
  max-width: 600px;
 
}


.image-conatiner-sec, .image-conatiner-sec-2{
  min-height: 50%;
  /* width: 600px; */
}
.image-conatiner-sec img, .image-conatiner-sec-2 img{
  min-height: 500px;
  /* width: 600px; */
}
.home-mobile-img{
  display: none;
}
.btn-container{
  display: flex;
  gap: 10px;
}

.team-sec-potrait{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.btn-container a{
  padding: 15px;
  border-radius: 30px;
  width: 150px;
  text-align: center;
}
.btn-white-outline{
  border: 2px solid white;
  color: white;
}
.btn-white-outline:hover{
  background-color: #ffda00;
  color: white;
}
.btn-primary{
  background-color: #ffda00;
  color: black;
}
.btn-primary:hover{
  background-color: #ffda00;
  color: black;
}

.talent-images-container{
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  gap: 25px;
  padding-top: 40px;
  padding-bottom: 50px;
  justify-content: center;
}
.talent-images-container img{
  min-height: 500px;
}
.section-2-text-container{
  width: 50%;
  padding: 40px;
}
.main-vision-container{
  display: flex;
  align-items: center;
}
.vision-price-container{
  display: flex;
 /* text-align: center; */
 justify-content: center;
 align-items: center;
 gap: 25px;
 min-width: 50%;
}
.vision-price-container p{
  white-space: nowrap;
}
/* .title-container{
  display: flex;
  gap: 10px;
} */
 .vision-left-container{
  min-width: 50%;
 }
.title-container h2{
  white-space: nowrap;
  font-size: 2.5vw;
  color: #000000;
  /* color: #f7e709; */
}
.stroke-line{
  border-right: 0.3vw solid #000000;
  height: 130px;
}

/* ----VALUES ==== */

b{
  color: #303030;
}


/* ====PROGRAM ============= */

.back-btn{
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
}
.mobile-btn{
  display: none;
}
.text-parent-container{
  max-width: 1020px;
  margin: auto;
  padding: 10px;
  padding-bottom: 20px;

}
.program-details-decs-text p{
  font-size: 19px;
  color: #1C1D1E;
  width: 100%;
}
.price-table-container{
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.program-image-card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  max-width: 900px;
  margin: auto;

}
.program-image-card img {
  width: 100%; /* Makes it scale with container */
  height: auto; /* Keeps aspect ratio */
  max-height: 870px; /* Prevents it from exceeding this size */
  object-fit: contain; /* Ensures it fills the area nicely */
}


.image-col-program{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.image-col-program img{
  height: 450px;
}

@media screen and (max-width: 600px) {
  .image-col-program img{
    height: auto;
  }
  
}


.share-container {
  position: absolute;
  right: 20px;
  bottom: -10px;
  display: flex;
  gap: 10px;
  /* padding-bottom: 30px; */
  justify-content: flex-end;
}

.share-icons a {
  text-decoration: none;
  color: white;
  font-size: 12px;
  padding: 5px;
  padding-top: 6px;
  padding-left: 6px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #000;
}
.share-icons .whatsapp-share-icon, 
.facebook-share-icon, 
.twitter-share-icon, 
.email-share-icon, 
.telegram-share-icon{
  display: none !important;
}

/* Specific colors */
/* .share-icons a:nth-child(1) { background-color: #25D366; } 
.share-icons a:nth-child(2) { background-color: #1877F2; } 
.share-icons a:nth-child(3) { background-color: #1DA1F2; }
.share-icons a:nth-child(4) { background-color: #EA4335; }  */

.share-icons a i {
  transition: 0.3s;
}
.share-icons a:hover{
  background-color: #ffbf10;
  color: #000;
}

.share-icons a:hover i {
  transform: scale(1.2);
}



/* ============TALENT PAGE ============== */
.talent-text-style {
  text-align: justify;
}

.talent-team-images-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.talent-bottom-section{
  border-top: 2px solid #000;
}
.talent-team-members{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.each-talent-member{
  display: flex;
  gap: 20px;
}
.each-talent-member img{
  height: 300px;
}
.suggested-layout img{
  min-height: 200px ;
}
/* .talent-main-image img{
  width: 500px;
  min-height: 500px;
} */




/* ===================INDUSTRY PAGE ============= */

.title-container h2{
  font-size: 3.4vw;
}

.text-price-contain p{
  font-size: 25px;
}

/* ==============ABOUT PAGE ========= */
.about-text-box{
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}
.about-team-section{
/* border-top: 1px solid #fff; */
border-bottom: 1px solid #fff;
}
.team-in-about{
  border-bottom: 1px solid #fff;
}
.team-role-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: center;

}

.team-container-bottom{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 22.8px;
  margin-left: 60px;
  margin-right: 60px;
}
.align-team-members{
  display: flex;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 15px;
  margin-top: 22.8px;
  margin-left: 60px;
  margin-right: 60px;
  /* margin-right: 110px;
  margin-left: 110px; */
  align-items: center;
  justify-content: center;
}
.align-team-members .team-card{
  /* width: 350px; */
  width: 100%;
}
.desktop-hidden-team-card{
  display: none;
}
.team-container-bottom .team-card{
  width: 100%;
}


.team-name-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
}
.leader-name {
  text-transform: uppercase; 
  font-size: 22.5px; 
}
.leader-name::first-letter{
  font-size: 28px;
}
.team-name {
  text-transform: uppercase; 
  font-size: 20px; 
}
.team-name::first-letter{
  font-size: 26px;
}

/* .first-letter {
  font-size: 18px; 
  text-transform: uppercase;
} */

/* .first-letter::first-letter {
  font-size: 34px; 
} */

.team-role{
  margin-top: -14px;
}
.team-role-container span{
  /* margin-top: -10px; */
  margin-bottom: 12px;
  content: "";
  width: 4px;
  background: #525051;
  height: 20px;

}

/* .============ALUMNI PAGE ================= */
.main-alumni{
  align-items: center;
  /* padding-top: 40px; */
  padding-left: 200px;
  padding-right: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.border-line{
  border-top: 1px solid #d1d1d1;
}


.navbar-brand img{
  height: 45px;
}
.home-header-span{
  font-size: 40px;
  margin-bottom: 15px;
  margin-top: -15px;
  color: #000;
  text-transform: uppercase;
}
.footer-brand img{
  height: 70px;
}

.mobile-number{
  display: none;
}

.report-text-box{
  display: flex;
  flex-direction: column;
  position: relative;
}

.pdf-btn{
 width: fit-content;
 position: absolute;
 bottom: -6rem;
}


/* ===================TRAINERS PAGE============= */
/* .trainers-header{
  padding-top: 50px;
  padding-bottom: 50px;
} */


.trainers-header{
  display: flex;
  flex-direction: column;
  padding: 30px;
  padding-bottom: 50px;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
}
.trainers-header p{
  width: 60%;
  text-align: left;
  font-size: 17px;
}


.nayo-wallace-main-container{
  display: flex;
  gap: 30px;
  align-items: center;
  align-items: flex-end; 
  bottom: 0;
  justify-content: last baseline;
}
.nayo-general-layout{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nayo-main-container{
  margin-left: 170px;
  margin-right: 170px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.left-nayo-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.nayo-name-container {
  display: flex;
  flex-direction: column;
  margin-bottom: -100px;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start; 

}

.nayo-left-image-container{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end; 
}

.nayo-right-container{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* .nayo-grid-video-container{
  width: 100%;
  align-items: center;
  justify-content: center;
} */

.nayo-grid-video-container .video-container iframe {
  width: 100%;
  height: 200px;
  border: none;
  pointer-events: none;
}

.nayo-video-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 10px;
  margin: auto;
  /* margin-left: 240px;
  margin-right: 240px; */
  max-width: 1100px;
  padding-bottom: 50px;
}

.nayo-video-grid .video-container {
  position: relative;
  cursor: pointer;
}

.nayo-video-grid img {
  width: 100%;
  display: block;
}









/* ========CORPER PAGE ================= */
.corper-program{
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  gap: 30px;
  align-items: center;
}




/* ====AFFILIATE PAGE=============== */
.affiliate-table-container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
.aff-value-inner{
  align-items: center;
  justify-content: center;
 /* height: 80vh; */
}
.aff-text-container{
  padding-right: 80px;
}

@media (max-width: 1500px) {
  .pdf-btn{
    /* margin-top: -5rem; */
    margin-bottom: 1rem;
  }
  .image-conatiner-sec-2 img{
    min-height: 700px;
  }
  .image-conatiner-sec img{
    min-height: 700px;
  }
  .talent-main-image img{
    min-height: 600px;
  }
  .nayo-main-container{
    margin-left: 70px;
    margin-right: 70px;
  }
  .nayo-video-grid {
    margin: auto;
    /* margin-right: 70px;
    margin-left: 70px; */
    padding-bottom: 30px;
  }
  

}
@media (max-width: 1200px) {
  .nayo-grid-video-container .video-container iframe {
    width: 100%;
    height: 170px;
    border: none;
    pointer-events: none;
  }
  
  .nayo-video-grid {
   /* grid-template-columns: repeat(2, 1fr); */
   max-width: 900px;
  }

}
@media (max-width: 1179px) {
  .desktop-aff-btn {
    padding: 10px 40px;
    text-wrap: nowrap;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 12px;
  }
  .team-container-bottom{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* flex-wrap: wrap; */
  }
  /* .team-container-bottom .team-card{
    width: 100%;
  } */

  .desktop-hidden-team-card{
    display: block;
  }
  .mobile-hidden-team-card{
    display: none;
  }
  .align-team-members{
    margin-left: 0;
    margin-right: 0;
  }
  
}

@media (max-width: 1350px) {

  .affiliate-value-container img{
    min-height: 700px;
  }
  .pdf-btn{
    margin-bottom: 0;
  }
}
@media (max-width: 1228px) {
  .affiliate-table-container {
  padding-left: 50px;
  padding-right: 50px;
  }
  .affiliate-value-container img{
    min-height: 750px;
  }
  .nayo-main-container{
    margin-left: 80px;
    margin-right: 80px;
  }
  .nayo-wallace-main-container{
    gap: 10px;
  }

  .nayo-left-image-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end; 
  }
  
  .nayo-right-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-menu {
    margin-left: 50px;
  }
  
  
  .call-btn {
    display: none;
  }

  .image-conatiner-sec-2 img{
    height: 900px;
  }
  .image-conatiner-sec img{
    height: 900px;
  }
  /* .talent-team-members{
   flex-direction: column;
  } */
  /* .each-talent-member p{
    width: 60%;
  } */
   /* .price-table-container{
    flex-direction: column;
   } */

}


@media (max-width: 1024px) {

  .affiliate-value-container img{
    min-height: 750px;
  }
  .talent-team-images-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .pdf-btn{
    margin-bottom: auto;

  }
  
  /* .home-header{
    min-height: 20vh;
  } */
  /* .dual-row-container{
    height: 40vh;
  } */
  .text-container{
    /* padding: 20px; */
    min-height: 700px;
  }
  .site-header .nav-cta img{
    height: 30px;
    width: 30px;
  }
  .alumni-header{
    padding: 10px;
    width: 100%;
  }
  .alumni-header p{
    min-width: 90%;
  }
  .trainers-header{
    width: 100%;
    padding: 10px;
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .trainers-header p{
    width: 90%;
  }
  
}
@media (max-width: 993px) {
  .affiliate-value-container img{
    min-height: auto;
    height: auto;
    margin-bottom: 10px;
    /* max-height: 500px; */
  }
  .team-container-bottom{
    grid-template-columns: repeat(2, 1fr);
    gap: 22.8px;
    margin-left: 0;
    margin-right: 0;
  }
  .align-team-members{
    margin-left: 0;
    margin-right: 0;
  }
  
  .nayo-video-grid {
    /* grid-template-columns: 1fr 1fr; */
    padding-bottom: 30px;
  }
  .nayo-grid-video-container .video-container iframe {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    border: none;
    pointer-events: none;
  }
  
  .affiliate-value-container .aff-value-inner{
    padding: 15px;
  }
  .corper-program{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    margin-left: 100px;
    margin-right: 100px;
    gap: 30px;
    align-items: center;
  }
  .nayo-wallace-main-container{
    flex-direction: column;
  }
  .nayo-main-container img{
    width: auto 100%;
    min-width: 100%;
  }
  .nayo-name-container{
    margin-bottom: 20px;
  }
  .nayo-main-container{
    margin-left: 13px;
    margin-right: 13px;
  }
  .nav-cta{
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: -50px;
  }
  .call-btn{
    display: none;
  }
  .title-container h2{
    font-size: 3vw;
  }
  .section-2-text-container{
    width: 50%;
    padding: 20px;
  }
  .footer-menu {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: -30px;
  }
  
  .image-conatiner-sec img{
    min-height: 800px;
    max-width: 496px;
  }
  .image-conatiner-sec-2 img{
    min-height: 780px;
    max-width: 490px;
  }
  .talent-images-container{
    grid-template-columns: repeat(2, 400px);
    gap: 25px;
    padding-top: 40px;
    padding-bottom: 50px;
    justify-content: center;
  }
  .each-talent-member{
    flex-direction: column;
  }

  .report-text-box{
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 20px;
  }

  .pdf-btn{
   width: fit-content;
   /* position: absolute; */
   bottom: -5rem;
  
  }

  /* .program-details-decs-text p{
    margin-left: 100px;
    margin-right: 100px;
  } */

  .price-table-container{
    flex-direction: column;
  }


  .leader-name {
    text-transform: uppercase; 
    font-size: 20px; 
  }
  .leader-name::first-letter{
    font-size: 26px;
  }
  .align-team-members{
    grid-template-columns: 1fr 1fr;
  }

  
}

@media (max-width: 912px) {
  /* .section-2-text-container{
    width: 50%;
    padding: 20px;
  } */
  .inner-container-sec, .inner-container-sec-left, .inner-container-sec-right{
    display: flex;
    /* ....... */
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 20px;
  }
  .footer-menu {
    margin-bottom: -60px;
  }

  .mobile-btn{
    display: block;
    margin-bottom: 20px;
  }
  
  .desk{
    display: none;
  }
  .section-2-text-container{
    width: 100%;
    padding: 10px;
  }
  .image-conatiner-sec img{
    min-height: 390px;
    max-width: 402px ;
  }
  .inner-container-sec{
    flex-direction: column-reverse;
  }
  /* .inner-container-sec-left{
    flex-direction: column-reverse;
  } */
  
  .image-conatiner-sec img, .image-conatiner-sec-2 img{
    min-height: 500px;
    max-width: 100% ;
  }

  .pdf-btn{
    position: relative;
    bottom: 0;
   }

   .title-container h2{
    font-size: 5vw;
  }
  
  .text-price-contain p{
    font-size: 25px;
  }
  
}
@media (max-width: 886px) {
  .section-2-text-container{
    width: 100%;
    padding: 0;
  }
  .title-container h2{
    font-size: 3vw;
  }
  .report-text-box{
    padding-left: 0;
  }
  .title-container h2{
    font-size: 5vw;
  }
  
  .text-price-contain p{
    font-size: 25px;
  }
  .stroke-line{
    border-right: 0.4vw solid #000000;
  }
  .vision-price-container p{
    white-space: wrap;
  }
}

@media (max-width: 820px) {


  .main-vision-container{
    display: flex;
   flex-direction: column;
  }
  .text-container h1{
    font-size: 22px;
  }
  .image-conatiner-sec img, .image-conatiner-sec-2 img{
    height: 100%;
  }
  
}
@media (max-width: 768px) {
  .affiliate-table-container {
    padding-left: 15px;
    padding-right: 15px;
    }
    .nayo-video-grid {
      grid-template-columns: 1fr;
      margin-right: 0;
      margin-left: 0;
      padding-bottom: 30px;
      padding-left: 15px;
      padding-right: 15px;
    }
    .team-container-bottom{
      grid-template-columns: 1fr;
      gap: 22.8px;
    }
  .corper-program{
    gap: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .talent-images-container{
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .dual-row-container{
    flex-direction: column;
    width: 100%;
    /* height: 90vh; */
  }
  .talent-main-image img{
    min-height: auto;
  }
  .footer-menu {
    margin-bottom: -30px;
  }
  .margin{
    flex-direction: column-reverse;
  }
  .text-container{
    min-width: 100%;
    min-height: 40vh;
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .desktop-number{
    display: none;
  }
  .mobile-number{
    display: block;
  }
  .alumni-header p{
    min-width: 100%;
    width: 100%;
    /* padding: ; */
    /* padding-left: 10px; */
  }
  .alumni-header{
    padding: 0;
    width: 100%;
    /* padding-left: 20px;
    padding-right: 10px; */
  }
  .social-icons-mobile{
    display: flex;
    align-items: center;
    padding-right: 3px;
    /* background-color: red; */
  }
  .trainers-header{
    width: 100%;
    padding: 2px;
    padding-bottom: 50px;
    padding-top: 50px;
    /* padding: 0; */
  }
  .trainers-header p{
    width: 90%;
  }


  .home-header-span{
    font-size: 30px;
  }

  .main-alumni{
    align-items: center;
    /* padding-top: 20px; */
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  .inner-container-sec{
    padding: 0;
  }
  .pdf-btn{
    margin-top: 20px;
  }
  .align-team-members{
    grid-template-columns: 1fr;
  }
  

  /* .mobile-padding{
    padding-left: 20px;
    padding-right: 20px;
  } */
  
/* .text-price-contain{
  padding-left: 15px !important;
  padding-right: 15px !important;
} */
  .title-container h2{
    font-size: 6vw;
  }
  
  .text-price-contain p{
    font-size: 20px;
  }
.about-image-container{
  padding-top: 35px;
}
.about-image-container img{
  height: auto;
  min-height: auto;
}
  
.program-header{
  padding-left: 0;
  padding-right: 0;
}
.site-footer .footer-widget p {
  font-size: 13px;
}
/* .site-footer{
  padding-top: 0;
  background-color: #fff;
}
   */
   .site-footer .footer-bottom-area {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .section-2-text-container{
    /* width: 100%; */
    padding: 0;
  }

  .nayo-grid-video-container .nayo-video-grid .video-container iframe {
    min-width: 100% !important;
    height: 250px !important;
    margin-bottom: 0;
    border: none;
    pointer-events: none;
    /* background-color: red; */
  }
  #scroll-to-top, #scroll-down-btn{
    display: none;
  }

}


@media (max-width: 468px) {
  
  .nayo-grid-video-container .nayo-video-grid .video-container iframe {
    min-width: 100% !important;
    height: 180px !important;
    margin-bottom: 0;
    border: none;
    pointer-events: none;
    /* background-color: red; */
  }
}
@media (max-width: 417px) {
  .title-container h2{
    font-size: 7vw;
  }
  
  .text-price-contain p{
    font-size: 16px;
  }
}
@media (max-width: 344px) {
  .title-container h2{
    font-size: 6vw;
  }
  
  .text-price-contain p{
    font-size: 16px;
  }

  .team-container-bottom .team-card{
    width: 100%;
  }
  
  
  /* .team-name-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
  } */
  .team-role-container span{
    /* margin-top: -10px; */
    margin-bottom: 13px;
    content: "";
    width: 2px;
    background: #525051;
    height: 15px;
  
  }
  
  .leader-name {
    text-transform: uppercase; 
    font-size: 17px; 
  }
  .leader-name::first-letter{
    font-size: 21px;
  }
  .team-role{
    font-size: 17px !important;
  }
  .team-name {
    text-transform: uppercase; 
    font-size: 17px; 
  }
  .team-name::first-letter{
    font-size: 21px;
  }
  
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    margin-top: 20px;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    /* background-color: #F4F4F4; */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    text-align: center;
    padding-bottom: 20px;
  }
}

.site-header .navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}
.home-header{
  display: flex;
  flex-direction: column;
  /* padding: 30px; */
  padding-bottom: 50px;
  padding-top: 50px;
  /* height: 50vh; */
  justify-content: center;
  align-items: center;
}
.alumni-header{
  display: flex;
  flex-direction: column;
  padding: 30px;
  padding-bottom: 50px;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
}
.alumni-header p{
  width: 60%;
  text-align: left;
  font-size: 17px;
}
.download-unesco-btn {
  text-decoration: underline;
}
.download-unesco-btn a{
  color: blue;
}
.mobile-pdf-btn{
  display: none;
}


.home-header p{
  width: 60%;
  text-align: left;
}
.home-header h1{
  font-size: 54px;
}

@media (max-width: 991.98px) {

}

.site-header .navbar .nav-item {
  font-weight: 800px;
  /* font-family: "Mulish"; */
  color: #000000;
  font-size: 1rem;
  margin-right: 9px;
  margin-left: 9px;
  text-transform: uppercase;
 
}

@media (max-width: 991.98px) {
  .site-header .navbar .nav-item {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}

.site-header .navbar .nav-item.active {
  color: #1C1D1E;
}

.site-header .navbar .nav-item .nav-link {
  color: #1C1D1E;
  font-weight: 900;
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 02px;
  margin-right: 20px;
}

@media (min-width: 992px) {
  .site-header .navbar .nav-item .nav-link {
    position: relative;
  }
  .site-header .navbar .nav-item .nav-link.active::before, .site-header .navbar .nav-item .nav-link:hover::before {
    content: "";
    border-bottom: solid 2px #000000;
    width: calc(100% - 0px);
    display: block;
    position: absolute;
    bottom: 1px;
    z-index: 1;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar .nav-item .dropdown-menu {
    border: solid 1px #ffffff;
    border-radius: 0px;
    background-color: white;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar .nav-item .dropdown-menu .dropdown-item {
    color: #1C1D1E;
    border: solid;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1;
    border-color: #1C1D1E;
    border-width: 1px;
    padding: 20px 40px;
  }
}

.site-header .nav-modules li {
  margin-left: 0px;
}

.site-header .navbar-toggler {
  background-color: #F4F4F4;
}

.btn-outline-black-header {
  border: solid;
  border-width: 2px;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-pills .nav-link {
  padding: .75rem 2rem;
  border-radius: 2rem;
}

.nav-pills .nav-link.active {
  color: #ffffff;
}

.navbar .nav-modules {
  padding: 0;
  margin: 0;
}

.navbar .nav-modules .nav-item-search {
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar .nav-modules .nav-item-search .navbar-search-bar input {
  border-width: 1px;
  border-radius: 0;
  padding: 30px 0 30px 30px;
  border-right: none;
  background: #ffffff;
  width: 100%;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

@media (min-width: 992px) {
  .navbar .nav-modules .nav-item-search .navbar-search-bar input {
    width: 320px;
    border-top: none;
    border-bottom: none;
  }
}

.navbar .nav-modules .nav-item-search .navbar-search-bar .btn {
  border-left: none;
  background: #ffffff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 15px 30px 15px 0;
  font-size: 0.875rem;
}

@media (max-width: 767.98px) {
  .navbar .nav-modules .nav-item-search .navbar-search-bar {
    padding-top: 0.6666666667rem;
    padding-bottom: 0.6666666667rem;
  }
  .home-header p{
    width: 100%;
  
    
    /* text-align: center; */
    /* text-align: justify; */
  }
  .home-header h1{
    font-size: 35px !important;
  }
  .home-header{
    /* padding-left: 20px;
    padding-right: 20px; */
    padding-bottom: 50px;
    padding-top: 50px;
  }

}

.navbar .nav-modules .navbar-nav .nav-item-search:not(:last-child) {
  margin-right: 1.5rem;
}

.navbar .nav-modules .btn-link {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Mulish";
  color: #6246F9;
}

.navbar .nav-modules .nav-item-social-nav:not(:last-child) {
  margin-right: 1.2rem;
  padding-right: 1.2rem;
  border-right: solid 1px #dee2e6;
}

.navbar .nav-modules .nav-item-social-nav a:not(:last-child) {
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .navbar .nav-modules .nav-item-social-nav {
    padding-top: 0.6666666667rem;
    padding-bottom: 0.6666666667rem;
  }
  .navbar .nav-modules .nav-item-social-nav a:not(:last-child) {
    margin-right: 1.3rem;
  }
  .mobile-pdf-btn{
    display: block;
  }
  .desktop-pdf-btn{
    display: none;
  }
}

.navbar .nav-item-account i {
  font-size: 1.191rem;
  padding-right: 5px;
}

/*--------------------------------------------------------------
# Page main title
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #1C1D1E;
  /* border-top: 1px solid #fefefe; */
}

@media (min-width: 992px) {
  .site-footer ol,
  .site-footer ul {
    -webkit-padding-start: 1rem;
       -moz-padding-start: 1rem;
            padding-inline-start: 1rem;
  }
}

.site-footer .footer-widgets {
  padding-top: 80px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.social-icons{
  display: flex;
  gap: 10px;
}
.social-icons li{
  display: flex;
  border: 1px solid;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.social-icons li .fab{
  font-size: 14px;
}
.box-color-bg{
  background-color: #ffdf00;
}
.social-icons li a{
  color: #fff;
}
.social-icons img{
  height: 20px;
  margin-bottom: 4px;
}
.social-icons .telegram-icon{
  margin-right: 2px;
  margin-top: 2px;
}
.contact-social-icon{
  height: 40px;
  margin-top: -13px;
}

.contact-social-font-icon {
  font-size: 26px;
}

.nav-cta{
  display: flex;
  gap: 15px;
  align-items: center;
  padding-top: 15px;
}
.nav-cta li{
  text-decoration: none;
  list-style: none;
}
.nav-cta img{
  height: 35px;
}

@media (min-width: 992px) {
  .site-footer .footer-widgets {
    padding-top: 100px;
  }
}

.site-footer .footer-widgets .footer-widget {
  font-weight: 500;
  margin-bottom: 30px;
}

.site-footer .footer-widgets .footer-widget .widget-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.site-footer .footer-widgets .footer-widget ul {
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .site-footer .footer-widgets .footer-widget ul {
    margin-bottom: 0px;
  }
}

.site-footer .footer-widgets .footer-widget ul ul {
  -webkit-padding-start: 0rem;
     -moz-padding-start: 0rem;
          padding-inline-start: 0rem;
}

.idea-text{
  text-transform: uppercase;
  transition: 0.7s;
  color: #fff !important;
}
/*.idea-text:hover{*/
/*  color: #e6c300 !important;*/
  
/*}*/

@media (min-width: 992px) {
  .site-footer .footer-widgets .footer-widget ul ul {
    -webkit-padding-start: 1rem;
       -moz-padding-start: 1rem;
            padding-inline-start: 1rem;
  }
}

.site-footer .footer-widgets .footer-widget ul li {
  padding: 0.6666666667rem 0;
  font-weight: 500;
}

.site-footer .footer-widgets .footer-widget a {
  color: #ffffff;

}

.site-footer .footer-widgets .footer-widget a:hover {
  color: #ffffff;
}

.site-footer .footer-bottom-area {
  padding-top: 50px;
  padding-bottom: 50px;
  color: #747474;
  padding-top: 0px;
}

.site-footer .footer-bottom-area a {
  color: #ffffff;
}

.site-footer .footer-bottom-area a .icon {
  font-size: 18px;
  width: 1.25em;
}

.site-footer .footer-bottom-area a:hover {
  color: #ffffff;
}

.site-footer .footer-bottom-area .border-padding {
  padding-right: 15px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 992px) {
  .site-footer .footer-bottom-area {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

.site-footer .footer-bottom-area .footer-nav.list-inline li {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  font-weight: 500;
}

.site-footer .footer-bottom-area .footer-nav.list-inline li:not(:last-child) {
  margin-right: 1.2rem;
}

/*--------------------------------------------------------------
# Posts
--------------------------------------------------------------*/
.blog-post .entry-media {
  margin-bottom: 0;
}

.blog-post .sticky::after {
  content: "\F08D";
  font-family: "Font Awesome\ 5 Free";
  font-size: 25px;
  font-weight: 900;
  color: #999999;
  position: absolute;
  top: -32px;
  left: 30px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.blog-post .entry-content-wrapper {
  background-color: white;
  padding: 38px 30px;
}

.blog-post .entry-content-wrapper .entry-title {
  font-size: calc(1.275rem + 0.3vw);
  margin-bottom: 15px;
}

@media (min-width: 1200px) {
  .blog-post .entry-content-wrapper .entry-title {
    font-size: 1.5rem;
  }
}

.blog-post .entry-content-wrapper .entry-title a {
  color: #000000;
}

.blog-post .entry-content-wrapper .entry-content > p {
  margin-bottom: 0;
}

.blog-post .entry-content1-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 18px;
  background-color: #F4F4F4;
}

.blog-post .entry-content1-wrapper .entry-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.blog-post .entry-content1-wrapper .entry-title a {
  color: #000000;
}

.blog-post .entry-content1-wrapper .entry-content > p {
  margin-bottom: 0;
}

.entry-meta-top {
  font-size: 0.875rem;
  font-weight: 800;
  color: #a7a7a7;
  margin-bottom: 05;
}

.entry-meta-top a {
  color: #a7a7a7;
}

.entry-meta-top span {
  display: inline-block;
  margin-bottom: 13px;
}

.entry-meta-top span:not(:last-child) {
  margin-right: 1.6rem;
}

.entry-meta-top span i {
  margin-right: 0.5rem;
}

.entry-meta-top .entry-meta-category a:not(:last-child):after {
  content: "/";
  padding-left: 3px;
  padding-right: 3px;
}

.entry-footer .entry-meta-bottom {
  margin-top: 4rem;
}

.entry-footer .entry-author-container {
  border-top: solid 1px #ffffff;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

.entry-footer .entry-author-container .caps {
  color: #999999;
}

.navigation.post-navigation {
  border-top: solid 1px #F4F4F4;
  border-bottom: solid 1px #F4F4F4;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.navigation.post-navigation .nav-subtitle {
  font-size: 0.75rem;
  color: #555865;
  text-transform: uppercase;
}

.navigation.post-navigation .nav-title {
  font-family: "Mulish";
  font-weight: 800;
  font-size: 1rem;
}

.entry-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-tags li {
  display: inline-block;
}

.entry-tags li.tags-icon {
  color: #999999;
  margin-right: 0.5rem;
}

.entry-tags li a {
  background-color: #dee2e6;
  border: 1px solid #dee2e6;
  padding: 12px 20px;
  margin: 5px 0.5rem 5px 0;
  font-size: 0.875em;
  line-height: 1.1;
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a.entry-read-more {
  margin-top: 15px;
  display: block;
  color: #999999;
  font-size: 0.875rem;
}

.blog-post.card-post-style article {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-post.card-post-style article .entry-content-wrapper {
  border-top-width: 0;
}

.single-post article {
  padding-bottom: 1.9rem;
}

@media (max-width: 767.98px) {
  .single-post article .entry-content-wrapper {
    padding-top: 2.5rem;
  }
  /* .entry-content{
    padding-left: 20px;
    padding-right: 20px;
  } */
}

.single-post article .entry-content-wrapper .entry-media {
  position: relative;
}

.single-post article .entry-content-wrapper .entry-media img {
  z-index: 1;
  position: relative;
}

.single-post article .entry-content-wrapper .entry-media .entry-media-gallery .flickity-page-dots {
  bottom: 40px;
}

.single-post .comments {
  background: #ffffff;
  padding-top: 50px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.single-post .entry-footer,
.container-small {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .single-post .entry-footer,
  .container-small {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .footer-widgets{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.text-center.align-items-center .btn.btn-light {
  color: #666666;
  background: #F4F4F4;
}

p.has-drop-cap:not(:focus):after {
  content: "";
  display: table;
  clear: both;
  padding-top: 1rem;
}

p.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: calc(1.5rem + 3vw);
  font-weight: 800;
  line-height: 0.9;
  margin: .05em .1em 0 0;
  text-transform: uppercase;
  font-style: normal;
}

@media (min-width: 1200px) {
  p.has-drop-cap:not(:focus):first-letter {
    font-size: 3.75rem;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.property-block {
  margin-bottom: 57px;
}

.property-block .property-item .content-image {
  margin-bottom: 25px;
}

.property-block .property-item .content-title {
  margin-bottom: 15px;
  color: #1C1D1E;
}

.property-block .property-item .content-price {
  color: #6246F9;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.property-block .property-item .content-meta {
  color: #a7a7a7;
  margin-left: 0px;
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
/* Products */
/**
 * Products
 */
.products .product {
  list-style: none;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .products .product {
    margin-bottom: 45px;
  }
}

.products .product .product-content-wrapper {
  padding-top: 30px;
}

.products .product .product-content-wrapper .product-title {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.products .product .product-content-wrapper .price {
  font-size: 1rem;
  font-family: "Mulish";
  font-weight: bold;
  color: #6246F9;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Jetpack
--------------------------------------------------------------*/
/* =Infinity Styles
-------------------------------------------------------------- */
.infinite-loader {
  color: #000;
  display: block;
  height: 28px;
  text-indent: -9999px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#infinite-handle {
  text-align: center;
  margin: 0 auto;
}

#infinite-handle span {
  background: initial;
  border-radius: initial;
  color: initial;
  cursor: pointer;
  font-size: initial;
  padding: initial;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion .card .card-header {
  border-bottom: 0px;
  text-transform: uppercase;
  
}

.accordion .card .card-header a {
  display: block;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.8px;
}

.accordion .card .card-header a::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  padding-right: 15px;
  color: #1C1D1E;
}

.accordion .card .card-header a.collapsed::before {
  content: "\f105";
}

.accordion .card .card-body {
  margin-top: 20px;
  background-color: #F4F4F4;
  color: #313131;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.position {
  position: absolute;
  fill: #ffffff;
  color: #ffffff;
}

@media (min-width: 992px) {
  .position {
    margin-left: -350px;
    margin-top: 165px;
  }
}

@media (max-width: 991.98px) {
  .position {
    margin-left: -375px;
    margin-top: 200px;
  }
}

@media (max-width: 767.98px) {
  .position {
    margin-left: -200px;
    margin-top: 100px;
  }
}

.position:hover {
  fill: #ffffff;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Fields
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Countdown
--------------------------------------------------------------*/
.countdown .countdown_value {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 800;
  display: inline-block;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 1200px) {
  .countdown .countdown_value {
    font-size: 2.5rem;
  }
}

.countdown .countdown_value:not(:last-child) {
  padding-right: 2rem;
}

.countdown .countdown_value .countdown_lable {
  font-size: 1rem;
  display: block;
}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
.round-icon-list {
  padding-left: 0;
  list-style: none;
}

.round-icon-list li {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  font-size: 1.125rem;
  border-radius: 50px;
  text-align: center;
}

.round-icon-list li a i {
  color: #000000;
}

.round-icon-list li:not(:last-child) {
  margin-right: 20px;
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.member-content {
  background-color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 15px;
}

.member-content .member-text .member-name {
  margin-bottom: 15px;
}

.member-content .member-text .member-tag {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600px;
  color: #a7a7a7;
}

.member-content .member-text .member-link {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.small-gutters {
  margin-right: -5px;
  margin-left: -5px;
}

.small-gutters > .col,
.small-gutters > [class*='col-'] {
  padding-right: 5px;
  padding-left: 5px;
}

.gallery-gutters {
  margin: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.gallery-gutters > .col,
.gallery-gutters > [class*='col-'] {
  padding: 15px;
}

.small-gallery-gutters {
  margin: -5px;
}

.small-gallery-gutters > .col,
.small-gallery-gutters > [class*='col-'] {
  padding: 5px;
}

.xs-gallery-gutters {
  margin: -2.5px;
}

.xs-gallery-gutters > .col,
.xs-gallery-gutters > [class*='col-'] {
  padding: 2.5px;
}

/*--------------------------------------------------------------
# Pricing table
--------------------------------------------------------------*/
.pricing-table-item {
  /* margin-bottom: 2rem; */
  padding: 1.5rem 3rem;
  /* padding-bottom: 1rem; */
}

.pricing-table-item .pricing-table__title {
  margin-bottom: 0.25rem;
  padding-top: 0.8rem;
  font-size: 1.6rem;
}

.pricing-table-item .pricing-table__price {
  margin-bottom: 1rem;
  font-weight: 800;
  font-family: "Mulish";
}


.pricing-table-item .pricing-table__price .pricing-table__amount {
  font-size: calc(1.5rem + 3vw);
}

@media (min-width: 1200px) {
  .pricing-table-item .pricing-table__price .pricing-table__amount {
    font-size: 3.75rem;
  }
}
@media (max-width: 768px) {
  .pricing-table-item .pricing-table__title {
    font-size: 1.3rem;
  }
  .pricing-table-item .pricing-table__features {
    font-size: 12px;
  }
  
}

.pricing-table-item .pricing-table__price * {
  display: inline;
  font-size: 1.25rem;
  font-family: "Roboto";
}

.pricing-table-item .pricing-table__features {
  list-style: none;
  padding: 0;
  font-size: 20px;
  margin: 0 0 2rem 0;
}

/*--------------------------------------------------------------
# iframe
--------------------------------------------------------------*/
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*--------------------------------------------------------------
# text-image-box
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Modules
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.screen-reader-text:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.heme-carousel .carousel-item {
  min-height: 666px;
  background: #000000;
  background: -webkit-gradient(linear, left top, right top, color-stop(66.66%, #000000), color-stop(66.6666666%, #232323));
  background: -webkit-linear-gradient(left, #000000 66.66%, #232323 66.6666666%);
  background: linear-gradient(90deg, #000000 66.66%, #232323 66.6666666%);
}

.heme-carousel .carousel-item .heme-carousel-caption {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  color: #fff;
}

@media (min-width: 992px) {
  .heme-carousel .carousel-item .heme-carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comment-meta {
  position: relative;
}

.comment-awaiting-moderation {
  font-size: 0.9375rem;
  color: red;
  margin-left: 60px;
  margin-top: 13px;
  font-family: "Mulish";
}

.cnns-comment-subscription {
  margin-top: 22px;
}

.cnns-comment-subscription label {
  font-size: 1.0625rem;
  display: inline;
  margin-left: 3px;
  position: relative;
  top: 1px;
  color: #a7a7a7;
}

#disqus_thread {
  display: block;
  padding-top: 1em;
}

@media only screen and (min-width: 600px) {
  #disqus_thread {
    padding-top: 4em;
  }
}

.comments-title {
  margin-bottom: 2rem;
  color: #999999;
  font-weight: 400;
}

@media (min-width: 992px) {
  .comments {
    padding-bottom: 120px;
  }
}

@media (max-width: 991.98px) {
  .comments {
    padding-bottom: 80px;
  }
}

@media (max-width: 767.98px) {
  .comments {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 599px) {
  body.has-no-comments .comments {
    padding-top: 0;
  }
}

.comment, .comment_container {
  margin: 0 0 60px;
  list-style-type: none;
}

.comment .avatar, .comment_container .avatar {
  border-radius: 100px;
  float: left;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  margin-right: 2rem;
}

.comment-author, .comment_container-author {
  font-size: 1.0625rem;
  display: block;
  font-family: "Mulish";
  margin: 0 0 10px;
}

@media only screen and (min-width: 600px) {
  .comment-author, .comment_container-author {
    font-size: 1.125rem;
  }
}

.comment-author .says, .comment_container-author .says {
  display: none;
}

.comment-author span, .comment-author cite, .comment-author a, .comment_container-author span, .comment_container-author cite, .comment_container-author a {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
}

.comment-author .fn a, .comment_container-author .fn a {
  font-weight: 800;
}

.comment-notes, .comment_container-notes {
  display: none;
}

.comment .reply, .comment-content, .comment .comment-text, .comment_container .reply, .comment_container-content, .comment_container .comment-text {
  margin-left: 77px;
}

.comment .reply, .comment_container .reply {
  display: block;
  margin-top: 15px;
}

.comment .reply a, .comment_container .reply a {
  font-size: 0.875rem;
  background: #dee2e6;
  border-radius: 2px;
  color: #6c757d;
  display: inline-block;
  font-family: "Mulish";
  font-weight: 500;
  padding: .2em .65em;
  margin-left: -1px;
  -webkit-transition: 150ms color cubic-bezier(0.3, -0.55, 0.1, 1.1);
  transition: 150ms color cubic-bezier(0.3, -0.55, 0.1, 1.1);
}

@media (min-width: 600px) {
  .comment .reply a, .comment_container .reply a {
    border-radius: 2px;
  }
}

.comment .reply a:hover, .comment_container .reply a:hover {
  color: #000000;
}

.comment-content a, .comment_container-content a {
  word-wrap: break-word;
  text-decoration: underline;
}

.comment-content a:hover, .comment_container-content a:hover {
  text-decoration: none;
}

.comment-body, .comment_container-body {
  clear: both;
}

.comment .comment-respond, .comment_container .comment-respond {
  margin-top: 40px;
  margin-bottom: 60px;
}

@media only screen and (min-width: 600px) {
  .comment .comment-respond, .comment_container .comment-respond {
    margin-left: 60px;
  }
}

.comment-metadata {
  font-size: 0.875rem;
  display: block;
  margin-top: -10px;
  margin-bottom: 0.5rem;
  font-family: "Mulish";
}

.comment-metadata a {
  color: #999999;
}

.comment-metadata a:hover {
  color: #000000;
}

.comments__inner .children {
  padding: 0;
}

.comments .comments__inner .children {
  margin-top: 30px;
}

@media only screen and (max-width: 700px) {
  .comments .comments__inner .children .comments__inner .children {
    margin-left: 0;
  }
}

@media only screen and (min-width: 400px) {
  .comments .comments__inner .children {
    margin-top: 30px;
    margin-left: 60px;
  }
  .comments .comments__inner .children .comment {
    margin: 0 0 25px 0;
  }
}

.pingback {
  margin-bottom: 25px;
}

.pingback .comment-edit-link {
  color: gray;
}

.pingback .comment-edit-link:hover {
  color: #000000;
}

article.comment-body {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
  -webkit-box-shadow: 0 0 0 2px #000000;
          box-shadow: 0 0 0 2px #000000;
  padding: 5px;
  top: 2px;
  position: relative;
}

.comment.depth-3 p,
.comment.depth-4 p,
.comment.depth-5 p,
.comment.depth-6 p,
.comment.depth-7 p {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.comment-reply-title {
  /* font-family: "Mulish"; */
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: h2;
}

body.has-no-comments .comment-reply-title {
  margin-top: 0;
}

.comment-reply-title small {
  font-size: 0.875rem;
  font-weight: normal;
  color: #999999;
  float: right;
  position: relative;
  top: 8px;
  -webkit-transition: 150ms color cubic-bezier(0.3, -0.55, 0.1, 1.1);
  transition: 150ms color cubic-bezier(0.3, -0.55, 0.1, 1.1);
}

@media only screen and (min-width: 600px) {
  .comment-reply-title small {
    font-size: 0.9375rem;
  }
}

.comment-reply-title small:hover {
  color: #000000;
}

.logged-in-as {
  font-family: "Mulish";
  margin-top: -15px;
  font-size: 0.875rem;
}

.logged-in-as:hover {
  text-decoration: underline;
}

.no-comments {
  text-align: center;
}

.comment-form-comment label {
  color: #a7a7a7;
}

.required {
  color: #dc3545;
}

body.has-no-comments .comment-respond {
  margin-left: 0;
}

.comment-respond p {
  position: relative;
  margin-bottom: 20px;
}

.comment-respond .form-submit {
  margin-bottom: 0;
  margin-top: 30px;
  display: block;
}

@media (max-width: 599px) {
  .comment-respond .form-submit input {
    width: 100%;
  }
}

.comment-form-cookies-consent {
  display: block;
  margin-bottom: 30px !important;
}

.comment-form-cookies-consent label {
  font-size: 0.9375rem;
  font-weight: 400;
  padding-left: 8px;
  color: #a7a7a7;
  display: inline-block;
  -webkit-font-smoothing: auto !important;
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin-bottom: 4rem;
}

.widget .widget-title {
  font-size: 1rem;
  font-family: "Mulish";
  font-weight: 800;
  margin-bottom: 1rem;
  color: #999999;
  display: block;
  text-transform: uppercase;
}

.widget ol,
.widget ul {
  -webkit-padding-start: 1.25rem;
     -moz-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}

.widget_pages ul li,
.widget_recent_comments ul li,
.widget_meta ul li,
.widget_recent_entries ul li,
.widget_archive ul li,
.widget_categories ul li,
.widget_product_categories ul li {
  width: 100%;
}

.widget_pages ul li a,
.widget_recent_comments ul li a,
.widget_meta ul li a,
.widget_recent_entries ul li a,
.widget_archive ul li a,
.widget_categories ul li a,
.widget_product_categories ul li a {
  display: inline-block;
  padding: 0.5rem 0;
}

.widget_pages > ul,
.widget_recent_comments > ul,
.widget_meta > ul,
.widget_recent_entries > ul,
.widget_archive > ul,
.widget_categories > ul,
.widget_product_categories > ul {
  list-style: none;
}

.widget_pages > ul > li::before,
.widget_recent_comments > ul > li::before,
.widget_meta > ul > li::before,
.widget_recent_entries > ul > li::before,
.widget_archive > ul > li::before,
.widget_categories > ul > li::before,
.widget_product_categories > ul > li::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  border: solid 1px #999999;
  border-radius: 50px;
  margin-left: -1.25rem;
  margin-right: 10px;
}

.widget_recent_comments li {
  margin-bottom: 1rem;
}

.widget_nav_menu ul {
  padding-left: 0;
}

.widget_nav_menu ul li {
  width: 100%;
  list-style: none;
  padding: 0.6rem 0;
}

.widget_nav_menu ul li a {
  display: inline-block;
}

.widget_nav_menu ul .current-menu-item a {
  padding: 0.4rem 2rem;
  margin-left: -2rem;
  border-radius: 50px;
  min-width: 130px;
}

.widget_rss ul {
  list-style: none;
  padding: 0;
}

.widget_rss ul li {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.widget_rss ul li:not(:last-child) {
  border-bottom: solid 1px #dee2e6;
}

.widget_rss ul li a.rsswidget {
  font-size: 1.2rem;
  font-family: "Mulish";
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: block;
}

.widget_rss ul li .rss-date {
  color: #999999;
  font-size: 0.875em;
  margin-bottom: 0.5rem;
  display: block;
}

.search-form .form-control,
.search-form .btn {
  border-color: #F4F4F4;
}

.search-form .input-group .form-control {
  border-color: #F4F4F4;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Night Mode
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/
.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  .height-px-420 {
    height: 420px;
  }
}

@media (min-width: 992px) {
  .height-px-542 {
    height: 542.99px;
  }
}

@media (min-width: 768px) {
  .height-px-600 {
    height: 603px;
  }
}

@media (max-width: 767.98px) {
  .height-px-600 {
    height: 320px;
  }
}

@media (min-width: 992px) {
  .home-bg {
    background-image: url("../images/home/h1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 992px) {
  .home-bg-1 {
    background-image: url("../images/home/bgi2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 992px) {
  .about-bg-1 {
    background-image: url("../images/home/bgi4.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 991.98px) {
  .home-bg-11 {
    background-image: url("../images/home/h16.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 50vh;
  }
}

@media (min-width: 992px) {
  .home-bgi3 {
    background-image: url("../images/contact/connect-2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 50vh;
  }
}

@media (min-width: 992px) {
  .service-1 {
    background-image: url("../images/services/service1.jpg");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center left;
  }
}

@media (min-width: 992px) {
  .team-1 {
    background-image: url("../images/team/teambg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

@media (min-width: 992px) {
  .featured-image {
    background-image: url("../images/single-project/featured-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 90vh;
  }
}

@media (max-width: 991.98px) {
  .featured-image {
    background-image: url("../images/single-project/featured-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 50vh;
  }
}

@media (max-width: 767.98px) {
  .featured-image {
    background-image: url("../images/single-project/featured-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 30vh;
  }
}

@media (min-width: 992px) {
  .featured-image-blog {
    background-image: url("../images/blog/b1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 65vh;
  }
}

@media (max-width: 991.98px) {
  .featured-image-blog {
    min-height: 50vh;
  }
}

@media (max-width: 767.98px) {
  .featured-image-blog {
    background-position: center center;
    min-height: 30vh;
  }
}

.seventy-percent-bg-black-pearl {
  background-color: transparent;
  background-color: #1C1D1E;
}

@media (min-width: 992px) {
  .seventy-percent-bg-black-pearl {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, #1C1D1E), color-stop(45%, #F4F4F4));
    background: -webkit-linear-gradient(top, #1C1D1E 45%, #F4F4F4 45%);
    background: linear-gradient(180deg, #1C1D1E 45%, #F4F4F4 45%);
  }
}

.custom-icon {
  font-size: 60px;
  font-weight: bold;
  line-height: 70px;
  position: relative;
}

@media (min-width: 992px) {
  .custom-icon {
    font-size: 50px;
    line-height: 50px;
    position: relative;
  }
}

.icon-style {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
  padding-right: 10px;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8em;
  font-weight: 500;
}

.lead-1 {
  font-size: 1.25rem;
  line-height: 1.7em;
  font-weight: 400;
}

.paragraph-extend {
  font-size: calc(1.3rem + 0.6vw);
  color: #1C1D1E;
  font-weight: 500;
  line-height: 1.7em;
  margin-bottom: 52px;
}

@media (min-width: 1200px) {
  .paragraph-extend {
    font-size: 1.75rem;
  }
}

.title-404 {
  color: #000000;
  font-size: 175px;
  font-weight: 600;
  line-height: 210px;
  width: 100%;
}

@media (min-width: 992px) {
  .title-404 {
    color: #000000;
    font-size: 280px;
    font-weight: 600;
    line-height: 310px;
  }
}

.heading-size {
  font-size: 1.25rem;
  line-height: 25px;
  font-weight: 700;
}

.font-fifty {
  color: #FFDA00;
  font-size: calc(1.46875rem + 2.625vw);
  line-height: 50px;
}

@media (min-width: 1200px) {
  .font-fifty {
    font-size: 3.4375rem;
  }
}

.input-border {
  border-color: #1C1D1E;
}

.input-border:focus {
  border-color: #1C1D1E;
}

.hover:hover {
  color: #A8A8A8;
}

.custom-line-height {
  line-height: 38px;
  margin-bottom: 19px;
}

.read-more-style {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  /* font-family: "Mulish"; */
  color: #818a91;
}


/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  width: 80%;
  height: auto;
  position: relative;
  /* max-height: 90%; */
  display: flex;
  align-items: center;
  background: transparent !important; 
    border: none;
}
.modal-content img {
  width: 100% auto;
  max-height: 700px;
}
.media-wrapper iframe{
  width: 1000px !important;
  height: 600px !important;
}

/* .close {
  position: absolute;
  top: 30px;
  right: 150px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
} */
 .close-container{
  width: 50%;
 }

 .media-wrapper {
  position: relative; 
  /* display: flex; */
}

.close {
  position: absolute;
  top: 20px;  
  right: 20px; 
  color: white;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6); 
  padding: 5px 5px;
  width: 40px;
  height: 40px;
  border-radius: 50px;

}

.modal-content img, .modal-content iframe {
  position: relative; /* Ensures they are contained properly */
  /* max-width: 100%;
  max-height: 90vh; */
}


.number-border {
  border: solid;
  border-width: 1px;
  border-bottom: 1;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-color: #747474;
  text-align: center;
}

.input-border {
  border: solid;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1;
  border-color: #1C1D1E;
}

.input-border .padding-1 {
  padding-top: 20px;
  padding-bottom: 21px;
}

.padding {
  padding: 5px 25px;
}

.image-height {
  height: 40px;
}

.font-size {
  font-size: 14px;
  color: #747474;
  font-weight: normal;
}



@media (max-width: 1048px) {
  .media-wrapper iframe{
    width: 900px !important;
    height: 500px !important;
  }
  
}
@media (max-width: 924px) {
  .media-wrapper iframe{
    width: 700px !important;
    height: 400px !important;
  }
  
}
@media (max-width: 768px) {
  .media-wrapper iframe{
    width: 500px !important;
    height: 300px !important;
  }
  
}
@media (max-width: 552px) {
  .media-wrapper iframe{
    width: 450px !important;
    height: 250px !important;
  }
  
}
@media (max-width: 495px) {
  .media-wrapper iframe{
    width: 400px !important;
    height: 240px !important;
  }
  
}
@media (max-width: 432px) {
  .media-wrapper iframe{
    width: 350px !important;
    height: 230px !important;
  }
  
}
@media (max-width: 372px) {
  .media-wrapper iframe{
    width: 320px !important;
    height: 200px !important;
  }
  
}
@media (min-width: 992px) {
  .ml-n28 {
    margin-left: -17px;
  }
}

@media (max-width: 991.98px) {
  .ml-n28 {
    margin-left: -45px;
  }
}

@media (max-width: 767.98px) {
  .ml-n28 {
    margin-left: 0px;
  }
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.btn-school-yellow:hover {
  background-color: #F4F4F4;
  border-color: #F4F4F4;
}

.btn-black-pearl:hover {
  background-color: #FFDA00;
  border-color: #FFDA00;
  color: #1C1D1E;
}

.nav-tabs .nav-link {
  border: 3px solid transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.font-italic {
  font-style: italic;
}

.btn-link {
  border: solid;
  border-width: 4px;
  border-bottom: 1;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-bottom: 6px;
  font-weight: bold;
}

.btn-link:hover {
  color: #1C1D1E;
}

.hover-color:hover {
  color: #747474;
}

.nav-pills.border-right .nav-link.active {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}