html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure,
dd,
dl,
dt {
    padding: 0;
    margin: 0;
}

body {
    font: 20px/1.5 "Lexend", Arial, Helvetica, sans-serif;
}

.site-nav {
    background: #012744;
    position: sticky;
    top: 0;
    z-index: 99;
}

a {
    text-decoration: none;
    color: #000;
}

:target {
    color: #00ACAD;
    outline: 1px dashed #00ACAD;
    outline-offset: 6px;
}

.text-center {
    text-align: center;
}

.container {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.site-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    height: 77px;
    font-size: 18px;
    color: #fff;
}

.site-nav-content a {
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
}

.site-nav-content .menu-item {
    position: relative;
}

.site-nav-content .menu-item:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    height: 3px;
    background: #fff;
    width: 0;
    transition: width 0.25s;
}

.site-nav-content .menu-item:hover::after,
.site-nav-content .menu-item.active::after {
    width: 100%;
    transition: width 0.25s;
}

.banner {
    background: url("./b.png") no-repeat center bottom;
    background-size: cover;
    padding: 1px 0;
    color: #fff;

}

.banner .container {
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}


.banner h2 {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.3;
}

.banner p {
    margin: 30px auto;
    font-size: 28px;
    font-weight: 200;
}

.banner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    background: linear-gradient(135deg, #23D1A6 50%, #00ACAD 50%);
    background-size: 200% 200%;
    background-position: 100% 100%;
    transition: 0.25s;
}

.banner a:hover {
    background-position: 0 0;
    transition: 0.25s;
}

.plate {
    padding: 65px 0;
    font-size: 20px;
    color: #000;
    font-weight: 300;
}

.plate h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1b1b1b;
}

.about-sonavis .about {
    display: grid;
    grid-template-columns: 304px 1fr;
    gap: 60px;
    align-items: center;
}


.about-sonavis .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    text-align: center;
    margin-top: 80px;
}

.about-sonavis .list h3 {
    color: #23D1A6;
    font-size: 48px;
    font-weight: 500;
}

.our-advantages .summary p {
    font-size: 24px;
    font-weight: 500;
    color: #4C4C4C;
}

.our-advantages .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.our-advantages figure {
    min-height: 442px;
    border-radius: 16px;
    display: grid;
    align-items: center;
    background: linear-gradient(180deg, #D0EBEB, #FAFFFF);
}

.our-advantages figure:hover img {
    transform: scale(1.2) !important;
    transition: 0.25s;
}

.our-advantages img {
    display: block;
    margin: 0 auto;
    transition: 0.25s;
}

.our-advantages figcaption {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.our-advantages figcaption strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: #00B1BA;
}

.brand-story h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 24px;
}

.brand-story p {
    margin-top: 12px;
}

.products-services .summary {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    font-size: 24px;
    color: #4C4C4C;
    font-weight: 500;
}

.products-services h2 {
    font-size: 36px;
    font-weight: 700;
}

.products-services .list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(590px, 1fr));
    gap: 20px;
}

.products-services figure {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: #4C4C4C;
    background: linear-gradient(180deg, #D0EBEB, #F2FCFC);
    border-radius: 16px;
    min-height: 150px;
    box-sizing: border-box;
    padding: 20px;
}

.products-services img,
.products-services figcaption {
    transition: 0.25s;
}

.products-services figure:hover img {
    transform: scale(0.6) !important;
    transition: 0.25s;
}

.products-services figure:hover figcaption {
    transform: scale(1.15) !important;
    transition: 0.25s;
    color: #00ACAD;
}

.our-clients .summary {
    font-size: 24px;
    font-weight: 500;
    color: #808080;
    margin-bottom: 60px;
}

.our-clients h2 {
    font-weight: 700;
    font-size: 36px;
}

.our-clients .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.our-clients .list>div {
    background: #E9F7F7;
    padding: 40px 24px;
    border-radius: 16px;
    font-size: 14px;
    color: #4C4C4C;
    transition: 0.25s;
}

.our-clients .list>div:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.25s;
}

.our-clients figure {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #4C4C4C;
    margin-bottom: 20px;
    min-height: 100px;
}

.our-clients figure strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: #1b1b1b;
    margin-bottom: 10px;
    line-height: 1.2;
}

.site-footer {
    margin-top: 65px;
}

.site-footer .container {
    padding-top: 60px;
    border-top: 1px solid #F3F3F3;
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    gap: 40px;
}

.site-footer a {
    transition: 0.25s;
}

.site-footer a:hover {
    color: #00ACAD;
    transition: 0.25s;
}

.site-footer dl {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 20px;
    font-weight: 300;
    color: #000;
}

.site-footer dt {
    font-weight: 500;
    font-size: 24px;
}

@media (max-width:1080px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }

    .banner .container {
        height: 60vh;
    }

    .banner h2 {
        font-size: 36px;
    }

    .banner p {
        font-size: 20px;
        margin: 20px auto;
    }

    .plate {
        padding: 30px 0;
        font-size: 16px;
    }

    .about-sonavis {
        padding-top: 60px;
    }

    .plate h2 {
        font-size: 28px;
    }

    .plate .summary p {
        font-size: 20px;
    }

    .about-sonavis .about {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
        text-align: center;
    }

    .about-sonavis img {
        width: 152px;
        height: 152px;
    }

    .about-sonavis .list {
        margin-top: 60px;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px 8px;
        text-align: left;
    }

    .about-sonavis .list h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .our-advantages .list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .products-services .list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .products-services figure {
        font-size: 18px;
        max-width: 100%;
        gap: 4px;
    }

    .products-services figure:hover figcaption {
        transform: scale(1.05);
    }

    .our-clients .list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer {
        margin-top: 10px;
    }

    .site-footer .container {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
}