:root {
    --blue: #25aae1;
    --dark-blue: #004c6b;
    --dark-blue2: #004c6a;
    --dark-cyan: #155c78;
    --black: #000;
    --custom-black: #0d0d11;
    --custom-black2: #111117;
    --light-blue: #c1e3f1;
    --new-black: #22254c;
    --new-black2: #171813;
    --new-black3: #00131b;
    --red: #e83d53;
    --yellow: #fed168;
    --menu-accent: #42a9a6;
    --primary: #42a9a6;
    --primary-hover: #6bc5c2;
    --secondary: #6b70b4;
    --secondary-hover: #979cd6;
    --secondary-light: #fffcf3;
    --accent: #6667ab;
    --modal-accent: #cacdf2;
    --light: #f4f5ff;
    --font-dark: #494949;
    --font-light: #ffffff;
    --white: #ffffff;
    --grey: #d9d9d9;
}

/* ------------------ Upper Header ------------------------ */

.ps-30 {
    padding-left: 30px;
}

.current-lang:hover {
    color: var(--light);
    cursor: pointer;
}

.br-bottom-1 {
    border-bottom: 1px solid var(--white);
}

.lang-list {
    background-color: var(--white);
    z-index: 10000;
    position: absolute;
    padding: 0.2rem 0.5rem;
    list-style: none;
    border-radius: 10px;
    margin-top: 0.2rem;
}

.lang-list > li {
    margin: 0 0 0.2rem 0;
}

.lang-list > li > a {
    color: var(--font-dark);
}

.lang-list > li > a:hover {
    color: var(--grey);
}

.lang-list > li .custom-select-wrapper {
    position: relative;
    width: 200px;
    font-family: Arial, sans-serif;
}

.search-icon {
    position: absolute;
    color: var(--white);
    right: 16px;
    top: 8px;
}

.search-input {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 20px;
    /* padding-left: 0.5rem; */
    padding: 0.2rem 0 0.2rem 0.7rem;
    min-width: 249px;
}

.search-input::placeholder {
    color: var(--white);
    font-style: italic;
    opacity: 1; /* Optional: Adjust the opacity as needed */
}

.search-input:focus {
    outline: none;
}

.upper-header {
    background-color: var(--blue);
    width: 100%;
    color: var(--white) !important;
    /* padding-top: 10px;
			padding-bottom: 14px; */
    padding-top: 3px;
    /* padding-bottom: 7px;  */
    padding-bottom: 3px;
    display: block;
}

.upper-header-nav,
.main-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.2rem;
    padding-top: 0.2rem;
}

.upper-header-left-text,
.upper-header-left-custom-text {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

.upper-header-left-text {
    font-weight: 700;
}

.upper-header-left-custom-text {
    font-weight: 900;
}

.upper-header-right-text {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 15px;
}

.upper-header-right span {
    margin-inline: 3px;
}

.upper-header-right i {
    font-size: 17px !important;
    color: #fff !important;
}

.upper-header-right .fa-envelope,
.upper-header-right .fa-phone-alt,
.upper-header-right .fa-facebook-messenger {
    vertical-align: -1px;
}

@media (max-width: 992px) {
    .upper-header {
        display: none;
    }
}

.main-header {
    width: 100%;
    background-color: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1060 !important;
    top: 0;
    /* padding: 1rem 0; */
    margin-bottom: -1rem;
    transition: background-color 0.3s;
    /* height: 75px; */
}

.sticky {
    background-color: var(--primary) !important;
    top: 0;
}

.main-link-xs {
    min-width: min-content;
    width: 2%;
    text-align: end;
    /* border: 1px solid blue; */
}

.main-link-sm {
    min-width: min-content;
    /* width: 8%; */
    text-align: start;
    /* border: 1px solid red; */
}

.main-link-md {
    min-width: min-content;
    /* width: 10%; */
    text-align: start;
    /* border: 1px solid yellow; */
}

.main-link-mg {
    min-width: max-content;
    /* width: 12%; */
    text-align: end;
    /* border: 1px solid green; */
}

.main-link-lg {
    min-width: min-content;
    /* width: 16%; */
    text-align: start;
    /* border: 1px solid cyan; */
}

.main-link-xl {
    min-width: min-content;
    /* width: 17%; */
    text-align: start;
    /* border: 1px solid brown; */
}

.icon-link {
    font-weight: 400;
    color: var(--white);
    font-size: 18px;
    text-decoration: none !important;
}

.icon-link:hover {
    color: var(--secondary);
}

.main-header-link:link,
.main-header-link:visited,
.main-header-link:active {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 400;
    color: var(--white);
    font-size: 16px;
    text-decoration: none !important;
}

.main-header-link:hover {
    color: var(--secondary);
}

.main-header-link i {
    font-size: 12px !important;
    margin-left: 0.2rem;
    /* right: 8px;
    position: absolute;
    top: 4px; */
}

.main-header-service-chevron-cont {
    vertical-align: 1px;
}

.main-header-service-chevron-cont i {
    color: var(--white);
    font-size: 24px !important;
    transition: all 0.4s;
}

.main-header-link .main-header-service-chevron-cont i {
    font-size: 14px !important;
    color: #fff !important;
}

#mobile-menu-services-box-btn > span,
#mobile-menu-services-box-btn i {
    pointer-events: none;
}

#mobile-menu-services-box-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
}

#mobile-menu-services-box-btn.active .main-header-service-chevron-cont i {
    color: #fff;
    transform: rotate(180deg);
}

#mobile-menu-services-box-btn:hover {
    color: #fff !important;
}

.lato-700 {
    font-weight: 700 !important;
}

.header-btn {
    background-color: var(--blue);
    border-radius: 20px;
    padding: 1px 15px 1px;
    display: inline-block;
    transition: all 250ms ease-in-out;
}

.dropdown {
    z-index: 1051;
}

.courses-dropdown-menu {
    z-index: 1050 !important;
    background-color: var(--white);
    margin-top: 0.5rem !important;
}

.courses-dropdown-menu > li > .dropdown-item {
    color: var(--primary);
    font-size: 16px !important;
    font-weight: 400;
    border-radius: 5px;
}

.dropdown-item:active,
.dropdown-item:focus {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.profile-dropdown-btn {
    border-radius: 50%;
    border: 2px solid var(--secondary);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-dropdown-btn > i {
    font-size: 22px;
}

.profile-dropdown-menu {
    z-index: 1050 !important;
    background-color: var(--font-light);
}

.profile-img {
    width: 39px;
    border-radius: 50%;
}

.dropdown-item {
    color: var(--primary) !important;
    font-size: 14px !important;
}

.dropdown-username {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.dropdown-toggle::after {
    content: none;
}

.dropdown-serv {
    padding-bottom: 1px;
    position: relative;
}

.dropdown-menu-serv {
    position: absolute;
    background-color: transparent !important;
    top: 20px;
    left: 0;
    width: max-content !important;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
    pointer-events: none;
    margin: 0 auto !important;
    z-index: 15;
}

.dropdown-menu-serv-content-box {
    margin-top: 10px;
    background-color: var(--dark-blue2);
    border-radius: 5px;
    border: 2px solid #045577;
    width: max-content !important;
}

.dropdown-menu-serv.active {
    opacity: 1;
    pointer-events: auto;
}

.dropdown-menu-serv-inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 10px 0;
}

.dropdown-menu-serv-inner form {
    width: 100%;
    margin: 0 !important;
}

.dropdown-menu-serv-link-desktop {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #fff !important;
    display: block;
    padding: 0 15px;
    width: max-content;
}

.dropdown-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    color: #fff !important;
    display: block;
    padding-left: 30px;
    border-radius: 0px 10px 10px 0px;
    width: 100%;
    margin: 0.5rem 0;
}

.dropdown-link-icon:hover,
.dropdown-link:hover {
    color: var(--light) !important;
}

.dropdown-menu-serv-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    color: #fff !important;
    display: block;
    padding-left: 30px;
    border-radius: 0px 10px 10px 0px;
    width: 100%;
    margin: 0.5rem 0;
}

.dropdown-menu-serv-link:link,
.dropdown-menu-serv-link:visited,
.dropdown-menu-serv-link:active,
.dropdown-menu-serv-link:hover,
.dropdown-menu-serv-link-desktop:link,
.dropdown-menu-serv-link-desktop:visited,
.dropdown-menu-serv-link-desktop:active,
.dropdown-menu-serv-link-desktop:hover {
    text-decoration: none;
}

.dropdown-menu-serv-link:active,
.dropdown-menu-serv-link:hover,
.dropdown-menu-serv-link-desktop:active,
.dropdown-menu-serv-link-desktop:hover {
    color: var(--secondary) !important;
}

.dropdown-menu-serv-link.active {
    background-color: var(--secondary);
}

.lato-400-18 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
}

.main-header-right-mobile,
.main-header-center-mobile {
    display: none;
}

.navbar-light {
    background-color: transparent !important;
}

.fa-bars {
    color: #fff !important;
    font-size: 26px !important;
}

.dropdown-menu-mobile {
    position: fixed;
    background: var(--menu-accent);
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    overflow: auto;
    padding: 8px 8px 0;
    left: 0;
    top: 0;
    /* opacity: 0; */
    transition: all 250ms ease-in-out;
    pointer-events: none;
    z-index: 100;
    max-width: 360px;
    transform: translateX(-100%);
}

.dropdown-menu-mobile .blank-link {
    width: max-content !important;
    display: inline-block;
}

#mobile-menu-toggler i {
    color: #fff !important;
    font-size: 40px !important;
}

.mobile-menu-item-list {
    /* padding-bottom: 100px; */
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
}

.mobile-menu-question-box-outer {
    padding-left: 30px;
}

.container-main.container-mobile-menu {
    padding-left: 0;
    padding-right: 0;
    height: 92%;
}

.container-main.container-mobile-menu .row {
    margin: 0;
    height: 100%;
}

.container-main.container-mobile-menu .row > div {
    padding-left: 0;
    padding-right: 0;
}

.header-logo-img {
    height: 72px;
    width: 106px;
}

.logout-form {
    display: inline-flex;
}

.main-header-right {
    width: 86%;
    /* margin-bottom: -1rem;
    padding-bottom: 1rem; */
}

.main-header-right > .main-header-link:first-child {
    padding-top: 1px;
}

.mobile-menu-left {
    padding-left: 22px;
}

.mobile-menu-services-list-box {
    padding-left: 20px;
    padding-top: 5px;
    margin: 0 0 1rem 30px;
    animation: fade-in 500ms forwards;
    border-radius: 10px;
    background-color: var(--primary);
}

.mobile-menu-services-list-box.d-none {
    animation: fade-out 500ms forwards;
}

.mobile-menu-services-list-box .dropdown-menu-serv-link {
    background-color: var(--primary);
    border-radius: 10px !important;
    border: none !important;
    margin: 5px 0;
    padding: 0.5rem 0;
}

.mobile-menu-question-box {
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 10px;
    border: 2px solid rgba(37, 170, 225, 0.5);
    background: rgba(37, 170, 225, 0.1);
}

.mobile-menu-question-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.mobile-menu-question-flex-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-question-flex-item img {
    width: 20px;
}

.mobile-menu-question-flex-item span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-question-box > .mobile-menu-question-flex-item:first-of-type {
    margin-top: 5px;
    margin-bottom: 5px;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    100% {
        opacity: 0;
    }
    0% {
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .logout-btn-mobile {
        display: inline-block;
        border-radius: 5px;
        font-size: 20px !important;
        text-decoration: none !important;
        color: #fff !important;
        padding: 10px 50px 13px;
        background-color: var(--primary);
    }

    .logout-btn-mobile-box {
        width: max-content;
        margin: 50px auto 50px;
    }

    #mobile-menu-bg {
        display: none;
        position: fixed;
        z-index: 19;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        animation: fade-in 250ms forwards;
    }

    .dropdown-menu-mobile.active {
        /* opacity: 1; */
        transform: translateX(0);
        pointer-events: auto;
    }

    .mobile-menu-flex {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        margin-bottom: 0;
    }

    .mobile-menu-header {
        /* padding: 10px 0; */
        /* margin-bottom: 20px; */
        height: 98%;
        /* border: 1px solid red; */
        /* display: flex; */
        /* align-items: center; */
    }

    #mobile-menu-close {
        background: none;
        border: none;
        outline: none;
        color: #fff;
        display: flex;
    }

    #mobile-menu-close:hover {
        color: var(--grey);
    }

    #mobile-menu-close i {
        font-size: 28px;
    }

    .mobile-menu-item {
        background-color: var(--primary);
        border-radius: 10px;
        width: 300px;
        margin: 20px auto;
        text-align: center;
        padding: 15px 0;
    }

    .mobile-menu-item p {
        text-align: center;
        text-transform: uppercase;
        color: #fff !important;
        margin-top: 15px;
        margin-bottom: 0 !important;
        font-size: 21px !important;
    }

    .mobile-menu-item i {
        font-size: 75px !important;
        color: #fff !important;
    }
}

@media (max-width: 1105px) {
    .main-header-right-mobile {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 106px;
        opacity: 1;
        transition: all 150ms ease-in-out;
    }

    .main-header-center-mobile {
        display: block;
        margin-right: auto;
        margin-left: 2rem;
    }

    .main-header-right-mobile.inactive {
        opacity: 0;
    }

    .main-header-right {
        display: none;
    }

    .header-logo-img {
        /* height: 46px; */
        /* width: 200px; */
    }

    #mobile-menu-toggler img {
        width: 42px;
    }

    #mobile-menu-close img {
        width: 22px;
        color: #fff;
    }
}

@media (max-width: 768px) {
    #mobile-menu-close img {
        height: 22px !important;
        color: #fff;
    }

    .mobile-menu-item p {
        font-size: 18px !important;
        margin-top: 15px;
    }

    .mobile-menu-item i {
        font-size: 55px !important;
        color: #fff !important;
    }

    .logout-btn-mobile-box {
        margin: 20px auto 0;
    }

    .mobile-menu-item,
    .dropdown-menu-mobile .blank-link {
        width: max-content !important;
    }

    .mobile-menu-item {
        padding: 15px 0;
    }

    /* .mobile-menu-header {
        background-color: var(--primary); 
        padding: 10px 0; 
    } */

    /* .main-header,
    .mobile-menu-header {
        height: 65px;
    } */

    /* main {
        margin-top: 65px;
    } */
}

@media (max-width: 576px) {
    .mobile-menu-item p {
        font-size: 16px !important;
    }

    .header-logo-img {
        height: 50px;
        width: auto;
    }
}
