@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;1,600&display=swap');

html {
	scroll-behavior: smooth;
}

.full-width {
    width: 100%;
}

.width-100 {
    width: 100%;
    max-width: 1200px;
}

.h2-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2.75rem;
}

@media only screen and (max-width: 848px) {
    .full-width, .width-100 {
        width: 100%;
    }

    .h2-title {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 2rem;
    }
}

@media only screen and (min-width: 1400px) {
    .full-width {
        width: 100%;
        max-width: 1600px;
    }
    
    .width-100 {
        width: 100%;
        max-width: 1200px;
    }
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #282727;
    font-family: Inter;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 60px 15px;
}

.menu .logo img {
    width: 48px;
}

.menu-items .nav {
    display: flex;
    flex-direction: row;
}

.menu-items .nav li a {
    text-decoration: none;
    color: #909090;
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0 20px;
}

@media only screen and (max-width: 848px) {
    .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-items .nav li a {
        padding: 0 10px;
    }
}

.slogan {
    margin-top: 50px;
    padding: 0 15px;
}

.slogan-text {
}

.bg-image {
    margin-top: 40px;
    width: 100%
}

.bg-image img {
    width: 100%;
}

.about-us {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    padding: 0 15px;
}

.about-us .text-about-us {
    flex: 1;
    /* padding: 0 15px; */
}

.about-us .text-about-us .text-about-us-title {
}

.about-us .text-about-us .text-about-us-content {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin-top: 2.5rem;
    padding-bottom: 20px;
}

.about-us .data-about-us {
    flex: 1;
    /* padding: 0 15px; */
}

.about-us .data-about-us .data-item {
    margin-bottom: 40px;
}

.about-us .data-about-us .data-item .data-num {
    font-size: 4.0rem;
    font-weight: 300;
    line-height: 4.0rem;
}

.about-us .data-about-us .data-item .data-label {
    color: #909090;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin-top: 15px;
}

@media only screen and (max-width: 848px) {
    .about-us {
        flex-direction: column;
    }

    .about-us .data-about-us .data-item .data-num {
        font-size: 2.5rem;
        font-weight: 300;
        line-height: 2.0rem;
    }
}

.what-we-do {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.what-we-do-summary {
    display: flex;
    flex-direction: row;
}

.what-we-do-img {
    flex: 1;
}

.what-we-do-img img {
    width: 100%;
}

.what-we-do-text {
    flex: 1;
    /* margin-left: 20px;   */
    padding: 0 15px;
}

.what-we-do-title {
    margin: 50px 0;
}

.what-we-do-text p {
    margin-bottom: 15px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

@media only screen and (max-width: 848px) {
    .what-we-do-summary {
        flex-direction: column;
    }
}

.what-we-do-details {
    margin-top: 100px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.what-we-do-details hr {
    width: 100%;
    border: none;
    height: 2px;
    background-color: #909090;
    opacity: 0.6;
}

.what-we-do-item {
    display: flex;
    flex-direction: row;
    margin: 20px 0;
}

.what-we-do-item-title {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
}

.what-we-do-item-text {
    flex: 1;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    opacity: 0.8;
}

@media only screen and (max-width: 848px) {
    .what-we-do-item {
        flex-direction: column;
    }
}

.footer {
    margin-top: 100px;
    padding: 100px 0;
    width: 100%;
    position: sticky;
    max-height: 1%;
    max-width: 100%;
    background-color: rgba(40, 39, 39, 1);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top {
    display: flex;
    flex-direction: row;
}

.footer-contacts, .footer-bottom {
    flex: 1;
    color: #909090;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 0 15px;
}

.footer-contacts h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: 20px;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    padding: 5px 0;
}

.footer hr {
    margin: 40px 0;
    width: 100%;
    border: none;
    height: 2px;
    background-color: #909090;
}

@media only screen and (max-width: 848px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 40px;
    }
}
