@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');


:root {
 
  --font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
    "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
    "Fira Mono", "Droid Sans Mono", "Courier New", monospace;

    ---background-color: #EED9D4;
    ---headings: #42a37c;
    ---text: #7F9DB7;

    ---border-color: #9FBDB1;
    ---border-color-strong: #244b3b;
    ---border-color-strong-hover: #2d5f4a;


    ---font: "Bodoni Moda", serif
}


.flex-row{
    display: flex;
    flex-direction: row;
}


body{
    margin: 0;
    padding: 0;
}


.main{
    /* background-color: var(---background-color); */
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 30dvh;
    font-family: var(---font);
}

.expo-exclusive h1{
    font-weight: 800;
    color: var(---headings);
}

.expo-exclusive h2{
    font-weight: 700;
    color: var(---headings);

}

.expo-exclusive a{
    font-weight: 700;
    text-decoration: none;
    color: var(---border-color-strong);
}

.expo-exclusive-card{
    border: 2px solid var(---border-color);

}


.expo-exclusive-card div{
    width: 100%;
    /* border: 1px solid red; */
    position: relative;
}

.expo-exclusive-card div:nth-child(2){
    padding: 2rem 3rem 0 2rem;
}

.exclusive-offer-cta{
    
    background-color: var(---border-color-strong);
    color: white !important;
    text-decoration: none;
    padding: .5rem 2rem;
    transition: .1s;
    position: absolute;
    bottom: 3rem;
}

.exclusive-offer-cta:hover{
    background-color: var(---border-color-strong-hover);
    
}



.grid-img img{
    height: 100%;
}



























.formContainer{
    background-color: white;
    width: 100%;
    border: 2px solid var(---border-color);
    /* background-color: rgb(96, 85, 85); */
    min-height: 35rem;
    /* min-width: 40rem; */
    display: flex;
    align-items: center;
}

.formContainer div {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    /* background-color: rgba(255, 0, 0, 0.06); */
    /* border: 1px solid rebeccapurple; */

}


.imgContainer{
    height: 20rem !important;
    width: 15rem !important;
    border: 5px solid var(---border-color);
    position: relative;
}

.img1{
    position: absolute;
    top: -3rem;
    left: -3rem;
    height: 18rem;
}

.img2{
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    height: 14rem;
    /* transform: rotate(90deg); */
}

.form h1{
    color: var(---headings );
}

.form{
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    
}

.form input{
    height: 2.5rem;
    width: 18rem;
    margin: .8rem 0;
    padding: 0 0 0 1rem;
    border: none;
    background-color: #f1f1f1;
    font-family: var(---font);
    font-size: .9rem;

    border-bottom: 2px solid var(---border-color);
    /* border-left: 2px solid var(---border-color); */
    color: var(---border-color-strong);
}



.form label{
    display: none;
}

.submit{
    background-color: var(---border-color-strong) !important;
    color: white;
    font-size: 1.1rem;
    height: 2.5rem;
    width: 100%;
    border: none;
    font-family: var(---font);
    cursor: pointer;
    margin-top: 1rem;

}

.thank-you-h1{
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
}











@media only screen and (max-width:767px) {

    .main{
        padding: 0;
    }
    
    .formContainer{
        
        flex-direction: column;
        border: none;
    }

    .formContainer div:nth-child(1){
        display: none;
    }

    .grid-img{
        display: none;
    }

    .expo-exclusive-card div{
        padding: 0 3rem;
    }

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

    .expo-exclusive-card div:nth-child(2) {
        padding: 0 !important;
        min-height: 50rem;
    }

    .expo-exclusive h1{
        font-size: 1.5rem;
        /* font-weight: 800; */
        margin-top: 8rem;
        /* width: 100%; */
    }
    
    .expo-exclusive h2{
        font-size: 1.2rem;
        /* font-weight: 700; */

        margin-bottom: 3rem;
    }

    .exclusive-offer-cta{
    
        width: 81dvw;
        text-align: center;
    }
}

