.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;

    & .inner {
        gap: 30px;
        width: 100%;
        height: 90px;
        display: flex;
        position: relative;
        align-items: center;
        padding-inline: 20px;
        justify-content: center;

        &::before {
            content: "";
            width: 100%;
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            background: linear-gradient(
                to right,
                transparent,
                var(--light-color) 50%,
                transparent
            );
        }

        & .logo {
            width: 120px;
            transform: translateY(7px);
        }

        & .links {
            gap: 5px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            & .link {
                padding: 5px;
                cursor: pointer;
                text-wrap: nowrap;
                position: relative;
                color: var(--light-color);

                & i {
                    font-size: 14px;
                }

                &::after {
                    content: "";
                    width: 0;
                    height: 2px;
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transition: 0.2s;
                    transform: translateX(-50%);
                    background-color: var(--light-color);
                }

                &:hover:not(.active),
                &.active {
                    &::after {
                        width: 100%;
                    }
                }
            }

            & .parentLink,
            & .nestedParentLink {
                position: relative;

                & span {
                    gap: 5px;
                    display: flex;
                    align-items: center;

                    & i {
                        transform: translateY(2px);
                    }
                }

                & .nestedList {
                    width: auto;
                    min-width: 110px;
                    text-align: center;
                    position: absolute;
                    top: 100%;
                    right: 0;
                    opacity: 0;
                    visibility: hidden;
                    transform: translateY(20px);
                    background-color: var(--main-color);
                    box-shadow: 0 0 3px -1px var(--dark-color);

                    & li {
                        & .link {
                            width: 100%;
                            height: 100%;
                            padding: 15px;
                            display: block;
                            font-size: 16px;
                            text-wrap: nowrap;

                            &:hover,
                            &.active {
                                border: none;
                                font-weight: normal;
                                color: var(--light-color);
                                background-color: var(--main-color-light);
                            }
                        }
                    }

                    &.show {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0);
                    }

                    & .nestedList {
                        right: -112px;
                    }
                }
            }
        }

        & .userActions {
            gap: 20px;
            display: flex;
            text-wrap: nowrap;
            align-items: center;

            & .menu {
                display: none;
            }

            & .search {
                display: flex;
                position: relative;
                align-items: center;
                flex-direction: row-reverse;

                & i {
                    width: 40px;
                    height: 40px;
                    cursor: pointer;
                    border-radius: 50%;
                    text-align: center;
                    align-content: center;
                    color: var(--main-color);
                    background-color: var(--light-color);
                    border: 2px solid var(--light-color);

                    &:active {
                        transform: translateY(2px) scale(0.95);
                    }
                }

                & .searchBar {
                    width: 0;
                    height: 40px;
                    border-radius: 3px;
                    position: relative;
                    background-color: var(--light-color);

                    &.show {
                        width: 200px;
                        opacity: 1;
                        visibility: visible;
                        margin-inline-end: 20px;
                        transform: translateY(0);
                    }

                    & input {
                        width: calc(100% - 10px);
                        height: 100%;
                        border: none;
                        outline: none;
                        position: absolute;
                        top: 0;
                        left: 0;
                        border-radius: 5px;
                        color: var(--main-color);

                        &::placeholder {
                            color: var(--main-color);
                        }
                    }
                }
            }

            & .link {
                width: 100%;
                height: 100%;
                display: block;
                text-align: center;
                align-content: center;
                color: var(--light-color);
                padding: 5px 20px;
                border-radius: 7px;
                border: 1px solid var(--light-color);

                &.active,
                &:hover {
                    color: var(--light-color);
                    background-color: var(--main-color);
                }
            }
        }
    }
}

