body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    font-family: "Inter", sans-serif;
    margin: 0 auto;
}

img.logo{
    height: 25px;
}
/**************************/
.showno{
    display: none;
}
.signup {
    width: 100%;
    /* height:50px; */
    background-color: white;
    border: 4px solid white;
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.11);
    border-radius: 100px;
    margin: auto;
}

#email-entry {
    height: 40px;
    background-color: black;
    padding: 0px 5px 0px 10px;
    width: calc(100% - 139px);
    caret-color: #fc4e03;
    background-color: white;
    font-size: 20px;
    color: #383838;
    outline-style: none;
    border: none;
    border-radius: 100px;
}

#name-entry {
    height: 40px;
    background-color: black;
    padding: 0px 5px 0px 10px;
    width: calc(100% - 15px);
    caret-color: #fc4e03;
    background-color: white;
    font-size: 20px;
    color: #383838;
    outline-style: none;
    border: none;
    border-radius: 100px;
}

#btn {
    height: 40px;
    width: 124px;
    background-color: #fc4e03;
    border: none;
    font-size: 18px;
    border-radius: 100px;
    float: right;
    color: #fff;
}

#btn:hover {
    background-color: #e34602;
    cursor: pointer;
}

#email-signup:hover {
    background-color: #f2f2f2;
}

#email-signup:focus {
    background-color: #f2f2f2;
}

.card {
    font-family: "Open Sans", serif;
    text-align: center;
    /* width:500px; */
    color: white;
    height: auto;
    background: #f12711;
    background: -webkit-linear-gradient(45deg, #f5af19, #f12711);
    background: linear-gradient(45deg, #f5af19, #f12711);
    border-radius: 0.3rem;
    box-shadow: 2px 2px 12px 6px rgba(0, 0, 0, 0.11);
    padding: 50px;
}

#spam {
    color: #f2f2f2;
    font-size: 1.5em;
    padding: 3px;
}

div.card h1 {
    font-weight: 400;
    color: #fff;
    font-size: 2em;
}

/*******************************/
.box {
    width: 90%;
    margin: 0 auto;
    /* background: rgba(255,255,255,0.2); */
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
}
button.cta_btn a{
    color: #371789;
    background: none;
    &:hover{
        text-decoration: none;
    }
}
button.cta_btn h2{
    font-size: 2.5em;
    margin: 0;
}
button.cta_btn {
    width: 100%;
    border-radius: 10px;
    background: #FCC838;
    background: -webkit-linear-gradient(45deg, #FCA636, #FCC838);
    background: linear-gradient(45deg, #FCA636, #FCC838);
    box-shadow: 3px 6px 12px 0 rgba(0, 0, 0, 0.11);
    border: 0;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    &:hover{
        background: -webkit-linear-gradient(45deg, #f5b427, #eba523);
    background: linear-gradient(45deg, #f5b429, #f5cf28);
        }

    
}



.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    /* transition: opacity 500ms; */
    visibility: hidden;
    opacity: 0;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    position: relative;
    /* transition: all 5s ease-in-out; */
}

.popup h2 {
    margin-top: 0;

}

.popup .close {
    position: absolute;
    top: 25px;
    right: 35px;
    /* transition: all 200ms; */
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
}

.popup .close:hover {
    color: #311e00;
}

.popup .content {
    max-height: 30%;
    overflow: auto;
}

@media screen and (max-width:750px) {
    .card {
        padding: 30px;
    }

    div.card h1 {
        font-size: 1.8em;
    }

    .popup,
    .box {
        width: 75%;
    }
}



/****************************/
span.highlight,
a.highlight {
    color: #FFB900;
}

.topd {
    background: #1C1C1C;
    color: #fff;
    display: flex;
    border-bottom: #fff 2px solid;
    align-items: center;
    padding: 15px 7%;
    justify-content: space-between;

}

.topd h1 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0;
}

.hero {
    background: #1C1C1C;
    padding: 0 7%;
    margin: 0;
    height: 90vh;
    text-align: center;
}

.hero img {
    margin-top: 50px;
    width: 80%;
    border: #fff 2px solid;
    border-radius: 5px;
}

a {
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

/** CONTACT FORM **/
form.contact_form{
    padding: 2px 5%;
}
input[type="text"], input[type="email"], textarea{
    border-radius: 5px;
    background: 0;
    border: 1px solid #c3c3c3;
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 5px;
}

form label{
    font-weight: 500;
}

.two_col_div{
    width: 100%;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
@media screen and (max-width: 570px) {
    .two_col_div{
    gap: 15px;
}    
}
.two_col_div div{
    flex: 1;
}


form button{
    font-size: 1em;
    text-align: center;
    border-radius: 7px;
    background: 0; 
    padding: 10px 50px;
    margin-top: 25px;
    border: 0;
    background: #0371de;
    color: #fff;
    cursor: pointer;
    &:hover{
        background: #0a5eb1;
    }
}

footer {
    font-size: .8em;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    min-height: 50px;
    width: 86%;
    background: #1C1C1C;
    color: #fff;
    display: flex;
    border-top: #292929 1px solid;
    padding: 5px 7%;
    justify-content: space-between;
    align-items: center;
}

.footer_bttm {
    width: 94%;
    font-size: .8em;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    margin-top: auto;
    background: #1C1C1C;
    color: #fff;
    display: flex;
    padding: 15px 3% 15px 3%;
}

footer ul {
    margin: 0;
    display: flex;
    list-style-type: none;
    align-items: flex-end;
}

footer ul li {
    margin-left: 20px;
}

footer a {
    color: #fff;

}

.container {
    display: flex;
    color: #373737;
    padding: 50px 5% 100px 5%;
}

.container h1 {
    color: #1C1C1C;
    /* color: #337AB7; */
    font-size: 2.7em;
    font-family: "Poppins", sans-serif;
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
}

main h2, main h3 {
    color: #202020;
    font-size: 2em;
    margin-bottom: 0;
}

.container a {
    color: #2473b8;
}

main {
    flex: 1;
    margin-right: 15px;
}
main p{
    font-size: 1.5em;
    margin-top: 5px;
}
aside {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

aside img {
    max-width: 90%;
}

@media screen and (max-width:1130px) {
    .container {
        padding: 50px 3%;
    }

    aside {
        width: 288px;
    }

    .container h1 {
        font-size: 2.2em;
    }

    .hero {
        padding: 0 2% 30px 2%;
        height: auto;
    }
}

@media screen and (max-width:900px) {
    aside {
        width: 200px;
    }

    .container h1 {
        font-size: 1.9em;
    }

    main h2 {
        font-size: 1.5;
    }
}

@media screen and (max-width:815px) {
    footer {
        flex-direction: column;
    }
}

@media screen and (max-width:725px) {
    .container {
        flex-direction: column;
    }

    aside {
        display: none;
    }
}