@import url('https://fonts.googleapis.com/css2?family=Gentium+Plus&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital@1&display=swap');


* {
    margin: 0;
}

.custom-navbar-color {
    background-color: #aac5dd !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}


.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}



.navbar-nav .nav-link {
    animation: scaleIn 0.3s ease;
    color: #17549f !important;
    font-weight: bold;
    padding-left: 10px;
    font-size: large;
    padding: 14px !important;
    margin: 0 40px !important;
}


.navbar-nav .nav-link:hover {
    border: 1px solid #144989;
    border-radius: 5px;
    background-color: #144989;
    color: #aac5dd !important;
    transition: 0.2s ease-in;
}

.block {
    height: 50px;
    width: 55px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    transition: all 1s ease;
    background-image: linear-gradient(90deg, #7494c0, #3b5d87);
    box-shadow: 0 2px 18px 0 rgba(230, 245, 255, 0.5), 0 1px 2px 0 rgba(230, 245, 255, 0.3);
}

.cta {
    height: 50px;
    width: 60px;
    cursor: pointer;
}

.toggle-btn {
    height: 2px;
    width: 25px;
    background-color: #fff;
    position: relative;
    top: 50%;
    left: 0;
    margin: auto;
    transition: all 0.3s ease-in-out;
}

.toggle-btn:before {
    content: "";
    height: 2px;
    width: 25px;
    box-shadow: 0 -10px 0 0 #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.toggle-btn:after {
    content: "";
    height: 2px;
    width: 25px;
    box-shadow: 0 10px 0 0 #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.active .toggle-btn {
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.active .toggle-btn:before {
    top: 0;
    transition: all 0.3s ease-in-out;
}

.active .toggle-btn:after {
    top: 0;
    transition: all 0.3s ease-in-out;
}

.active .type16 {
    transform: rotate(360deg);
    transition: all 0.6s ease-in-out;
}

.active .type16:before {
    left: 6px;
    transform: translateY(6px) rotate(-45deg);
}

.active .type16:after {
    left: 6px;
    transform: translateY(-8px) rotate(45deg);
}


.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: 30vh;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    top: 32px;
    padding: 20px;
    font-size: 30px;
    font-family: 'Gentium Plus', serif;
}

.projects-heading {
    text-align: center;
    margin-top: 28px;
}

.projects-child#project-1 {
    height: 600px;
}

.slider-odd .priv_arrow {
    position: absolute;
    left: 15px;
    display: inline-block;
    cursor: pointer;
    background-color: #8b8d965e;
    font-size: 190%;
    padding: 5px 10px;
    transition: opacity 0.7s ease, background-color 0.7s ease;
    border-radius: 25%;
}

.slider-odd .priv_arrow:hover {
    background-color: #8b8d96;
}

.slider-odd .next_arrow {
    position: absolute;
    right: 15px;
    display: inline-block;
    cursor: pointer;
    background-color: #8b8d965e;
    font-size: 190%;
    padding: 5px 10px;
    transition: opacity 0.7s ease, background-color 0.7s ease;
    border-radius: 25%;
}

.slider-odd .next_arrow:hover {
    background-color: #8b8d96;
}

.slider-odd .priv_arrow,
.next_arrow {
    z-index: 2;
}

.slider-even .priv_arrow {
    position: absolute;
    left: 6px;
    display: inline-block;
    cursor: pointer;
    background-color: #8b8d965e;
    font-size: 190%;
    padding: 5px 10px;
    transition: opacity 0.7s ease, background-color 0.7s ease;
    border-radius: 25%;
}

.slider-even .priv_arrow:hover {
    background-color: #8b8d96;
}

.slider-even .next_arrow {
    position: absolute;
    right: 6px;
    display: inline-block;
    cursor: pointer;
    background-color: #8b8d965e;
    font-size: 190%;
    padding: 5px 10px;
    transition: opacity 0.7s ease, background-color 0.7s ease;
    border-radius: 25%;
}

.slider-even .next_arrow:hover {
    background-color: #8b8d96;
}

.slider-even .priv_arrow,
.next_arrow {
    z-index: 2;
}

