* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.main {
    background-image: url('../images/photo.jpg');
    width: 100%;
    height: 529px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-size: contain;
}

.title {
    font-weight: 700;
    font-size: 90px;
    line-height: 109px;
    text-align: center;

    color: #FFFFFF;
    margin: 0;
}

.second-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 23px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    margin-bottom: 9px;
}

.second-title-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 19px;
    text-align: center;
}

.second-links-wrapper {
    margin-top: 52px;
}

.button-main {
    width: 190px;
    height: 48px;
    background: #0052CE;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 19px;
    line-height: 23px;
    color: #FFFFFF; 
    cursor: pointer;
    display: none;
    margin-top: 16px;
}

@media (max-width : 425px) {
    .title {
        font-size: 40px;
        line-height: 48px;
    }   
    .main {
        max-height: 235px;
        background-image: url(../images/photo-mobile.png);
        background-repeat: no-repeat;
        background-size: cover;
    }
    .second-title-wrapper {
        margin-top: 7px;
    }  
}

@media (max-width : 1200px) {
   .button-main {
       display: block;
   }

   .main {
    background-size: cover;
   }
}