@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #728A92;
}

* {
    box-sizing: border-box;
}

.container {
    width: 75rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.header {
    box-shadow: 0px 1px 1px #E3E3E3;
    width: 100%;
    padding: 1.125rem 0;
}

.content {
    display: flex;
    align-items: center;
    height: 75%;
}

.content h3 {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #323E43;
}

.content p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #51646D;
}

.setting-icon {
    margin-left: auto;
}

.setting-icon>img {
    height: 70%;
}

.footer {
    background-color: #323E43;
    color: #ffffff;
    padding: 4rem 0;
}

.links {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.item {
    margin-right: 3rem;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.img-part {
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 3.5rem;
}

.footer-text {
    padding-left: 5.5rem;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

hr {
    margin: 2.5rem 0;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: #ffffff;
    text-decoration: underline;
    box-shadow: none;
    outline: none;
}

a[target="_blank"]::after {
    content: "\e931";
    position: absolute;
    font-family: "icomoon", sans-serif;
}

.logo-icon-link[target="_blank"]::after {
    content: none;
}

@media screen and (max-width: 991px) {
    .container {
        width: 100%;
        padding: 0px 2.5rem;
    }

    .header img {
        height: 2rem;
    }

    .content {
        flex-direction: column-reverse;
        justify-content: center;
    }

    .setting-icon {
        margin-left: 0;
    }

    .setting-icon>img {
        height: 9rem;
    }

    .content-one {
        text-align: center;
    }

    .content h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .content p {
        font-size: 16px;
        line-height: 24px;
    }

    .links {
        flex-direction: column;
        margin: 0;
    }

    .links>li {
        margin-bottom: 1rem;
    }

    .img-part {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer {
        padding: 2rem 0;
    }

    .logo-icon {
        margin-right: 0;
        height: 2.5rem;
    }

    .logo-icon-link {
        margin-bottom: 16px;
    }

    .service-icon {
        height: 2.5rem;
    }

    .img-part>img {
        margin-bottom: 1rem;
    }

    .footer-text {
        padding-left: 0;
    }

    hr {
        margin: 1.5rem 0;
    }
}