button {
    border: none;
}

* {
    scrollbar-width: thin;
    font-family: 'Poppins' !important;
}

a {
    text-decoration: none !important;
}

.no-padding {
    padding: 0px !important;
}

.no-margin {
    margin: 0px !important;
}

.btn.custom-rounded {
    background-color: #33c1f6;
    border-radius: 30px;
    font-size: 14px;
    color: white;
    padding: 10px 27px;
}

.main-content h1 {
    font-size: 40px;
    font-weight: bold;
}

.main-content h1.white {
    color: white;
}

.main-content h1.lightblue {
    color: #33c1f6;
}

.main-content h1.darkblue {
    color: rgb(37, 70, 100);
}

.main-content .hero-container {
    position: relative;
    height: 300px;
}

.main-content .hero-container h1 {
    z-index: 1;
    position: relative;
}

.main-content .hero_image {
    width: 60%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    top: 0;
}

.main-content .hero_image_background {
    width: 100%;
    background: linear-gradient(to right,
            rgba(8, 61, 85, 1) 0%,
            rgba(8, 61, 85, 1) 15%,
            rgba(8, 61, 85, 0.5) 50%,
            rgba(8, 61, 85, 1) 85%,
            rgba(8, 61, 85, 1) 100%);
    height: 300px;
    position: absolute;
    top: 0;
}

.main-content .splide__slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-content .splide__pagination {
    bottom: -25px;
}

.main-content .splide__pagination__page.is-active {
    background-color: #33c1f6;
}

.image-container.rounded-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow-clip-margin: unset;
    overflow: hidden;
}

.image-container.rounded-square {
    aspect-ratio: 100 / 100;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-h-md-100 {
    height: 100%;
}

.page-top-bottom-space {
    width: 100%;
    height: 50px;
}

@media (min-width: 992px) {
    .col-lg-important {
        flex: 1 0 0% !important;
    }
}

@media (max-width:767px) {
    .main-content h1 {
        font-size: 30px;
    }

    .main-content .hero-container {
        height: 200px;
    }

    .main-content .hero_image {
        height: 200px;
    }

    .main-content .hero_image_background {
        height: 200px;
    }

    .c-h-md-100 {
        height: auto;
    }

    .page-top-bottom-space {
        height: 25px;
    }
}

@media (max-width:349px) {
    .main-content h1 {
        font-size: 25px;
    }
}