body {
  color: #666;
}

.ml-30 {
  margin-left: 10rem;
}

.didot {
  font-family: "GFS Didot";
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid black;
  border-radius: 5px;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-bgcolor {
  background: none;
}

.bgimage {
  background-image: url(/images/book.jpg?230f588b192cd717d60a737f2d427aba);
  background-size: cover;
}

.menu-bgcolor {
  background-color: inherit;
}

.footer-bgcolor {
  background-color: #323439;
}

.copyright-bgfooter {
  background-color: #212324;
}

.search-background {
  background-color: #e9e7e7;
}

.sub-menu {
  background-color: white;
  color: black;
}

.rotate-icon {
  transform: rotate(180deg);
}

.sub-menu:hover {
  background-color: #a08777;
  color: white;
}

/* .program-side-image{
      background-size: 100%;
  } */
.custom-box-shadow {
  box-shadow: 0 0 10px silver;
}
.custom-box {
  padding: 20px;
  border-radius: 10px;
}
.custom-box img {
  border-radius: 20px;
}
.underline {
  border-bottom: 3px solid #a08777;
}

.underline-footer {
  border-bottom: 3px solid #ffffff;
}

.error {
  display: block;
  color: red;
}

.link-text {
  color: #6374f5;
}

.button-bg {
  background-color: #293146;
}

.owner-header-underline {
  border-bottom: 3px solid #ebebeb;
}

ul li span {
  font-weight: 400;
}

.link-class:hover {
  color: #6c8ac2;
}

.pagination-background:hover {
  background-color: #293146;
  color: white;
}

.contact-text {
  color: #293146;
}

a :active {
  background-color: #a08777;
}

.menu-item a:hover ul li {
  display: block;
}

.menu-item a ul li {
  display: none;
}

.side-menu a:hover ul li {
  display: block;
}

.side-menu a ul li {
  display: none;
}

.mobile-menu {
  /* left: -200%; */
  /* left:-270px; */
  left: -1150px;
  transition: 0.5s;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul li ul {
  display: none;
}

.mobile-menu ul li:hover ul {
  display: block;
}

.button-bg-normal {
  background-color: #a08777;
  color: white;
  padding: 15px 30px 15px 30px;
}

.leaflet-popup-content {
  margin: 0 !important;
  overflow: hidden;
  min-width: 400px;
}

/* .content .container {
  max-width: 1000px;
} */

.anime1 {
  margin-left: 33%;
  transform: translateX(-200%);
  opacity: 0;
  animation: slide-in-anim 3s ease-out forwards;
}

.anime2 {
  margin-left: 33%;
  transform: translateX(-200%);
  opacity: 0;
  animation: slide-in-anim 2.5s ease-out forwards;
}

.anime3 {
  margin-left: 33%;
  transform: translateX(-200%);
  opacity: 0;
  animation: slide-in-anim 3.5s ease-out forwards;
}

.anime4 {
  margin-left: 33%;
  transform: translateX(-200%);
  opacity: 0;
  animation: slide-in-anim 2.5s ease-out forwards;
}

.fade-in {
  opacity: 0;
  animation: anime5 0.5s ease-in forwards;
}

@keyframes anime5 {
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-in-anim {
  20% {
    opacity: 0;
  }

  60% {
    transform: translateX(-45%);
  }

  75% {
    transform: translateX(-52%);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

.remove_anime1 {
  margin-left: 0;
  transform: translateX(0);
  opacity: 0;
  animation: slide-out-anime 2.5s ease-in backwards;
}

.remove_anime2 {
  margin-left: 0;
  transform: translateX(0);
  opacity: 0;
  animation: slide-out-anime 2s ease-in backwards;
}

.remove_anime3 {
  margin-left: 0;
  transform: translateX(0);
  opacity: 0;
  animation: slide-out-anime 1.5s ease-in backwards;
}

.remove_anime4 {
  margin-left: 0;
  transform: translateX(0);
  opacity: 0;
  animation: slide-out-anime 2s ease-in backwards;
}

@keyframes slide-out-anime {
  20% {
    opacity: 1;
    transform: translateX(-5%);
  }

  60% {
    transform: translateX(2%);
  }

  75% {
    transform: translateX(-10%);
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
  }

  /* 0%{
          opacity: 1;
      }
      20%{
          opacity: 1;
      }
      60%{
          opacity: 0.8;
          transform: translateX(-10%);
      }
      75%{
          opacity: 0.8;
          transform: translateX(5%);
      }
      100%{
          opacity: 0;
          transform: translateX(-100%);
      } */
}

.paddingLine {
  padding-top: 2px;
}

#book_image {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#book_image:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 20;
  /* Sit on top */
  padding-top: 10vh;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  align-self: center;
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  /* width: 80%; */
  max-height: 80vh;
  max-width: 80%;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid;
  border-color: white;
  border-right-color: #a08777;
  animation: spinner-d3wgkg 1s infinite linear;
}

@keyframes spinner-d3wgkg {
  to {
    transform: rotate(1turn);
  }
}

.blog-content a {
  color: rgb(96 165 250);
}

/* .map-info-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.map-info-slider-item {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
}

.map-info-slider-item.active {
  opacity: 1;
} */

.map-info-slider-container {
  position: relative;
  overflow: hidden;
}

.map-info-slider {
  display: flex;
  transition: transform 0.5s;
  align-items: end;
}

.map-info-slider-item {
  flex: 0 0 100%;
  width: 100%;
}
/* .ui-menu-item-wrapper
{
  background-color: #a08777;
} */
.image {
  overflow: hidden;
  border-radius: 10px;
}

.image div {
  transition: transform 0.5s ease;
}

.image:hover div {
  transform: scale(1.1);
}

.editorial-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin:80px 0 80px;
}

.editorial-intro img {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.editorial-intro .dateline {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.editorial-intro .p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
 
  margin-bottom: 10px;
}
.editorial-intro h2 {
  font-size: 48px;
  line-height: 120%;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.editorial-intro p {
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  color: #000;
}

.content-block {
  margin: 80px 0px 0;
}

.content-block h2 {
  font-size: 32px;
  line-height: 43px;
  font-weight: 400;
  color: #000;
  max-width: 673px;
}

.content-block p {
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  color: #000;
  margin-top: 32px;
}

/* Tablet */

/* Mobile */
@media (max-width: 576px) {
  
  .editorial-intro img {
    height: 280px;
  }

  .editorial-intro h2 {
    font-size: 28px;
  }

  .editorial-intro p {
    font-size: 16px;
  }


  .content-block h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .content-block p {
    font-size: 16px;
  }
}

.hero-text {
  padding-top: 45px;
  text-align: center;
}

.blog-details{
  margin-bottom: 30px;
}

.multi-slider {
  margin: 0px 0px 0 !important;
}

.slider-wrapper {
  margin: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: 0.6s;
}

.slide {
  min-width: 25%;
  padding: 10px;
}

.slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.video-section {
  padding: 80px 0px 0;
}

.video-box {
  position: relative;

  margin: auto;
}

.video-box video {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* play button */

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-btn svg {
  width: 40px;
  height: 40px;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 1200px) {
  .slide {
    flex: 0 0 33.33%; /* 3 slides */
  }
}

@media (max-width: 900px) {
  .slide {
    flex: 0 0 50%; /* 2 slides */
  }
}
@media (max-width: 992px) {
  .blog-details{
    margin-bottom: 50px;
  }
  .editorial-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 50px 20px;
  }

  .editorial-intro img {
    height: 400px;
  }

  .editorial-intro h2 {
    font-size: 36px;
  }

  .content-block {
    margin: 50px 20px 0;
  }
  .multi-slider {
    margin: 50px 20px 0 !important;
  }
  .content-block h2 {
    font-size: 28px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .video-section{

padding: 50px 20px 0;
  }
  .slide {
    flex: 0 0 100%; /* 1 slide */
  }

  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn svg {
    width: 30px;
    height: 30px;
  }

  .slide img {
    height: 200px;
  }
}

.blogSwiper .swiper-wrapper{ padding: 50px 0; }
.blogSwiper{ margin-top: 20px; }
.blogSwiper .swiper-slide img{
    width: 100%;
    display: block;
}
.blogSwiper .swiper-slide{
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.blogSwiper .swiper-slide img{
    width: 100%;
    height: 365px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blogSwiper .swiper-slide:hover img{
    transform: scale(1.08);
}
@media (max-width: 768px){
    .blogSwiper .swiper-slide{
        height: 180px;
    }
}
.blogSwiper .swiper-button-next,
.blogSwiper .swiper-button-prev{
    background: transparent;
    width: 40px;
    height: 40px;
    color: #fff !important;
    border-radius: 50%;
}
.blogSwiper .swiper-button-next::after, .blogSwiper .swiper-button-prev::after{
    font-size: 16px;
    font-weight: bold;
}
.blogSwiper .swiper-button-next:hover, .blogSwiper .swiper-button-prev:hover{
    background: transparent;
    transform: scale(1.05);
}

.block-video-section{
    padding: 50px 0px 0;
        height:70%;
}
.block-video-wrapper{
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    display: flex;
    align-items: center;
    justify-content: center;
        border-radius: 10px;
}
.block-video-wrapper iframe {
    position: absolute;
    top: 0;
    /* left: 0; */
    bottom: 0;
    width: 70%;
    height: 100%;
    border-radius: 10px;
}
.block-content-area h1{
    font-size:36px;
    margin-bottom:15px;
    font-weight:700;
}
.block-content-area h2{
    font-size:30px;
    margin-bottom:15px;
    font-weight:700;
}
.block-content-area h3{
    font-size:26px;
    margin-bottom:15px;
    font-weight:600;
}
.block-content-area h4{
    font-size:22px;
    margin-bottom:12px;
    font-weight:600;
}
.block-content-area h5{
    font-size:18px;
    margin-bottom:10px;
    font-weight:600;
}
.block-content-area h6{
    font-size:16px;
    margin-bottom:10px;
    font-weight:600;
}
.block-content-area p{
    line-height:1.7;
    margin-bottom:15px;
}
/* Lists */
.block-content-area ul,
.block-content-area ol{
    margin-bottom:15px;
    padding-left:20px;
}
.block-content-area li{
    margin-bottom:6px;
}
/* Blockquote */
.block-content-area blockquote{
    border-left:4px solid #ddd;
    padding:12px 20px;
    margin:20px 0;
    font-style:italic;
    background:#f9f9f9;
}
/* Images */
.block-content-area img{
    max-width:100%;
    height:auto;
    margin:15px 0;
}
/* Links */
.block-content-area a{
        color: #007bff !important;
    text-decoration: underline !important;
}
.block-content-area a:hover{
    text-decoration:none !important;
}
/* Tables */
.block-content-area table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:20px;
}
.block-content-area table th,
.block-content-area table td{
    border:1px solid #ddd;
    padding:10px;
}
.block-video-wrapper{
    position:relative;
    width:100%;
    padding-top:56.25%;
}
.single-image.viewer-gallery{
  align-items: center;
  justify-content: center;
  display: flex;
}
.single-image.viewer-gallery img{
  border-radius: 10px;
  cursor: pointer;
  width: 70%;
}
@media (max-width: 768px) {
/* @media (max-width: 480px) { */
  .single-image.viewer-gallery img {
    width: 90%;
  }
  .block-video-wrapper iframe {
    width: 90%;
  }
}
.multi-slider.viewer-gallery img{
  width:100%;
  cursor:pointer;
}
.viewer-title {
  display: inline-block;
  margin: 10px auto;
  padding: 6px 10px;

  font-size: 15px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(135deg, #000000cc, #333333cc);
  border-left: 3px solid #facc15;

  border-radius: 4px;
  white-space: normal;
}
