@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body{
    font-family: 'Montserrat', sans-serif;
    padding: 40px 0;
    background-color: #040A17;
    color: #fff;
    margin: 0;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



.header{
    display: flex;
    margin-bottom: 50px;
}

.logo{
    width: 250px;
    height: auto;
    /* background-color: #fff; */
}
.block{
    margin-bottom: 60px;
}
.title{
    font-weight: bold;
    font-size: 30px;
    max-width: 800px
}

.par{
    font-size: 18px;
    max-width: 800px;
}

.list-item{
    font-size: 18px;
    max-width: 800px;
    padding-bottom: 15px;
}

.list-item > a{
    color:#fff;
    text-decoration: none;
}
.item-inner{
    font-size: 18px;
    max-width: 800px;
}

.card > img{
    width: 600px;
    max-width: 100%;
    height: auto;
}

.footer_rec{
    display: flex;
    align-items: center;
    margin-bottom: 150px;
}

.footer{
    background-color: #040A17;
}

.footer_rec > img {
    width: 200px;
    height: auto;
}
@media (min-width: 769px){
    .footer_rec > img:last-child {
        width: 200px;
        padding-left: 30px;
        height: auto;
    }
}  

@media (max-width: 1024px){
    .container{
        max-width: 900px;
    }
}

@media (max-width: 768px){
    .container{
        max-width: 700px;
        padding: 0 15px;
    }

    .title{
        font-size: 25px;
    }

    .par{
        font-size: 16px;
    }

    .list-item{
        font-size: 16px;
    }

    .ol__list{
        font-size: 16px;
    }

    .item-inner{
        font-size: 14px;
    }

    .card > img{
        width: 500px;
        max-width: 100%;
        height: auto;
    }

    .footer_rec{
        margin-bottom: 100px;
        justify-content: space-between;
    }

    .footer_rec > img {
        height: auto;
        width: 30%;
    }
}

@media (max-width: 320px){
    .logo{
        width: 200px;
    }
    .container{
        max-width: 290px;
        padding: 0 10px;
    }

    .title{
        font-size: 20px;
    }

    .par{
        font-size: 18px;
    }

    .list-item{
        font-size: 16px;
    }

    .ol__list{
        font-size: 16px;
    }

    .item-inner{
        font-size: 16px;
    }

    .card > img{
        max-width: 280px;
        height: auto;
    }

    .footer_rec{
        margin-bottom: 100px;
    }

    .footer_rec > img {
        max-width: 100px;
        height: auto;
    }
}
