html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background: #fff;
  color: #fff;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em 0;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0 0 1em 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  background: transparent;
  transition: color 0.2s;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid #232326;
  margin: 24px 0;
}

::-moz-placeholder {
  color: #bdbdbd;
}

::placeholder {
  color: #bdbdbd;
}

.hero-section {
  background: #18181b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0;
}
.hero-section .hero-container {
  display: flex;
  align-items: stretch;
  justify-content: start;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  gap: 48px;
  padding: 32px 0 25px 0;
  box-sizing: border-box;
}
.hero-section .hero-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 46%;
  padding-top: 90px;
}
.hero-section .hero-content h1 {
  font-family: "Manrope", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 32px 0;
  letter-spacing: -0.01em;
}
.hero-section p {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #bdbdbd;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-logo {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  background: #232326;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 24px;
  left: 50%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  padding: 11px 12px 11px 26px;
  background: #2b2c2f;
  border-radius: 999px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.cta-btn .cta-label {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.cta-btn .cta-arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-30deg);
  transform-origin: 50% 50%;
}
.cta-btn .cta-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #ffffff;
  transform: scale(100%);
  transition: transform 0.6s cubic-bezier(0.475, 0.025, 0.4, 1.175);
  z-index: -1;
}
.cta-btn:hover .cta-arrow::before {
  transform: scale(1000%);
}
.cta-btn:hover .cta-label {
  color: #101014;
}
.cta-btn .arrow {
  font-size: 22px;
  display: inline-block;
  transition: transform 0.45s ease;
}
.cta-btn:hover .cta-label {
  color: #000;
}
.cta-btn:hover .cta-arrow {
  background: #fff;
  color: #000;
}
.cta-btn:hover .arrow {
  transform: rotate(30deg);
}

.about-section {
  padding: 6rem 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1.25rem;
  }
}

.about-container {
  max-width: 1360px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1000px) {
  .about-container {
    flex-wrap: wrap;
  }
}

.about-left {
  max-width: 520px;
}
@media (max-width: 1000px) {
  .about-left {
    max-width: 100%;
    margin-bottom: 20px;
    width: 100%;
  }
  .about-left h2 br {
    display: none;
  }
}
.about-left .about-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0.75rem 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background-color: #111111;
  border-radius: 999px;
}
.about-left .about-title {
  font-size: clamp(2.25rem, 4vw, 3.125rem);
  font-weight: 500;
  line-height: 1.15;
  color: #111111;
  margin: 0;
}

.about-right {
  max-width: 730px;
}
.about-right p {
  font-size: 1.375rem;
  line-height: 1.5;
  color: #4a4a4a;
}
@media (max-width: 900px) {
  .about-right p {
    max-width: 100%;
  }
}

/* ==============================
   IMAGE SLIDER
================================ */
.image-slider {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  margin-bottom: 30px;
}

/* ------------------------------
   SLIDER TRACK (DESKTOP)
--------------------------------*/
.slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation: scroll-left 40s linear infinite;
}

/* Slow down on hover */
.slider-track:hover {
  animation-duration: 80s;
}

/* ------------------------------
   SLIDE
--------------------------------*/
.slide {
  flex: 0 0 auto;
  width: 80vw;
  max-width: 350px;
  margin-right: 2rem;
}
.slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------
   AUTO SCROLL ANIMATION
--------------------------------*/
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ==============================
   MOBILE PORTRAIT MODE
