/*---------------------Roots-----------------*/

:root {
    ---blue: #4077FF;
    ---white: #ffffff;
    ---black: #1D1D1D;
    ---border: #AEAEAE;
}

/*---------------------Roots-----------------*/


.hero {
    position: relative;
    overflow: hidden;
    background-image: url(img/background\ image.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100vh;
    
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 150px;
    height: 900px;
    min-height: 100vh;
}

.hero .container .left {
    display: flex;
    height: 80%;
    width: 550px;
    justify-content: space-between;
    flex-direction: column;
}

.hero .container .left .review {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 330px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.hero .container .left .review span {
    font-weight: 600;
    font-size: 32px;
    color: var(---black);
    margin-right: 10px;
}

.hero .container .left .review #reviewcard {
    position: absolute;
    top: -48px;
}

.hero .container .left .topheading h1 {
    font-weight: 700;
    font-size: 37px;
}

.hero .container .left .topheading button {
    width: 100%;
    height: 60px;
    background: var(---blue);
    border-radius: 12px;
    color: var(---white);
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    margin-top: 10px;
}

.hero .container .left .topheading button:hover {
    background: transparent;
    color: var(---blue);
    border: 1px solid var(---blue);
}

.hero .container .heroimage {
    position: relative;
    transform-origin: center center;
    width: 750px;
    height: 850px;
}

.hero .container .heroimage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transform: scale(1);
    transform-origin: center center;
    will-change: transform, opacity;
}

.hero .container .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    width: 415px;
}

.hero .container .right p {
    width: 415px;
    line-height: 35px;
}

.hero .container .right .socialmedia {
    display: flex;
    margin-top: 20px;
}

.hero .container .right .socialmedia i {
    font-size: 30px;
    color: var(---black);
    background: #ffffff2d;
    padding: 15px 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    margin-right: 10px;
    cursor: pointer;
}

.hero .container .right .socialmedia i:hover {
    color: var(---blue);
}












@media (max-width:1850px) {
    .hero .container .left .topheading h1 {
        font-size: 40px;
    }

    .hero .container .right img {
        width: 350px;
        height: 200px;
    }

    .hero .container .right {
        width: 350px;
    }

    .hero .container .right p {
        width: 350px;
    }

    .hero .container .heroimage {
        width: 650px;
        height: 700px;
    }

    .hero .container {
        padding-top: 150px;
        height: 700px;
    }
}

@media (max-width:1450px) {
    .hero .container .left .topheading h1 {
        font-size: 40px;
    }

    .hero .container .right img {
        width: 350px;
        height: 200px;
    }

    .hero .container .right {
        width: 350px;
    }

    .hero .container .right p {
        width: 350px;
    }

    .hero .container .heroimage {
        width: 650px;
        height: 700px;
    }

    .hero .container {
        padding-top: 150px;
        height: 700px;
    }
}

@media (max-width:1280px) {
    .hero .container .left .topheading h1 {
        font-size: 35px;
    }

    .hero .container .right img {
        width: 100%;
        height: 180px;
    }

    .hero .container .right {
        width: 350px;
    }

    .hero .container .right p {
        width: 300px;
        font-size: 12px;
        line-height: 25px;
    }

    .hero .container .heroimage {
        width: 600px;
        height: 600px;
    }

    .hero .container {
        padding-top: 150px;
        height: 600px;
    }

    .hero .container .right .socialmedia i {
        font-size: 25px;
        color: var(---black);
        background: #ffffff2d;
        padding: 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        margin-right: 10px;
    }

    .hero .container .left .review {
        width: 300px;
        height: 80px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        border-radius: 24px;
    }

    .hero .container .left {
        width: 300px;
    }

}

@media (max-width:1050px) {
    .hero .container .left .topheading h1 {
        font-size: 25px;
    }

    .hero .container .left .topheading button {
        width: 100%;
        height: 50px;
        border-radius: 10px;
        font-size: 16px;
        margin-top: 10px;
    }

    .hero .container .right img {
        height: 180px;
    }

    .hero .container .right {
        width: 250px;
    }

    .hero .container .right p {
        width: 100%;
        font-size: 12px;
        line-height: 25px;
    }

    .hero .container .heroimage {
        width: 550px;
        height: 550px;
    }

    .hero .container {
        padding-top: 150px;
    }

    .hero .container .right .socialmedia i {
        font-size: 20px;
        color: var(---black);
        background: #ffffff2d;
        padding: 12px 12px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        margin-right: 10px;
    }

    .hero .container .left .review {
        width: 200px;
        height: 60px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        border-radius: 10px;
    }

    .hero .container .left {
        width: 250px;
    }

    .hero .container .left .review img {
        width: 50%;
    }

    .hero .container .left .review span {
        font-size: 20px;
    }

    .hero .container .left .review #reviewcard {
        position: absolute;
        top: -30px;
    }

}

