@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Teko:wght@300..700&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --c-secondary: #B6E304;
  --font-primary: 'Instrument Sans', sans-serif;
  --font-secondary: 'Teko', sans-serif;
  --font-kanit: 'Kanit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #121212;
  font-family: var(--font-primary);
  color: white;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-secondary);
}

p {
  margin: 0;
}

.section-title {
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(30px, 5.25vw, 100px);
  color: var(--white);
  line-height: 1;
}

.section-spacing {
  padding: clamp(60px, 6.31vw, 120px) 0;
}

.c-container {
  max-width: calc(clamp(1400px, 84.08vw, 1600px) + 30px);
  margin: 0 auto;
  padding: 0 15px;
}

.section-heading .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-sub-title {
  font-weight: 400;
  font-family: var(--font-kanit);
  font-size: clamp(20px, 1.26vw, 24px);
  line-height: 1.3;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid rgba(115, 115, 115, 0.24);
  padding-bottom: 8px;
  position: relative;
  text-decoration: 1px underline var(--c-secondary);
  text-underline-offset: 15px;
  margin-bottom: clamp(16px, 1.26vw, 24px);
}
.section-sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: max-content;
  height: 1px;
  background-color: var(--c-secondary);
}

.def-btn {
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-secondary);
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: clamp(13px, 0.84vw, 16px);
  display: inline-flex;
  visibility: hidden;
}
.def-btn:hover span {
  background-color: #2d2d2d;
  color: var(--white);
}
.def-btn > span {
  visibility: visible;
  display: inline-block;
  border-radius: 100px;
  transition: 0.3s ease-in-out;
}
.def-btn .text {
  padding: clamp(12px, 0.84vw, 16px) clamp(26px, 1.68vw, 32px);
  background-color: var(--c-secondary);
}
.def-btn .icon {
  background-color: var(--white);
  padding: clamp(12px, 0.84vw, 16px) 18px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.def-btn-2:hover span {
  background-color: var(--c-secondary);
  color: var(--black);
  border-color: var(--c-secondary);
}
.def-btn-2 .text {
  color: var(--white);
  border: 1px solid var(--white);
  background-color: transparent;
}
.def-btn-2 .icon {
  background-color: var(--c-secondary);
}

.featured-section {
  text-align: center;
  padding: clamp(60px, 7.36vw, 140px) 0 clamp(60px, 6.31vw, 120px);
  overflow: hidden;
  position: relative;
}
.featured-section-sub-title {
  margin-top: clamp(45px, 3.94vw, 75px);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 400;
  margin-bottom: clamp(25px, 2.52vw, 48px);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.featured-section-sub-title::before {
  content: "";
  width: 170px;
  height: 1px;
  background-color: var(--white);
  opacity: 30%;
}
.featured-section-sub-title span {
  display: block;
  align-self: center;
  width: 8px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--white);
}
.featured-section-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(20px, 1.68vw, 32px);
}
.featured-section-txt-container {
  background-color: #121212;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: clamp(355px, 37.05vw, 705px);
  padding: clamp(160px, 16.29vw, 310px) clamp(80px, 8.41vw, 160px) clamp(60px, 6.31vw, 120px);
  text-align: left;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  box-sizing: border-box;
  pointer-events: none;
  z-index: 99;
}
.featured-section-txt-container:last-child {
  text-align: right;
  right: 0;
  left: auto;
  padding-left: unset;
  padding-right: clamp(80px, 8.41vw, 160px);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.featured-section-txt-sub-title {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 144%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(9px, 0.63vw, 12px);
}
.featured-section-txt-sub-title::before {
  content: "";
  width: 48px;
  height: 1px;
  background-color: var(--white);
  opacity: 30%;
}
.featured-section-txt-sub-title .dot {
  display: block;
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
}
.featured-section-txt-title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: clamp(25px, 1.89vw, 36px);
  line-height: 156%;
}
.featured-section-txt-index {
  font-weight: 300;
  margin-bottom: clamp(10px, 0.84vw, 16px);
}
.featured-section-txt-index span {
  font-weight: 500;
  font-family: var(--font-kanit);
  font-size: clamp(27px, 1.58vw, 30px);
}
.featured-section-txt-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: clamp(10px, 0.84vw, 16px);
}
.featured-section-txt-tags > * {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: clamp(6px, 0.37vw, 7px) clamp(16px, 1.26vw, 24px);
  font-family: var(--font-kanit);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: clamp(13px, 0.84vw, 16px);
  color: rgba(255, 255, 255, 0.7);
}

