:root {
    --font-family: "Montserrat", sans-serif;
    --second-family: "Forum", sans-serif;
    --third-family: "Bebas Neue", sans-serif;
    --main-family: "Helvetica Neue", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

a {
    display: contents;
    color: inherit;
    text-decoration-line: inherit;
}

ul {
    list-style-type: none;
}

html {
    scroll-behavior: smooth;
    font: 400 2.3364485981vw/1.33 var(--font-family), sans-serif;
    font-weight: 400;
    line-height: 2rem;
    color: #fff;
}

@media (min-width: 428px) {
    html {
        font: 400 10px var(--font-family), sans-serif;
    }
    body{
        max-width: 428px;
    }
}

body {
    background: #fff;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 143%;
    max-width: 428px;
}

h1 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 11rem;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

section {
    padding-top: 8rem;
}

.container {
    padding-left: 3rem;
    padding-right: 3rem;
    margin: 0 auto;
}

.full-width {
    margin-left: -4.6rem;
    padding-left: 4.6rem;
    padding-right: 4.6rem;
}

.title {
    font-family: var(--main-family);
    font-weight: 400;
    font-size: 4.5rem;
    line-height: 111%;
    text-align: center;
    color: #FF258D;
}

.subtitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 143%;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: #626262;
}

.btn-link {
    display: inline-block;
    width: 100%;
    /* height: 9.5rem; */
    margin: 0 auto;
}

.btn {
    border-radius: 1rem;
    width: 36.8rem;
    height: 9rem;
    background: #FFB000;
    border: none;
    font-family: var(--main-family);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 167%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 430px) {
    .btn{
        width: 100%;
    }
}

.btn img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 33.6rem;
    transform: translateX(-50%);
}

.btn p {
    position: relative;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 138%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding-top: 3.5rem;
}

.btn1 {
    margin: 1rem 0 7.2rem 0;
}

.underline {
    text-decoration-line: underline !important;
    display: inline-block;
}

.bold {
    font-weight: 600;
}

.accent {
    font-weight: 600;
}

#shadow-host-companion {
    padding: 0 !important;
}

.bg1 {
    position: relative;
    background-image: url(../images/hero_new.jpg);
    background-size: 100% auto;
    background-position: 0 0px;
    background-repeat: no-repeat;
    overflow: hidden;   
}
  
.bg1::after {
    content: '';
    position: absolute;
    top: 402px;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to top, #ffffff, #ffffff89, #ffffff00);
    pointer-events: none;
}

/*.bg2 {
    background-image: url(../images/bg2.svg);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}*/

.fixed-btn {
    z-index: 10;
    position: fixed;
    bottom: -0.3rem;
    transform: translate(-50%);
    height: 11rem;
    left: 50%;
    width: 100%;
    padding: 1.3rem 3.8rem 1.3rem 3.8rem;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    background: rgba(37, 37, 37, 0.5);
    max-width: 428px;
    display: none;

}

.fixed-btn .btn {
    height: 6.5rem;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0, 0.99, 0.8, 0.8);
}
.modal.show {
    visibility: visible;
    z-index: 10;
    opacity: 1;
    top: 25%;
}
.modal .overlay {
    position: absolute;
    top: -24rem;
    width: 100%;
    max-width: 42.8rem;
    height: 150%;
    background-color: #000000;
    opacity: 0.7;
    z-index: -1;
}
.x-center{
    left: 50%;
    transform: translate(-50%);
    position: fixed;
}