/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Metamorphous&amp;family=Tilt+Neon&amp;display=swap");

@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/playfair/PlayfairDisplay-SemiBold.ttf);
}
/* fonts */

/* universal */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary_font: "Playfair Display";
  --secondary_font: "Metamorphous";
  --primary_gradient: linear-gradient(
    180deg,
    #000 20.83%,
    rgba(0, 0, 0, 0.25) 100%
  );
  --primary_color: #d7a469;
  --black: #000000;
  --white: #ffffff;
}

/* universal */

/* Hero Start */

#hero {
  height: 60vh;
  background: url(../images/IMG_2538.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero_content_wrapper {
  height: 80vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_content .hero_header {
  position: relative;
  font-family: var(--primary_font);
  font-size: 4em;
  color: var(--white);
  padding: 0 40px 10px;
  margin-bottom: 10px;
  border-bottom: 5px solid var(--primary_color);
}

.hero_content .hero_header::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 15px;
  height: 15px;
  background: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.hero_content .hero_header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.hero_content .hero_sub_header {
  font-family: var(--primary_font);
  font-size: 1.8em;
  color: var(--white);
  letter-spacing: 1px;
  margin-top: 20px;
}

@media screen and (max-width: 990px) {
  .hero_content .hero_header {
    font-size: 2em;
  }

  .hero_content .hero_sub_header {
    font-size: 1.1em;
    margin-top: 15px;
  }
}

/* Hero End */

/* About Start */

#about {
  padding: 40px 0;
}

.about_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.about_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
}

.about_header .header_shape {
  width: 230px;
  margin: 0 auto 50px;
}

.about_header .header_shape img {
  width: 100%;
}

.about_content img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px 0;
}
.about_content h2 {
  font-family: var(--primary_font);
  font-size: 2em;
  text-align: left;
  text-transform: uppercase;
}

.about_content p {
  text-align: left;
  color: #000;
  font-family: var(--secondary_font);
  font-size: 0.9em;
  margin: 15px 0;
}

.about_content_text {
  padding: 0 30px;
}

.about_btn {
  text-align: left;

}

.about_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: var(--white);
  padding: 9px 0;
  color: var(--black);
  text-align: left;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.8s;
}

.about_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

@media screen and (max-width: 1200px) {
  .about_content p {
    margin: 25px 0 30px;
  }
}

@media screen and (max-width: 990px) {
  .about_header h3 {
    font-size: 1.1em;
  }

  .about_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .about_header .header_shape {
    width: 180px;
    margin: 0 auto 0px;
  }

  .about_content {
    margin-top: 50px;
  }

  .about_content p {
    margin: 25px 0 30px;
  }
  .about_content h2 {
    font-size: 2em;
  }
}

/* About End */

/* Customer Review Start */

#customer_review {
  padding-bottom: 100px;
}

.customer_review_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
}

.customer_review_header .header_shape {
  width: 230px;
  margin: 0 auto 50px;
}

.customer_review_header .header_shape img {
  width: 100%;
}

.customer_review_desc {
  font-family: var(--secondary_font);
  text-align: center;
  color: var(--primary_color);
  font-size: 1em;
  font-weight: 400;
}

.customer_review_img img {
  width: 100%;
  border-radius: 12px 0 12px 0;
  -webkit-border-radius: 12px 0 12px 0;
  -moz-border-radius: 12px 0 12px 0;
  -ms-border-radius: 12px 0 12px 0;
  -o-border-radius: 12px 0 12px 0;
}

/* Chart */

.customer_review_chart {
  margin-top: 50px;
}