@media (max-width:830px) {

    .hero .container .left .topheading h1 {
        font-size: 70px;
    }

    .hero .container .left .topheading button {
        width: 100%;
        height: 50px;
        border-radius: 10px;
        font-size: 16px;
        margin-top: 10px;
    }

    .hero .container .right img {
        height: 300px;
        display: none;
    }

    .hero .container .right {
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .hero .container .right p {
        width: 100%;
        font-size: 16px;
        line-height: 30px;
    }

    .hero .container .heroimage {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }


    .hero .container {
        display: block;
        padding-top: 100px;
        height: auto;
    }

    .hero .container .right .socialmedia i {
        font-size: 25px;
        color: var(---black);
        background: #ffffff2d;
        padding: 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        margin-right: 10px;
    }

    .hero .container .left .review {
        width: 200px;
        height: 60px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin: 0px auto;
        margin-top: 50px;
    }

    .hero .container .left {
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .hero .container .left .review img {
        width: 50%;
    }

    .hero .container .left .review span {
        font-size: 20px;
    }

    .hero .container .left .review #reviewcard {
        position: absolute;
        top: -30px;
    }

}

@media (max-width:622px) {
    .hero .container .left .topheading h1 {
        font-size: 50px;
    }

    .hero .container .left .topheading button {
        width: 100%;
        height: 50px;
        border-radius: 10px;
        font-size: 16px;
        margin-top: 10px;
    }

    .hero .container .right img {
        height: 300px;
        display: none;
    }

    .hero .container .right {
        width: 100%;
        justify-content: center;
    }

    .hero .container .right p {
        width: 100%;
        font-size: 16px;
        line-height: 30px;
    }

    .hero .container .heroimage {
        width: 100%;
        height: auto;
    }


    .hero .container {
        display: block;
    }

    .hero .container .right .socialmedia i {
        font-size: 25px;
        color: var(---black);
        background: #ffffff2d;
        padding: 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        margin-right: 10px;
    }

    .hero .container .left .review {
        width: 200px;
        height: 60px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin-top: 50px;
    }

    .hero .container .left {
        width: 100%;
        justify-content: center;
    }

    .hero .container .left .review img {
        width: 50%;
    }

    .hero .container .left .review span {
        font-size: 20px;
    }

    .hero .container .left .review #reviewcard {
        position: absolute;
        top: -30px;
    }

}

@media (max-width:450px) {
    .hero .container .left .topheading {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero .container .left .topheading h1 {
        font-size: 35px;
        text-align: center;
    }

    .hero .container .left .topheading button {
        width: 60%;
        height: 50px;
        border-radius: 10px;
        font-size: 16px;
        margin-top: 10px;
    }

    .hero .container .right img {
        height: 300px;
        display: none;
    }

    .hero .container .right {
        width: 100%;
        justify-content: center;
    }

    .hero .container .right p {
        width: 100%;
        font-size: 12px;
        text-align: center;
        margin: 0px auto;
        line-height: 30px;
    }

    .hero .container .heroimage {
        width: 60%;
        height: auto;
        margin: 0px auto;
        margin-top: 30px;
    }


    .hero .container {
        padding-top: 70px;
        display: block;
    }

    .hero .container .right .socialmedia i {
        font-size: 25px;
        color: var(---black);
        background: #ffffff2d;
        padding: 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        margin-right: 10px;
    }

    .hero .container .left .review {
        width: 200px;
        height: 60px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin-top: 50px;
    }

    .hero .container .left {
        width: 100%;
        justify-content: center;
    }

    .hero .container .left .review img {
        width: 50%;
    }

    .hero .container .left .review span {
        font-size: 20px;
    }

    .hero .container .left .review #reviewcard {
        position: absolute;
        top: -30px;
    }

    .hero .container .right .socialmedia {
        align-items: center;
        justify-content: center;
    }

}

@media (max-width:350px) {
    .hero .container .left .topheading {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero .container .left .topheading h1 {
        font-size: 30px;
        text-align: center;
    }

    .hero .container .left .topheading button {
        width: 80%;
        height: 50px;
        border-radius: 10px;
        font-size: 14px;
        margin-top: 10px;
    }

    .hero .container .right img {
        height: 300px;
        display: none;
    }

    .hero .container .right {
        width: 100%;
        justify-content: center;
    }

    .hero .container .right p {
        width: 100%;
        font-size: 11px;
        text-align: center;
        margin: 0px auto;
        line-height: 20px;
    }

    .hero .container .heroimage {
        width: 70%;
        height: auto;
        margin: 0px auto;
        margin-top: 30px;
    }


    .hero .container {
        padding-top: 70px;
        display: block;
    }

    .hero .container .right .socialmedia i {
        font-size: 25px;
        color: var(---black);
        background: #ffffff2d;
        padding: 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        margin-right: 10px;
    }

    .hero .container .left .review {
        width: 150px;
        height: 45px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin-top: 50px;
    }

    .hero .container .left {
        width: 100%;
        justify-content: center;
    }

    .hero .container .left .review img {
        width: 50%;
    }

    .hero .container .left .review span {
        font-size: 20px;
    }

    .hero .container .left .review #reviewcard {
        position: absolute;
        top: -25px;
    }

    .hero .container .right .socialmedia {
        align-items: center;
        justify-content: center;
    }

}