﻿.desktopTransparentHeader {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    padding-top: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 26%, rgba(0, 0, 0, 0.75) 100%);
}

.transparentHeaderArea {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transparentHeaderNavArea ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 42px;
}

    .transparentHeaderNavArea ul li a {
        font-family: Poppins;
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
        color: #fff;
        text-decoration: none;
    }

.mobileTransparentHeader {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    display: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 26%, rgba(0, 0, 0, 0.75) 100%);
}

.mobileTransparentHeaderNavigationButton button {
    font-size: 30px;
    background: none;
    border: none;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.mobileTransparentOffcanvasBackdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000007d;
    z-index: 2;
    backdrop-filter: blur(5px);
    visibility: hidden;
    transition: .4s;
    opacity: 0;
}

    .mobileTransparentOffcanvasBackdrop.transparentOffcanvasOpen {
        opacity: 1;
        visibility: visible;
        transition: .4s;
    }

.mobileTransparentOffcanvas {
    position: fixed;
    top: 0;
    width: 400px;
    right: -400px;
    height: 100%;
    background: #fff;
    z-index: 3;
    transition: .4s;
    display: flex;
    align-items: center;
}

    .mobileTransparentOffcanvas.open
    {
        right: 0;
        transition: .4s;
    }


.mobileTransparentOffcanvasCloseButton {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

    .mobileTransparentOffcanvasCloseButton button {
        width: 36px;
        height: 36px;
        padding: 0;
        border: none;
        background: none;
    }

.mobileTransparentOffcanvasNavArea ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 42px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

    .mobileTransparentOffcanvasNavArea ul li a {
        font-family: Poppins;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        color: #4f4f4f;
        text-decoration: none;
    }




.desktopMainHeaderTop {
    background: #101B23;
}

.desktopMainHeaderContact {
    display: flex;
    justify-content: end;
    padding: 16px 0;
    width: 80%;
    margin: auto;
}

    .desktopMainHeaderContact ul {
        list-style: none;
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
        column-gap: 30px;
    }

        .desktopMainHeaderContact ul li a {
            display: flex;
            align-items: center;
            column-gap: 14px;
            font-family: Poppins;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            color: #fff;
            text-decoration: none;
        }

.desktopMainHeaderBottom {
    display: flex;
    align-items: center;
    width: 80%;
    margin: auto;
    justify-content: space-between;
    padding: 8px 0;
}

.desktopManinHeaderNavArea ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 42px;
}

    .desktopManinHeaderNavArea ul li a {
        font-family: Poppins;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #131F28;
        text-decoration: none;
    }

.mobileMainHeader {
    display: none;
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
}

.mobileMainHeaderNavigationButton button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #292D32;
    border: none;
    background: none;
    padding: 0;
}

.mainHeaderOffcanvas {
    position: fixed;
    top: 0;
    width: 400px;
    right: -400px;
    height: 100%;
    background: #fff;
    z-index: 3;
    transition: .4s;
    display: flex;
    align-items: center;
}

    .mainHeaderOffcanvas.open {
        right: 0;
        transition: .4s;
    }


.mainHeaderOffcanvasCloseButton {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

    .mainHeaderOffcanvasCloseButton button {
        width: 36px;
        height: 36px;
        padding: 0;
        border: none;
        background: none;
    }

.mainHeaderOffcanvasNavArea ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    row-gap: 42px;
    flex-direction: column;
}

    .mainHeaderOffcanvasNavArea ul li a {
        font-family: Poppins;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #131F28;
        text-decoration: none;
    }


.page-banner {
    position: relative;
    height: 320px;
}

    .page-banner img {
        height: 320px;
        width: 100%;
        object-fit: cover;
    }

.page-banner-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: #fff;
}


    @media only screen and (max-width: 1199px) {
        .transparentHeaderArea {
            width: 90%;
        }

        .transparentHeaderNavArea ul {
            column-gap: 32px;
        }

            .transparentHeaderNavArea ul li a {
                font-size: 16px;
                line-height: 24px;
            }

        .desktopMainHeaderBottom {
            width: 90%;
        }

        .desktopMainHeaderContact {
            width: 90%;
        }
    }

    @media only screen and (max-width: 991px)
    {
        .desktopTransparentHeader
        {
            display: none;
        }
        .mobileTransparentHeader
        {
            display: flex;
        }

        .desktopMainHeader
        {
            display: none;
        }

        .mobileMainHeader
        {
            display: flex;
        }


        .page-banner {
            height: 240px;
            margin-top: 91.02px;
        }

            .page-banner img {
                height: 240px;
            }

        .page-banner-title {
            font-size: 28px;
            line-height: 36px;
        }
    }

    @media only screen and (max-width: 575px)
    {
        .mobileTransparentOffcanvas {
            width: 80%;
            right: -80%;
        }
    }

@media only screen and (max-width: 375px) {
    .mobileTransparentOffcanvas {
        width: 90%;
        right: -90%;
    }
}