@font-face {
    font-family: Druk Wide;
    font-weight: bold;
    src: url("../fonts/DrukWideBold.otf") format("opentype");
}

* {
    font-family: 'Rubik';
}

body {
    position: relative;
    overflow-x: hidden;
}

.title,
.subtitle {
    font-family: 'Druk Wide';
    text-transform: uppercase;
    margin-bottom: 40px;
}

.bg-purpure {
    background-color: #D0D3F2;
}

.bg-green {
    background-color: #CDF2E0;
}

.bg-orange {
    background-color: #F3D8CF;
}

.bg-pink {
    background-color: #F5CDDF;
}

.mobile-display-block {
    display: none;
}

/* Header */
#header {
    height: 100px;
    display: flex;
    align-items: center;
}

#header ul.main-menu,
#footer>footer ul.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

#header ul.main-menu>li,
#footer>footer ul.main-menu>li {
    margin-left: 40px;
}

#header ul.main-menu>li>a,
#footer>footer ul.main-menu>li>a {
    /* font-family: 'Rubik'; */
    font-size: 16px;
    font-weight: 600;
}

#header ul.main-menu>li>a {
    color: black;
}

#burger-menu,
#navigation {
    display: none;
}

/* END Header */

/* Baner */
#baner {
    background-image: url("../img/baner.png");
    background-position: right;
    min-height: 770px;
    display: flex;
    align-items: center;
}

#baner h1 {
    font-family: 'Druk Wide';
    font-size: 90px;
    color: white;
}

/* END Baner */


/* Aboute Us */
#aboute-us {
    padding: 160px 0;
}

#aboute-us img {
    width: 100%;
}

#aboute-us p {
    font-size: 24px;
    font-weight: 400;
}

/* END Aboute Us */

/* Services */
#services {
    margin-bottom: 160px;
}

#services .service-item {
    width: 24%;
    padding: 40px;
    border: 1px solid #000000;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.07);
}

#services .service-item img {
    width: 130px;
    height: 130px;
}

#services .service-item span {
    font-weight: bold;
    margin-top: 24px;
    max-width: 130px;
}

/* END Services */

/* Legal information */
#legal-information .legal-information-item {
    padding: 30px;
    background-color: #67FCD0;
    border: 1px solid black;
    width: 33%;
}

#legal-information .legal-information-item>div {
    display: flex;
    height: 100px;
}

#legal-information .legal-information-item>span {
    font-weight: 900;
}

#legal-information .legal-information-item>div>span:first-child {
    font-size: 24px;
    line-height: 1.1;
    margin-right: 10px;
}

#legal-information .legal-information-item>div>span:last-child {
    font-size: 18px;
    font-weight: bold;
}

.documents {
    margin-top: 90px;
}

.documents-block {
    margin-top: 90px;
}

.documents .document-item {
    color: black;
}

.documents .document-item,
.documents .document-item img {
    max-width: 200px;
}

.documents .document-item img {
    border: 1px solid black;
}

.documents .document-item .description-block {
    margin-top: 15px;
    display: flex;
}

.documents .document-item:hover {
    text-decoration: none;
}

.documents .document-item .description-block>.material-icons,
#contact-us .contact-item>.material-icons {
    line-height: 1.1;
    margin-right: 10px;
}

/* END Legal information */



/* Contact Us */
#contact-us {
    margin: 160px 0;
}

#map {
    height: 360px;
    border: 1px solid black;
}

#contact-us .contact-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

#contact-us .contact-item a {
    color: black;
}

/* END Contact Us */

/* Footer */
#footer {
    background-color: #222222;
    padding-top: 50px;
}

#footer>footer {
    display: flex;
    align-items: center;
}

#footer>footer ul.main-menu>li>a {
    color: white;
}

.paceholder {
    text-align: center;
    color: white;
    margin-top: 60px;
    font-size: 12px;
    padding-bottom: 20px;
}

.paceholder p {
    margin: 0;
    padding: 0;
}

/* END Footer */


@media screen and (max-width: 992px) {

    .title,
    .subtitle {
        margin-bottom: 20px;
    }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        background-color: white;
        width: 100%;
        z-index: 1;
        border-bottom: 1px solid #c4c4c4;
        height: 75px;
    }


    #header ul.desctop-menu {
        display: none;
    }

    #burger-menu {
        width: 100%;
        display: flex;
        justify-content: end;
        padding-right: 0;
    }

    #navigation.active {
        display: block;
        position: fixed;
        top: 75px;
        left: 0;
        background-color: white;
        height: 100vh;
        width: 100%;
        z-index: 999;
    }

    #navigation.active .mobile-menu {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-top: 100px;
    }

    #navigation.active .mobile-menu>li {
        margin: 30px;
    }

    #baner {
        margin-top: 75px;
        min-height: 610px;
    }

    #baner h1 {
        font-size: 42px;
    }

    #aboute-us {
        padding: 80px 0;
    }

    #services {
        margin-bottom: 80px;
    }

    .services-block {
        flex-wrap: wrap;
    }

    .services-block .service-item {
        width: 49% !important;
        margin-bottom: 15px;
    }

    #legal-information .legal-information-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .document-item {
        width: 48%;
        margin-bottom: 15px;
    }

    .document-item:last-child {
        margin-bottom: 0;
    }

    #contact-us {
        margin: 80px 0;
    }

    #contact-us .contact-item {
        margin-bottom: 20px;
    }

    #footer {
        padding-top: 50px;
    }

    #footer .logo-block {
        text-align: center;
        margin-bottom: 40px;
    }

    #footer ul.main-menu {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    #footer ul.main-menu>li {
        margin-left: 0 !important;
        margin-bottom: 30px;
    }

    .paceholder {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 35px;
        height: 3px;
    }

    .mobile-display-block {
        display: block;
    }

    .mobile-display-none {
        display: none;
    }

    .logo-block img {
        height: 25px;
    }

    #baner {
        background-image: url("../img/baner_mobile.png");
        background-size: cover;
    }

    #baner h1 {
        font-size: 24px;
    }

    #aboute-us img {
        margin-bottom: 20px;
    }
}