.footer {
    padding: 70px 50px;
    color: var(--light-color);
    background-color: var(--main-color);

    & * {
        font-weight: 700 !important;
    }

    & .row {
        gap: 36px;
        width: 100%;
        display: flex;
        margin-bottom: 50px;

        & .col {
            gap: 36px;
            display: flex;
            width: fit-content;
            flex-direction: column;

            & h2 {
                font-size: 20px;
                font-weight: 700;
                text-wrap: nowrap;
                line-height: 52.47px;
            }

            & .text {
                line-height: 2;
                text-align: justify;
            }

            & ul {
                gap: 16px;
                display: flex;
                flex-direction: column;

                & li {
                    & a {
                        line-height: 2;
                        font-size: 20px;
                        font-weight: 400;
                        color: var(--light-color);
                        text-decoration: underline;

                        & span {
                            direction: ltr !important;
                            display: inline-block;
                        }
                    }
                }
            }

            & form {
                height: 70px;
                position: relative;
                border-radius: 7px;
                color: var(--main-color);
                background-color: var(--light-color);

                & input {
                    width: 100%;
                    height: 100%;
                    font-size: 20px;
                    padding: 20px 10px;
                    color: var(--main-color);
                }

                & input::placeholder {
                    opacity: 0.7;
                    color: var(--main-color);
                }

                & input,
                & button {
                    border: none;
                    outline: none;
                    background-color: transparent;
                }

                & button {
                    position: absolute;
                    top: 50%;
                    left: 10px;
                    cursor: pointer;
                    font-size: 24px;
                    transform: translateY(-50%);

                    &:active {
                        transform: translateY(2px) scale(0.95);
                    }

                    & i {
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        align-items: center;
                        align-content: center;
                        transform: scaleX(-1);
                        color: var(--light-color);
                        background-color: var(--main-color);
                    }
                }
            }
        }

        & .col:first-child {
            & ul {
                gap: 32px;
                display: flex;
                align-items: center;
                flex-direction: row;

                & li {
                    position: relative;

                    &::after {
                        content: "";
                        width: 0;
                        height: 2px;
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        transition: 0.3s;
                        transform: translateX(-50%);
                        background-color: var(--light-color);
                    }

                    &:hover {
                        &::after {
                            width: 150%;
                        }
                    }

                    & a {
                        font-size: 16.5px;
                    }
                }
            }
        }

        & .col:first-child,
        & .col:last-child {
            width: 300px;
        }

        & .col:nth-child(2),
        & .col:nth-child(3) {
            width: 200px;
        }

        & .col:last-child {
            & ul {
                & li {
                    & a {
                        font-size: 16px;
                    }
                }
            }
        }
    }

    & .copyRight {
        gap: 16px;
        display: flex;
        text-align: center;
        flex-direction: column;

        & ul {
            gap: 8px;
            display: flex;
            font-size: 22px;
            align-items: center;
            justify-content: center;

            &:first-of-type {
                & li {
                    & a {
                        text-decoration: underline;
                    }
                }
            }

            &:first-of-type,
            &:nth-of-type(2) {
                gap: 80px;
            }

            &:last-of-type {
                & li:last-of-type {
                    font-weight: 700;
                }
            }

            & li {
                & a {
                    color: var(--light-color);
                }
            }
        }
    }
}

.home-section,
.about-us-section {
    & .bg {
        position: relative;

        &::after {
            content: "";
            width: 100%;
            height: calc(100% + 50px);
            position: absolute;
            top: 0;
            left: 50%;
            z-index: -2;
            transform: translateX(-50%);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center top;
        }
    }
}
.p-30 {
    padding: 30px;
}
.home-section {
    position: relative;
    overflow: hidden;

    & .bg {
        &::after {
            background-image: url("../images/backgrounds/home-bg2.png");
        }
    }

    & .inner-text {
        width: 760px;
        display: flex;
        gap: 30px;
        margin: auto;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        color: var(--light-color);
        position: absolute;
        top: 200px;
        left: 50%;
        transform: translateX(-50%);

        & h2 {
            font-size: 36px;
            font-weight: 700;
        }

        & p {
            width: 80%;
            font-size: 20px;
            font-weight: 400;
        }

        & .action {
            & .link {
                font-size: 24px;
                padding: 5px 20px;
                text-align: center;
                border-radius: 7px;
                color: var(--light-color);
                border: 1px solid var(--light-color);

                & span {
                    padding-left: 5px;
                }

                & i {
                    height: 50%;
                    padding-right: 10px;
                    align-content: center;
                    border-right: 1px solid var(--light-color);
                }

                &.active,
                &:hover {
                    border: none;
                    color: var(--light-color);
                    background-color: var(--main-color);
                    box-shadow: 0 2px 0px 0px var(--dark-color);

                    & i {
                        border-right: 1px solid var(--light-color);
                    }
                }
            }
        }
    }

    & .home-preview {
        position: relative;
        z-index: 5;
        transform: translateY(-70px);

        & .card-wrapper {
            max-width: 700px;
            min-height: 650px;
            margin: 0 auto 35px;
            padding-inline: 10px;

            & .swiper-slide {
                position: relative;

                & .slide {
                    padding: 20px;
                    user-select: none;
                    border-radius: 25px;
                    background-color: var(--main-color);

                    &:active {
                        cursor: grabbing;
                    }

                    & .image {
                        width: 100%;
                        height: 100%;
                        overflow: hidden;
                        border-radius: 5px;
                    }
                }
            }
        }
    }
}

