@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background: #F5F5F5;
    font-family: 'Inter';
    font-style: normal;
}

button, .btn{
    padding: 16px 48px;
    background: #66BEA5;
    border-radius: 40px;
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
}

button:hover{
    background: #71d3b7;
}

#block-2, #block-3, #block-4, #block-5, #block-6{
    padding-top: 120px;
    padding-bottom: 120px;
}

.bg-gray {
    background: #F8FAFF;
}

.bg-blue{
    background: #252B5E; 
}


/* section-1 */

#block-1{
    background: url(../img/bg1.svg) no-repeat #FFFFFF;
}
    #logo{
        width: 233px;
        height: 55px;
        margin-top: 62px;;
    }

    h1{
        font-weight: 900;
        font-size: 64px;
        line-height: 77px;
        color: #090C27;
        margin-top: 100px;
        margin-bottom: 48px;
    }

    img{
        max-width: 100%;
        height: auto;
    }

    .card{
        background: #FCFCFC;
        border: 1px solid #CBCFD8;
        box-shadow: 0px 4px 4px #CCE0E9;
        border-radius: 12px;
        padding: 32px;
        min-height: 250px;
    }
        .card > p{
            font-weight: 400;
            font-size: 16px;
            line-height: 150%;
            color: #001133;
        }

/* section 2 */

#block-2 .text-wrap{
    margin-top: 64px;
}

#block-2 p{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;  
    color: #3A3D52;
    max-width: 630px;
}
#block-2 img{
    max-width: 230px;
    margin-top: 20px;
}

/* section 3 */
#block-3 h2{
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: #F1F1F1;
}

#block-3 p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #F1F1F1;
    padding-top: 32px;
}

/* section 4 */
#block-4 h2{
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    color: #090C27;
    margin-bottom: 72px;
}


/* section 5 */
#block-5 h2{
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
}

#block-5 ul{
    margin-top: 32px;
}

#block-5 ul li{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;

    color: #F1F1F1;
}

/* section 6 */
#block-6 h2{
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    color: #090C27;
    margin-bottom: 32px;
}
    .info{
        max-width: 400px;
    }

    .info span{
        display: block;
        padding-right: 24px;
        float: left;
        clear: both;
    }

    .mail-form label{
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        color: #9194AE;
    }

    .mail-form input, .mail-form textarea{
        background: #FFFFFF;
        border: 1px solid #CCD8FF;
        box-shadow: 0px 2px 114px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        padding: 16px;
        font-weight: 400;
        font-size: 16px;
        line-height: 124.75%;
        color: #1D1929;
        width: 100%;
    }

    .mail-form textarea{
        margin-top: 24px;
    }

    .mail-form button{
        margin-top: 32px;
        box-sizing: border-box;
    }

/*  footer */
footer{
    padding-top: 64px;
    padding-bottom: 48px;
}

    footer p{
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: #FFFFFF;
        text-align: center;
    }


/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
    h1 {
      font-size: 64px;
    }

    h2 {
        font-size: 68px;
    }

  }
  
  /* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
  @media screen and (max-width: 600px) {
    h1 {
      font-size: 48px;
    }

    h2 {
        font-size: 32px;
    }
  }