.page {
    width: 100%;
}

.hero {
    width: 100%;
    padding-top: 20px;
    background: linear-gradient(135deg, #00A2AD, #81CED3 60%, #F9F7F6);
    position: relative;
    overflow: hidden;
}

.overlayBackground {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.ob1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--orange);
    background: #F6A80161;
    box-shadow: 5px 0 100px 80px #F6A80161;
    filter: blur(5px);
    position: absolute;
    bottom: -170px;
    left: -170px;
}


.ob2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f6da87a8;
    box-shadow: 0px 0 100px 80px #f6da87a8;
    position: absolute;
    top: -100px;
    right: -100px;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    display: flex;
    z-index: 2;
}

.contentLeft {
    width: 55%;
    padding-top: 100px;
    color: var(--background);
}

.contentLeft h1 {
    font-size: 5.6em;
    font-weight: 400;
    line-height: 110%;
    font-weight: 500;
    font-family: "Roboto Serif", serif;
}

.contentLeft h2 {
    margin-top: 15px;
    margin-bottom: 90px;
    font-size: 2.4em;
    font-weight: 400;
    /* letter-spacing: 1px; */
}

.contentLeft p {
    font-size: 1.6em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contentCta {
    margin-top: 10px;
    display: flex;
    gap: 20px
}

.contentCta button {
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 1.4em;
}


.contentCta button:last-child {
    border: 1px var(--background) solid;
    background: transparent;
    color: #fff;
}



.contentRight {
    width: 45%;
    display: flex;
    justify-content: end;
}

.iphone {
    width: 70vw;
    height: auto;
    max-width: 300px;
    aspect-ratio: 9/18;
    background: #000;
    border: 5px solid #000;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.iphone img {
    object-position: bottom;
}

.smaller_iphone {
    width: 250px;
    height: 500px;
}

.screen {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
}

.notch {
    width: 120px;
    height: 20px;
    background: #000;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1100px) {

    .contentLeft h1 {
        font-size: 5em;
        font-weight: 400;
        line-height: 110%;
        font-weight: 500;
    }
    .contentRight{
        width: 45%;
    }
}

@media (max-width: 820px) {
    .hero {
        padding-top: 0px;
    }

    .content {
        flex-direction: column;
        padding-left: 24px;
        padding-right: 24px;
    }

    .contentLeft {
        width: 100%;
        margin-bottom: 90px;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .contentLeft h1 {
        text-align: left;
        margin-bottom: 15px;
    }

    .content h2 {
        margin-bottom: 80px;
        text-align: left;
    }

    .content p {
        text-align: left;
        font-size: 1.8em;
    }

    .contentRight {
        width: 100%;
        justify-content: center;
    }

    .ob2 {
        top: -250px;
        right: -250px;
    }

    .contentCta button {
        width: 150px
    }
}
@media (max-width: 650px) {
    .contentLeft h1{
        font-size: 4em;
        margin-bottom: 0px;
    }
    .contentCta {
        width: 100%;
        flex-direction: column;
    }

    .iphone{
        max-width: 230px;
    }    
}

/* SECTION 1 */
.section1 {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}

.section1 h2 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 40px;
}

.section1Content {
    width: 100%;
    display: flex;
    align-items: center;
}

.section1_Left {
    width: 30%;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.section1_Right {
    width: 70%;
    padding-left: 10%;
}

.sr1Text {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.sr1img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 20px;
}

.sr1img svg {
    width: 80px;
    height: 80px;
    color: var(--orange);
}

.sr1TC {
    margin-left: 20px;
}

.sr1TC header {
    font-size: 2em;
    font-weight: 600;
    color: var(--dark-blue);
}

.sr1TC p {
    font-size: 1.7em;
    font-weight: 100;
}

@media (max-width: 800px) {
    .section1 {
        width: 100%;
        padding: 70px 25px;
    }

    .section1Content {
        flex-direction: column;
    }

    .section1_Left {
        display: none;
    }

    .section1_Right {
        width: 100%;
    }

    .section1 h2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .section1_Right {
        margin-top: 50px;
        width: 100%;
        padding-left: 0px;
    }
    .sr1Text{
        align-items: start;
    }
    .sr1img {
        margin-right: 0;
        width: 40px;
        height: 40px;
    }

    .sr1img svg {
        width: 40px;
        height: 40px;
    }
    .sr1TC{
        margin-left: 15px;
    }
    .sr1TC header{
        font-size: 1.8em;
    }
}


/* SECTION 2 */
.section2 {
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--sky-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section2 h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 40px;
}

.section2 p {
    max-width: 800px;
    text-align: center;
    margin: 20px auto;
    font-size: 2.5em;
    font-weight: 300;
}

.section2 p span {
    color: var(--deep-blue);
    font-weight: 800;
}




/* CONTACT */
.contact {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact h2 {
    font-size: 2.4em;
    margin-bottom: 50px;
}

.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact_form .elem {
    width: 48%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.contact_form label {
    font-size: 1.5em;
    margin-bottom: 7px;
}

.contact_form input {
    height: 40px;
    padding: 3%;
    border: 1px #ddd solid;
    border-radius: 10px;
    background-color: transparent;
}


.contact_form .elemwide {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.contact_form textarea {
    height: 120px;
    border: 1px #ddd solid;
    border-radius: 10px;
    background-color: transparent;
}

.contact button{
    padding: 10px 55px;
}

@media (max-width: 850px) {
    .contact{
        padding: 80px 50px;
    }
}

@media (max-width: 700px) {
    .contact_form .elem {
        width: 100%;
    }
}


@media (max-width: 650px) {
    .contact{
        padding: 80px 35px;
    }
}