@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #F4F6F5;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 14px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10px;
}
p {
  font-size: 10px;
}
a {
  font-size: 10px;
}
.main-page {
  padding: 15px 20px;
  overflow-x: hidden;
}
@media screen and (min-width: 700px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 39px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 19px;
  }
  h5 {
    font-size: 15px;
  }
  h6 {
    font-size: 13px;
  }
  p {
    font-size: 12px;
  }
  a {
    font-size: 12px;
  }
  .main-page {
    padding: 15px 30px;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 68px;
  }
  h2 {
    font-size: 52px;
  }
  h3 {
    font-size: 40px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
  a {
    font-size: 14px;
  }
  .main-page {
    padding: 16px 50px;
    overflow-x: hidden;
  }
}
/* 2nd sections starts */
/* banner */
.hidden {
  display: none;
}
/* 1. Default: thumbnail fixed at 60vh */
.banner-video {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.banner-thumbnail {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  cursor: pointer;
}
.banner-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.banner-thumbnail:hover .banner-thumbnail-img {
  transform: scale(1.05);
}
/* 2. Full-screen “active” state */
.banner-video.active {
  height: 100vh;
  /* full viewport height */
  padding-top: 56.25%;
  /* maintain 16:9 */
}
.banner-video.active .banner-thumbnail {
  display: none;
  /* hide thumbnail */
}
.banner-video.active .video-frame {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  /* remove gaps */
  clip-path: none;
  /* no clipping */
}
.banner-video.active .close-button {
  display: block;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 70px;
  height: 70px;
}
/* 3. Close button styling */
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
}
.mobile-video-section {
  display: none;
}
.bio-block {
  display: flex;
  flex-direction: column;
  background: white;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.bio-block.hidden {
  display: none;
}
.bio-content {
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.extratitle {
  background-color: white;
}
h3 {
  margin-left: 80px;
  font-family: Alice, serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 54px;
  leading-trim: CAP_HEIGHT;
  line-height: 140%;
  letter-spacing: 0px;
}
.bio-content.layout-a .text {
  margin-right: -200px;
}
.bio-content.layout-b .text {
  text-align: right;
}
.bio-content.layout-a .text p:nth-of-type(3) {
  margin-right: 150px;
}
.bio-content.layout-b .text p:nth-of-type(1) {
  margin-left: -400px;
}
.bio-content.layout-b .text p:nth-of-type(2) {
  margin-left: -200px;
}
.bio-content.layout-b .read-more {
  margin-top: 20px;
  margin-left: 600px;
}
.layout-a .text {
  order: 1;
}
.layout-a .image {
  order: 2;
}
.layout-b .text {
  order: 2;
}
.layout-b .image {
  order: 1;
}
.bio-content img {
  width: 871px;
  height: 568px;
}
.bio-content .mobile-view {
  display: none;
}
.text {
  gap: 40px;
}
.text h2 {
  color: black;
  font-family: Alice, serif;
  font-weight: 400;
  font-size: 54px;
  leading-trim: Cap height;
  line-height: 140%;
  letter-spacing: 0px;
}
.text p {
  font-family: Spartan;
  font-weight: 400;
  font-size: 24px;
  leading-trim: Cap height;
  line-height: 160%;
  letter-spacing: -1px;
  color: #5E5E5E;
}
.text span {
  color: black;
  font-weight: 500;
}
.text .read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-width: 0;
  height: 13px;
  width: 235px;
  padding: 15px 16px;
  font-family: Spartan;
  font-weight: 500;
  font-size: 13px;
  leading-trim: Cap height;
  line-height: 140%;
  letter-spacing: -2%;
  color: #5e5e5e;
  background: #E7E7E7;
}
@media screen and (min-width: 2560px) {
  .bio-content.layout-b .read-more {
    margin-top: 20px;
    margin-left: 1230px;
  }
}
@media Screen and (min-width: 750px) {
  .about-header {
    display: unset;
  }
  .banner {
    padding-top: 0vh;
  }
  .about-banner-img {
    height: 100vh;
    display: block;
  }
  .about-banner-img img {
    height: 100%;
    width: 100%;
  }
  .about-mobile-banner-img {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .bio-content {
    padding: 60px 40px;
    gap: 32px;
  }
  .bio-content img {
    width: 100%;
    height: auto;
    max-width: 700px;
  }
  .bio-content.layout-a .text, .bio-content.layout-b .text, .bio-content.layout-c .text {
    margin: 0;
    max-width: 50%;
  }
  .bio-content.layout-a .text p:nth-of-type(3), .bio-content.layout-b .text p:nth-of-type(1), .bio-content.layout-b .text p:nth-of-type(2), .bio-content.layout-c .text p:nth-of-type(1), .bio-content.layout-b .read-more {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .bio-content {
    flex-direction: column;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .bio-content .mobile-view {
    position: relative;
    left: -59px;
    top: 75px;
    color: #5E5E5E;
    font-family: Alice, serif;
    font-weight: 400;
    font-size: 32px;
    leading-trim: Cap height;
    line-height: 100%;
    letter-spacing: 0;
    display: block;
    margin: 0 0 16px 0;
    white-space: nowrap;
  }
  .bio-content .mobile-view .mobile-sp {
    font-family: Alice, serif;
    font-weight: 400;
    font-size: 18px;
    leading-trim: Cap height;
    line-height: 100%;
    letter-spacing: 0;
    color: #5e5e5e;
  }
  .bio-content .image {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bio-content .text {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    margin: 0;
    gap: 0;
  }
  .bio-content .text h2 {
    display: none;
    font-size: 28px;
    margin: 0 0 16px 0;
  }
  .bio-content .text p {
    font-size: 18px;
    line-height: 140%;
    max-width: 90%;
    margin: 0 0 8px 0;
  }
  .bio-content .text .but {
    margin-left: 20px;
    display: flex;
    align-self: start;
  }
  .bio-content .read-more {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 267px;
    height: 43px;
    padding: 15px 16px;
  }
  .bio-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .bio-content.layout-a .text, .bio-content.layout-b .text, .bio-content.layout-c .text {
    margin: 0;
  }
  .bio-content.layout-b .text p:nth-of-type(1), .bio-content.layout-b .text p:nth-of-type(2), .bio-content.layout-b .read-more, .bio-content.layout-c .text p:nth-of-type(1), .bio-content.layout-a .text p:nth-of-type(3) {
    margin: 0 auto;
  }
  .bio-content.layout-b .text {
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  .bio-content .text {
    align-items: flex-start;
    text-align: left;
  }
  .bio-content.layout-b .text p:nth-of-type(1), .bio-content.layout-b .text p:nth-of-type(2), .bio-content.layout-b .read-more, .bio-content.layout-c .text p:nth-of-type(1), .bio-content.layout-a .text p:nth-of-type(3) {
    margin: 0;
  }
  .mobile-video-section {
    display: block;
    position: relative;
  }
  .mobile-thumbnail {
    width: 100%;
    height: auto;
    cursor: pointer;
  }
  .mobile-video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 99999;
  }
  .mobile-video-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .mobile-video-close {
    position: absolute;
    top: 100px;
    right: 20px;
    font-size: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    z-index: 999999;
    padding: 6px 12px;
    border-radius: 8px;
  }
  .banner-video {
    display: none !important;
  }
}
