@font-face {
    font-family: 'TerminaTest-Light';
    src: url('./fontfamily/TerminaTest-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Hijrnotes';
    src: url('./fontfamily/HijrnotesPERSONALUSEONLY.woff2') format('woff2'),
        url('./fontfamily/HijrnotesPERSONALUSEONLY.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
}

button {
    border: none;
    cursor: pointer;
}

.coming-soon-section {
    background-color: #c1b19d;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.d-flex {
    display: flex;
    flex-direction: column;
}

.d-flex-between {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.link-buttons {
    background: #76523c;
    color: #d9d0c7;
    text-decoration: unset;
    padding: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

.link-buttons:hover {
    color: #76523c;
    background-color: #d9d0c7;
}

.mr-10 {
    margin-right: 10px;
}

.text-section {
    padding: 0 25px;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
}

@keyframes example {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

h1 {
    color: white;
    font-family: 'TerminaTest-Light';
    text-align: center;
    font-size: 40px;
    animation-name: example;
    animation-duration: 2s;
}

ul {
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

li {
    list-style: none;
}

li a {
    width: 35px;
    height: 35px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 100%;
    background: rgb(152 125 104);
    color: #d9d0c7;
    text-decoration: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
}

li a:hover {
    color: #76523c;
    background-color: #d9d0c7;
}

@media (max-width:767px) {
    h1 {
        font-size: 30px;
    }

    .logo {
        width: 160px;
    }

    .link-buttons {
        font-size: 14px;

    }
}

.video {
    width: 100%;
    height: 100dvh;
}

.video-section {
    background-color: #091009;
}

@media (max-width:767px) {
    .video {
        min-height: 100dvh;
        transform: scale(2.5);
    }

    .video-section {
        overflow: hidden;
    }
}

.privacy-section {
    text-align: left;
    padding: 20px 30px;
}

.privacy-section img {
    width: 100px;
    margin-bottom: 20px;
}

.privacy-section h6 {
    font-size: 17px;
    margin: 0;
    color: #76523c;
    font-family: 'Montserrat', sans-serif;
}

.privacy-section p {
    margin-top: 5px;
    margin-bottom: 25px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.hidden-links {
    display: none;
    overflow: hidden;
    padding: 10px 0;
}

.hidden-links img {
    max-height: 80px;
    width: 100%;
}

.hidden-links.show {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.modal-body {
     padding: 0;
    border-radius: 0;
    border: none;
}

.modal-content {
    background: transparent;
    border: none;
}
.popup-banner {
    width: 100%;
}

.close-btn {
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    opacity: 1;
}

