h1,h2,h3,h4,h5,h6,p,ul,ol,li {
    margin: 0;
    padding: 0;
}

.ul,ol,li {
    list-style: none;
}

:root {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style:normal;
    background-color: #F8F7FF;
    overflow-x: hidden;
    margin: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: #F8F7FF;
    box-shadow: 0px 0px 15px #0daf971a;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 125px;
}

.nav-list {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #193832;

    transition: all .2s ease-in-out;
}

.navigation {
    display: none;
}

.active-link {
    font-weight: 600;
}

.hero-btn {
    background: linear-gradient(67deg, rgba(20,219,189,1) 0%, rgba(13,175,151,1) 100%);
    color: #F8F7FF;

    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    padding: 10px 50px;
    border-radius: 8px;
}

/* Hero */

.hero {
    padding: 120px 0 170px 0;
    background-image: url(/about-us/img/about_us-bg.png);
    background-position: center;
    background-size: cover;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.hero-title {
    color: #193832;
    font-size: 50px;
    font-weight: 300;
    max-width: 445px;
    text-transform: capitalize;
}

.title-decor {
    font-style: italic;
    font-weight: 900;
}

.descr {
    color: #7E8381;
    font-size: 16px;
    line-height: 28px;
}

.hero-descr {
    max-width: 800px;
}

/* About Us */

.about-us {
    margin-top: -80px;
    margin-bottom: 90px;
}

.about-us-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.about-us-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1257px;
}

.about-us-item {
    padding: 65px 0px 60px 45px;
    min-width: 556px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 40px #1938321e;

    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.third-title {
    color: #193832;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-us-item-descr {
    font-size: 14px;
    line-height: 24px;
    max-width: 385px;
}

.about-us-img {
    position: absolute;
    right: -35px;
    bottom: -55px;

    transition: all 1.2s ease-in-out;
}

.about-us-text {
    margin-bottom: 0;
}

/* Footer */

.footer {
    padding: 50px 70px 15px 70px;
    background-color: #193832;
}

.footer-wrapper {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 25px;
}


.footer-logo {
    margin-bottom: 30px;
    max-width: 249px;
}

.footer-logo-mob {
    display: none;
}

.contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-link,
.address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5D7772;
    text-decoration: none;
}

.address {
    text-transform: capitalize;
    cursor: pointer;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #5D7772;
    font-size: 15px;
    text-decoration: none;

    transition: all .2s ease-in-out;
}

.email-icon {
    stroke: #5D7772;
    fill: none;
}

.address-icon {
    stroke: #5D7772;
    fill: none;
}

.all-rights {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    color: #5D7772;
    font-size: 13px;
    border-top: 1px solid #3c4d49;
}

/* Hover, Active, Focus */

.nav-link:hover {
    color: #0DAF97;
}

.nav-link:active {
    color: #0c8f7b;
}

.nav-link:focus {
    color: #0c8f7b;
    outline: 1px solid #0c8f7b;
    border-radius: 2px;
}

.hero-btn:hover {
    background: rgb(28,208,181);
    background: linear-gradient(90deg, rgba(28,208,181,1) 0%, rgba(18,162,141,1) 100%);
}
.hero-btn:focus {
    outline: 2px solid #4cd8c3;
}

.contact-link:hover {
    color: #0DAF97;
}

.contact-link:active {
    color: #0c8f7b;
}

.contact-link:focus {
    color: #0c8f7b;
    outline: 1px solid #0c8f7b;
    border-radius: 2px;
}

.contact-link:hover > .email-icon {
    stroke: #0DAF97;
}

.contact-link:active > .email-icon {
    stroke: #0c8f7b;
}

.contact-link:focus > .email-icon {
    stroke: #0c8f7b;
}       

.footer-link:hover {
    color: #0DAF97;
}

.footer-link:active {
    color: #0c8f7b;
}

.footer-link:focus {
    color: #0c8f7b;
    outline: 1px solid #0c8f7b;
    border-radius: 2px;
}

.address:hover {
    color: #0DAF97;
}

.address:active {
    color: #0c8f7b;
}

.address:focus {
    color: #0c8f7b;
    outline: 1px solid #0c8f7b;
    border-radius: 2px;
}

.address:hover > .address-icon {
    stroke: #0DAF97;
}

.address:active > .address-icon {
    stroke: #0c8f7b;
}

.address:focus > .address-icon {
    stroke: #0c8f7b;
}       

.footer-link:hover {
    color: #0DAF97;
}

.footer-link:active {
    color: #0c8f7b;
}

.footer-link:focus {
    color: #0c8f7b;
    outline: 1px solid #0c8f7b;
}    

body::-webkit-scrollbar {
    width: 10px;
}
  
body::-webkit-scrollbar-track {
    background: #afb6b4;
}
  
body::-webkit-scrollbar-thumb {
    background-color: #e5eee7;
    border-radius: 20px;
    transition: all .2s ease-in-out;
}

.about-us-item:hover > .about-us-img {
    right: -45px;
    bottom: -25px;
    transform: scale(1.1);
}

/* Burger */

.burger-icon, .nav-mobile {
    display: none;
}