:root {
    --container-bg: #375a6d;
    --header-color: #d2d6dc;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
}
.ltr {
    direction: ltr;
}
.main-slider {
    /* max-height: calc(100vh - 100px);
    overflow: hidden; */
    position: relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #0007;
}
.carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
.max-height {
    /* height: 600px; */
    padding: 10px;
}
.max-height img {
    border-radius: 10px;
}

.custom-container {
    max-width: 1800px;
}
.sec-bg {
    background: var(--container-bg);
}
.sec-bg.contact {
    background-color: #0007;
}
.part-one {
    color: #912934;
}
.part-two {
    color: #221f52;
}

.card {
    border-radius: 10px;
    height: 100%;
}
.service-card {
    width: 20%;
    height: 100%;
}

.card.p-3,
.card.p-3 p {
    background-color: var(--container-bg) !important;
    color: #d8ffbe;
}
a,
a:hover {
    text-decoration: none;
    color: #d8ffbe;
}
.al-amana.service-card {
    height: 100px;
}
.al-amana.service-card p {
    margin: 0;
    /* color: white; */
}
/* .marhaba-card.service-card {
    height: 100%;
} */
@media (max-width: 1200px) {
    .service-card {
        width: 30%;
    }
}

@media (max-width: 991px) {
    .service-card {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .service-card {
        width: 70%;
    }
    .welcome-message {
        font-size: 17px;
    }
    .navbar-brand p {
        margin: 0;
        font-size: 16px;
    }
}
.gif.anapalace {
    background: url(../images/anpalace.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
}
.gif.alamana {
    background: url(../images/alamana.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
}
.gif.marhaba {
    background: url(../images/marhaba.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
}
.gif.dreem {
    background: url(../images/dreem.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
}

.card.row {
    flex-direction: row;
}

.gif {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    animation: gifanimation 2s both 1.5s;
    animation: name duration timing-function delay iteration-count direction
        fill-mode;
}
@keyframes gifanimation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        display: none;
    }
}