.shadow {
    width: 100%;
    height: 100%;

    &::before,
    &::after {
        content: "";
        position: absolute;
        height: 100%;
        left: 50%;
        border-radius: 0 0 25px 25px;
        transform: translateX(-50%);
    }

    &::before {
        width: calc(100% - 50px);
        bottom: -25px;
        z-index: -1;
        background-color: #88c1eb;
    }

    &::after {
        width: calc(100% - 100px);
        bottom: -50px;
        z-index: -2;
        background-color: #bddaf2;
    }
}

.about-us-section {
    position: relative;
    z-index: 5;

    & .bg {
        &::after {
            background-image: url("../images/backgrounds/about-us-bg2.png");
        }
    }

    & .inner-text {
        text-wrap: nowrap;
        gap: 20px;
        margin: auto;
        display: flex;
        z-index: 5;
        padding-top: 20%;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        justify-content: center;
        color: var(--light-color);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);

        & h2 {
            font-size: 36px;
            font-weight: 700;
        }

        & p {
            width: 80%;
            font-size: 20px;
            font-weight: 400;
        }

        & .action {
            & .link {
                font-size: 24px;
                padding: 5px 20px;
                text-align: center;
                border-radius: 7px;
                color: var(--light-color);
                border: 1px solid var(--light-color);

                & span {
                    padding-left: 5px;
                }

                & i {
                    height: 50%;
                    padding-right: 10px;
                    align-content: center;
                    border-right: 1px solid var(--light-color);
                }

                &.active,
                &:hover {
                    border: none;
                    color: var(--light-color);
                    background-color: var(--main-color);
                    box-shadow: 0 2px 0px 0px var(--dark-color);

                    & i {
                        border-right: 1px solid var(--light-color);
                    }
                }
            }
        }
    }
}

.head {
    gap: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    & h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--red-color);
    }

    & a {
        font-size: 24px;
        font-weight: 400;
        color: var(--light-color);
        text-decoration: underline;
    }
}

.counter-section {
    gap: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-inline: 20px;
    margin: 100px;
    justify-content: space-around;

    & .count {
        width: 270px;
        height: 250px;
        position: relative;
        text-align: center;
        align-content: center;

        &::before,
        &::after {
            content: "";
            width: 90%;
            height: 90%;
            position: absolute;
            top: 50%;
            left: 50%;
            border: 12px solid var(--main-color-light);
            box-shadow: 0 0 50px inset var(--main-color-light),
                0 0 50px var(--main-color-light);
            border-radius: 65% 45% 65% 45% / 65% 45% 65% 45%;
        }

        &::before {
            transform: translate(-50%, -50%);
        }

        &::after {
            transform: translate(-50%, -50%) rotate(-90deg);
        }

        & span {
            font-size: 36px;
            font-weight: 700;
            color: var(--red-color);
        }

        & p {
            font-size: 20px;
            font-weight: 700;
        }
    }
}

