@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

body {
    background-color: #CCC;
}
.container {
    max-width: 1330px;
}
.item-page {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 60px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 3px 60px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 60px 0 rgba(0, 0, 0, 0.12);
}
#content {
    padding: 70px 115px 105px;
}
h1 {
    margin-bottom: 30px;
    font-family: "Lexend", sans-serif;
    font-size: 40px;
    line-height: 46px;
    color: #212121;
    font-weight: bold;
}
h2 {
    margin-top: 35px;
    font-family: "Lexend", sans-serif;
    font-size: 26px;
    line-height: 30px;
    font-weight: bold;
    color: #212121;
}
h3 {
    margin-top: 25px;
    font-family: "Lexend", sans-serif;
    font-size: 23px;
    line-height: 25px;
}
h4 {
    margin-top: 25px;
    font-family: "Lexend", sans-serif;
    font-size: 18px;
    line-height: 20px;
}
ul, ol {
    padding-left: 30px;
}
p, li {
    font-family: "Lexend", sans-serif;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #757575;
}
a {
    font-family: "Lexend", sans-serif;
    color: #1B79C4;
    transition: .3s ease-in-out;
    text-decoration: underline;
}
a:hover {
    color: #092a44;
}

@media only screen and (max-width: 768px) {
    #content {
        padding: 35px 57px 52px;
    }
    #header .img-holder .logo img {
        bottom: -30px;
        left: 37px;
        max-width: 200px;
    }
}
@media only screen and (max-width: 575px) {
    #header .img-holder .logo img {
        left: 45px;
        max-width: 125px;
    }

    h1{
        font-size: 25px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    h2{
        font-size: 20px;
        line-height: 24px;
    }
    h3{
        font-size: 18px;
        line-height: 20px;
    }
    h4{
        font-size: 16px;
        line-height: 18px;
    }
}