.card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  min-width: clamp(781px, 41.2vw, 784px);
  transform-origin: bottom center;
}

.card-center {
  z-index: 2;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

/* Hover effect */
.card:hover img {
  transform: scale(1.1);
}

.what-we-offer {
  background-color: #161616;
}
.what-we-offer .section-title {
  padding-left: clamp(20px, 10.51vw, 200px);
}
.what-we-offer-content {
  display: flex;
  align-items: flex-end;
}
.what-we-offer-left {
  width: 65%;
  display: flex;
  align-items: center;
  gap: clamp(38px, 2.52vw, 48px);
}
.what-we-offer-left-img {
  flex-shrink: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  border-radius: 24px;
  overflow: hidden;
}
.what-we-offer-left-img img {
  width: clamp(312px, 26.9vw, 512px);
  aspect-ratio: 512/516;
  object-fit: cover;
}
.what-we-offer-left-index {
  font-weight: 600;
  font-size: clamp(26px, 2.94vw, 56px);
  font-family: var(--font-secondary);
  letter-spacing: 0.5px;
}
.what-we-offer-left-index .small {
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 300;
  font-family: var(--font-kanit);
  color: rgba(255, 255, 255, 0.7);
}
.what-we-offer-left-txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(82px, 8.62vw, 164px);
}
.what-we-offer-left-txt .tags {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 0.84vw, 16px);
  margin-bottom: clamp(24px, 2.52vw, 48px);
}
.what-we-offer-left-txt .tags > * {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: clamp(6px, 0.37vw, 7px) clamp(16px, 1.26vw, 24px);
  font-family: var(--font-kanit);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: clamp(13px, 0.84vw, 16px);
  color: rgba(255, 255, 255, 0.7);
}
.what-we-offer-right {
  width: 35%;
  text-align: right;
}
.what-we-offer-right-title {
  font-weight: 500;
  font-size: clamp(26px, 3.36vw, 64px);
  line-height: 112%;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: clamp(5px, 0.42vw, 8px);
}
.what-we-offer-right-descr {
  font-family: var(--font-kanit);
  font-weight: 300;
  font-size: clamp(13px, 0.84vw, 16px);
  line-height: 150%;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(60px, 6.31vw, 120px);
}
.what-we-offer-right-imgs {
  display: flex;
  justify-content: flex-end;
  gap: clamp(20px, 1.68vw, 32px);
}
.what-we-offer-right-imgs img {
  width: clamp(180px, 12.61vw, 240px);
  aspect-ratio: 240/248;
  border-radius: 16px;
}

.cta {
  background-color: #121212;
}
.cta .c-container {
  position: relative;
}
.cta-content {
  text-align: center;
  width: clamp(909px, 47.92vw, 912px);
  margin: 0 auto;
}
.cta-contact-infos {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.1vw, 40px);
  margin-top: clamp(16px, 1.26vw, 24px);
  margin-bottom: clamp(24px, 2.52vw, 48px);
}
.cta-contact-infos a {
  color: inherit;
  font-weight: 600;
  font-size: clamp(17px, 1.05vw, 20px);
  text-transform: uppercase;
}
.cta-contact-infos a:hover {
  color: var(--c-secondary);
}
.cta-imgs > * {
  border-radius: 16px;
  position: absolute;
}
.cta-imgs .glow {
  opacity: 0.32;
  filter: blur(24px);
  border-radius: 16px;
}
.cta-imgs .img-1 {
  width: clamp(106px, 8.2vw, 156px);
  top: clamp(31px, 2.15vw, 41px);
  left: 0;
}
.cta-imgs .img-2 {
  width: clamp(197px, 12.98vw, 247px);
  bottom: 0;
  left: clamp(180px, 13.66vw, 260px);
}
.cta-imgs .img-3 {
  width: clamp(106px, 8.2vw, 156px);
  right: clamp(138px, 9.88vw, 188px);
  bottom: -30px;
}
.cta-imgs .img-4 {
  width: clamp(84px, 6.52vw, 124px);
  right: 0;
  top: clamp(50px, 5.25vw, 100px);
}
.cta-vector {
  position: absolute;
  right: calc(0% - clamp(40px, 3.78vw, 72px));
  bottom: -123px;
  mix-blend-mode: lighten;
  opacity: 12%;
}/*# sourceMappingURL=style.css.map */