html,
body {
    margin: 0;
    height: 100%;
    font-family: "Montserrat", sans-serif;
}
.wrapper {
    width: 1170px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
/* Introduction block */
.main-page-left-side {
    width: 50%;
}
.gus-img {
    width: 50%;
}
.main-page {
    background: linear-gradient(90deg, #fcfefe 0%, #a5defe 100%);
}
.main-page-text-container {
    border-radius: 40px;
    background: #fff;
    padding-top: 60px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
}
.main-page-btn {
    border-radius: 8px;
    background: #ff6b0a;
    border: none;
    color: #fff;
    padding-top: 12px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}
.logo {
    margin-top: 32px;
    margin-bottom: 60px;
}
.main-page-text-helo {
    color: #1b1d1f;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 60px;
}
.main-page-text-title {
    color: #1b1d1f;
    font-size: 64px;
    font-weight: 600;
    line-height: 72px;
    margin-top: 0;
    margin-bottom: 24px;
}
.main-page-text-descr {
    color: #1b1d1f;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 32px;
    margin-top: 0;
}
/* Fact block */
.gus-facts {
    text-align: center;
    padding-top: 48px;
    padding-bottom: 100px;
}
.gus-facts-descr {
    color: #1b1d1f;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 772px;
    margin: auto;
    margin-top: 32px;
    margin-bottom: 24px;
}
.gus-fact-item-title {
    color: #1b1d1f;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 32px;
}
.gus-fact-item-descr {
    color: #1b1d1f;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
.gus-fact-item {
    width: 30%;
}
.gus-fact-item-img {
    width: 100%;
}
.main-page-text-title2 {
    color: #1b1d1f;
    font-size: 48px;
    font-weight: 600;
    line-height: 72px;
    margin-top: 24px;
    margin: auto;
}
/* Contacts */
.form-page {
    background: linear-gradient(90deg, #fcfefe 0%, #a5defe 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

.form {
    border-radius: 40px;
    background: #fff;
    width: 573px;
    padding-top: 32px;
    padding-bottom: 60px;
    padding-right: 60px;
    padding-left: 60px;
    box-sizing: border-box;
    margin: auto;
    text-align: center;
}
.form-title {
    color: #1b1d1f;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.form-decr {
    color: #1b1d1f;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.form-input {
    border-radius: 8px;
    border: 1px solid #005bbb;
    background: #fff;
    width: 453px;
    height: 60px;
    color: #1b1d1f;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 12px;
    padding-right: 12px;
}

.form-label {
    color: #1b1d1f;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
}

.form-field {
    text-align: left;
    margin-bottom: 24px;
}
.form-btn {
    border-radius: 8px;
    background: #ff6b0a;
    border: none;
    color: #fff;
    padding-top: 12px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    margin-top: 48px;
}
/* Goose animation */
.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%;
    }

    .main-page-left-side {
        padding: 20px;
        box-sizing: border-box;
    }

    .main-page-text-container {
        padding: 20px;
    }

    .main-page-text-title {
        font-size: 44px;
    }

    .main-page-text-helo {
        margin-bottom: 10px;
    }
    .gus-anim {
        align-self: flex-end;
    }
}

@media screen and (max-width: 785px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .main-page-left-side {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-page-text-container {
        text-align: center;
    }

    .gus-facts-descr {
        width: 100%;
    }

    .gus-facts {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .gus-fact-item {
        width: 450px;
    }
}

@media screen and (max-width: 600px) {
    .form {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-page {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .form-input {
        width: 90%;
    }

    .gus-img {
        width: 100%;
    }

    .gus-fact-item {
        width: 100%;
    }
}
@media screen and (max-width: 420px) {
    .gus-facts-title {
        font-size: 24px;
        line-height: 30px;
    }
}