================================ */
@media (max-width: 768px) {
  .image-slider {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .slider-track {
    width: 100%;
    animation: none;
    transition: transform 0.45s ease-in-out;
  }
  .slide {
    width: 100vw;
    max-width: none;
    margin-right: 0;
  }
  .slide img {
    max-width: 90%;
    margin: 0 auto;
  }
  /* ------------------------------
     DOTS NAVIGATION
  --------------------------------*/
  .slider-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-bottom: 7px;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .slider-dot.active {
    background-color: #111;
    transform: scale(1.35);
  }
}
/* ------------------------------
   HIDE DOTS ON DESKTOP
--------------------------------*/
.slider-dots {
  display: none;
}

@media (max-width: 1360px) {
  .hero-section .hero-container {
    max-width: 100%;
    padding: 32px 24px 25px 24px;
  }
}
@media (max-width: 1000px) {
  .hero-section {
    align-items: stretch;
  }
  .hero-section .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 16px 16px 16px;
    position: relative;
    overflow: hidden;
    padding-top: 170px;
  }
  .hero-content {
    max-width: 100%;
    min-width: 0;
  }
  .hero-section .hero-content {
    max-width: 100%;
    padding: 20px;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
  }
  .hero-image {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 0;
    opacity: 0.3;
  }
}
@media (max-width: 600px) {
  .hero-section {
    min-height: 0;
    padding: 0 0 0 0;
  }
  .hero-container {
    padding: 24px 4vw 4vw 4vw;
    gap: 20px;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .arrow-circle {
    width: 32px;
    height: 32px;
  }
  .hero-image {
    border-radius: 12px;
  }
  .hero-image img {
    border-radius: 12px;
  }
}
.main-header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
  padding-top: 30px;
}
.main-header::after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5529411765);
  filter: blur(20px);
  z-index: -1;
}
.main-header .container {
  max-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 80px;
  margin: auto;
}

