@import "fonts/Gilroy/stylesheet.css";
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&family=Inter:wght@400;600&display=swap");

* {
    padding: 0px;
    margin: 0px;
    border: none;
}

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

/* Links */
a, a:link, a:visited {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

/* Common */
aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

    input::-ms-clear {
        display: none;
    }

    button, input[type=submit] {
        display: inline-block;
        box-shadow: none;
        background-color: transparent;
        background: none;
        cursor: pointer;
    }

        input:focus, input:active,
        button:focus, button:active {
            outline: none;
        }

        button::-moz-focus-inner {
            padding: 0;
            border: 0;
        }

label {
    cursor: pointer;
}

legend {
    display: block;
}

:root {
    --text-color: #1e1e1e;
    --text-muted: #8d8d8d;
    --text-card-dark-blue: #0d1b39;
    --accent: #e58411;
    --header-text-color: #ffffff;
    --footer-accent: #f6973f;
    --footer-bg: #2d2f33;
    --footer-text-color: rgba(255, 255, 255, 0.8);
    --ui-orange: #e58411;
    --ui-biruza: #00d6c9;
    --ui-gray: #7c7c7c;
    --ui-dark-blue: #0d1b39;
    --font-main: "Gilroy", sans-serif;
    --font-cards: "Inter", sans-serif;
    --font-footer-accent: "DM Sans", sans-serif;
}

html,
body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #F7F3E8;
}

.container {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.container--small {
    max-width: 1094px;
}

.none {
    display: none !important;
}

.title-2 {
    font-weight: 700;
    font-size: clamp(32px, 1.702rem + 1.49vw, 42px);
}

.header {
    position: relative;
    padding-top: 40px;
    background-color: var(--footer-bg);
    background-size: cover;
    height: 120px;
    width: auto;
    color: var(--header-text-color);
}

    .header a {
        color: var(--header-text-color);
    }


.header__nav {
    margin-bottom: clamp(20px, 0.071rem + 5.89vw, 86px);
}

.header__content {
    text-align: center;
}

.header__title {
    margin-bottom: 14px;
    font-weight: 700;
    font-size: clamp(28px, 0.821rem + 4.64vw, 80px);
    text-wrap: balance;
    line-height: 130%; /* 104px */
    letter-spacing: -0.8px;
    text-transform: capitalize;
}

.header__content p {
    margin: 0 auto;
    max-width: 606px;
    opacity: 0.8;
    font-size: clamp(16px, 0.857rem + 0.71vw, 24px);
    line-height: 160%; /* 38.4px */
    text-wrap: balance;
}


.logo {
    font-weight: 700;
    font-size: clamp(18px, 0.946rem + 0.89vw, 28px);
    letter-spacing: 0.28px;
    text-transform: capitalize;
    color: #fff !important;
}

.nav {
    display: grid;
    grid-template-columns: 2fr 8fr 2fr;
    gap: 20px;
}

.nav__logo {
    align-self: center;
}

.nav__btn {
    display: none;
}

@media (max-width: 992px) {
    .nav__btn {
        display: block;
    }
}

.nav-list {
    align-self: center;
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 65px;
    font-weight: 500;
    font-size: 18px;
}

@media (max-width: 992px) {
    .nav-list {
        display: none;
    }
}

.nav-list__item {
    position: relative;
    padding: 10px 0;
}

.nav-list__link {
    transition: opacity 0.1s ease-in;
}

    .nav-list__link:hover {
        opacity: 0.7;
    }

.nav-list__link--dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-list__link--dropdown::after {
        content: url("img/icons/arrow-down.svg");
        height: 18px;
    }

.nav-list__sub-nav {
    opacity: 0;
    width: 160px;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 100%;
    transform: translate(0%, 10%);
    transition: all 0.2s ease-in;
}

.nav-list__item:hover .nav-list__sub-nav {
    pointer-events: all;
    opacity: 1;
    transform: translate(0%, 0%);
}

.sub-nav {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
    font-size: 16px;
}

    .sub-nav a {
        color: var(--footer-text-color);
        transition: color 0.1s ease-in;
    }

        .sub-nav a:hover {
            color: var(--accent);
        }

.cart {
    align-self: center;
    justify-self: end;
    position: relative;
}

.cart__count {
    position: absolute;
    top: 3px;
    right: -6px;
    display: inline-block;
    height: 25px;
    padding: 0 6px;
    border-radius: 40px;
    background-color: var(--accent);
    font-weight: 700;
    line-height: 25px;
    font-family: var(--font-cards);
    font-size: 16px;
}



.footer {
    padding: clamp(60px, 2.024rem + 8.63vw, 118px) 0 56px;
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
}

    .footer a {
        color: var(--footer-text-color);
        transition: opacity 0.1s ease-in;
    }

        .footer a:hover {
            opacity: 0.6;
        }

.footer__grid {
    margin-bottom: clamp(60px, 2.024rem + 8.63vw, 118px);
    display: grid;
    grid-template-columns: 3fr 1fr 2fr 2fr 2fr;
    gap: 60px 20px;
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 4fr 1fr 3fr 3fr;
    }
}

