:root {
    --color: #000000;
    --bg-color: #FFFFFF;
    --margin: 2.083vw;
    --pink: rgb(213, 60, 137);
    --orange: #D45622;
}

@media all and (max-width:768px) {
    :root {
        --color: #000000;
        --bg-color: #FFFFFF;
        --margin: 15px;
    }
}

body,
html {
    font-weight: 400;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--color);
    background-color: var(--bg-color);
    height: auto;
    -moz-osx-font-smoothing: grayscale;
    /*(For Firefox)*/
    -webkit-font-smoothing: antialiased;
    /*(For Chrome and Safari)*/
    font-style: normal;
    font-display: swap;
    position: relative;
    touch-action: auto;
    height: auto;
    font-family: "Public Sans", sans-serif;
    font-size: 14px;
}

@media all and (max-width: 576px) {

    body,
    html {
        font-size: 16px;
    }
}



body main,
body header,
body footer {
    z-index: 3;
    position: relative;
}

body * {
    box-sizing: border-box;
}

/*HEADER*/
body header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: calc(var(--margin)* 0.25) var(--margin);
    z-index: 999;
    display: none;
}

header.main-header .main-header__wrapper {
    background-color: var(--bg-color);
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 75px;
    border-radius: 4px;

}

body header img {
    width: 180px;
}

*:not(img)::selection {
    background-color: var(--orange);
    color: var(--bg-color);
    opacity: 1;
}

body header svg {
    width: 180px;
}

body header svg path {
    /*fill:var(--pink);*/
}

.container-intro {
    min-height: 100vh;
    min-height: 100svh;

    padding: var(--margin);
    /*padding-top: 200px;*/
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

@media all and (max-width: 980px) {
    .container-intro {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-end;
    }
}

.container-intro:before {
    display: block;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";

    z-index: 2;
}

.container-intro .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--pink);
}

.container-intro h1,
.bg img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    text-transform: uppercase;
    color: var(--orange);
    z-index: 2;
    filter: blur(10px);
    line-height: 160%;
}

@media all and (max-width: 600px) {

    .container-intro h1,
    .bg img {
        filter: blur(6.5px);

    }
}

.bg iframe {
    width: 56.25vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 177.77vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg img {
    width: 40%;
    height: 40%;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    top: 50%;

    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

@media all and (max-width: 980px) {
    .bg img {
        width: 35%;
        height: 35%;
        transform: translate(-50%, -75%);
    }
}

@media all and (max-width: 600px) {
    .bg img {
        width: 35%;
        height: 35%;
        transform: translate(-50%, -100%);
    }
}

.intro {
    width: 100%;
    margin-bottom: var(--margin);
    z-index: 9;
    color: var(--bg-color);
}

.home-newsletter-form {
    position: relative;
    z-index: 3;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: var(--margin);
}

@media all and (max-width: 980px) {
    .home-newsletter-form {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        margin-bottom: var(--margin);
    }
}

.form-content__input {
    display: flex;

}

.home-newsletter-form input[type="email"] {
    appearance: none;
    border: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    color: var(--bg-color);
    flex: 1 1 auto;
    margin-right: 10px;
    background-color: transparent;
}

.home-newsletter-form input[type="email"]::placeholder {
    color: var(--bg-color);

}

.social-listing {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: var(--margin);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

@media screen and (max-width: 980px) {
    .social-listing {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: calc(var(--margin)*2);
    }
}

.email-contact {
    margin-bottom: var(--margin);
}

.email-contact a {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: var(--bg-color);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 600px) {
    .email-contact a {
        font-size: 1.5rem;
    }
}

.email-contact a:hover {
    color: var(--orange);
}

.social-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--margin);
}

.social-nav a {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg-color);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-nav a:hover {
    color: var(--orange);
}

/*FONTS*/
h1 {
    font-size: 11vw;
    font-family: bd-supper, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--bg-color);
}

h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 112.5%;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 20px;
}

@media screen and (min-width: 576px) {
    h3 {
        font-size: calc(18.6666666667px + 0.9259259259vw);
    }
}


.btn {
    appearance: none;
    margin: 0;
    border: none;
    font-size: 0.875rem;
    min-height: 40px;
    padding: 8px 20px;
    border-radius: 25vw;
    font-weight: 500;
    font-family: "Public Sans", serif;
    text-decoration: none;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: normal;
    color: var(--color);
    background-color: transparent;
    position: relative;
    border-radius: 40px;
    background-color: transparent;
    overflow: hidden;
    align-items: center;
    display: inline-flex;
    z-index: 2;
    cursor: pointer;
}

.btn:before,
.button:before,
.wc-block-components-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    border-radius: 20px;
    border: 1px solid #FFF;
    z-index: -1;
    background: radial-gradient(ellipse at 35.76% 0%, var(--orange) 28%, #FFFFFF 49.5%, var(--orange) 81%);
}

.btn:after,
.button:after,
.wc-block-components-button:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    border-radius: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    z-index: -1;
}

.gdpr {
    width: 100%;
    padding: 15px 0;
    padding-bottom: 0;
    color: var(--bg-color);

}

.gdpr input {
    display: none
}

.gdpr input+label {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0px;
    text-align: left;
    position: relative;
    padding-left: 15px;
    display: flex;
}

.gdpr input+label:hover {
    cursor: pointer
}

.gdpr input+label p {
    margin: 0;
    padding: 0;
    font: inherit
}

.gdpr input+label p a {
    font: inherit;
    text-decoration: underline;
    color: var(--bg-color);

}

.gdpr input+label:before {
    width: 8px;
    height: 8px;
    border: solid 1px var(--bg-color);
    content: "";
    display: block;
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    top: 50%;
    transition: background-color .15s ease-in-out;
    border-radius: 100%;
}

.gdpr input:checked+label::before {
    background-color: var(--color)
}

.success-message {
    display: none;
}

.success-message .success-message__inner {
    padding: 10px;
    background-color: var(--orange);
    color: var(--bg-color);
    border-radius: 6px;
}

.success-message .success-message__inner p {
    margin: 0;
    padding: 0;
    color: var(--bg-color);
    font-size: 12px;
}

/*FOOTER*/