.introduce-section {
    gap: 36px;
    display: flex;
    padding: 90px;
    align-items: flex-end;
    background-color: var(--main-color-light-300);

    & .image {
        width: 35%;
        height: fit-content;
    }

    & .text {
        flex: 1;

        & h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 50px;
            color: var(--red-color);
        }

        & p {
            padding: 20px;
            font-size: 24px;
            line-height: 2;
            font-weight: 500;
            border-radius: 25px;
            border: 1px solid #C73B4D;
        }
    }
}

/* .about-us-page {
    .introduce-section {
        background-color: var(--main-color-light);
    }
} */

.slider-section {
    & .message-section {
        padding: 36px;
        font-size: 24px;
        line-height: 2;
        font-weight: 700;
        margin-inline: 50px;
        border-radius: 25px;
        margin-bottom: 70px;
        border: 1px solid var(--main-color);
    }

    & .card-wrapper {
        max-width: 1100px;
        margin: 0 auto 35px;
        padding: 30px 15px;
        position: relative;
        overflow: hidden;

        & .swiper-wrapper {
            margin-bottom: 50px;
            align-items: center;

            & .slide {
                padding: 36px;
                user-select: none;
                border-radius: 10px;
                border: 1px solid var(--main-color-light);

                &:active {
                    cursor: grabbing;
                }

                & .image {
                    width: 170px;
                    height: 170px;
                    margin: auto;
                    border-radius: 50%;
                }

                & .text {
                    gap: 20px;
                    display: flex;
                    margin-bottom: 30px;
                    flex-direction: column;
                    justify-content: space-between;

                    & h2 {
                        line-height: 2;
                        font-size: 20px;
                        text-align: center;
                        font-weight: 700;
                        color: var(--red-color);
                    }

                    & p {
                        line-height: 2;
                        font-weight: 400;
                        text-align: justify;
                    }
                }

                & .action {
                    & .link {
                        width: 100%;
                        display: flex;
                        padding: 10px 20px;
                        font-size: 24px;
                        border-radius: 12px;
                        align-items: center;
                        color: var(--main-color);
                        justify-content: center;
                        border: 2px solid var(--main-color);

                        & span {
                            width: 100%;
                            padding-left: 5px;
                            text-align: center;
                        }

                        & i {
                            width: fit-content;
                            height: 50%;
                            padding-right: 10px;
                            align-content: center;
                            border-right: 1px solid var(--main-color);
                        }
                    }
                }

                &:hover,
                &.active {
                    border: none;
                    background-color: var(--main-color-light-300);
                    box-shadow: 0 0 10px 7px var(--main-color-light-300),
                        0 0 10px 7px var(--main-color-light-300),
                        0 0 10px 7px var(--main-color-light-300);

                    & .action {
                        & .link {
                            color: var(--light-color);
                            background-color: var(--main-color);
                            box-shadow: 0 2px 0px 0px var(--dark-color);

                            & i {
                                border-right: 1px solid var(--light-color);
                            }
                        }
                    }
                }
            }
        }

        &.circle-slider {
            margin: auto;

            & .swiper-wrapper {
                & .slide {
                    width: 220px;
                    min-width: 220px;
                    height: 220px;
                    margin: auto;
                    padding: 0;
                    padding: 10px;
                    border-radius: 50%;
                    align-content: center;
                    border: 10px solid var(--main-color);

                    &:active {
                        cursor: grabbing;
                    }

                    & .image {
                        width: auto;
                        height: auto;
                    }

                    &:hover,
                    &.active {
                        box-shadow: none;
                        background-color: transparent;
                        border: 10px solid var(--main-color);
                        background: radial-gradient(
                            50% 50% at 50% 50%,
                            var(--main-color) 0%,
                            #3d3d3d 100%
                        );
                        box-shadow: 0px 0px 50px 0px #8cc4ed,
                            0px 0px 28px 0px #8cc4ed, 0px 0px 16px 0px #8cc4ed,
                            0px 0px 8.346px 0px #8cc4ed,
                            0px 0px 2.385px 0px #8cc4ed,
                            0px 0px 1.192px 0px #8cc4ed;
                    }
                }
            }
        }
    }

    &.projects-section {
        padding-bottom: 50px;
        background-color: var(--main-color-light-300);
    }

    &.client-reviews-section {
        margin-top: 50px;
        background-color: var(--main-color);

        & .head {
            & h2 {
                color: var(--light-color);
            }
        }

        & .card-wrapper {
            margin: 0 auto 0 !important;

            & .swiper-wrapper {
                & .slide {
                    border: none;
                    padding: 20px;
                    text-align: center;
                    background-color: var(--light-color);

                    &:active {
                        cursor: grabbing;
                    }

                    & .stars {
                        gap: 5px;
                        display: flex;
                        font-size: 18px;
                        color: #eabd54;
                        align-items: center;
                        justify-content: center;
                    }

                    & .text {
                        gap: 10px;

                        & h2 {
                            font-size: 20px;
                            text-wrap: nowrap;
                            margin-top: 10px;
                            color: var(--dark-color);
                        }

                        /* & p {
                            text-wrap: balance;
                        } */
                    }

                    &:hover,
                    &.active {
                        box-shadow: none;
                    }
                }
            }
        }

        .swiper-pagination-bullet {
            background-color: var(--main-color) !important;
        }
    }
}