.slick-disabled {
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.slider-odd,
.slider-even {
    width: 100%;
    height: 615px;
    overflow: hidden;
    display: flex;
    align-items: start;
}

.row {
    margin-bottom: 50px !important;
}


.slider-odd img,
.slider-even img {
    width: 100%;
    height: 595px;
    display: block;
    margin: 0;
    padding: 0;
}

.slider-even .project-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.projects-child .project-content {
    margin: 0;
}


.site-footer {
    display: flex;
    justify-content: center;
    background-color: #aac5dd;
    padding-top: 15px;
    text-align: center;
    color: #333;
}

.container {
    max-width: 100%;
    padding: 0;
}

@media (max-width: 769px) {

    .plyr {
        margin-top: 50px;
    }

    .slider-odd img,
    .slider-even img {
        height: 300px;
    }

    .slider-odd .priv_arrow,
    .slider-even .priv_arrow,
    .slider-odd .next_arrow,
    .slider-even .next_arrow {
        font-size: 190%;
        padding: 5px 10px;
        border-radius: 25%;
        background-color: #8b8d965e;
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-100%);
        z-index: 2;
    }

    .slider-odd .priv_arrow {
        left: 10px;
    }

    .slider-odd .next_arrow {
        right: 10px;
    }

    .slider-even .priv_arrow {
        left: 6px;
    }

    .slider-even .next_arrow {
        right: 6px;
    }

    .slider-odd,
    .slider-even {
        width: 100%;
        overflow: hidden;
        height: 360px;
    }



    .slick-dots {
        position: absolute;
        bottom: 20px;
    }

    .slick-dots li button:before {
        font-size: 10px;
    }

    .projects-child .project-content h1 {
        font-size: 24px;
    }

    .projects-child .project-content h2 {
        font-size: 18px;
    }

    .projects-child {
        margin-bottom: 50px;
    }

    .row {
        margin: 120px 0 !important;
    }

    .hammam-list {
        font-size: 16px;
    }

    .salam-list {
        font-size: 16px;
    }
}


/* Desktop layout */
@media (min-width: 768px) {

    .navbar {
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }


    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    .projects-child {
        margin-top: 50px;
        margin-bottom: 100px;
    }

    .slider-1 {
        top: 10px;
        margin-top: 50PX;
    }


    .slider-2 {
        top: -14px;
        margin-top: 50PX;
    }

    .slider-3 {
        top: -11px;
        margin-top: 50PX;
    }

    .slider-4 {
        top: 5px;
        margin-top: 50PX;
    }

    .slider-5 {
        top: 5px;
        margin-top: 50PX;
    }


    .slider-6 {
        top: 5px;
        margin-top: 50PX;
    }

    .slider-7 {
        top: 5px;
        margin-top: 50PX;
    }


    .row {
        margin: 126px 0 !important;
    }

    .projects-child {
        margin-top: 80px !important;
    }

    /* Odd projects layout */
    .projects-child:nth-child(odd) {
        overflow: hidden;
    }

    .projects-child:nth-child(odd) .col-md-6 {
        float: left;
        width: 50%;
    }

    .projects-child:nth-child(odd) .col-md-6:nth-child(2) {
        float: right;
    }

    /* Even projects layout */
    .projects-child:nth-child(even) {
        overflow: hidden;
    }

    .projects-child:nth-child(even) .col-md-6 {
        float: left;
        width: 50%;
    }

    .projects-child:nth-child(even) .col-md-6:nth-child(1) {
        float: right;
    }

    .slider-odd .slick-dots,
    .slider-even .slick-dots {
        display: block;
        position: absolute;
        width: 100%;
        text-align: center;
        bottom: -8px;
    }

    .slick-dots li button:before {
        font-size: 8px;
    }

    .slider-odd .next_arrow,
    .priv_arrow,
    .slider-even .next_arrow,
    .priv_arrow {
        top: 225px;
    }

    .hammam-list {
        font-size: 24px;
        margin: 20px 0;
    }

    .hammam-list li {
        margin: 10px 0;
    }

    .salam-list {
        font-size: 24px;
        margin: 20px 0;
    }

    .salam-list li {
        margin: 10px 0;
    }
}