@media (max-width: 629px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer__desc p + p {
    margin-top: 1em;
}

@media (max-width: 629px) {
    .footer__desc {
        grid-column: 1/3;
    }
}

.footer__logo {
    margin-bottom: 29px;
}

.footer__nav--services {
    grid-column-start: 3;
}

@media (max-width: 629px) {
    .footer__nav--services {
        grid-column-start: auto;
    }
}

.footer__nav-title {
    margin-bottom: 20px;
    color: var(--footer-accent);
    font-family: var(--font-footer-accent);
    font-size: 17px;
    letter-spacing: -0.232px;
}

.footer__list {
    display: grid;
    gap: 16px;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 629px) {
    .footer__row {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
}

.footer__copyright {
    font-family: var(--font-footer-accent);
    font-size: 15px;
    letter-spacing: -0.205px;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 629px) {
    .footer__links {
        gap: 20px;
    }
}

.mobile-nav-wrapper {
    display: none;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    padding: 30px 30px;
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
}

    .mobile-nav-wrapper a {
        color: var(--footer-text-color);
        transition: color 0.1s ease-in;
    }

        .mobile-nav-wrapper a:hover {
            color: #fff;
        }

.mobile-nav-wrapper--open {
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-cart {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 22px;
    font-weight: 500;
}

/* Nav */
.mobile-nav {
    display: grid;
    gap: 20px;
    font-size: 22px;
}

/* Sub nav */
.mobile-sub-nav {
    padding: 20px 0 0 20px;
    display: grid;
    gap: 14px;
    font-size: 16px;
}
/*# sourceMappingURL=main.css.map */
:root {
    --primary-color: #010712;
    --secondary-color: #818386;
    --bg-color: #FCFDFD;
    --button-color: #3B3636;
    --h1-color: #3F444C;
}

[data-theme="dark"] {
    --primary-color: #FCFDFD;
    --secondary-color: #818386;
    --bg-color: #010712;
    --button-color: #818386;
    --h1-color: #FCFDFD;
}

* {
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.contact-container {
    display: flex;
    width: auto;
    height: 100vh;
    background: var(--bg-color);
}

.left-col {
    width: 70vw;
    height: 100%;
    background-image: url("./img/icons/sparkling.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.logo1 {
    width: 10rem;
    padding: 1.5rem;
}

.right-col {
    background: var(--bg-color);
    width: 40.5vw;
    height: 100vh;
    padding: 5rem 3.5rem;
}

h1, label, button, .description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

h1 {
    color: var(--h1-color);
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
}

p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 0.01rem;
    width: 40vw;
    margin: 0.25rem 0;
}

label, .description {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.625rem;
}

form {
    width: 31.25rem;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
}

input, textarea, label {
    width: 37vw;
    display: block;
}

p, placeholder, input, textarea {
    font-family: 'Helvetica Neue', sans-serif;
}

    input::placeholder, textarea::placeholder {
        color: var(--primary-color);
    }

input, textarea {
    color: var(--primary-color);
    font-weight: 500;
    background: var(--bg-color);
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    outline: none;
}

textarea {
    resize: none;
}

button {
    text-transform: uppercase;
    font-weight: 300;
    background: var(--button-color);
    color: var(--bg-color);
    width: 10rem;
    height: 2.25rem;
    border: none;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

    input:hover, textarea:hover, button:hover {
        opacity: 0.5;
    }

    button:active {
        opacity: 0.8;
    }

/* Toggle Switch */


.description {
    margin-left: 1.25rem;
}



@media only screen and (max-width: 950px) {
    .logo1 {
        width: 8rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 0.7rem;
    }

    input, textarea, button {
        font-size: 0.65rem;
    }

    .description {
        font-size: 0.3rem;
        margin-left: 0.4rem;
    }

    button {
        width: 7rem;
    }

    .theme-switch-wrapper {
        width: 120px;
    }

    .theme-switch {
        height: 28px;
        width: 50px;
    }

        .theme-switch input {
            display: none;
        }

    .slider:before {
        background-color: #fff;
        bottom: 0.25rem;
        content: "";
        width: 20px;
        height: 20px;
        left: 0.25rem;
        position: absolute;
        transition: .4s;
    }

    input:checked + .slider:before {
        transform: translateX(16px);
    }

    .slider.round {
        border-radius: 15px;
    }

        .slider.round:before {
            border-radius: 50%;
        }
}
