@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend+Deca:wght@100..900&display=swap');

:root {
    --color-dark-orange: #D77400;
    --color-black: #000000;
    --color-dark-green: #1C3828;
    --color-light-orange: #FFF3DB;
    --color-white: #fff;
    --color-card-background: #F5F5F5;
    --color-info-light: #edba73;
    --color-dark: #363949;
    --color-light: rgba(132, 139, 200, 0.18);
    --color-underline: #BF810A;
    --color-dark-variant: #677483;
    --color-background: #ffffff;
    --color-blue : #093374;
    --color-steelblue : #456FB0;
    --color-cornflowerblue : #7293C6;
    --color-price : #1BAA57;
    --color-purple : #EED2F5;

    --card-border-radius: 2rem;
    --border-radius-1: 0.4rem;
    --border-radius-2: 0.8rem;
    --border-radius-3: 1.2rem;

    --card-padding: 1.8rem;
    --padding-1: 1.2rem;

    --arrow-bg: rgba(255, 255, 255, 0.3);
    --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
    --select-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 2rem 3rem var(var(--color-light));
}

.cta-button .fa-solid {
    color: #D66F21;
}


* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    padding: 0px 100px;
    width: 100%;
    font-family: "Lexend Deca", sans-serif;
}

.contact-details p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-details i {
  margin-right: 0.5rem;
  color: #0f172a;
}

.contact-details a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
}

/* Navbar */

nav {
    color: var(--color-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    font-family: "Lexend Deca", sans-serif;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: auto;
    margin-right: 5px;
}

.logo-text {
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-black);
}

.logo-text span {
    font-weight: 700;
}

.links {
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: space-around;
}

.links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 20px;
    margin-left: 20px;
    font-weight: 200;
    transition: color 0.3s ease;
}

.links a:hover {
    color: var(--color-dark-orange);
}

.hide {
    display: none;
}


.service-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
font-family: "Lexend Deca", sans-serif;
line-height: 35px;
}

.service-hero h1 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 12px;
}

.service-hero p {
  font-size: 1.3em;
  color: #475569;
  max-width: 700px;
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 60px 0;
}

.card {
  padding: 28px;
  border-radius: 20px;
  background: #f8fafc;
}

.card.highlight {
  background: #0f172a;
  color: white;
}

.use-cases {
    margin-top: 20px;
    margin-bottom: 20px;
}

.use-cases ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}

.use-cases li {
    display: flex;
    gap: 10px;
    align-items: center;
    background: beige;
    margin-top: 10px;
    padding: 10px;
    border-radius: 20px;
}

.tool-tags span {
  display: inline-block;
  padding: 8px 14px;
  margin: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  font-weight: 500;
}

.snapshot {
  margin: 60px 0;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0f172a, #334155);
  color: white;
}

.snapshot ul {
  list-style: none;
  padding: 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: #fff;
}

/* Hide native checkbox but keep it clickable */
.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  width: 18px;
  height: 18px;
}

/* Visual checkbox */
.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top:10px;
}

/* Checked state */
.checkbox-wrapper input:checked + .custom-checkbox {
  background-color: burlywood; /* VastHive accent */
  border-color: burlywood;
}

/* Checkmark */
.checkbox-wrapper input:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Primary CTA button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 28px;
  border-radius: 16px;

  background: linear-gradient(90deg, #0f172a, #334155);
  color: #ffffff;
  font-size: 1.3em;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  transition: all 0.3s ease;
  margin: 20px 0px;
}

/* Hover interaction */
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.35);
}

/* Icon animation */
.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* Accessibility */
.cta-button:focus {
  outline: 2px solid #94a3b8;
  outline-offset: 3px;
}


.cta-button.secondary {
  background: moccasin;
  color: #0f172a;
  border: 1px solid #cbd5f5;
  margin: 20px;
}

.cta-button.secondary:hover {
  background-color: #f8fafc;
}

.pricing-section {
  padding: 5rem 1.5rem;
  background: #f8fafc;
  font-family: "Lexend Deca", sans-serif;
}

.pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.pricing-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.pricing-header p {
  color: #475569;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid #0f172a;
  transform: translateY(-6px);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: #334155;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f172a;
  font-weight: bold;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.pricing-btn {
  text-align: center;
  padding: 0.9rem 1.2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #0f172a;
  color: #0f172a;
  transition: all 0.2s ease;
}

.pricing-btn:hover {
  background: #0f172a;
  color: #ffffff;
}

.pricing-btn.primary {
  background: #0f172a;
  color: #ffffff;
}

.contact-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  font-family: "Lexend Deca", sans-serif;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
}

.contact-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact-text .lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-text p {
  color: #334155;
  margin-bottom: 1.2rem;
}

.compliance {
  background: #f1f5f9;
  border-left: 4px solid #0f172a;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0.75rem;
}

.compliance-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.compliance ul {
  margin: 0;
  padding-left: 1.2rem;
}

.compliance li {
  margin-bottom: 0.5rem;
  color: #475569;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-card {
  background: #0f172a;
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.cta-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.cta-card p {
  color: #e2e8f0;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-top: 1rem;
}

.registration {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .container {
    padding-top: 100px;
  }

}


.language {
    background-color: white;
    margin-left: 20px;
}

.language img {
    width: 35px;
    cursor: pointer;
    background-color: white;
}

.language p {
    display: none;
}


.hamburger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 30px;
    height: 5px;
    margin: 4px 0;
    transition: 0.4s;
}

.circle {
    width: 20%;
    height: 100%;
    border-radius: 25px;
    
}

