html,
body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

button {
    font-family: "Montserrat", sans-serif;
}


/*Page 1*/

.wrapper {
    width: 1170px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.main-page {
    background: linear-gradient(270deg, #A5DEFF 0%, #FCFEFF 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

header {
    margin-top: 34px;
    margin-bottom: 58px;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-text {
    margin-left: 16px;
}

.main-page-row {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.banderogus-container {
    background-color: #FFFFFF;
    padding: 60px 56px;
    align-self: center;
}

.banderogus-title {
    font-weight: 600;
    font-size: 64px;
    line-height: 72px;
    color: #1B1D1F;
    margin-bottom: 24px;
}

.banderogus-greeting {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1B1D1F;
    margin-bottom: 16px;
}

.banderogus-start-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #FF6B0A;
    margin-bottom: 48px;
}

.banderogus-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1B1D1F;
    margin-bottom: 48px;
}

.banderogus-launch {
    background: #FF6B0A;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
}

.banderogus-image {
    align-self: flex-end;
}


/*Page 2*/

.gus-facts {
    padding: 52px 0 72px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gus-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 100px;
    color: #1B1D1F;
    margin: 16px 0;
}

.gus-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #1B1D1F;
    width: 875px;
}


/*Page 2 - Facts*/

.gus-facts-container {
    width: 1170px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.gus-fact-item {
    width: 33%;
}

.gus-fact-image {
    width: 374px; 
    height: 374px;
}

.gus-fact-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #1B1D1F;
    margin: 12px 0 32px 0;
}

.gus-fact-descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1B1D1F;
    width: 282px;
}


/*Page 3*/

.victory-footer {
    display: flex;
    justify-content: center;
}

.victory-bgd {
    width: 1170px;
    background: linear-gradient(270deg, #ECF8FF 0%, #FFFFFF 100%);
    padding: 72px 0;
    margin-bottom: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.victory-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 100px;
    color: #1B1D1F;
    margin: 16px 0;
}

.victory-descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #1B1D1F;
    width: 875px;
}


/*Modal form 1*/

.modal-bgd {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(27, 29, 31, 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.modal-form-container {
    background: linear-gradient(180deg, #9DC4FF 0%, rgba(255, 213, 0, 0.8) 100%);
    border-radius: 8px;
    padding: 32px 92px 60px 92px;
    position: relative;
}

.modal-form,
.modal-form2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-form-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #1B1D1F;
    margin: 32px 0 12px 0;
}

.modal-form-descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1B1D1F;
    margin-bottom: 24px;
}

.modal-form-field1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.modal-form-field2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.modal-field-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1B1D1F;
    margin-bottom: 8px;
}

.modal-field-input {
    border: 1px solid #005BBB;
    box-sizing: border-box;
    border-radius: 8px;
    height: 48px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1B1D1F;
    padding: 4px 8px;
}

/*.btn-container {
    margin-right: 24px;
    margin-top: 24px;
}*/

.close-btn {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 20px;
    color: #1B1D1F;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    cursor: pointer;
    border: 0;
    background: none;
}


/*Modal form 2*/

.modal-form-title2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1B1D1F;
    margin: 24px 0;
}

.modal-form-descr1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: #005BBB;
}

.modal-form-descr2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: #FCE67B;
}

.modal-active {
    opacity: 1;
    pointer-events: all;
}

.gus-anim {
    position: fixed;
    top: 0;
    bottom: 0;
    margin-bottom: auto;
    margin-top: auto;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}