:root {
    --hg: 15rem;
}

@media screen and (max-width: 1600px) {
    :root {
        --hg: 5rem;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto";
}

body {
    background-color: #f6f6f6;
}

a {
    display: block;
}

.primary-color {
    color: #153a74;
}

.section-header {
    font-size: 48px;
}

.section-sub-header {
    font-size: 18px;
}

.button {
    min-width: 180px;
    padding: 20px 40px;
    text-align: center;
    border-radius: 5px;
    border: 0;
    text-decoration: none;
}

.button-primary {
    color: #fff;
    background-color: #153a74;
}

.button-secondary {
    color: #153a74;
    border: 1px solid #153a74;
}

.button-green {
    background-color: #6fdcb6;
    color: #fff;
}

.green-color {
    color: #6fdcb6;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 576px) {
    .section-header {
        font-size: 1.5rem;
    }

    .button {
        min-width: 120px;
        padding: 10px 20px;
    }
}

.faq-items {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.faq-items > .faq-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-items > .faq-item > .faq-item--header {
    display: block;
    color: #3e3f66;
    font-size: 25px;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

.faq-items > .faq-item > .faq-item--value {
    height: 0px;
    opacity: 0;
    display: block;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
}

.faq-item.active .faq-item--value {
    height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-item.active .faq-item--value ul {
    padding-left: 20px;
    padding-top: 10px;
}

.faq-item.active .faq-item--header {
    color: #6fdcb6;
}

@media screen and (max-width: 600px) {
    .faq-items {
        width: 100%;
    }

    .faq-items > .faq-item > .faq-item--header {
        font-size: 16px;
    }

    .faq-items > .faq-item > .faq-item--value {
        font-size: 16px;
    }
}

.footer > .footer-we-are-hiring {
    display: grid;
    padding: 0 26.5rem;
    grid-template-columns: 1fr 1fr;
}

.footer > .footer-we-are-hiring > .footer-we-are-hiring--content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.footer > .footer-we-are-hiring > .footer-we-are-hiring--content > h3 {
    font-size: 48px;
    font-weight: 800;
}

.footer > .footer-we-are-hiring > .footer-we-are-hiring--img-container {
    height: 500px;
    justify-self: center;
}

.footer > .footer-we-are-hiring > .footer-we-are-hiring--img-container > img {
    height: 100%;
}

.footer-subscribe {
    background-image: url("./images/sub.png");
    background-position: center;
    width: 70%;
    margin: 0 auto;
    border-radius: 20px;
    margin-top: -20px;
    z-index: 9;
    position: relative;
    display: flex;
    padding: 3rem;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

.footer-subscribe h3 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.footer-subscribe > span {
    font-size: 18px;
    color: #fff;
    display: block;
    margin-bottom: 40px;
}

.footer-subscribe--form {
    width: 55%;
}

.footer-subscribe--form > form {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .footer-subscribe--form > form {
        flex-direction: column;
    }
}

.footer-subscribe--form > form > input {
    width: 100%;
    border-radius: 10px;
    border: 0;
    padding: 10px;
}

.footer-subscribe--form > .footer-subscribe--form-text {
    margin-top: 10px;
    color: #fff;
    margin-left: 20px;
    font-size: 10px;
}

.footer-wrapper {
    margin-top: -100px;
    background-color: #153a74;
    padding: 0 var(--hg);
    padding-top: 150px;
    padding-bottom: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding-top: 2rem;
    gap: 40px;
}

.footer-content > .footer-content--col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-content > .footer-content--first > img {
    width: 300px;
}

.footer-content > .footer-content--first > span {
    font-size: 18px;
    color: #fff;
}

.footer-content > .footer-content--first > form {
    display: flex;
    gap: 10px;
}

.footer-content > .footer-content--first > form > input {
    flex: 1;
    border-radius: 5px;
    border: 0;
    padding: 10px;
}

.footer-content > .footer-content--first > form > button {
    padding: 15px;
    min-width: 100px;
}

.footer-content > .footer-content--link {
    justify-self: center;
}

.footer-content > .footer-content--col > h5 {
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
}

.footer-content > .footer-content--col > ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.footer-content > .footer-content--col > ul > a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-content > .footer-content--col > ul > a > img {
    width: 20px;
}

.footer-wrapper > .footer-content-bar {
    display: flex;
    width: 100%;
    margin: 0 auto;
    background-color: #21447b;
    border-bottom: 5px solid #6fdcb6;
    margin-top: 3rem;
    border-radius: 10px;
}

.footer-wrapper > .footer-content-bar > div {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 1.5rem 2rem;
}

.footer-wrapper > .footer-content-bar > div > div {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.footer-wrapper > .footer-content-bar > div > div > span:first-child {
    font-size: 18px;
    font-weight: bold;
}

.footer-wrapper > .footer-content-bar > div > div > span:last-child {
    font-size: 16px;
    color: #fff;
}

.footer-wrapper > .footer-content-bar > div > div > a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
}

.footer-wrapper > .footer-content-bar > div img {
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 1600px) {
    .footer > .footer-we-are-hiring {
        padding: 0 20rem;
    }
}

@media screen and (max-width: 992px) {
    .footer-wrapper {
        padding: 0 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer > .footer-we-are-hiring {
        padding: 0 3rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-wrapper {
        padding: 0 2rem;
    }

    .footer > .footer-we-are-hiring {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 576px) {
    .footer-content > .footer-content--first > img {
        width: 200px;
    }

    .footer-content > .footer-content--col {
        align-items: center;
    }

    .footer-wrapper > .footer-content-bar {
        flex-direction: column;
    }

    .footer-wrapper {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer > .footer-we-are-hiring {
        padding: 0 1rem;
    }

    .footer-subscribe {
        width: 90%;
    }

    .footer-subscribe--form {
        width: 100%;
    }

    .footer-subscribe h3 {
        font-size: 30px;
    }

    .footer-subscribe > span {
        font-size: 16px;
    }

    .footer-wrapper > .footer-content-bar > div {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-wrapper > .footer-content-bar > div img {
        width: 50px;
        height: 50px;
    }

    .footer > .footer-we-are-hiring {
        grid-template-columns: 1fr;
    }

    .footer > .footer-we-are-hiring > .footer-we-are-hiring--content {
        align-items: center;
        text-align: center;
    }

    .footer > .footer-we-are-hiring > .footer-we-are-hiring--img-container {
        justify-self: center;
        height: 300px;
    }

    .footer-subscribe {
        background-size: unset;
    }

    .footer-wrapper {
        margin-top: -10px;
        padding-bottom: 2rem;
    }
}

.header {
    height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}

.header > .header-image {
    height: 100%;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.header > .header-content--wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.header > .header-content--wrapper > .header-content {
    padding: 2rem 20rem;
    display: flex;
    flex-direction: column;
    color: #fff;
    width: 70%;
    gap: 30px;
}

.header > .header-content--wrapper > .header-content > h1 {
    font-size: 90px;
    font-weight: 900;
}

.header > .header-content--wrapper > .header-content > p {
    font-size: 25px;
    width: 95%;
}

.header > .header-content--wrapper > .header-content > .header-content--stores {
    display: flex;
    gap: 10px;
}

.header
    > .header-content--wrapper
    > .header-content
    > .header-content--stores
    > a
    > img {
    width: 210px;
}

.header-alt {
    overflow: hidden;
    position: relative;
    max-height: 100vh;
    height: 50vh;
}

.header-alt > .header-content--wrapper > .header-content > h1 {
    font-size: 75px;
}

.header-alt > .header-content--wrapper > .header-content > div {
    display: flex;
    gap: 20px;
}

.header-alt > .header-content--wrapper > .header-content > div > a {
    font-size: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.header-alt > .header-content--wrapper > .header-content > div > .green-color {
    color: #6fdcb6;
}

@media screen and (max-width: 1600px) {
    .header-alt {
        height: 60vh;
    }

    .header-content {
        position: relative;
        top: 30px;
    }

    .header > .header-content--wrapper > .header-content {
        padding: 2rem 7rem;
        display: flex;
        flex-direction: column;
        color: #fff;
        gap: 30px;
        width: 60%;
    }

    .header > .header-content--wrapper > .header-content > h1 {
        font-size: 70px;
    }

    .header > .header-content--wrapper > .header-content > p {
        font-size: 20px;
    }

    .header
        > .header-content--wrapper
        > .header-content
        > .header-content--stores
        > a
        > img {
        width: 150px;
    }
}

@media screen and (max-width: 992px) {
    .header > .header-content--wrapper > .header-content {
        padding: 2rem 5rem;
    }

    .header > .header-content--wrapper > .header-content > h1 {
        font-size: 60px;
    }

    .header > .header-content--wrapper > .header-content > p {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .header > .header-content--wrapper > .header-content {
        padding: 2rem 2rem;
        width: 100%;
    }

    .header > .header-content--wrapper > .header-content > h1 {
        font-size: 50px;
    }

    .header > .header-content--wrapper > .header-content > p {
        font-size: 18px;
    }

    .footer-content > .footer-content--first > form {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .header > .header-content--wrapper > .header-content > h1 {
        font-size: 40px;
    }

    .header > .header-content--wrapper > .header-content > p {
        font-size: 16px;
    }

    .header
        > .header-content--wrapper
        > .header-content
        > .header-content--stores
        > a
        > img {
        width: 100px;
    }
}

@media screen and (max-width: 500px) {
    .header {
        height: 60vh;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    background-color: transparent;
    color: white;
    font-size: 19px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    overflow: hidden;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    justify-content: center;
    color: black !important;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #6fdcb6;
}

@media screen and (max-width: 1600px) {
    .dropdown .dropbtn {
        font-size: 14px;
    }
}

.navigation {
    display: flex;
    align-items: center;
    padding: 2rem var(--hg);
    width: 100%;
    position: absolute;
    justify-content: space-between;
}

.navigation > ul.main-menu {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.navigation > ul > a {
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}

.navigation > .navigation-auth-button--container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-end;
}

.navigation > .navigation-auth-button--container > .navigation-auth-button {
    padding: 16px 48px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.navigation
    > .navigation-auth-button--container
    > .navigation-auth-button--login {
    background-color: #153a74;
    border: 1px solid #153a74;
    color: #fff;
}

.navigation
    > .navigation-auth-button--container
    > .navigation-auth-button--signup {
    background-color: #fff;
    border: 1px solid #fff;
    color: #153a74;
}

.navigation > .logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navigation > .logo-container > .logo {
    width: 200px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-menu .hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #153a74;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 999;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul a {
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    padding: 10px 0;
    align-items: center;
    display: flex;
}

.dropdown .dropdown-content {
    display: none;
    flex-direction: column;
}

.dropdown.active .dropdown-content {
    display: flex;
    animation: expand 0.3s ease;
}

.dropdown.active .dropdown-content a {
    color: #153a74;
}

@keyframes expand {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@media screen and (max-width: 1600px) {
    .navigation > .logo-container > .logo {
        width: 150px;
    }

    .navigation > .navigation-auth-button--container > .navigation-auth-button {
        padding: 10px 30px;
    }

    .navigation > ul > a {
        font-size: 14px;
    }
}

@media screen and (max-width: 900px) {
    .navigation > .navigation-auth-button--container,
    .navigation > ul.main-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}

@media screen and (max-width: 500px) {
    .navigation {
        padding: 2rem;
    }
}

.side-menu.active {
    left: 0;
}
.section-one {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    padding: 5rem var(--hg);
    gap: 50px;
}

.section-one > .section-one--content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.section-one > .section-one--content > p {
    font-size: 18px;
    line-height: 1.3;
}

.section-one > .section-one--content > .section-one--actions {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.section-one > .section-one--img-container {
    width: 100%;
}

.section-one > .section-one--img-container > img {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .section-one {
        padding: 3rem 3rem;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .section-one {
        padding: 2rem 2rem;
    }
}

@media screen and (max-width: 576px) {
    .section-one {
        padding: 1rem 1rem;
    }
}

@media screen and (max-width: 500px) {
    .section-one > .section-one--content {
        align-items: center;
        text-align: center;
    }
}

.section-two {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem var(--hg);
}

.section-two > .section-two--wrapper {
    padding: 4rem;
    border-radius: 20px;
    width: 100%;
    background-image: url("./images/section-two.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.section-two > .section-two--wrapper > .section-two--content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-two > .section-two--wrapper > .section-two--content > h2 {
    font-size: 32px;
}

.section-two > .section-two--wrapper > .section-two--content > p {
    font-size: 18px;
}

.section-two
    > .section-two--wrapper
    > .section-two--content
    > .section-two--content--cards {
    display: flex;
    gap: 10px;
}

.section-two
    > .section-two--wrapper
    > .section-two--content
    > .section-two--content--cards
    > .section-two--content--card {
    padding: 1rem 2rem;
    min-width: 330px;
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-two
    > .section-two--wrapper
    > .section-two--content
    > .section-two--content--cards
    > .section-two--content--card
    > span:first-child {
    font-size: 44px;
    font-weight: 600;
    color: #6fdcb6;
}

.section-two
    > .section-two--wrapper
    > .section-two--content
    > .section-two--content--cards
    > .section-two--content--card
    > span:last-child {
    font-size: 18px;
    color: black;
}

@media screen and (max-width: 1000px) {
    .section-two {
        padding: 3rem 3rem;
    }

    .section-two > .section-two--wrapper {
        grid-template-columns: 1fr;
    }

    .section-two > .section-two--wrapper > .section-two--content {
        align-items: center;
        text-align: center;
    }

    .section-two
        > .section-two--wrapper
        > .section-two--content
        > .section-two--content--cards
        > .section-two--content--card {
        padding: 1rem;
        min-width: unset;
    }

    .section-two
        > .section-two--wrapper
        > .section-two--content
        > .section-two--content--cards
        > .section-two--content--card
        > span:first-child {
        font-size: 25px;
    }
}

@media screen and (max-width: 800px) {
    .section-two
        > .section-two--wrapper
        > .section-two--content
        > .section-two--content--cards
        > .section-two--content--card
        > span:last-child {
        font-size: 12px;
        color: black;
    }

    .section-two > .section-two--wrapper {
        padding: 2rem 1rem;
    }

    .section-two > .section-two--wrapper > .section-two--content > h2 {
        font-size: 20px;
    }

    .section-two > .section-two--wrapper > .section-two--content > p {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .section-two
        > .section-two--wrapper
        > .section-two--content
        > .section-two--content--cards {
        flex-direction: column;
    }

    .section-two {
        padding: 1rem 1rem;
    }
}

.section-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem var(--hg);
}

.section-three > h2 {
    margin-bottom: 1rem;
}

.section-three > span {
    margin-bottom: 5rem;
}

.section-three--items {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.section-three--item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.section-three--item > .section-three--img-container > img {
    width: 100%;
}

.section-three--item > .section-three--item-content {
    padding: 30px 50px 30px 50px;
    display: flex;
    gap: 50px;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.section-three--item > .section-three--item-content > a {
    background-color: #6fdcb636;
    color: #6fdcb6;
    border-radius: 15px;
}

.section-three--item > .section-three--item-content > h4 {
    font-size: 24px;
    color: #0e72e5;
}

@media screen and (max-width: 992px) {
    .section-three {
        padding: 3rem 3rem;
        gap: 30px;
    }

    .section-three--items {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .section-three {
        padding: 2rem 2rem;
    }
}

@media screen and (max-width: 600px) {
    .section-three > span {
        margin-bottom: 1rem;
    }

    .section-three--item > .section-three--item-content {
        padding: 1rem;
    }

    .section-three--item > .section-three--item-content > h4 {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .section-three {
        padding: 1rem 1rem;
    }
}

.section-four {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 5rem var(--hg);
}

.section-four > h2 {
    margin-bottom: 1rem;
}

.section-four > span {
    margin-bottom: 5rem;
}

@media screen and (max-width: 992px) {
    .section-four {
        padding: 3rem 3rem;
    }
}

@media screen and (max-width: 768px) {
    .section-four {
        padding: 2rem 2rem;
    }
}

@media screen and (max-width: 576px) {
    .section-four {
        padding: 1rem 1rem;
    }

    .section-four > h2 {
        align-items: center;
        text-align: center;
    }

    .section-four > span {
        margin-bottom: 1rem;
    }
}

.section-five {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 5rem var(--hg);
}

.section-five > h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 90px;
}

.section-five > p {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 25px;
    color: #153a74;
}

.section-grid {
    width: 70%;
    margin: 0 auto;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media screen and (max-width: 1000px) {
    .section-five {
        padding: 3rem 3rem;
    }
}

@media screen and (max-width: 600px) {
    .section-five {
        padding: 3rem 1rem;
    }

    .section-five > h2 {
        margin-bottom: 1rem;
        font-size: 25px;
    }

    .section-five > p {
        margin-bottom: 1rem;
        font-size: 18px;
        color: #153a74;
    }

    .section-grid {
        width: 80%;
        margin-top: 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.section-five--item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    perspective: 1000px;
}

.flip-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-box-front {
    background-color: inherit;
    transform: rotateY(0deg);
    background: #fff;
}

.flip-box-back {
    background-color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #153a74;
    font-weight: 600;
    font-size: 20px;
}

@media screen and (max-width: 600px) {
    .section-five--item {
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
        height: 280px;
        perspective: 1000px;
    }

    .flip-box-back {
        font-size: 17px;
    }
}

.section-five--img-container > img {
    width: 100%;
}

.section-five--item-content {
    padding: 30px 50px;
    display: flex;
    gap: 50px;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.section-five--item-content > h4 {
    font-size: 24px;
    color: #0e72e5;
}

.section-five--item:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.section-six {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 5rem var(--hg);
}

.section-six > h2 {
    margin-bottom: 3rem;
    font-size: 90px;
}

.section-six > p {
    margin-bottom: 1rem;
    font-size: 25px;
    color: #153a74;
}

.section-six > .section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.section-six > .section-row > .section-row_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.section-six > .section-row > .section-row_content > h3 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #153a74;
    width: 80%;
}

.section-six > .section-row > .section-row_image {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.section-six > .section-row > .section-row_image > img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .section-six {
        padding: 3rem 3rem;
    }
}

@media screen and (max-width: 600px) {
    .section-six {
        padding: 3rem 1rem;
    }

    .section-six > h2 {
        margin-bottom: 1rem;
        font-size: 25px;
    }

    .section-six > p {
        margin-bottom: 1rem;
        font-size: 18px;
        color: #153a74;
    }

    .section-six > .section-row {
        grid-template-columns: 1fr;
    }

    .section-six > .section-row:nth-child(2) {
        display: flex;
        flex-direction: column-reverse;
    }

    .section-six > .section-row > .section-row_content {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .section-six > .section-row > .section-row_content > h3 {
        width: 100%;
        font-size: 25px;
        margin-bottom: 10px;
    }
}

.section-blog-content,
.section-blog {
    display: flex;
    padding: 5rem var(--hg);
}

.section-blog {
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.section-blog > .side-bar {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.section-blog > .side-bar > .card {
    padding: 1rem;
    border-radius: 5px;
    background-color: #fff;
}

.section-blog > .side-bar > .card > h3 {
    color: #0e72e5;
    margin-bottom: 1rem;
}

.section-blog > .side-bar > .card > a {
    color: #1c3f39;
    text-decoration: none;
    padding-bottom: 5px;
}

.section-blog > .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.section-blog > .section-grid > .section-blog--item {
    background-color: #fff;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_img-container {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_img-container
    > img {
    width: 100%;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_wrapper {
    padding: 1rem;
    gap: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_wrapper
    > .section-blog--date {
    position: absolute;
    background-color: #0e72e5;
    color: #fff;
    padding: 5px;
    right: 0;
    top: -20px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_wrapper
    > .section-blog--item_author-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_wrapper
    > .section-blog--item_author-wrapper
    > .section-blog--item_author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_wrapper
    > .section-blog--item_author-wrapper
    > .section-blog--item_author
    > span:first-child {
    font-weight: 600;
}

.section-blog
    > .section-grid
    > .section-blog--item
    > .section-blog--item_wrapper
    > .section-blog--item_content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media screen and (max-width: 1000px) {
    .section-blog > .section-grid > .section-blog--item {
        height: auto;
    }
    .section-blog-content,
    .section-blog {
        padding: 3rem 3rem;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .section-blog-content,
    .section-blog {
        padding: 3rem 1rem;
        grid-template-columns: 1fr;
    }

    .section-blog > .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.section-contactus {
    display: flex;
    padding: 5rem var(--hg);
    display: grid;
    gap: 2rem;
}

.section-contactus > .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.section-contactus > .section-grid > form {
    padding: 2rem 1rem;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-contactus > .section-grid > form > h2 {
    font-size: 2rem;
}

.section-contactus > .section-grid > form > span {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-contactus > .section-grid > form > input {
    padding: 15px 20px;
    width: 80%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.section-contactus > .section-grid > form > input:focus {
    border: 1px solid #0d72e5;
    outline: none;
}

.section-contactus > .section-grid > form > textarea {
    padding: 15px 20px;
    max-width: 80%;
    min-height: 100px;
    height: 150px;
    max-height: 300px;
    min-width: 80%;
    width: 80%;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.section-contactus > .section-grid > form > textarea:focus {
    border: 1px solid #0d72e5;
    outline: none;
}

.section-contactus > .section-grid > form > div {
    width: 80%;
    display: flex;
    align-items: center;
}

.section-contactus > .section-grid > form > div > input {
    margin-right: 10px;
}

.section-contactus > .section-grid > form > div > label {
    font-size: 10px;
}

.section-contactus > .section-grid > .section-contactus--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.section-contactus > .section-grid > .section-contactus--content > p {
    display: inline;
}

.section-contactus > .section-grid > .section-contactus--content > p > a {
    display: inline;
}

.section-contactus > .section-grid > .section-contactus--content > div {
    display: flex;
    gap: 10px;
    padding: 1rem 3rem;
    align-items: flex-start;
}

.section-contactus > .section-grid > .section-contactus--content > div > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.section-contactus
    > .section-grid
    > .section-contactus--content
    > div
    > div
    > span:first-child {
    color: #153a74;
    font-size: 20px;
}

.section-contactus
    > .section-grid
    > .section-contactus--content
    > div
    > div
    > span:last-child {
    color: #153a74;
    font-size: 20px;
    text-align: start;
}

.section-contactus
    > .section-grid
    > .section-contactus--content
    > div
    > div
    > a {
    color: #153a74;
    font-size: 20px;
    text-decoration: none;
}

@media screen and (max-width: 1000px) {
    .section-contactus > .section-grid > form > h2 {
        text-align: center;
    }

    .section-contactus > .section-grid > form > span {
        text-align: center;
    }

    .section-contactus {
        padding: 3rem 3rem;
    }

    .section-contactus > .section-grid {
        grid-template-columns: 1fr;
    }

    .section-contactus > .section-grid > .section-contactus--content > p {
        text-align: center;
    }
}

.flip-horizontal {
    transform: scaleX(-1);
}

.section-values {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 5rem var(--hg);
}

h2.primary-color.section-header {
    margin-bottom: 50px;
}

.section-values > ul {
    display: grid;
    list-style: none;
    gap: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.section-values > ul > li {
    font-size: 20px;
    text-align: center;
    grid-column: span 2;
}

.section-values > ul > li > span {
    font-size: 22px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #153a74;
}

.list-nm {
    padding-left: 150px;
}

.list-nm:last-child {
    padding-right: 150px;
    padding-left: 0;
}

.list-ar {
    padding-right: 150px;
}

.list-ar:last-child {
    padding-right: 0;
    padding-left: 150px;
}

.section-values > ul > li:nth-child(4),
.section-values > ul > li:nth-child(5) {
    grid-column: span 3;
    justify-self: center;
}

@media screen and (max-width: 1000px) {
    .section-values {
        padding: 3rem 3rem;
    }
}

@media screen and (max-width: 600px) {
    .section-values {
        padding: 3rem 1rem;
    }

    .section-values > ul {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .list-nm {
        padding-left: 0;
    }

    .list-nm:last-child {
        padding-right: 0;
        padding-left: 0;
    }

    .list-ar {
        padding-right: 0;
    }

    .list-ar:last-child {
        padding-right: 0;
        padding-left: 0;
    }

    .section-values > ul > li:nth-child(4),
    .section-values > ul > li:nth-child(5) {
        grid-column: 1/3;
        justify-self: center;
    }

    .section-values > ul > li > span {
        font-size: 18px;
    }
}

.blog-view-title {
    font-size: 30px !important;
}

.section-blog-content {
    gap: 15px;
    margin-bottom: 5rem;
    display: flex;
    text-align: start;
    flex-direction: column;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 5rem;
}

.blog-view-title-cont {
    margin-bottom: -80px;
}