.logo a {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}
.logo .dot {
  color: #bfa46b;
  font-size: 1.7rem;
  margin-left: 2px;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  padding: 4px 0;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #bfa46b;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 900px) {
  .main-header .container {
    padding: 0 40px;
  }
  .main-nav ul {
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .main-header .container {
    padding: 0 12px;
  }
  .main-header {
    position: fixed;
    top: 26px;
    left: 0;
    right: 0;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.6);
    width: auto;
    margin: auto 24px;
    padding: 15px 10px;
  }
  .main-header .container {
    height: 56px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background: rgba(16, 16, 20, 0.6);
    box-shadow: -2px 0 16px 0 rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px 32px 40px;
    z-index: 105;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding-top: 60px;
  }
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.high-return-area {
  background-color: #101014;
  padding: 70px 0 100px;
}
.high-return-area .container {
  max-width: 1360px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}
.high-return-area .container .high-return-wrapper {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}
.high-return-area .container .high-return-wrapper h3 {
  font-size: 50px;
  line-height: 110%;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
  margin-bottom: 0;
}
.high-return-area .container .high-return-wrapper p {
  font-size: 22px;
  line-height: 150%;
  color: #ffffff;
  text-align: center;
}

@media (width <= 1439px) {
  .high-return-area .container .high-return-wrapper {
    gap: 16px;
  }
  .high-return-area .container .high-return-wrapper h3 {
    font-size: 42px;
  }
}
@media (width <= 767px) {
  .high-return-area .container .high-return-wrapper h3 {
    font-size: 31px;
  }
  .high-return-area .container .high-return-wrapper p {
    font-size: 17px;
  }
}
.project-area {
  padding: 150px 0;
}
.project-area .container {
  max-width: 1360px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}
.project-area .container .text-area {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
.project-area .container .text-area h2 {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px 6px;
  margin-bottom: 10px;
  color: #ffffff;
  background-color: #28282c;
  border-radius: 1rem;
  height: -moz-min-content;
  height: min-content;
  margin-bottom: 10px;
}
.project-area .container .text-area h3 {
  font-size: 50px;
  line-height: 110%;
  color: #101014;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
  margin-bottom: 20px;
}
.project-area .container .text-area p {
  font-size: 22px;
  line-height: 150%;
  color: #3d3d47;
  text-align: center;
  margin-bottom: 0;
}
.project-area .container .project-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.project-area .container .project-wrapper .project-box {
  padding: 30px 60px 30px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.project-area .container .project-wrapper .project-box .box-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  height: -moz-min-content;
  height: min-content;
  position: relative;
  overflow: visible;
}
.project-area .container .project-wrapper .project-box .box-inner img {
  max-width: 100%;
  width: 400px;
  border-radius: 10px;
  aspect-ratio: 1.53257;
}
.project-area .container .project-wrapper .project-box .box-inner .project-content {
  padding: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 0;
}
.project-area .container .project-wrapper .project-box .box-inner .project-content h4 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 0;
}
.project-area .container .project-wrapper .project-box .box-inner .project-content p {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 0;
}
.project-area .container .project-wrapper .project-box .review-box {
  display: none;
}
.project-area .container .project-wrapper .p1 {
  background-color: #e9ecf2;
  position: sticky;
  top: 100px;
  z-index: 0;
}
.project-area .container .project-wrapper .p1 h4 {
  color: #101014;
}
.project-area .container .project-wrapper .p1 p {
  color: #3d3d47;
}
.project-area .container .project-wrapper .p2 {
  background-color: #101014;
  position: relative;
  z-index: 5;
  margin-top: 40px;
}
.project-area .container .project-wrapper .p2 h4 {
  color: #ffffff;
}
.project-area .container .project-wrapper .p2 p {
  color: #d0d1db;
}

@media (width <= 1439px) {
  .project-area .container .text-area {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .project-area .container .text-area h3 {
    font-size: 42px;
  }
  .project-area .container .project-wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }
  .project-area .container .project-wrapper .project-box {
    flex-direction: column;
    padding: 30px;
  }
  .project-area .container .project-wrapper .project-box .box-inner {
    align-items: flex-start;
    gap: 50px;
  }
  .project-area .container .project-wrapper .project-box .box-inner img {
    order: 2;
    aspect-ratio: 0.77135;
    width: 280px;
  }
  .project-area .container .project-wrapper .project-box .box-inner .project-content {
    padding: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 0;
  }
  .project-area .container .project-wrapper .project-box .box-inner .project-content h4 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 0;
  }
  .project-area .container .project-wrapper .project-box .box-inner .project-content p {
    font-size: 18px;
    line-height: 150%;
  }
  .project-area .container .project-wrapper .project-box .review-box {
    display: block;
    position: relative;
  }
  .project-area .container .project-wrapper .project-box .review-box svg {
    position: absolute;
    top: -3px;
    left: 0;
  }
  .project-area .container .project-wrapper .project-box .review-box p {
    font-size: 20px;
    padding-left: 30px;
  }
  .project-area .container .project-wrapper .project-box .review-box .user-box {
    padding-left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .project-area .container .project-wrapper .project-box .review-box .user-box img {
    width: 50px;
    height: auto;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .project-area .container .project-wrapper .project-box .review-box .user-box p {
    font-size: 1rem;
    padding-left: 0;
    margin-bottom: 0;
  }
  .project-area .container .project-wrapper .p1 {
    margin: 20px 0;
    position: static;
  }
  .project-area .container .project-wrapper .p1 .review-box .user-box p {
    color: #101014;
  }
  .project-area .container .project-wrapper .p2 {
    margin-top: 0;
  }
  .project-area .container .project-wrapper .p2 .review-box svg {
    fill: #d0d1db;
  }
}
@media (width <= 767px) {
  .project-area {
    padding: 80px 0;
  }
  .project-area .container {
    padding: 0 20px;
  }
  .project-area .container .text-area {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .project-area .container .text-area h3 {
    font-size: 38px;
  }
  .project-area .container .text-area p {
    font-size: 17px;
  }
  .project-area .container .project-wrapper .project-box {
    flex-direction: column;
  }
  .project-area .container .project-wrapper .project-box .box-inner {
    flex-direction: column;
    gap: 40px;
  }
  .project-area .container .project-wrapper .project-box .box-inner img {
    order: 2;
    aspect-ratio: 1.53257;
    width: 100%;
  }
  .project-area .container .project-wrapper .project-box .box-inner .project-content {
    padding: 0;
  }
  .project-area .container .project-wrapper .project-box .box-inner .project-content h4 {
    font-size: 32px;
  }
  .project-area .container .project-wrapper .project-box .review-box {
    display: none;
  }
}
.vision-area {
  background-color: #e9ecf2;
  padding: 60px 0;
}
.vision-area .container {
  max-width: 1360px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}
.vision-area .container .vision-wrapper {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}
.vision-area .container .vision-wrapper h2 {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #28282c;
  border-radius: 1rem;
  width: -moz-min-content;
  width: min-content;
  height: -moz-min-content;
  height: min-content;
  margin-bottom: 0;
}
.vision-area .container .vision-wrapper h3 {
  font-size: 50px;
  line-height: 110%;
  color: #101014;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
  margin-bottom: 0;
}
.vision-area .container .vision-wrapper p {
  font-size: 22px;
  line-height: 150%;
  color: #101014;
  text-align: center;
}

@media (width <= 1439px) {
  .vision-area {
    padding: 70px 0 100px;
  }
  .vision-area .container .vision-wrapper {
    gap: 16px;
  }
  .vision-area .container .vision-wrapper h3 {
    font-size: 42px;
  }
}
@media (width <= 767px) {
  .vision-area .container .vision-wrapper h3 {
    font-size: 31px;
  }
  .vision-area .container .vision-wrapper p {
    font-size: 17px;
  }
}
.vision-section {
  --color-text: #111;
  --color-muted: #777;
  --color-border: #e5e5e5;
  --color-active: #1e66ff;
  --color-bg: #fafafa;
  padding: 3rem 2rem 6rem;
  font-family: system-ui, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  margin-bottom: 0;
  /* ---------- Accordion ---------- */
}
.vision-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.vision-section__tag {
  font-size: 1rem;
  padding: 0.25rem 0.9rem 0.35rem;
  border-radius: 999px;
  background: #333;
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
}
.vision-section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
}
.vision-section__layout {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .vision-section__layout {
    flex-direction: column;
  }
}
.vision-section__image {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
}
.vision-section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}
.vision-section__content {
  flex: 1;
}
.vision-section__heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.vision-section__description {
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.vision-section__item {
  border-bottom: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0 1.25rem 0 0;
  margin-bottom: 0.75rem;
  transition: border-color 0.25s ease;
}
.vision-section__button {
  width: 100%;
  padding: 1rem 0 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.vision-section__button-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.vision-section__tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: grid;
  place-items: center;
}
.vision-section__tab-title {
  font-size: 1.375rem;
  font-weight: 500;
}
.vision-section__icon {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: #101014;
  transition: transform 0.25s ease;
}
.vision-section__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.vision-section__panel-content {
  padding: 0 0 1.25rem;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .vision-section__panel-content {
    padding-left: 0;
  }
}
.vision-section__item.active .vision-section__panel {
  max-height: 260px;
}

.contact-area {
  margin: 0 20px;
  padding: 60px 0;
  background-color: #101014;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.contact-area .container {
  max-width: 1360px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}
.contact-area .container .container-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-area .container .container-wrapper .contact-info {
  max-width: 590px;
}
.contact-area .container .container-wrapper .contact-info h2 {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px 6px;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #ffffff;
  background-color: #28282c;
  border-radius: 1rem;
  width: -moz-min-content;
  width: min-content;
  height: -moz-min-content;
  height: min-content;
}
.contact-area .container .container-wrapper .contact-info h3 {
  font-size: 50px;
  line-height: 110%;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 25px;
}
.contact-area .container .container-wrapper .contact-info img {
  border-radius: 8px;
  width: 100%;
}
.contact-area .container .container-wrapper .form-area {
  max-width: 590px;
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}
.contact-area .container .container-wrapper .form-area form {
  display: flex;
  flex-direction: column;
}
.contact-area .container .container-wrapper .form-area .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-area .container .container-wrapper .form-area .form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.contact-area .container .container-wrapper .form-area .form-group label .required {
  color: #ff4757;
  margin-left: 2px;
}
.contact-area .container .container-wrapper .form-area .form-group input,
.contact-area .container .container-wrapper .form-area .form-group textarea {
  padding: 14px 12px;
  border: 1px solid #dbdad9;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  background-color: #fafafa;
  color: #000;
  transition: all 0.3s ease;
}
.contact-area .container .container-wrapper .form-area .form-group input::-moz-placeholder, .contact-area .container .container-wrapper .form-area .form-group textarea::-moz-placeholder {
  color: #bdbdbd;
}
.contact-area .container .container-wrapper .form-area .form-group input::placeholder,
.contact-area .container .container-wrapper .form-area .form-group textarea::placeholder {
  color: #bdbdbd;
}
.contact-area .container .container-wrapper .form-area .form-group input:focus,
.contact-area .container .container-wrapper .form-area .form-group textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: #333;
}
.contact-area .container .container-wrapper .form-area .form-group textarea {
  resize: vertical;
  min-height: 160px;
  font-family: "Manrope", sans-serif;
}
.contact-area .container .container-wrapper .form-area .submit-btn {
  padding: 16px;
  background-color: #4a4a4a;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
}
.contact-area .container .container-wrapper .form-area .submit-btn:hover {
  background-color: #333;
}
.contact-area .container .container-wrapper .form-area .submit-btn:active {
  transform: scale(0.98);
}

@media (width <= 1439px) {
  .contact-area {
    padding: 40px 0;
  }
  .contact-area .container {
    padding: 0 30px;
  }
  .contact-area .container .container-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .contact-area .container .container-wrapper .contact-info {
    max-width: 100%;
    width: 100%;
  }
  .contact-area .container .container-wrapper .contact-info h3 {
    font-size: 42px;
  }
  .contact-area .container .container-wrapper .contact-info img {
    border-radius: 8px;
  }
  .contact-area .container .container-wrapper .form-area {
    max-width: 100%;
    width: 100%;
  }
  .contact-area .container .container-wrapper .form-area form {
    display: flex;
    flex-direction: column;
  }
  .contact-area .container .container-wrapper .form-area .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .contact-area .container .container-wrapper .form-area .form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
  }
  .contact-area .container .container-wrapper .form-area .form-group label .required {
    color: #ff4757;
    margin-left: 2px;
  }
  .contact-area .container .container-wrapper .form-area .form-group input,
  .contact-area .container .container-wrapper .form-area .form-group textarea {
    padding: 14px 12px;
    border: 1px solid #dbdad9;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    background-color: #fafafa;
    color: #000;
    transition: all 0.3s ease;
  }
  .contact-area .container .container-wrapper .form-area .form-group input::-moz-placeholder, .contact-area .container .container-wrapper .form-area .form-group textarea::-moz-placeholder {
    color: #bdbdbd;
  }
  .contact-area .container .container-wrapper .form-area .form-group input::placeholder,
  .contact-area .container .container-wrapper .form-area .form-group textarea::placeholder {
    color: #bdbdbd;
  }
  .contact-area .container .container-wrapper .form-area .form-group input:focus,
  .contact-area .container .container-wrapper .form-area .form-group textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: #333;
  }
  .contact-area .container .container-wrapper .form-area .form-group textarea {
    resize: vertical;
    min-height: 160px;
    font-family: "Manrope", sans-serif;
  }
  .contact-area .container .container-wrapper .form-area .submit-btn {
    padding: 16px;
    background-color: #4a4a4a;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Manrope", sans-serif;
  }
  .contact-area .container .container-wrapper .form-area .submit-btn:hover {
    background-color: #333;
  }
  .contact-area .container .container-wrapper .form-area .submit-btn:active {
    transform: scale(0.98);
  }
}
@media (width <= 767px) {
  .contact-area .container {
    padding: 0 20px;
  }
  .contact-area .container .container-wrapper .contact-info h3 {
    font-size: 31px;
  }
}
.main-footer {
  margin: 10px 20px 0;
  padding: 60px 0 40px;
  background-color: #101014;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.main-footer .container {
  max-width: 1360px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}
