:root {
    --letter_spacing: 0.38px;
}

@font-face {
    font-family: "LemonGrotesk";
    src: url("fonts/Lemon-Grotesk/Regular/LemonGrotesk-Regular.woff2") format("woff2"),
        url("fonts/Lemon-Grotesk/Regular/LemonGrotesk-Regular.woff") format("woff"),
        url("fonts/Lemon-Grotesk/Regular/LemonGrotesk-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "LemonGrotesk";
    src: url("fonts/Lemon-Grotesk/Bold/LemonGrotesk-Bold.woff2") format("woff2"),
        url("fonts/Lemon-Grotesk/Bold/LemonGrotesk-Bold.woff") format("woff"),
        url("fonts/Lemon-Grotesk/Bold/LemonGrotesk-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "LemonGrotesk", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    font-family: "LemonGrotesk", sans-serif;
    /* overflow: hidden; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.main-screen {
    width: 100%;
    height: 100dvh;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 140px;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo-container img {
    display: none;
    max-width: 110px;
}

.about-content,
.about-content-mob {
    max-width: 507px;
    text-align: left;
    color: #8e000e;
    line-height: 1.5;
    font-size: 13px;
    letter-spacing: var(--letter_spacing);
}

.about-text:not(:last-child) {
    margin-bottom: 32px;
}

.footer {
    display: none;
    margin-top: auto;
    padding-bottom: calc(24px - 6px);
    text-align: center;
    /* margin-right: 58px; */
    margin-right: auto;
}

.ftr-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2px;
}

li.ftr-menu-item {
    list-style: none;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: var(--letter_spacing);
    color: #8e000e;
    cursor: pointer;
    position: relative;

    background-color: transparent !important;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    /* Removes tap highlight on mobile */
    -webkit-focus-ring-color: transparent;
}

li.ftr-menu-item:focus,
li.ftr-menu-item:active,
li.ftr-menu-item:hover,
li.ftr-menu-item:focus-visible {
    outline: none;
    background-color: transparent;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    /* Removes tap highlight on mobile */
    -webkit-focus-ring-color: transparent;
}

li.ftr-menu-item a {
    display: block;
    color: #8e000e;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: var(--letter_spacing);

    background-color: transparent !important;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    /* Removes tap highlight on mobile */
    -webkit-focus-ring-color: transparent;
}

li.ftr-menu-item a:focus,
li.ftr-menu-item a:active,
li.ftr-menu-item a:hover,
li.ftr-menu-item a:focus-visible {
    background-color: transparent !important;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    /* Removes tap highlight on mobile */
    -webkit-focus-ring-color: transparent;
}

.ftr-menu-item {
    position: relative;
}

.ftr-menu-item.active::before {
    content: "";
    color: black;
    font-size: 1em;
    margin-right: 0px;
    background-color: #8e000e;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    left: -10px;
    top: calc(50% - 2px);
    transform: translateY(-50%);
}

/* services */
.service-one,
.service-two {
    display: flex;
    gap: 40px;
}

.info {
    display: flex;
    gap: 11px;
}

.form-container {
    /* min-width: 270px; */
}

hr {
    border-color: red;
    margin-top: 13px;
    margin-bottom: 14px;
    width: 161px;
}

.info-one {
    margin-bottom: 90px;
}

/* .service-one {
    margin-bottom: 30px;
} */

.serv-txt {
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: var(--letter_spacing);
    color: #8e000e;
    text-decoration: none !important;
}

section.services-content {
    /* margin-right: 70px; */
    /* margin-right: -45px; */
}

.info-content {
    margin-left: calc(-1 * (90px + 11px));
}

p.serv-txt.serv-left {
    width: 91px;
}

.about-content,
.services-content,
.info-content,
.first-slide,
.second-slide {
    overflow: hidden;
    height: 0;
    opacity: 0;
    /* transition: height 0.6s ease, opacity 0.6s ease; */
}

.show-section {
    height: auto;
    opacity: 1;
}

.not-valid {
    visibility: hidden;
}

/* Mobile slider styles */
.about-content-mob {
    position: relative;
    /* padding-bottom: 40px; */
}

.text-slider {
    width: 100%;
    height: 150px;
}

.text-slide {
    /* margin-bottom: 20px; */
    outline: none;
    min-height: 120px;
}

/* Hide slick dots on mobile slider */
.about-content-mob .slick-dots {
    display: none !important;
}

.about-mobile {
    display: none;
}

input,
textarea,
select {
    -webkit-appearance: none;
    border-radius: 0px;
    /* or whatever curve you want */
}

button.submit-btn {
    cursor: pointer;
    background: transparent;
    color: white;
    padding: 0px 0;
    border: none;
    border-radius: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    color: #8e000e;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: var(--letter_spacing);
}

form#mailchimp-form {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0;
}

.slide-counter {
    /* position: absolute; */
    bottom: -40px;
    left: 0px;
    font-size: 13px;
    color: #8e000e;
    margin-top: 40px;
}

@media (max-width: 2420px) {
    .logo {
        margin-bottom: 25%;
    }
}

@media (max-width: 1560px) {
    .logo {
        margin-bottom: 15%;
    }
}

@media (max-width: 767px) {
    .logo {
        margin-bottom: 25%;
    }
}

@media (max-width: 900px) {

    .about-content,
    .about-content-mob {
        max-width: 390px;
        text-align: left;
        color: #8e000e;
        line-height: 1.5;
        font-size: 13px;
    }

    .footer {
        /* margin-right: 25px; */
    }
}

@media (max-width: 768px) {

    .about-content,
    .about-content-mob {
        max-width: 334px;
    }
}

@media (max-width: 550px) {

    .about-content,
    .serv-left {
        /* display: none; */
    }

    .info {
        flex-direction: column;
        gap: 32px;
    }

    .info.info-two {
        gap: 0;
    }

    .info.info.info-two p.serv-txt.serv-left {
        margin-bottom: calc(26.5px - 17px);
    }

    p.serv-txt.serv-left {
        width: fit-content;
    }

    .about-mobile {
        display: block;
    }

    section.services-content {
        /* margin-right: 0px;
        margin-left: 56px; */
    }

    .info-content {
        margin-left: 0px;
    }

    .about-content-mob {
        position: relative;
        max-width: 184px;
        height: auto !important;
    }

    .text-slider {
        width: 100%;
        height: 100%;
    }

    .info-content {
        /* margin-right: -10px; */
    }

    .footer {
        /* margin-right: 55px; */
    }

    section.info-content {
        /* margin-right: -109px; */
    }

    form#mailchimp-form {
        flex-direction: column;
        /* row-gap: 10px; */
    }

    .info-one {
        margin-bottom: 57px;
    }

    button.submit-btn {
        margin-bottom: 0px;
        margin-left: 0px;
    }

    input[type="email"] {
        margin-bottom: 15px !important;
    }
}

/* site css */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column;
}

.gap-0\.5 {
    gap: 2px;
}

.position-relative {
    position: relative;
}

.width-fit-content {
    width: fit-content;
}

.z-1 {
    z-index: 1;
}

/* Site Left and Right Buttons */
main {
    position: relative;
}

.home-gallery-nav {
    display: none !important;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.home-gallery-nav .prev {
    cursor: e-resize;
    width: 100%;
    height: 100%;
}

.home-gallery-nav .next {
    cursor: e-resize;
    width: 100%;
    height: 100%;
}

.loader_wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
}