.header {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
}

.header__top {
    background-image: url('../images/Rectangle.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.header {
    position: relative;
    top: 0px;
}

.header__bottom {
    position: sticky !important;
    top: -2px;
    z-index: 500;
}

.navbar {
    background-color: var(--white) !important;
    color: var(--title-active);
}

.navbar ul .nav-link {
    position: relative;
    font-family: var( --font-poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: var(--title-active);
}

.navbar ul .nav-link:hover {
    color: var(--primary) !important;
    text-decoration: none;
    transition: all .4s;
}

.navbar ul .nav-link::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--primary);
    bottom: 0;
    left: calc(50% - 5px);
    scale: 0;
    transition: scale 300ms ease-in-out;
}

.navbar ul .nav-link:hover::after {
    scale: 1;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.1rem;
}

.badge {
    background-color: var(--primary);
}

.active-nav {
    position: relative;
    color: var(--primary) !important;
    text-decoration: none;
}

.active-nav::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--primary);
    bottom: 0;
    left: calc(50% - 5px);
    scale: 1 !important;
    transition: scale 300ms ease-in-out;
}


/* .modal-login-close:hover{
    font-size:30px;
} */


/** CAROUSEL **/

.glider-main-item {
    position: relative;
}

.marketing-content {
    position: absolute !important;
    top: 20%;
}

.glider-dot {
    background-color: var(--indicator);
    transition: .4s ease-in-out;
}

.glider-dot.active {
    background-color: var(--primary);
}

#glider-main-dots {
    position: relative;
    top: -35px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f25f20'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f25f20'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important
}

.marketing-content .marketing-content__title {}

.marketing-content .marketing-content__description {}

.marketing-content .marketing-content__action button {
    font-size: 1em !important;
    width: 15em !important;
}

@media(max-width: 991px) {
    .marketing-content .marketing-content__title {
        font-size: 3em !important;
    }
    .marketing-content .marketing-content__description {
        font-size: 1.5em !important;
    }
    .marketing-content .marketing-content__action button {
        font-size: 1em !important;
        width: 12em !important;
    }
}

@media(max-width: 830px) {
    .marketing-content .marketing-content__title {
        font-size: 3em !important;
    }
    .marketing-content .marketing-content__description {
        font-size: 1.5em !important;
    }
    .marketing-content .marketing-content__action button {
        font-size: .8em !important;
        width: 12em !important;
        height: 30px !important;
    }
}

@media(max-width: 768px) {
    .marketing-content .marketing-content__title {
        font-size: 2em !important;
    }
    .marketing-content .marketing-content__description {
        font-size: 1.1em !important;
    }
    .marketing-content .marketing-content__action button {
        font-size: .8em !important;
        width: 12em !important;
        height: 30px !important;
    }
}

@media(max-width: 600px) {
    .marketing-content {
        top: 20%;
    }
    .marketing-content .marketing-content__title {
        font-size: 1em !important;
    }
    .marketing-content .marketing-content__description {
        font-size: .8em !important;
    }
    .marketing-content .marketing-content__action button {
        font-size: 60% !important;
        width: 30% !important;
        height: 30px;
    }
}

.up-btn {
    z-index: 100;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    color: var(--primary);
    box-shadow: 4px 4px 5px transparent;
    transition: all .4s;
    border: none;
    background-color: var(--primary);
    opacity: 0;
}