.projects-section {
    background-color: var(--main-color-light-300);
}

.swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    margin: auto;
    text-align: center;
    background-color: var(--main-color);
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-slide-button {
    color: var(--main-color);
    margin-top: -35px;
}

.faster-services-section {
    padding-bottom: 50px;
    background-color: var(--main-color-light);

    & .cards {
        gap: 64px;
        display: grid;
        padding-inline: 50px;
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));

        & .card {
            padding: 30px;
            text-align: center;
            border-radius: 25px;
            background-color: var(--light-color);

            & .image {
                width: 50%;
                width: calc(270px / 2);
                height: calc(270px / 2);
                margin: auto;
                padding: 25px;
                align-content: center;
                border-radius: 50%;
                box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.15);
            }

            & h2 {
                margin-top: 20px;
                color: var(--red-color);
            }
        }
    }
}

/* About-us page */
.about-us-page,
.contact-us-page,
.common-questions-page {
    background-color: #E3EEFB;

    & .services-section {
        & .services-card-wrapper {
            & .slide {
                border: none;
                border-radius: 24px;
                background-color: var(--main-color-light-300);

                &:active {
                    cursor: grabbing;
                }

                &:hover,
                &.active {
                    border: none;
                    box-shadow: 0px 0px 30px -5px var(--main-color-light-300),
                        0px 0px 20px -5px var(--main-color-light-300),
                        0px 0px 10px -5px var(--main-color-light-300);
                }
            }
        }
    }
}
.section-with-text {
    & .inner-text {
        text-wrap: nowrap;
        gap: 20px;
        margin: auto;
        display: flex;
        z-index: 5;
        padding-top: 15%;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        justify-content: center;
        color: var(--light-color);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);

        & h2 {
            font-size: 36px;
            font-weight: 700;
        }

        & p {
            width: 80%;
            font-size: 20px;
            font-weight: 400;
        }
        @media screen and (max-width: 768px) {
            gap: 0px;

            & h2 {
                font-size: 22px;
            }

            & p {
                font-size: 16px;
            }
            
        }
    }
}
/* Contact-us page */
.contact-us-page {
    background-color: var(--main-color-light);

    & .contact-us-section {
        & .inner {
            width: calc(100% - (64px * 2));
            width: 70%;
            margin: auto;
            padding: 20px 30px 30px;
            margin: 64px auto 0;
            border-radius: 14px;
            background-color: var(--main-color-light-300);

            & .head {
                width: 100%;
                padding: 0 0 30px;
                text-align: center;

                & h2 {
                    font-size: 28px;
                    font-weight: 500;
                    color: var(--dark-color);
                }

                & p {
                    font-size: 22px;
                    font-weight: 400;
                    color: var(--dark-color);
                }
            }

            & form {
                gap: 20px;
                display: flex;
                border-radius: 24px;
                flex-direction: column;
                box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.03);

                & .group:not(:has(select)) {
                    gap: 20px;
                    display: flex;
                    align-items: center;

                    & input,
                    & select,
                    & textarea {
                        border: none;
                        outline: none;
                        width: 100%;
                        height: 100%;
                        padding: 10px;
                        font-size: 24px;
                        font-weight: 400;
                        border-radius: 12px;
                        color: var(--dark-color);
                        background-color: transparent;
                        border: 2px solid var(--dark-color-300);
                    }

                    & textarea {
                        height: 200px;
                        resize: none;
                    }
                }

                & .group:has(select) {
                    display: flex;
                    padding-inline: 24px;
                    align-items: center;
                    border-radius: 12px;
                    border: 2px solid var(--dark-color-300);

                    & select {
                        border: none;
                        outline: none;
                        background-color: transparent;
                    }

                    & input {
                        border: none;
                        outline: none;
                        width: 100%;
                        height: 100%;
                        padding: 10px;
                        font-size: 24px;
                        font-weight: 400;
                        border-radius: 12px;
                        background-color: transparent;
                        color: var(--light-300-color);
                    }

                    & img {
                        width: 50px;
                    }
                }

                & .action {
                    width: 100%;
                    margin: auto;
                    overflow: hidden;
                    border-radius: 12px;
                    box-shadow: 0 3px 0px 0px var(--dark-color);

                    & .link {
                        width: 100%;
                        height: 100%;
                        padding: 10px;
                        display: block;
                        font-size: 24px;
                        cursor: pointer;
                        position: relative;
                        text-align: center;
                        align-content: center;
                        color: var(--light-color);
                        background-color: var(--main-color);
                        border: 1px solid var(--main-color);

                        & span {
                            padding-left: 5px;
                        }

                        & i {
                            height: 50%;
                            position: absolute;
                            top: 50%;
                            left: 20px;
                            padding-right: 10px;
                            align-content: center;
                            transform: translateY(-50%);
                            border-right: 1px solid var(--light-color);
                        }
                    }
                }
            }
        }
    }
}

/* Common-questions-page */
.common-questions-page {
    & .questions-section {
        gap: 36px;
        display: flex;
        padding: 64px;
        flex-direction: column;

        & .head {
            gap: 20px;
            display: flex;
            padding: 0;
            align-items: center;
            justify-content: space-between;

            & h2 {
                font-size: 26px;
                font-weight: 700;
                color: var(--red-color);
            }
        }

        & .questions {
            & ul {
                gap: 36px;
                display: flex;
                flex-direction: column;

                & .head-question {
                    gap: 20px;
                    display: flex;
                    align-items: center;
                    margin-bottom: 20px;

                    & h2 {
                        flex: 1;
                    }

                    & i {
                        width: 50px;
                        height: 50px;
                        font-size: 20px;
                        cursor: pointer;
                        text-align: center;
                        border-radius: 50%;
                        align-content: center;
                        color: var(--dark-color);
                        background-color: var(--main-color);
                        box-shadow: 1px 2px 0 var(--dark-color);

                        &:active {
                            transform: translateY(2px) scale(0.95);
                        }
                    }
                }

                & li {
                    & ul {
                        display: none;
                        padding-inline-start: 70px;

                        & li {
                            list-style: disc;
                        }

                        &.show {
                            display: block;
                        }
                    }
                }
            }
        }
    }
}

/* Animation card [fade up] */
.fadeUp {
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
    transform: translateY(70px);

    &.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.primary-link {
    padding: 10px 20px;
    font-size: 18px !important;
    border-radius: 12px;
    color: var(--main-color) !important;
    border: 2px solid var(--main-color) !important;

    &:hover,
    &.active {
        color: var(--light-color) !important;
        background-color: var(--main-color) !important;
        box-shadow: 0 2px 0px 0px var(--dark-color) !important;
    }
}
.imag {
    height: 400px !important;
}