@property --p {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

.pie {
  --p: 20;
  --b: 22px;
  --c: #d7a469;
  --w: 100%;

  width: var(--w);
  aspect-ratio: 1;
  position: relative;
  display: inline-grid;
  margin: 5px;
  text-align: center;
  place-content: center;
}

.pie:before,
.pie:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.pie:before {
  inset: 0;
  background: radial-gradient(farthest-side, var(--c) 98%, #0000) top/var(--b)
      var(--b) no-repeat,
    conic-gradient(var(--c) calc(var(--p) * 1%), #0000 0);
  -webkit-mask: radial-gradient(
    farthest-side,
    #0000 calc(99% - var(--b)),
    #000 calc(100% - var(--b))
  );
  mask: radial-gradient(
    farthest-side,
    #0000 calc(99% - var(--b)),
    #000 calc(100% - var(--b))
  );
}

.pie:after {
  inset: calc(50% - var(--b) / 2);
  background: var(--c);
  transform: rotate(calc(var(--p) * 3.6deg))
    translateY(calc(50% - var(--w) / 2));
}

.show_progress .animate {
  animation: p 1s 1.5s both;
  -webkit-animation: p 1s 1.5s both;
}

.no-round:before {
  background-size: 0 0, auto;
}

.no-round:after {
  content: none;
}

@keyframes p {
  from {
    --p: 0;
  }
}

.pie p {
  font-family: var(--secondary_font);
  margin-bottom: 0;
}

.pie p:first-child {
  font-size: 1.8em;
  font-weight: 600;
}

.pie p:last-child {
  color: var(--primary_color);
  font-size: 1.1em;
  font-weight: 400;
}

@media screen and (max-width: 990px) {
  .customer_review_header h1 {
    font-size: 2em;
  }

  .customer_review_img {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .pie {
    --p: 20;
    --b: 22px;
    --c: #d7a469;
    --w: 70%;

    width: var(--w);
    aspect-ratio: 1;
    position: relative;
    display: block;
    margin: 5px auto;
    align-items: center;
    text-align: center;
    place-content: center;
  }
}

/* Customer Review End */

/* Leadership Start */

#leadership {
  padding-bottom: 100px;
}

.leadership_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
}

.leadership_header .header_shape {
  width: 230px;
  margin: 0 auto 50px;
}

.leadership_header .header_shape img {
  width: 100%;
}

.leadership_card {
  width: 100%;
  position: relative;
  transition: all 0.5s ease-in-out;
  margin-top: 35px;
  border-radius: 12px 0;
}

.leadership_card img {
  width: 100%;
}

.leadership_card_border_right,
.leadership_card_border_left {
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 99 !important;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}

.leadership_card_border_right {
  top: 0;
  right: 0;
  border-right: 4px solid var(--primary_color);
}

.leadership_card_border_left {
  bottom: 0;
  left: 0;
  border-left: 4px solid var(--primary_color);
}

.leadership_card:hover .leadership_card_border_right,
.leadership_card:hover .leadership_card_border_left {
  height: 100%;
  border-radius: 12px 0;
}

.leadership_card .leadership_card_img {
  width: 100%;
  height: 100%;
  border-radius: 12px 0;
}

.leadership_card_overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  z-index: 99 !important;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  color: var(--white);
}

.leadership_card_overlay h2 {
  font-family: var(--primary_font);
  letter-spacing: 2px;
  font-size: 1.8em;
}

.leadership_card_overlay p {
  font-family: var(--secondary_font);
  font-size: 1em;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.leadership_card:hover .leadership_card_overlay {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.leadership_card_overlay_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 0;
  border-radius: 12px 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.leadership_card:hover .leadership_card_overlay_bg {
  opacity: 1;
}

@media screen and (max-width: 990px) {
  .leadership_header h1 {
    font-size: 2em;
  }
}

/* Leadership End */

/* Video Start*/

#video {
  position: relative;
}

.video_content img {
  width: 100%;
  aspect-ratio: 10/4;
}

.video_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.video_title h3 {
  font-family: var(--secondary_font);
  font-size: 1.2em;
  color: var(--black);
  white-space: nowrap;
}

.video_title h1 {
  font-family: var(--primary_font);
  font-size: 3.5em;
  color: var(--white);
  margin: 15px 0 50px;
  white-space: nowrap;
}

.video_play_btn {
  text-decoration: none;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  border: 3px solid var(--primary_color);
  border-radius: 50%;
  margin: auto;
  cursor: pointer;
  transition: 0.5s;
}

.video_play_btn:hover {
  background-color: var(--primary_color);
}

.video_play_btn i {
  font-size: 2.5em;
  color: var(--white);
  text-align: center;
}

.video_modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  z-index: 9999999 !important;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100% !important;
}

.modal__content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 16/9;
}

.modal__content .js-modal-close {
  position: absolute;
  right: -25px;
  top: -30px;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

.modal__content iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 1200px) {
  .video_title h3 {
    font-family: var(--secondary_font);
    font-size: 1.1em;
    color: var(--black);
  }

  .video_title h1 {
    font-size: 2.8em;
  }

  .video_play_btn {
    width: 70px;
    height: 70px;
  }

  .video_play_btn i {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 768px) {
  .video_title h3 {
    font-size: 1em;
  }

  .video_title h1 {
    font-size: 2em;
    margin: 15px 0 20px;
  }

  .video_content img {
    width: 100%;
    aspect-ratio: 10/6;
  }
}

@media screen and (max-width: 575px) {
  .video_play_btn {
    width: 50px;
    height: 50px;
  }

  .video_play_btn i {
    font-size: 1.6em;
  }

  .modal__content {
    width: 80%;
  }
}

/* Video End */

/* Counter Start */

#counter {
  background: url(../img/counter_bg_img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 45px 0;
}

.counter_items h2 {
  font-family: var(--primary_font);
  font-size: 2.5em;
  color: var(--white);
  word-spacing: 3px;
  text-align: center;
}

.counter_items .counter_text {
  text-align: center;
}

.counter_items span {
  font-family: var(--secondary_font);
  font-size: 1.8em;
  color: var(--white);
  text-align: center;
  margin: 25px 0 0;
}

@media screen and (max-width: 990px) {
  .counter_items h2 {
    font-size: 2em;
  }
  .counter_items p {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .counter_items p {
    font-size: 1.5em;
    margin: 20px 0 0;
  }

  .counter_row {
    gap: 60px;
  }
}

/* Counter End */