.main-footer .container .footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.main-footer .container .footer-wrapper .footer-top {
  display: flex;
  justify-content: space-between;
}
.main-footer .container .footer-wrapper .footer-top .logo {
  max-width: 210px;
  width: 100%;
}
.main-footer .container .footer-wrapper .footer-top .logo img {
  -o-object-fit: cover;
     object-fit: cover;
}
.main-footer .container .footer-wrapper .footer-top .footer-menu h4 {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 110%;
}
.main-footer .container .footer-wrapper .footer-top .footer-menu .menu-links {
  display: flex;
  gap: 80px;
  font-size: 18px;
  color: #d0d1db;
}
.main-footer .container .footer-wrapper .footer-top .footer-menu .menu-links ul {
  min-width: 120px;
}
.main-footer .container .footer-wrapper .footer-top .footer-menu .menu-links ul li {
  margin-bottom: 10px;
}
.main-footer .container .footer-wrapper .footer-btm {
  padding-top: 40px;
  border-top: 1px solid #222;
}
.main-footer .container .footer-wrapper .footer-btm p {
  margin-bottom: 0;
  font-size: 1rem;
}

@media (width <= 767px) {
  .main-footer {
    padding: 50px 0 40px;
  }
  .main-footer .container {
    padding: 0 20px;
  }
  .main-footer .container .footer-wrapper .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .main-footer .container .footer-wrapper .footer-top .footer-menu h4 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 110%;
  }
  .main-footer .container .footer-wrapper .footer-top .footer-menu .menu-links {
    display: flex;
    gap: 80px;
    font-size: 18px;
    color: #d0d1db;
    min-width: 120px;
  }
  .main-footer .container .footer-wrapper .footer-top .footer-menu .menu-links ul li {
    margin-bottom: 10px;
  }
  .main-footer .container .footer-wrapper .footer-btm {
    padding-top: 40px;
    border-top: 1px solid #222;
  }
  .main-footer .container .footer-wrapper .footer-btm p {
    margin-bottom: 0;
    font-size: 1rem;
  }
}
.p1 .hero-section {
  overflow: clip;
  height: 80vh;
  min-height: 80vh;
}
.p1 .hero-section .hero-container .hero-content {
  max-width: 776px;
}
.p1 .hero-section .hero-container .hero-content h1 {
  font-size: 3.625rem;
}
@media (max-width: 768px) {
  .p1 .hero-section .hero-container .hero-content h1 {
    font-size: 2.125rem;
    font-weight: 500;
  }
}
.p1 .hero-section .hero-container .hero-content p {
  font-size: 1.375rem;
  color: #fff;
}
@media (max-width: 992px) {
  .p1 .hero-section .hero-container .hero-content {
    text-align: left;
    align-items: flex-start;
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .p1 .hero-section .hero-container {
    text-align: left;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .p1 .hero-section {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .p1 .hero-section {
    height: 100vh;
  }
}
.p1 .custom_sec {
  padding: 0 80px;
}
@media (max-width: 1199px) {
  .p1 .custom_sec {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .p1 .custom_sec {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.p1 .custom_container {
  max-width: 1300px;
  margin: 0 auto;
}
.p1 .sec_1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p1 .sec_1 .image_1 {
  min-height: 711px;
  height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p1 .sec_1 .image_1 img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p1 .sec_1 .image_1 {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 480px) {
  .p1 .sec_1 .image_1 {
    min-height: 190px;
  }
}
.p1 .sec_2 .about-container {
  align-items: flex-start;
}
.p1 .sec_2 .about-container .about-right p {
  margin-bottom: 0;
}
.p1 .sec_3 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p1 .sec_3 .custom_container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.p1 .sec_3 .custom_container .image_2 {
  min-height: 711px;
  height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p1 .sec_3 .custom_container .image_2 img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p1 .sec_3 .custom_container .image_3 {
  min-height: 711px;
  height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p1 .sec_3 .custom_container .image_3 img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p1 .sec_3 .custom_container {
    gap: 20px;
  }
  .p1 .sec_3 .custom_container .image_1,
  .p1 .sec_3 .custom_container .image_2 {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 768px) {
  .p1 .sec_3 .custom_container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .p1 .sec_3 .custom_container {
    flex-direction: column;
  }
  .p1 .sec_3 .custom_container .image_1,
  .p1 .sec_3 .custom_container .image_2 {
    min-height: 428px;
    height: unset;
  }
}
.p1 .sec_4 .about-container {
  align-items: flex-start;
}
.p1 .sec_4 .about-container .about-right p {
  margin-bottom: 0;
}
.p1 .sec_5 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p1 .sec_5 .custom_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.p1 .sec_5 .custom_container .image {
  min-height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p1 .sec_5 .custom_container .image img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p1 .sec_5 .custom_container .image {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 480px) {
  .p1 .sec_5 .custom_container .image {
    min-height: 428px;
    height: unset;
  }
}
.p1 .sec_5 .custom_container .image_1 {
  grid-column: 1/-1;
}
@media (max-width: 1199px) {
  .p1 .sec_5 .custom_container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p1 .sec_5 .custom_container {
    grid-template-columns: 1fr;
  }
  .p1 .sec_5 .custom_container .image_1 {
    grid-column: auto;
  }
}
.p1 .sec_6 .about-container {
  align-items: flex-start;
}
.p1 .sec_6 .about-container .about-right p {
  margin-bottom: 0;
}
.p1 .sec_7 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p1 .sec_7 .custom_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.p1 .sec_7 .custom_container .image {
  min-height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p1 .sec_7 .custom_container .image img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p1 .sec_7 .custom_container .image {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 480px) {
  .p1 .sec_7 .custom_container .image {
    min-height: 428px;
    height: unset;
  }
}
.p1 .sec_7 .custom_container .image_1 {
  grid-column: 1/-1;
}
@media (max-width: 1199px) {
  .p1 .sec_7 .custom_container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p1 .sec_7 .custom_container {
    grid-template-columns: 1fr;
  }
  .p1 .sec_7 .custom_container .image_1 {
    grid-column: auto;
  }
}
.p1 .sec_8 .about-container {
  align-items: flex-start;
}
.p1 .sec_8 .about-container .about-right p {
  margin-bottom: 0;
}
.p1 .sec_9 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p1 .sec_9 .custom_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* --- TABLET (Below 1200px) --- */
}
.p1 .sec_9 .custom_container .image_1 {
  grid-column: span 2;
}
.p1 .sec_9 .custom_container .image_2 {
  grid-row: span 2;
}
.p1 .sec_9 .custom_container .image_3 {
  grid-column: span 2;
}
.p1 .sec_9 .custom_container .image {
  min-height: 493px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p1 .sec_9 .custom_container .image img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p1 .sec_9 .custom_container {
    gap: 20px;
  }
  .p1 .sec_9 .custom_container .image {
    min-height: 530px;
  }
}
@media (max-width: 768px) {
  .p1 .sec_9 .custom_container {
    grid-template-columns: 1fr;
  }
  .p1 .sec_9 .custom_container .image_1,
  .p1 .sec_9 .custom_container .image_2,
  .p1 .sec_9 .custom_container .image_3 {
    grid-column: auto;
    grid-row: auto;
  }
  .p1 .sec_9 .custom_container .image {
    min-height: 242px;
    height: unset;
  }
}
@media (max-width: 768px) {
  .p1 .sec_9.custom_sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .p1 .about-container {
    flex-direction: column;
    gap: 24px;
  }
  .p1 .about-container .about-left,
  .p1 .about-container .about-right {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .p1 .about-container {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .p1 .about-container .about-left .about-title {
    font-size: 2rem;
  }
  .p1 .about-container .about-left .about-title br {
    display: none;
  }
}

.p2 .hero-section {
  overflow: clip;
  height: 80vh;
  min-height: 80vh;
}
.p2 .hero-section .hero-container .hero-content {
  max-width: 776px;
}
.p2 .hero-section .hero-container .hero-content h1 {
  font-size: 3.625rem;
}
@media (max-width: 768px) {
  .p2 .hero-section .hero-container .hero-content h1 {
    font-size: 2.125rem;
    font-weight: 500;
  }
}
.p2 .hero-section .hero-container .hero-content p {
  font-size: 1.375rem;
  color: #fff;
}
@media (max-width: 992px) {
  .p2 .hero-section .hero-container .hero-content {
    text-align: left;
    align-items: flex-start;
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .p2 .hero-section .hero-container {
    text-align: left;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .p2 .hero-section {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .p2 .hero-section {
    height: 100vh;
  }
}
.p2 .custom_sec {
  padding: 0 80px;
}
@media (max-width: 1199px) {
  .p2 .custom_sec {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .p2 .custom_sec {
    padding: 0 24px;
  }
}
.p2 .custom_container {
  max-width: 1300px;
  margin: 0 auto;
}
.p2 .sec_1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p2 .sec_1 .image_1 {
  min-height: 711px;
  height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p2 .sec_1 .image_1 img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p2 .sec_1 .image_1 {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 480px) {
  .p2 .sec_1 .image_1 {
    min-height: 190px;
  }
}
.p2 .sec_2 .about-container {
  align-items: flex-start;
}
.p2 .sec_2 .about-container .about-right p {
  margin-bottom: 0;
}
.p2 .sec_3 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p2 .sec_3 .custom_container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.p2 .sec_3 .custom_container .image_2 {
  min-height: 711px;
  height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p2 .sec_3 .custom_container .image_2 img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p2 .sec_3 .custom_container .image_3 {
  min-height: 711px;
  height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p2 .sec_3 .custom_container .image_3 img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p2 .sec_3 .custom_container {
    gap: 20px;
  }
  .p2 .sec_3 .custom_container .image_1,
  .p2 .sec_3 .custom_container .image_2 {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 768px) {
  .p2 .sec_3 .custom_container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .p2 .sec_3 .custom_container {
    flex-direction: column;
  }
  .p2 .sec_3 .custom_container .image_1,
  .p2 .sec_3 .custom_container .image_2 {
    min-height: 428px;
    height: unset;
  }
}
.p2 .sec_4 .about-container {
  align-items: flex-start;
}
.p2 .sec_4 .about-container .about-right p {
  margin-bottom: 0;
}
.p2 .sec_5 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p2 .sec_5 .custom_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.p2 .sec_5 .custom_container .image {
  min-height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p2 .sec_5 .custom_container .image img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p2 .sec_5 .custom_container .image {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 480px) {
  .p2 .sec_5 .custom_container .image {
    min-height: 428px;
    height: unset;
  }
}
.p2 .sec_5 .custom_container .image_1 {
  grid-column: 1/-1;
}
@media (max-width: 1199px) {
  .p2 .sec_5 .custom_container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p2 .sec_5 .custom_container {
    grid-template-columns: 1fr;
  }
  .p2 .sec_5 .custom_container .image_1 {
    grid-column: auto;
  }
}
.p2 .sec_6 .about-container {
  align-items: flex-start;
}
.p2 .sec_6 .about-container .about-right p {
  margin-bottom: 0;
}
.p2 .sec_7 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p2 .sec_7 .custom_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.p2 .sec_7 .custom_container .image {
  min-height: 711px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.p2 .sec_7 .custom_container .image img {
  position: absolute;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .p2 .sec_7 .custom_container .image {
    min-height: 530px;
    height: unset;
  }
}
@media (max-width: 480px) {
  .p2 .sec_7 .custom_container .image {
    min-height: 428px;
    height: unset;
  }
}
.p2 .sec_7 .custom_container .image_1 {
  grid-column: span 2;
}
.p2 .sec_7 .custom_container .image_2 {
  grid-row: span 2;
}
.p2 .sec_7 .custom_container .image_3 {
  grid-column: span 2;
}
.p2 .sec_7 .custom_container .image_7 {
  grid-column: span 3;
}
@media (max-width: 1199px) {
  .p2 .sec_7 .custom_container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p2 .sec_7 .custom_container {
    grid-template-columns: 1fr;
  }
  .p2 .sec_7 .custom_container .image_1,
  .p2 .sec_7 .custom_container .image_2,
  .p2 .sec_7 .custom_container .image_3,
  .p2 .sec_7 .custom_container .image_7 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 1199px) {
  .p2 .about-container {
    flex-direction: column;
    gap: 24px;
  }
  .p2 .about-container .about-left,
  .p2 .about-container .about-right {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .p2 .about-container {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .p2 .about-container .about-left .about-title {
    font-size: 2rem;
  }
  .p2 .about-container .about-left .about-title br {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */