/* ------------------------------------ */
/* Header Start */
/* ------------------------------------ */

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(#00000092, #00000000);
    z-index: 9999;
    /* background-color: red; */
    /* position: sticky; */
    top: 0;
}

/* .header__wrapper {
    position: relative;
} */

.header__top__bar__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0.8rem 0rem;
}

.header__top__bar__contact__details__container {
    display: none;
}

.header__top__bar__social__icons__container {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1.5rem;
}

.header__top__bar__social__icons__container i {
    color: var(--clr-white);
    font-size: var(--size-2xl);
    transition: all 0.3s;
}

.header__top__bar__social__icons__container .fa-facebook {
    font-size: var(--size-xl);
}

.header__top__bar__social__icons__container i:hover{
    color: var(--clr-yellow);
    /* transform: scale(1.2); */
}

.header__hr__line {
    border: 1px solid var(--clr-white);
}

.header__nav__bar__outter__wrapper {
    padding: 1rem 0rem;
    transition: all 0.2s;
}

.header__nav__bar__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: rebeccapurple; */

    /* transition: all 0.3s */
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.5rem 0rem;
    background-color: white;
    width: 100%;
    box-shadow: 0px 2px 25px #00000025;
    
    transition: all 0.3s;
}

.header__logo {
    width: 180px;
}

.header__nav__links__wrapper {
    display: none;
}

.header__mobile__menu {
    display: block;
}

.header__mobile__menu i {
    display: block;
    z-index: 99999;
    color: var(--clr-white);
}

.sticky .header__mobile__menu i {
    color: var(--clr-black);
}

.header__cta__button__wrapper {
    display: none;
}




.mobile__nav {
    position: fixed;
    right: -100%;
    /* right: 0%; */
    z-index: 99999;
    width: 250px;
    height: 100%;
    background-color: #ffffff98;
    backdrop-filter: blur(55px);
    transition: 0.4s;
    padding-top: 5rem;
    /* border-left: 1px solid #FAAF1A50; */
    box-shadow: -10px 0px 60px #FAAF1A25;
}

.navigation__icon__container {
    display: flex;
    justify-content: end;
    padding-right: 0.8rem;
}

.mobile__nav.is-active {
    right: 0;
}

.mobile__nav__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    color: var(--clr-black);
}

.mobile__nav__closing__icon {
    font-size: var(--size-lg);
}

.mobile__nav__menu li {
    list-style: none;
}

.mobile__nav__menu__links {
    font-size: var(--size-lg);
    font-weight: 400;
}

.mobile__nav__menu__links:hover {
    color: var(--clr-blue);
}

.mobile__nav__cta__button {
    margin-top: 1rem;
}




/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {

    .header__top__bar__contact__details__container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .header__top__bar__contact__details__container__tel {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 0.3rem;
    }

    .header__top__bar__contact__details__container__email {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 0.5rem;
    }
    
    .header__top__bar__contact__details__container div a {
        display: flex;
        justify-content: end;
        align-items: center;
        color: var(--clr-white);
        font-size: var(--size-base);
        transition: all 0.3s;
    }
    
    .header__top__bar__contact__details__container div a:hover {
        color: var(--clr-yellow);
    }
    
    .header__top__bar__contact__details__container div p {
        font-weight: 400;
    }
    
    .header__nav__links__wrapper {
        display: flex;
        justify-content: center;
        align-content: center;
        gap: 1rem;
        font-weight: 400;
    }
    
    .header__nav__link__element {
        list-style: none;
        font-size: var(--size-sm);
        color: var(--clr-white);
    
        transition: all 0.3s;
    }

    .sticky .header__nav__link__element {
        color: black;
    }

    .header__nav__link__element:hover {
        color: var(--clr-yellow);
    }

    .header__mobile__menu {
        display: none;
    }
    
    .header__mobile__menu i {
        display: none;
        color: var(--clr-white);
    }
    

    .header__cta__button__wrapper {
        display: block;
    }

    .header__cta__button {
    background-color: var(--clr-yellow);
    /* background-color: #FFE500; */
    color: var(--clr-white);
    color: #111111;
    font-weight: 500;
    font-size: var(--size-sm);
    padding: 8px 20px 8px 20px;
    border-radius: 0.8rem;
    transition: all 0.3s;
    display: inline;

    box-shadow: 0px 2px 4px #00000015;
}

    .header__cta__button:hover {
        opacity: 0.9;
    }

    .header__cta__button__wrapper {
        display: block;
    }

    .sticky .header__cta__button {
    background-color: var(--clr-blue);
    /* background-color: #FFE500; */
    background-color: #00BFFF;
    color: var(--clr-white);
    /* color: #111111; */
    font-weight: 500;
    font-size: var(--size-sm);
    padding: 8px 20px 8px 20px;
    border-radius: 0.8rem;
    transition: all 0.3s;
    display: inline;

    box-shadow: 0px 2px 4px #00000015;
}

    .sticky .header__cta__button:hover {
    /* opacity: 0.9; */
    background-color: var(--clr-yellow);
    /* background-color: #ff5400; */
    /* background-color: #29bf12; */
    /* background-color: #ff7900; */
    color: var(--clr-black)
    }

    .mobile__nav {
        display: none;
    }
}

/* xl */
@media (min-width: 1280px) {
    
    .header__nav__link__element {
        font-size: var(--size-base);
        /* font-size: var(--size-sm); */
    }

    .sticky .header__nav__link__element {
        font-size: var(--size-sm);
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/* ------------------------------------ */
/* Header End */
/* ------------------------------------ */


.header__logo__container {
    width: 170px;
    height: 45px;
    background-image: url(../home-page-content/islan-horizon-logo-white\ \(2\).svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.js__header__logo__container {
    /* width: 170px; */
    /* height: 55px; */
    background-image: url(../home-page-content/islan-horizon-logo-black.svg);
    /* background-size: contain; */
    /* background-repeat: no-repeat; */
}