html,
body {
    font-family: Arial, sans-serif;
    background-image: url("img/Coming Soon BG.png");
    color: #000000;
    background-size: cover;
    height: 100%;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px 100px 0px;
}

.logo {
    margin: 0 auto;
}

.social-icons {
    position: absolute;
    right: 20px;
}

.social-icons img {
    height: 24px;
    margin-left: 10px;
}

.content {
    margin-top: 20px 0px;
}

.content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.content h1 {
    font-size: 65px;
    margin-bottom: 30px;
    font-weight: bold;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    background: white;
    padding: 7px;
    width: 500px;
    border-radius: 5px;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    margin-right: 10px;
    border-radius: 5px;
}

.newsletter-form button {
    border-radius: 5px;
}

.email-link {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer {
    margin-top: 40px;
}

.footer .col {
    text-align: center;
}

.footer p {
    margin-top: 10px;
}

.newsletter-form .btn {
    background-color: #00aacc;
    border-color: #00aacc;
    padding: 10px 20px;
    white-space: nowrap;
    color: #000000;
    border-radius: 10px;
}

/* .right_arrow {
    background-image: url("img/btn arrow.png");
    width: 20px;
    height: 20px;
    display: block;
} */

.omni_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.omni_btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    font-weight: bolder;
    padding: 10px 20px;
}

@media (max-width: 576px) {
    .height-75 {
        height: 75px !important;
    }

    .social-icons {
        display: none;
    }

    .content h1 {
        font-size: 50px;
    }

    .content h2 {
        font-size: 20px;
    }

    .header-section {
        padding: 30px 0px 30px 0px;
    }
}

@media (min-width: 1024px) {
    .footer {
        display: flex;
        justify-content: center;
    }

    .footer .row {
        width: 55%;
    }
}

#loading-bar-spinner.spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
    animation: loading-bar-spinner 400ms linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border: solid 4px transparent;
    border-top-color: #00C8B1 !important;
    border-left-color: #00C8B1 !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.main-container {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    max-width: 100%;
}

.right_arrow {
    -webkit-mask-image: url('data:image/svg+xml,<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.29289 17C-0.09763 17.3906 -0.09763 18.0236 0.29289 18.4142C0.68341 18.8047 1.31658 18.8047 1.7071 18.4142L0.29289 17ZM1.7071 18.4142L17.7071 2.41421L16.2929 1L0.29289 17L1.7071 18.4142Z" fill="black"/><path d="M5 1.70703H17V13.707" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    background-color: #000000;
    width: 15px !important;
    height: 15px !important;
    display: inline-block;
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 0px !important;
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce_button {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.bounce_button:hover {
    cursor: pointer;
    animation-name: bounce;
    -moz-animation-name: bounce;
}

.margin-auto {
    margin: auto;
}

a:hover{color:#ffffff;}