/* :root {
  --primary-color: rgb(0, 27, 52);
  --secondary-color: #a2d7f3;
  --dark-color: #001b34;
} */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}
:root {
    --primary-color: rgb(0, 10, 19);
    --secondary-color: #a2d7f3;
    --dark-color: rgb(0, 10, 19);
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.colored-background {
    background: rgb(5, 7, 42);
    background: -moz-linear-gradient(
        90deg,
        rgba(5, 7, 42, 1) 43%,
        rgba(9, 47, 94, 1) 63%,
        rgba(42, 16, 53, 1) 92%
    );
    background: -webkit-linear-gradient(
        90deg,
        rgba(5, 7, 42, 1) 43%,
        rgba(9, 47, 94, 1) 63%,
        rgba(42, 16, 53, 1) 92%
    );
    background: linear-gradient(
        90deg,
        rgba(5, 7, 42, 1) 43%,
        rgba(9, 47, 94, 1) 63%,
        rgba(42, 16, 53, 1) 92%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#05072a",endColorstr="#2a1035",GradientType=1);
}
/* .navbar {
  background-color: rgb(0, 27, 52, 0.5);
} */
.logo {
    width: 100px;
    height: 40px;
}
.logo-footer {
    width: 40%;
    height: 50px;
}
nav {
    background-color: var(--primary-color);
}
.header-block,
.dark-back {
    background-color: var(--dark-color) !important;
    color: white !important;
}
.nav-link {
    text-align: start;
}
.nav-link,
.navbar-brand {
    color: white;
}
.list-item {
    list-style-type: none;
}
/* fonts */
.fw-medium {
    font-weight: 600;
}
.nav-link:hover {
    color: var(--secondary-color);
}
/* .list-item:hover,
.list-item a:hover {
  background-color: white;
  padding: 2px;
  border-radius: 25px;
  margin-top: 5px;
  color: var(--dark-color);
} */
.header-block ul {
    margin-bottom: 0;
}
.list-item a {
    font-size: 12px;
    color: white;
}
i {
    color: var(--secondary-color);
    margin-left: 10px;
    margin-right: 10px;
}
.golden-star {
    color: rgb(249, 191, 47);
}
.dark-color {
    color: var(--dark-color);
}
/* .colored-line {
  height: 5px;
  width: 30px;
  display: block;
  background-color: var(--secondary-color);
  border-radius: 20px;
} */
.card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: start;
}
.card-img,
.card-img-top {
    height: 20vh;
}
.medium-font {
    font-size: 12px;
}
.small-font {
    font-size: 10px;
}
.colored-line {
    position: relative;
}

.colored-line::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 4px;
    border-radius: 20px;
    background-color: var(--secondary-color);
}
/* partners section styles start */
.partners-image {
    height: 100px;
    width: 80px;
}
/* partners section styles end */
/* footer style start */
#scroll-up-btn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: var(--secondary-color); /* Set a background color */

    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}
#scroll-up-btn i {
    color: var(--dark-color) !important; /* Text color */
}
.footer-links li a {
    font-size: 15px;
    font-weight: 600;
    text-align: start;
}
.footer-icons li a i {
    font-size: 25px;
    color: var(--secondary-color);
}
/* footer style end */

.video-overlay {
    position: absolute;
    background-color: rgba(31, 39, 43, 0.75);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}
#bg-video {
    min-width: 100%;
    min-height: 80vh;
    max-width: 100%;
    max-height: 80vh;
    object-fit: cover;
    z-index: -1;
}

#bg-image {
    min-width: 100%;
    min-height: 80vh;
    max-width: 100%;
    max-height: 80vh;
    flex: 1; /* This will allow the div to grow and occupy the available space */
    display: flex; /* If you want to use flexbox within #bg-image as well */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* This will clip the <img> if it overflows the div's bounds */
}

.stretch-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Use cover to fill the height and width, may cause image to be cropped */
    top: 0;
    left: 0;
}

#bg-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: fill; /* This will cover the available area, potentially clipping the image */
}


.video-section {
    background: rgba(0, 0, 0, 0.5);
}
.copyright-section {
    border-top: 0.8px solid rgb(131, 130, 130);
}
.news .slide a img {
    border-radius: 20px;
}
.carousel .carousel-indicators li {
    background-color: var(--secondary-color);
    border-radius: 100%;
    width: 10px;
    height: 10px;
}
.header-area {
    background-color: rgba(3, 2, 8, 0.65);
    position: absolute;
    top: 26px;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.blue-back {
    background-color: #dadbdd;
}
.align-center {
    align-items: center;
}
.select2-selection__choice {
    background-color: var(--dark-color) !important;
}
/* small screens */
@media (max-width: 767px) {
    #scroll-up-btn {
        display: none !important;
    }
    .count-section {
        margin-bottom: 2%;
    }
    /* .logo {
        width: 100px;
        height: 80px;
    } */
}

.sponsor-image {
    height: 124px;
    width: 234px;
}
.sponsors-indicators {
    bottom: -50% !important;
}
.fw-600 {
    font-weight: 600;
}
.text-blue {
    color: #33627a;
}
