@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #2d2d2d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}



*{
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
    height: 100%;
}
body{
    background-color: #1b1d25;
    font-family: "Montserrat", sans-serif;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.wrapper{
    flex: 1 1 auto;
    padding: 0 20px;
}
.main{
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main__collapse{
    max-width: 1216px;
    width: 100%;
}
.main_block{
    width: 100%;
    height: 470px;
    background-color: #363B4B;
    border-radius: 20px;
    margin-top: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}
.main_block img{
    position: absolute;
    right: 10px;
}
.main_block .title{
    position: absolute;
    bottom: 60px;
    left: 30px;
    font-weight: 500;
    font-size: 48px;
    width: 70%;
    z-index: 1;
    color: white;
}
.main_under{
    margin-left: 30px;
    margin-top: 30px;
    padding-bottom: 150px;
}
.main_under p{
    font-weight: 500;
    font-size: 36px;
    color: white;
}
.main_under p span{
    color: #2CB7D6;
}

@media screen and (max-width: 845px){
    .main_block img{
        filter: brightness(0.6);
    }
}
@media screen and (max-width: 713px){
    .main_block img{
        right: -60px;
    }
}
@media screen and (max-width: 620px){
    .main_block .title{
        font-size: 30px;
    }
    .main_under p{
        font-size: 24px;
    }
}
@media screen and (max-width: 500px){
    .main_block .title{
        font-size: 25px;
    }
    .main_under p{
        font-size: 20px;
    }
    .main_under{
        margin-left: 0;
    }
}
@media screen and (max-width: 500px){
    .main_block img{
        right: -100px;
    }
}