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

:root {
    --color-dark: #50332e;
    --color-dark-secondary: #7b5a54;
    --color-dark-tertiary: #2d2d2d;
    --color-dark-quaternary: #484848;
    --color-light: #ffffff;
    --color-light-secondary: #e0debe;
    --color-light-tertiary: #f9f8f1;
    --color-light-quaternary: #888888;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    color: var(--color-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style-type: "—";
    padding-left: 1em;
}

li {
    padding-left: 1.2em;
}

h1 {
    font-family: "Bodoni Moda", serif;
    font-size: 80px;
    line-height: 1.25;
    color: var(--color-light);
    font-weight: normal;
    width: 80%;
    text-align: center;
}

h2 {
    font-family: "Bodoni Moda", serif;
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-family: "Bodoni Moda", serif;
    font-size: 24px;
    font-weight: 200;
}

h4 {
    font-size: 20px;
    font-weight: 200;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    background-color: var(--color-dark);
    padding: 32px 0px;
    z-index: 200;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    border-bottom: var(--color-dark-secondary) 1px solid;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .navbar-logo {
    display: flex;
    align-items: stretch;
}

.navbar .btn.contact {
    font-family: "Inter", sans-serif;
    padding: 8px 16px;
    font-size: 12px;
}

.navbar .navbar-buttons {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.navbar .navbar-buttons .link.contact {
    color: var(--color-light-secondary);
    font-weight: 200;
    font-size: 16px;
    align-self: center;
}

/* Language switcher */

ul.lang {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

ul.lang li {
    padding: 0px;
}

ul.lang li label {
    padding: 0px 8px;
    /* color: var(--color-dark); */
    /* border-radius: 8px; */
    display: inline-block;
    font-weight: 200;
    font-size: 16px;
    cursor: pointer;
    color: var(--color-light-secondary);
}

ul.lang li input[type="radio"] {
    opacity: 0;
    width: 0px;
    height: 0px;
}

ul.lang li input[type="radio"]:checked ~ label {
    background: #e0debe;
    color: var(--color-dark);
    font-weight: 600;
}

/* Hero Styles */

.hero {
    background: url("../images/R.svg") no-repeat 65% 50px;
    background-color: var(--color-dark);
    color: var(--color-light);
    margin-bottom: 120px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 170px;
    padding-bottom: 80px;
}

.hero .container h1 {
    margin-bottom: 20px;
}

.hero .container h3 {
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
}

.hero .chat-icon {
    padding: 30px 48px;
    border: var(--color-dark-secondary) 1px solid;
}

.hero .call {
    letter-spacing: 0.34em;
}

.hero .label-group {
    margin-top: auto;
    margin-bottom: auto;
}

.hero .label-group.right {
    text-align: right;
}

.hero .label-group .label {
    font-size: 16px;
    font-weight: 200;
    color: var(--color-light-secondary);
}

.hero .label-group a {
    font-size: 24px;
}

.hero .button-group {
    gap: 40px;
}

/* Image */

.content .image-container {
    display: grid;
    grid-template-columns: minmax(80px, auto) minmax(auto, 1120px) minmax(80px, auto);
}

.content .image-container .office-image {
    width: 100%;
    /* height: 200px; */
    /* max-width: 1280px; */
    grid-column: 2;
    grid-row: 1 / span 2;
    overflow: hidden;
    position: relative;
}

.content .image-container .office-image img {
    width: 100%;
    height: auto;
    /* display: block; */
    object-fit: cover;
    /* position: absolute; */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.content .image-container div {
    width: 100%;
    height: 100%;
}

.content .image-container .bottom {
    background-color: var(--color-light);
}

/* Service Cards*/

.content .services {
    display: grid;
    grid-template-columns: auto auto auto;
    /* margin-top: 48px; */
    margin-bottom: 120px;
    align-items: stretch;
    border-top: var(--color-light-secondary) 1px solid;
    border-left: var(--color-light-secondary) 1px solid;
}

.content .service-card {
    min-width: 300px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-weight: 200;
    border-right: var(--color-light-secondary) 1px solid;
    border-bottom: var(--color-light-secondary) 1px solid;
}

.content .service-card ul {
    margin-top: 24px;
    color: var(--color-dark-tertiary);
}

.content .service-card li {
    margin-bottom: 8px;
}

/* Experience Section */

.content .experience {
    display: flex;
    background-color: var(--color-light-tertiary);
    margin-bottom: 120px;
    padding: 0px 40px;
    height: 490px;
    position: relative;
    overflow: hidden;
}

.content .experience p {
    font-size: 72px;
    font-weight: regular;
    line-height: normal;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 20;
    max-width: 940px;
    color: var(--color-dark-tertiary);
}

.content .experience .years {
    position: absolute;
    font-size: 750px;
    line-height: 1;
    color: var(--color-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Steps List */

.content .steps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 120px;
    align-items: stretch;
}

.content .step-item {
    min-width: 250px;
    border-radius: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    font-weight: 200;
}

.content .step-item h3 {
    text-align: center;
    width: 100%;
}

.content .step-item p {
    text-align: center;
    width: 100%;
}

.content .counter {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    justify-content: center;
}

.content .counter .front {
    z-index: 10;
    position: relative;
    font-size: 102px;
    color: var(--color-dark-tertiary);
}

.content .counter .back {
    position: absolute;
    font-size: 200px;
    color: var(--color-light-tertiary);
}

.content .steps-list .contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    width: 100%;
}

.content .steps-list .contact a {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Quote Section */
.content .quote {
    display: flex;
    margin-top: 300px;
    margin-bottom: 300px;
    /* background: url("../images/quote.svg") no-repeat center center; */
    /* height: 525px; */
    position: relative;
}

.content .quote p {
    font-size: 32px;
    font-weight: 200;
    line-height: 1.5;
    max-width: 940px;
    text-align: center;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-dark-tertiary);
    overflow: hidden;
}

.content .quote img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Contact Section */

.content .contact-container {
    display: grid;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    grid-template-columns: 1fr 1fr;
    color: var(--color-light);
    position: relative;
    background: url("../images/paragraph-top.svg") no-repeat center bottom;
    background-color: var(--color-dark-tertiary);
}

.content .contact-container .map-container {
    position: relative;
    height: 100%;
    /* max-width: 560px; */
    overflow: hidden;
    /* background: url("../images/map.jpg") no-repeat center center;
    background-size: cover; */
}

.content .contact-container .map-container .map {
    width: 120%;
    height: 120%;
    /* display: block; */
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 57%;
    transform: translate(-50%, -50%);
}

.content .contact-container .map-container .map-pin {
    position: absolute;
    /* width: 48px;
    height: 48px; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.content .contact-container .contact-details {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
    padding: 80px;
    font-weight: 200;
    width: 100%;
}

.content .contact-container .contact-details h3 {
    font-weight: 300;
    font-size: 32px;
    line-height: 110%;
}

.content .contact-container .contact-details h4 {
    color: var(--color-light-quaternary);
    line-height: 110%;
}

.content .contact-container .contact-details .label {
    font-size: 16px;
    font-weight: 100;
    color: var(--color-light-secondary);
}

.content .contact-container .contact-details .contact div a {
    font-weight: 300;
    font-size: 20px;
}

.content .contact-container .contact-details .contact {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 24px;
}

.content .contact-container .contact-details .contact img {
    padding: 24px;
    border-right: var(--color-dark-quaternary) 1px solid;
    border-bottom: var(--color-dark-quaternary) 1px solid;
    border-left: var(--color-dark-quaternary) 1px solid;
}

.content .contact-container .contact-details .contact > img:first-child {
    border-top: var(--color-dark-quaternary) 1px solid;
}

.content .contact-container .contact-details p {
    color: var(--color-light-quaternary);
    font-size: 20px;
}

.content .contact-container .paragraph-top {
    position: absolute;
    width: fit-content;
    /* z-index: 10; */
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

/* Footer Styles */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: -320px auto 0px auto;
    padding: 0px 0px 80px 0px;
    width: 100%;
    font-weight: 100;
    font-size: 16px;
    line-height: 1.3;
    background-color: var(--color-dark);
    color: var(--color-light);
}

.footer img {
    width: fit-content;
    margin-top: 320px;
    margin-bottom: 80px;
}

.footer h3 {
    font-weight: 300;
    line-height: 110%;
}

.footer h4 {
    font-size: 16px;
    line-height: 110%;
}

.footer p {
    margin: 16px 0px;
}

.footer a {
    color: var(--color-light-secondary);
}

/* Cookies */

.cookies {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: baseline;
    position: fixed;
    margin: 0 auto;
    max-width: 820px;
    /* top: 40px; */
    bottom: 40px;
    left: 40px;
    right: 40px;
    background-color: var(--color-light-tertiary);
    padding: 40px 0px;
    box-shadow: 0px 0px 10px 3px #4c282222;
    z-index: 1100;
}

.cookies .banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 40px;
}

.cookies .banner-body {
    overflow-y: auto;
    /* background-color: var(--color-light); */
    /* padding: 40px; */
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cookies h2 {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
}

.cookies h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.cookies ul.lang li label {
    color: var(--color-dark);
    font-weight: 600;
}

.cookies ul.lang li input[type="radio"]:checked ~ label {
    background: var(--color-dark);
    color: var(--color-light);
}

.cookies .cookies-options {
    display: none;
    /* display: flex; */
    flex-direction: column;
    align-items: start;
    gap: 32px;
    width: 100%;
}

.cookies .cookies-options .cookie-option {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
    width: 100%;
}

.cookies .button-group {
    padding: 0px 40px;
}

.cookies .button-group .btn.accept-selected {
    display: none;
    /* display: inline-block; */
}

/* Utility Classes */

.sans {
    font-family: "Inter", sans-serif;
}

.serif {
    font-family: "Bodoni Moda", serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
}

.button-group.right {
    flex-direction: row-reverse;
    width: 100%;
    padding-top: 16px;
}

.button-group .push {
    margin-right: auto;
}

.divider {
    width: 64px;
    height: 4px;
    background-color: var(--color-light-secondary);
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 24px;
    background-color: var(--color-dark);
    color: var(--color-light);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    gap: 8px;
}

.btn.tertiary {
    background-color: var(--color-light);
    color: var(--color-dark);
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: 0.3s;
}

b {
    font-weight: 700;
}

/* Switch */
.toggle-checkbox {
    display: none;
}

.slider {
    position: relative;
}

.slider.always-on {
    opacity: 0.5;
}

.slider::before {
    background: var(--color-light-secondary);
    border-radius: 34px;
    bottom: 0;
    content: "";
    height: 24px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 40px;
}

.slider::after {
    background: var(--color-light);
    border-radius: 50%;
    bottom: 0;
    content: "";
    height: 16px;
    left: 4px;
    margin: auto;
    position: absolute;
    top: 0;
    transition: 0.4s;
    width: 16px;
}

.toggle-switch {
    margin-left: 50px;
    color: var(--color-dark);
    font-weight: 600;
}

.toggle-switch.on {
    /* color: var(--color-dark); */
    display: none;
}

/* .toggle-switch.off {
    color: var(--color-light-secondary);
} */

.toggle-checkbox:checked + .slider::before {
    background-color: var(--color-dark);
}

.toggle-checkbox:checked + .slider::after {
    background-color: var(--color-light);
    transform: translateX(16px);
}

.toggle-checkbox:checked ~ .slider > .toggle-switch.on {
    display: inline;
}

.toggle-checkbox:checked ~ .slider > .toggle-switch.off {
    display: none;
}

/* Modal Styles */
.modal-container {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: display 10s;
}

/* Media Queries */
@media (max-width: 1280px) {
    .content .contact-container {
        grid-template-columns: 1fr;
    }

    .content .contact-container .map-container {
        order: 1;
        width: 100%;
        height: 600px;
    }

    .content .contact-container .contact-details {
        order: 2;
    }

    .content .contact-container .contact-details {
        align-items: center;
        padding-bottom: 400px;
    }

    .content .contact-container .contact-details h3,
    h4 {
        text-align: center;
    }

    .content .contact-container .contact-details p {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 64px;
        width: 100%;
    }

    .hero .chat-icon {
        display: none;
    }

    .hero .label-group {
        text-align: center;
    }

    .hero .label-group.right {
        text-align: center;
    }

    .hero .button-group {
        flex-direction: column;
        justify-content: center;
        gap: 32px;
    }

    .hero .call {
        letter-spacing: normal;
    }

    .content .experience {
        height: 420px;
    }

    .content .experience p {
        font-size: 64px;
    }

    .content .experience .years {
        font-size: 680px;
    }

    .content .services {
        grid-template-columns: auto auto;
    }

    .content .steps-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .content .step-item {
        min-width: auto;
        max-width: 500px;
    }

    .content .experience p {
        font-size: 48px;
        /* margin-left: 80px; */
    }
}

@media (max-width: 880px) {
    .cookies .button-group.right .btn {
        flex: 1 1 auto;
    }

    .cookies .button-group.right .push {
        margin-right: 0px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 40px;
    }
    .logo-large {
        width: 200px;
        height: auto;
    }
    h1 {
        font-size: 48px;
    }

    .content .image-container {
        grid-template-columns: minmax(40px, auto) minmax(auto, 1120px) minmax(40px, auto);
    }

    .content .services {
        grid-template-columns: auto;
    }

    .content .quote img {
        width: 520px;
        height: auto;
    }

    .content .contact-section {
        margin: 0px 40px;
    }

    .content .contact-container .contact-details {
        padding: 80px 24px 400px 24px;
        align-items: center;
    }

    .content .contact-container .contact-details .contact img {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .navbar .btn.contact {
        padding: 6px 12px;
        font-size: 10px;
    }

    .hero {
        background: url("../images/R.svg") no-repeat 20% 50px;
        background-color: var(--color-dark);
        margin-bottom: 80px;
    }

    .hero .container {
        gap: 32px;
        padding-bottom: 60px;
    }

    .hero .container h1 {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .hero .container h3 {
        font-size: 20px;
    }

    .hero .logo-large {
        margin-bottom: 8px;
    }

    .hero .label-group a {
        font-size: 20px;
    }

    .content .image-container {
        grid-template-columns: minmax(24px, auto) minmax(auto, 1120px) minmax(24px, auto);
    }

    .content .image-container .office-image {
        height: 420px;
    }

    .content .image-container .office-image img {
        width: auto;
        height: 420px;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .content h2 {
        font-size: 32px;
    }

    .content .experience {
        height: 560px;
        padding: 0px 60px;
        margin-bottom: 80px;
    }

    .content .experience p {
        font-size: 40px;
    }

    .content .experience .years {
        font-size: 500px;
    }

    .content .quote {
        margin-bottom: 120px;
    }

    .content .quote img {
        width: 260px;
        height: auto;
        top: -60px;
    }

    .content .quote p {
        font-size: 24px;
    }

    .content .contact-section {
        margin: 0px;
    }

    .content .contact-container .contact-details .label {
        font-size: 14px;
    }

    .content .contact-container .contact-details .contact div a {
        font-size: 16px;
    }

    .content .contact-container .contact-details p {
        font-size: 16px;
    }

    .cookies {
        top: auto;
        bottom: 0px;
        left: 0px;
        right: 0px;
        padding: 24px 0px;
    }
    .cookies .banner-header {
        padding: 0px 24px;
    }
    .cookies .banner-body {
        padding: 0px 24px;
    }
    .cookies .button-group {
        padding: 0px 24px;
        flex-direction: column;
        align-items: stretch;
    }
}
