.site-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.site-header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 90px;
    padding: 20px 8%;
}

.site-header .top-bar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header .top-bar .logo img {
    height: 40px;
}

.site-header .top-bar .logo h2 {
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.site-header .top-bar .toggle-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 8px;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.site-header .top-bar .toggle-menu span,
.site-header .top-bar .toggle-menu::before,
.site-header .top-bar .toggle-menu::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #222;
}

.site-header .top-bar .toggle-menu span {
    margin: 4px 0px;
}

.site-header .top-bar .site-nav {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}

.site-header .top-bar .site-nav::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background-color: #0006;
    cursor: pointer;
}

.site-header .top-bar .site-nav nav {
    position: relative;
    width: 240px;
    background-color: #fff;
    left: -240px;
    transition: all 0.5s ease-in-out;
}

.site-header .top-bar .site-nav nav .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 20px;
}

.site-header .top-bar .site-nav nav .nav-logo img {
    height: 40px;
}

.site-header .top-bar .site-nav nav ul:last-child {
    display: block;
    gap: 20px;
}

.site-header .top-bar .site-nav nav ul:last-child li {
    padding: 0px 20px;
}

.site-header .top-bar .site-nav nav ul:last-child li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    color: #00B050;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.site-header .top-bar .site-nav nav ul:last-child li:last-child {
    margin-top: 15px;
    border-radius: 20px;
}

.site-header .top-bar .site-nav nav ul:last-child li:last-child a {
    background-color: #467BA3;
    color: #fff;
}

.site-header .top-bar .site-nav nav ul.menu-links {
    flex: 1;
    margin-bottom: 20px;
}

.site-header .top-bar .site-nav nav ul.menu-links li {
    padding: 0px 20px;
}

.site-header .top-bar .site-nav nav ul.menu-links li a {
    display: block;
    font-size: 14px;
    color: #222;
    font-weight: 400;
    padding: 15px 0px;
    border-bottom: 0px solid #e1aead66;
}

.site-header .hero-wrapper {
    padding: 0px 8%;
    opacity: 0;
    transition: all 0.8s ease-in-out;
}
.site-header .hero-wrapper.animate {
    opacity: 1;
}
.site-header .hero-wrapper .hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1240px;
    margin: 0px auto;
}

.site-header .hero-wrapper .hero-content .text-content {
    display: flex;
    flex-direction: column;
    max-width: 880px;
    margin: 0px auto;
    position: relative;
}

.site-header .hero-wrapper .hero-content .text-content .happy-customers img {
    height: 40px;
    margin: 0px auto;
}

.site-header .hero-wrapper .hero-content .text-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.site-header .hero-wrapper .hero-content .text-content p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

.site-header .hero-wrapper .hero-content .text-content .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.site-header .hero-wrapper .hero-content .text-content .actions a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 40px;
    width: fit-content;
    padding: 0px 30px;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    animation: bounceer 2s linear infinite
}

@keyframes bounceer {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

.site-header .hero-wrapper .hero-content .img-content {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
}

.site-header .hero-wrapper .hero-content .img-content .first-section {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.site-header .hero-wrapper .hero-content .img-content .first-section img {
    width: 200px;
}

.site-header .hero-wrapper .hero-content .img-content .first-section .col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-header .hero-wrapper .hero-content .img-content .first-section .col img {
    width: 200px;
}

.site-header .hero-wrapper .hero-content .img-content .first-section .col .text-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 200px;
    background-color: #000;
    border-radius: 10px;
    padding: 20px;
}

.site-header .hero-wrapper .hero-content .img-content .first-section .col .text-col b {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.site-header .hero-wrapper .hero-content .img-content .first-section .col .text-col span {
    font-size: 14px;
    color: #fff;
}

.site-header .hero-wrapper .hero-content .img-content .second-section {
    display: flex;
    justify-content: center;
}

.site-header .hero-wrapper .hero-content .img-content .second-section img {
    width: 200px;
    height: 200px;
}

.site-header .hero-wrapper .hero-content .img-content .third-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

.site-header .hero-wrapper .hero-content .img-content .third-section img {
    width: 200px;
}

.site-header .hero-wrapper .hero-content .img-content .third-section .col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-header .hero-wrapper .hero-content .img-content .third-section .col img {
    width: 200px;
}

.site-header .hero-wrapper .hero-content .img-content .third-section .col .text-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 200px;
    background-color: #000;
    border-radius: 10px;
    padding: 20px;
}

.site-header .hero-wrapper .hero-content .img-content .third-section .col .text-col b {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.site-header .hero-wrapper .hero-content .img-content .third-section .col .text-col span {
    font-size: 14px;
    color: #fff;
}

.home-header .header-content {
    background: linear-gradient(180deg, rgba(215, 238, 255, 1) 68%, rgba(255, 255, 255, 1) 100%);
}

.page-header .header-content {
    background: #D7EEFF;
}

@media screen and (min-width: 880px) {
    .site-header .top-bar {
        justify-self: unset;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .toggle-menu {
        display: none;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav::before {
        display: none;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav {
        display: flex;
        flex: 1;
        position: unset;
        background-color: unset;
        height: unset;
        width: unset;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav {
        display: flex;
        flex-direction: row;
        background-color: unset;
        flex: 1;
        width: unset;
        height: unset;
        left: unset;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav .nav-logo {
        display: none;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul:last-child {
        display: flex;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul:last-child li {
        padding: unset;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul:last-child li a {
        padding: 10px 20px;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul:last-child li:last-child {
        margin-top: 0px;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul.menu-links {
        margin-bottom: 0px;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul.menu-links li {
        padding: 0px;
    }
}

@media screen and (min-width: 880px) {
    .site-header .top-bar .site-nav nav ul.menu-links li a {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 15px 20px;
    }
}

@media screen and (min-width: 720px) {
    .site-header .hero-wrapper {
        padding: 50px 8%;
    }
}

@media screen and (min-width: 720px) {
    .site-header .hero-wrapper .hero-content .text-content h2 {
        font-size: 30px;
    }

    .site-header .hero-wrapper .hero-content .text-content p {
        font-size: 17px;
        line-height: 28px;
    }
}

@media screen and (min-width: 880px) {
    .site-header .hero-wrapper .hero-content .text-content h2 {
        font-size: 45px;
    }

    .site-header .hero-wrapper .hero-content .text-content .actions a {
        height: 50px;
        padding: 0px 30px;
        font-size: 15px;
    }
}

@media screen and (min-width: 880px) {
    .site-header .hero-wrapper .hero-content .img-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}