body {
    font-family: "Montserrat", sans-serif;
}

.main-page{
    width: 100%;
    background: linear-gradient(90deg, #fcfefe 0%, #a5deff 100%);
}

.main-page-text-container{
    border-radius: 40px;
    background: #fff;
    padding: 60px;
    box-sizing: border-box; 
}

.wrapper{
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1170px;
    position: relative;
}

.main-page-left-side{
    width: 50%;
}

.gus-img{
    width: 50%;
}

.main-page-hello-text{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 60px;
}


.main-page-title{
    font-weight: 600;
    font-size: 64px;
    line-height: 112%;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 24px;
}

.main-page-descr{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 32px;
}

.main-page-btn{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    background: #ff6b0a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px 24px;
    margin-top: 0;
}

.logo{
    position: absolute;
    top: 32px;
    left: 0;
}

.facts-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 150%;
    text-align: center;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 32px;
}

.facts{
    padding-top: 48px;
    padding-bottom: 100px;
    text-align: center;
}

.facts-tryzub{
    margin-bottom: 32px;
}

.facts-descr{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #1b1d1f;
    width: 772px;
    margin-top: 0;
    margin-bottom: 24px;
    margin: auto;
}

.facts-item-title{
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 32px;
}

.facts-item-descr{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 0;
}

.facts-item{
    width: 33%;
}

.facts-item-img{
    width: 100%;
}

.form-container{
    width: 100%;
    padding-bottom: 80px;
    padding-top: 80px;
    box-sizing: border-box;
    background: linear-gradient(271deg, #a5deff 1.14%, #fcfefe 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form{
    background: #fff;
    border-radius: 40px;
    padding: 32px 60px 60px 60px;
    box-sizing: border-box;
    text-align: center;
}

.form-tryzub{
    margin-bottom: 32px;
}

.form-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 12px;
}

.form-descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1b1d1f;
    margin-top: 0;
    margin-bottom: 24px;
}

.form-field{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-field-label{
    margin-top: 24px;
    margin-bottom: 8px;
}

.form-field-name{
    margin-bottom: 24px;
}

.form-input{
    border: 1px solid #005bbb;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1b1d1f;
    padding: 12px;
    box-sizing: border-box;
    width: 100%;    
}

.form-btn{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    background: #ff6b0a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px 24px;
}

.form-field-email{
    margin-bottom: 48px;
}

.gus-anim {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    margin-bottom: auto;
    margin-top: auto;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

@media screen and (max-width: 1170px) {
    .wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .main-page-left-side {
        padding: 20px;
        margin-top: 80px;
        box-sizing: border-box;
    } 

    .main-page-text-container {
        padding: 20px;
    }

    .main-page-title {
        font-size: 44px;
    }

    .main-page-hello-text{
        margin-bottom: 10px;
    }

    .gus-img {
        align-self: flex-end;
    }
}

@media screen and (max-width: 785px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
    }

    .main-page-left-side {
        margin-top: 75px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .facts-descr{
        width: 100%;
    }

    .facts{
        padding-right: 20px;
        padding-left: 20px;
        box-sizing: border-box;
    }

    .facts-item {
        width: 450px;
    }
}

@media screen and (max-width: 600px) {
    .form{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-container{
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .form-input{
        width: 100%;
    }

    .gus-img {
        width: 100%;
    }

    .facts-item{
        width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .main-page-hello-text{
        padding-left: 15px;
    }

    .main-page-text-container {
        padding: 3px;
    }

    .facts-title{
        font-size: 24px;
        line-height: 30px;
    }
}