.circle:nth-child(1) {
    background: linear-gradient(0deg, #FAAB5D 0%, #D56E20 20.5%);
}

.circle:nth-child(2) {
    background: linear-gradient(0deg, #FAAB5D 20.5%, #D56E20 64.5%);
}

.circle:nth-child(3) {
    background: linear-gradient(0deg, #FAAB5D 64.5%, #D56E20 100%);
}

.rectangle {
    width: 80%;
    height: 100%;
    border-radius: 25px;
}


.rectangle:nth-child(1) {
    background: linear-gradient(0deg, #FAAB5D 0%, #D56E20 20.5%);
}

.rectangle:nth-child(2) {
    background: linear-gradient(0deg, #FAAB5D 20.5%, #D56E20 64.5%);
}

.rectangle:nth-child(3) {
    background: linear-gradient(0deg, #FAAB5D 64.5%, #D56E20 100%);
}



.change .bar:nth-child(1) {
    background: #D56E20;
    transform: rotate(-45deg) translate(-6px, 6px);
}

.change .bar:nth-child(2) {
    opacity: 0;
}

.change .bar:nth-child(3) {
    background: #D56E20;
    transform: rotate(45deg) translate(-6px, -6px);
}




.content-4 {
    width: 100%;
    display: flex;
    height: 80vh;
    font-family: "Lexend Deca", sans-serif;
    gap: 50px;
}

.content-4 .item-1 {
    width: 40%;
}

.content-4 .item-1 img {
    margin-top: 80px;
    width: 500px;
    height: 500px;
}

.content-4 .item-2 {
    width: 60%;
}
.content-4 .item-2 p, .content-4 .item-2 h1 {
    font-size: 2em;
    margin-top: 200px;
    font-weight: 200;
}

.content-4 .item-2 .c4-div {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;

}
.content-4 .item-2 .c4-div .c4-div-item1, .c4-div-item2, .c4-div-item3 {
    width: 30%;
    height: 360px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c4-div-item1{
    background-color: var(--color-blue);
}

.c4-div-item2{
    background-color: var(--color-steelblue);
}

.c4-div-item3{
    background-color: var(--color-cornflowerblue);
}

.c4-div .c4-div-item1 p, .c4-div .c4-div-item2 p, .c4-div .c4-div-item3 p {
    width: 75%;
    margin-top: 60px;
    font-size: 1.3em;
    text-align: left;
    letter-spacing: 1px;
    color: #ffffff;
}

.c4-div-item1 img {
    width: 200px;
    margin-top: 85px;
    margin-left: 30px;
}
.c4-div-item2 img {
    width: 170px;
    margin-top: 70px;
    margin-left: 40px;
}
.c4-div-item3 img {
    width: 190px;
    margin-top: 70px;
    margin-left: 35px;
}
.content {
    height: 80vh;
    margin-top: 30px;
    padding-top: 80px;
    margin-bottom: 50px;
    /* padding-left: 40px; */
}

.content .item-1 {
    display: flex;
    font-family: "Lexend Deca", sans-serif;
    width: 80%;
    margin-left: 150px;
}

.content .item-1 .details-1 {
    margin: 25px 50px;
    width: 450px;
}

.content .item-1 .details-1 h2,
.content .item-2 .details-2 h2 {
    font-size: 1.6em;
    font-weight: 300;
    margin-bottom: 15px;
}


.content .item-1 .details-1 p,
.content .item-2 .details-2 p {
    font-size: 1.3em;
    font-weight: 200;
    text-align: left;
    letter-spacing: 2px;
    line-height: 25px;
}

.content .item-1 .content-img1 {
    width: 450px;
}

.content .item-2 {
    display: flex;
    font-family: "Lexend Deca", sans-serif;
    width: 60%;
    margin-left: 440px;
    margin-top: -220px;
}

.item2_content {
    display: flex;
}

.content .item-2 .details-2 {
    margin-left: 45px;
    margin-top: 100px;
    width: 370px;
}

.content-img2 {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.content-2 {
    width: 100%;
    height: 100vh;
}

.content-2 .item-1 {
    width: auto;
    height: 50%;
    background-image: url('/images/Polygon2.png');
    background-size: 100%;
    font-family: 'Jost';
    background-repeat: no-repeat;
}

.content-2 .item-1 .text-1 {
    text-align: center;
    font-weight: 700;
    color: var(--color-dark-green);
    font-size: 3em;
    letter-spacing: 1px;
    padding-top: 30px;
}

.content-2 .item-2 {
    width: 100%;
    margin-top: -260px;
    padding: 50px;
    /* display: flex;
    justify-content: space-between; */
}

.content-2 .item-2 .card {
    height: auto;
    background-color: var(--color-card-background);
    border-radius: 20px;
    font-family: 'Satoshi-Regular';
}

.content-2 .item-2 .card .card-text .t-1 {
    padding: 0px 11px;
    margin-top: 8px;
    margin-bottom: 20px;
    font-family: 'Satoshi-Regular';
    font-weight: 550;
    font-size: 1.1em;
}

.content-2 .item-2 .card .card-text .t-2 {
    height: 50px;
    margin-top: 10px;
    margin-bottom: 30px;
    padding: 0px 11px;
    font-family: 'Satoshi-Regular';
    font-weight: 550;
    letter-spacing: 1px;
    font-size: 1em;
}

.content-2 .item-2 .card .card-text .t-3 {
    margin-top: 20px;
    padding: 0px 11px;
    font-family: 'Satoshi-Regular';
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.content-2 .item-2 .card .card-text .t-price {
    width: 100%;
    text-align: right;
    padding: 0px 11px;
    font-family: 'Satoshi-Regular';
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1em;
    color: var(--color-price);
}

.card img {
    width: 100%;
    padding: 11px;
}

.card .card-btn {
    width: 100%;
    text-align: center;
    padding-top: 33px;
    padding-bottom: 10px;
}

.card .card-btn .button-link {
    font-family: 'Satoshi-Regular';
    font-weight: 500;
    width: 95%;
    height: 58px;
    display: inline-block;
    text-align: center;
    padding-top: 12px;
    font-size: 1.3em;
    letter-spacing: 1px;
    background-color: var(--color-dark-orange);
    color: white;
    text-decoration: none;
    border-radius: 29px;
    transition: background-color 0.3s ease;
}

.card .card-btn .button-link:hover {
    background-color: #B35B00;
}

.swiper-Btn {
    color: var(--color-dark-orange);
}

.swiper-Btn::before,
.swiper-Btn::after {
    font-size: 3em;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination-bullet {
    background-color: var(--color-info-light);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-dark-orange);
}

.content-3 {
    width: 100%;
    height: 80vh;
    background-color: var(--color-purple);
}

.content-3 .c3-text {
    width: 750px;
    margin: auto;
    padding-top: 35px;
    text-align: center;
    font-family: "Lexend Deca", sans-serif;
}

.content-3 .c3-text .p1 {
    font-size: 3em;
    font-weight: 300;
}

.content-3 .c3-text .p2 {
    margin-top: 10px;
    font-size: 1em;
    font-weight: 200;
    line-height: 30px;
}

.content-3 .contact {
    width: 85%;
    margin: auto;
    height: 90vh;
    background-color: white;
    margin-top: 40px;
    border-radius: 25px;
    display: flex;
}

.content-3 .contact .contact-info {
    width: 455px;
    height: auto;
    margin: 12px;
    border-radius: 15px;
    padding: 45px;
    background-color: var(--color-dark-orange);
    font-family: "Lexend Deca", sans-serif;
    color: var(--color-card-background);
    position: relative;
}

.content-3 .contact .contact-info .c-head {
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.content-3 .contact .contact-info .c-para {
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 20px;
}

.content-3 .contact .contact-info .contact-details .cd-1 {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.content-3 .contact .contact-info .contact-details .cd-1 img {
    width: 45px;
}

.content-3 .contact .contact-info .contact-details .cd-1 p {
    font-size: 1em;
    font-weight: 250;
}

.content-3 .contact .contact-info .reg {
    font-size: 1em;
    font-weight: 250;
    text-align: center;
    position: absolute;
    bottom: 50px;
    margin-left: 30px;
}


footer {
    width: 100%;
    text-align: center;
    font-family: "Lexend Deca", sans-serif;
}

footer p {
    font-size: 1.3em;
    font-weight: 300;
    margin: 10px;
}

footer .f-div{
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

footer .f-div .fd-1 p{
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: 1px;
}

footer .f-div .fd-1 span {
    font-weight: 700;
}

.fd-2 {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-around;
}

.fd-2 a, .fd-3 a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 1.1em;
    margin-left: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.fd-2 a:hover {
    color: var(--color-dark-orange);
}

.fd-3 img {
    margin-top: 10px;
    width: 30px;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}


@media (max-width: 768px) {

  /* -------- CONTENT 4 -------- */

  .content-4 {
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 40px 20px;
  }

  .content-4 .item-1,
  .content-4 .item-2 {
    width: 100%;
  }

  .content-4 .item-1 img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .content-4 .item-2 p {
    margin-top: 20px;
    font-size: 1.3em;
    text-align: center;
  }

  .content-4 .item-2 .c4-div {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .content-4 .item-2 .c4-div 
  .c4-div-item1,
  .content-4 .item-2 .c4-div 
  .c4-div-item2,
  .content-4 .item-2 .c4-div 
  .c4-div-item3 {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .c4-div .c4-div-item1 p,
  .c4-div .c4-div-item2 p,
  .c4-div .c4-div-item3 p {
    width: 100%;
    font-size: 1.1em;
    margin-top: 0;
    text-align: center;
  }

  .c4-div-item1 img,
  .c4-div-item2 img,
  .c4-div-item3 img {
    width: 140px;
    margin: 20px auto 0;
  }

  /* -------- CONTENT SECTION -------- */

  .content {
    height: auto;
    padding: 40px 20px;
    margin: 0;
  }

  .content .item-1,
  .content .item-2 {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .content .item-2 {
    margin-top: 40px;
  }

  .content .item-1 .content-img1,
  .content .item-2 .content-img2 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .content .item-1 .details-1,
  .content .item-2 .details-2 {
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
  }

  .content .item-1 .details-1 h2,
  .content .item-2 .details-2 h2 {
    font-size: 1.6em;
  }

  .content .item-1 .details-1 p,
  .content .item-2 .details-2 p {
    font-size: 1.3em;
    letter-spacing: 0.5px;
    line-height: 24px;
  }

  .content h1 {
    margin-top: 50px;
  }

  .content-4 .item-1 img {
    margin-top: 30px;
  }

  .cta-card {
    padding: 1.5em;
  }

  .assessment-hero h1, .contact-hero h1, .about-hero h1 {
    margin-top: 50px;
  }

  .assessment-cta {
    padding: 1.5em;
  }

  .content-4 .item-2 h1 {
    margin-top: 10px;
  }

  .contact-card {
    padding: 1.3em;
  }
  .hero {
    padding: 100px 20px 40px;
    margin-top: 0px;
  }
      
}



@media screen and (max-width: 800px) {

    body {
        width: 100%;
        padding: 0px 0px;
    }

    nav {
        position: fixed;
        width: 100%;
        padding: 15px;
        height: 90px;
        z-index: 5;
        background: white;
    }

    .logo img {
        width: 40px;
    }

    .logo-text {
        font-size: 1.1em;
    }

    .links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 88px;
        left: 0;
        background-color: var(--color-background);
        width: 100%;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: all .8s ease-in-out;
    }

    .links.active {
        padding: 10px;
        max-height: 1000px;
    }

    .links a {
        font-weight: 250;
    }

    .hide {
        display: block;
    }


    .language {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
        background-color: white;
        font-family: "Lexend Deca", sans-serif;

    }

    .language img {
        width: 30px;
    }

    .language p {
        display: block;
        font-size: 1.3em;
        font-weight: 250;
        transition: color 0.3s ease;
        cursor: pointer;
        background-color: white;
    }

    .language p:hover {
        color: var(--color-dark-orange);
    }

    .links a {
        margin: 10px 0;
        transition: opacity 0.3s ease;
    }

    .hamburger-menu {
        display: block;
    }
    p, li, a{
      font-size: 1.3em;
    }

    h3 {
      font-size: 1.4em;
    }
    


    /* Footer */

    footer {
        width: 100%;
    }

    footer p {
        font-size: 1em;
        margin: 8px;
    }

    footer .f-div {
        padding: 22px;
        display: block;
    }

    footer .f-div .fd-1 {
        display: none;
    }

    .fd-2 {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 22px;
    }

    .fd-3 {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 30px;
        padding-right: 18px;
        margin-bottom: 10px;
    }

    .fd-2 a,
    .fd-3 a {
        font-size: 1em;
        font-weight: 300;
        margin: 0;
    }
}

@media (max-width: 1024px) {

  .content-4 {
    height: auto;
    padding: 60px 40px;
  }

  .content-4 .item-1 img {
    width: 400px;
    height: auto;
  }

  .content {
    height: auto;
  }

  .content .item-1,
  .content .item-2 {
    width: 100%;
    margin-left: 0;
  }
}


@media screen and (min-width: 799px)  and (max-width: 1100px) {
    body {
        width: 100%;
        padding: 0px 22px;
    }

    nav {
        width: 100%;
        height: 90px;
    }

    .logo img {
        width: 40px;
        height: auto;
        margin-right: 5px;
    }
    
    .logo-text {
        font-size: 1.3em;
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--color-black);
    }

    .links a {
        color: var(--color-black);
        text-decoration: none;
        font-size: 1em;
        font-weight: 250;
        transition: color 0.3s ease;
    }

    .language {
        margin-left: 10px;
    }


    footer p {
        font-size: 1.3em;
    }

    footer .f-div {
        padding: 25px;
        display: flex;
        justify-content: space-between;
    }

    footer .f-div .fd-1 p {
        font-size: 1.3em;
    }

    .fd-2 a {
        font-size: 1em;
    }
}