:root {
    --color-background: #f0f8ff;
    --color-primary: #013A63;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    font-size: 12pt;
    font-weight: 400;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
}


/* @media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1600px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1600px;
    }
} */

/* SPINNER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-border {
    width: 50px;
    height: 50px;
    background: url('../img/spinner.webp') no-repeat center center;
    background-size: contain;
    border: none;
}

/* ARROW */
.upAndDown {
    cursor: pointer;
    animation: moveUpDown 2s infinite;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* VIDEO SLIDER */
.video-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* 50% black overlay */
    z-index: 1;
}

.video-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    z-index: 2;
}

.video-content h1 {
    font-size: 10rem;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    margin-bottom: 0px;
}

.video-content p {
    font-size: 1rem;
    text-transform: uppercase;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

h2.heading {
    font-size: Barlow Condensed, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -.1rem;
}

.heading-bold {
    font-size: Barlow Condensed, sans-serif;
    font-weight: 700;
    letter-spacing: -.1rem;
}

@media (max-width: 768px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    h2.heading {
        font-size: 3rem;
        font-weight: 700;
    }

    .video-content h1 {
        font-size: 48pt;
        font-family: 'Barlow Condensed';
        font-weight: 700;
        margin-bottom: 0px;
    }

    .video-content p {
        font-size: 1rem;
        text-transform: uppercase;
    }
}



.cardSquare {
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    aspect-ratio: 1/1;
    position: relative;
}

.cardSquare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.cardSquareUp {
    margin-top: -20px;
}

.cardSquareDown {
    margin-top: 20px;
}

.cardSquareInfo {
    background-color: rgba(0, 0, 0, 0.5);
    top: 0px;
    left: 0px;
    position: absolute;
    height: 100%;
    width: 100%;
}

.cardVertical {
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    aspect-ratio: 9 / 16;
    position: relative;
}

.cardVerticalUp {
    margin-top: -20px;
}

.cardVerticalDown {
    margin-top: 20px;
}

.cardVerticalInfo {
    position: absolute;
    bottom: 0px;
    padding: 10px;
    width: 100%;
}

.cardVerticalInfo h3 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14pt;
    color: #fff;
}

.cardVertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* .cardVertical:hover img {
    transform: scale(1.2);
} */

.cardVertical .front,
.cardVertical .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

.cardVertical .front {
    z-index: 2;
    transform: rotateY(0deg);
}

.cardVertical .back h3 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14pt;
}

.cardVertical .back {
    background-color: #f0f0f0;
    color: #000;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 10pt;
}

.cardVertical.flipped .front {
    transform: rotateY(-180deg);
}

.cardVertical.flipped .back {
    transform: rotateY(0deg);
}


.rounded-lg {
    border-radius: 20px;
}

footer {
    background-color: #013A63;
    padding-top: 100px;
    padding-bottom: 100px;
}

.btn-outline-primary {
    border: solid 1px var(--color-primary);
    color: var(--color-primary);
}

.btn-outline-primary:hover {
    border: solid 1px var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

.cardVertical .back {
    transform: rotateY(180deg);
}

@media (min-width: 768px) {
    .cardVertical:hover .front {
        transform: rotateY(-180deg);
    }

    .cardVertical:hover .back {
        transform: rotateY(0deg);
    }
}

.zoom-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.zoomed-in {
    transform: scale(1.2);
}

.parallax-box {
    position: relative;
    min-height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-box .parallax-content {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .parallax-box {
        background-attachment: scroll;
        background-size: 100% auto;
        background-position: center;
    }
}

.collageContainer1 {
    position: relative;
}

.collageContainer1 img:nth-child(2) {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-10%);
    z-index: 1;
}

/* DIVIDER */
.dividerBox {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1000;
    width: 100%;
    height: 80px;
}

/* *** */
.custom-shape-divider-bottom-1719173693 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.custom-shape-divider-bottom-1719173693 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-fill {
    fill: var(--color-background);
}

.shape-fill-white {
    fill: #fff;
}

/* *** */
.custom-shape-divider-top-1719173977 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1719173977 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-top-1719173977 .shape-fill {
    fill: var(--color-background);
}

/* *** */
.custom-shape-divider-bottom-1719173520 {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1719173520 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-1719173520 .shape-fill {
    fill: var(--color-background);
}

@media (max-width: 768px) {
    .custom-shape-divider-top-1719173977 {
        margin-top: -2px;
    }

    .custom-shape-divider-bottom-1719173520 {
        margin-bottom: -2px;
    }

    .custom-shape-divider-bottom-1719173693 svg,
    .custom-shape-divider-top-1719173977 svg,
    .custom-shape-divider-bottom-1719173520 svg {
        height: 60px;
    }
}

a {
    text-decoration: none;
}

a.link-info {
    color: var(--color-primary) !important;
}

.liquidBtn-blue {
    flex: 1;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 999px;
    border: 2px solid #fff;
    animation: borderGradient 5s infinite linear;
    /* Adjust animation duration as needed */
    text-shadow: 0 3px 5px rgba(#000, 0.25);
    white-space: nowrap;
    color: #fff;
    background: transparent;
    background-image: url(../img/liquidbtn-blue.webp);
    background-repeat: repeat-x;
    background-position: 0 -100%;
    transition: 1.5s ease;

    &:hover {
        background-position: 400% 100%;
        color: #fff !important;
    }

    @for $i from 1 through 18 {
        &:nth-child(#{$i}) {
            filter: hue-rotate(($i * 20) + deg);
        }
    }
}

.liquidBtn-brown {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 999px;
    border: 2px solid #8b8979;
    animation: borderGradient 5s infinite linear;
    /* Adjust animation duration as needed */
    text-shadow: 0 3px 5px rgba(#000, 0.25);
    white-space: nowrap;
    color: #000;
    background: transparent;
    background-image: url(../img/liquidbtn-brown.webp);
    background-repeat: repeat-x;
    background-position: 0 -100%;
    transition: 1.5s ease;

    &:hover {
        background-position: 400% 100%;
        color: #000 !important;
    }

    @for $i from 1 through 18 {
        &:nth-child(#{$i}) {
            filter: hue-rotate(($i * 20) + deg);
        }
    }
}

.liquidBtn-white {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 999px;
    border: 2px solid #fff;
    animation: borderGradient 5s infinite linear;
    /* Adjust animation duration as needed */
    text-shadow: 0 3px 5px rgba(#000, 0.25);
    white-space: nowrap;
    color: #fff;
    background: transparent;
    background-image: url(../img/liquidbtn-white.webp);
    background-repeat: repeat-x;
    background-position: 0 -100%;
    transition: 1.5s ease;

    &:hover {
        background-position: 400% 100%;
        color: #000 !important;
    }

    @for $i from 1 through 18 {
        &:nth-child(#{$i}) {
            filter: hue-rotate(($i * 20) + deg);
        }
    }
}

@keyframes borderGradient {
    0% {
        border-color: #0e3a63;
    }

    50% {
        border-color: #8b8979;
        /* Example gradient color */
    }

    100% {
        border-color: #2574BA;
    }
}

.input-group-rounded input {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.input-group-rounded button {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.btn-scroll-top {
    background-color: #fff;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.circleCard {
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    /* This creates the oval shape */
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.circleCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.circleCardUp {
    margin-top: -20px;
}

.circleCardDown {
    margin-top: 20px;
}

.circleCardInfo {
    background-color: rgba(0, 0, 0, 0.5);
    top: 0px;
    left: 0px;
    position: absolute;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .shapePadding {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

.bottomGradientDivider {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 100px;
    background-image: url('../img/gradient-white.webp');
    background-repeat: repeat-x;
}

.imageSide {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.fullBgrParallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: background-image 0.5s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .fullBgrParallax {
        /* background-attachment: scroll; */
        background-size: auto 100vh;
        background-position: center;
    }
}

/* .fixed-background {
    background-attachment: scroll;
} */

.fullBgrParallax .cardTopicBox {
    /* height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center; */
    padding-top: 200px;
    padding-bottom: 200px;
}

.fullBgrParallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* 50% black overlay */
    z-index: 0;
}

/* HALF */
.halfBgrParallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: background-image 0.5s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .halfBgrParallax {
        /* background-attachment: scroll; */
        background-size: auto 100vh;
        background-position: center;
    }
}

/* .fixed-background {
    background-attachment: scroll;
} */

.halfBgrParallax .cardTopicBox {
    /* height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center; */
    padding-top: 50px;
    padding-bottom: 50px;
}

.halfBgrParallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* 50% black overlay */
    z-index: 0;
}

.mainLogo {
    width: 250px;
}

.headerBar {
    background-color: var(--color-primary);
    position: relative;
    min-height: 40vh;
    padding-top: 100px;
}

.headerBarContent {
    padding-bottom: 100px;
}

.headerBarContent h1 {
    font-size: 48pt;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    margin-bottom: 0px;
}

.headerBarOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .headerBar {
        padding-top: 150px;
    }

    .headerBarContent h1 {
        font-size: 32pt;
        font-family: 'Barlow Condensed';
        font-weight: 700;
        margin-bottom: 0px;
    }
}

.megaMenu {
    z-index: 2000;
}

.megaMenu-toggler {
    color: #000 !important;
}

.swiper7 .swiper-slide {
    overflow: hidden;
    border-radius: 20px;
}

.cardHorizontal {
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    aspect-ratio: 16/9;
    position: relative;
}

.cardHorizontalUp {
    margin-top: -20px;
}

.cardHorizontalDown {
    margin-top: 20px;
}

.cardHorizontalInfo {
    position: absolute;
    bottom: 0px;
    padding: 10px;
    width: 100%;
}

.cardHorizontalInfo h3 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14pt;
    color: #fff;
}

.cardHorizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* .cardHorizontal:hover img {
    transform: scale(1.2);
} */

.cardHorizontal .front,
.cardHorizontal .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

.cardHorizontal .front {
    z-index: 2;
    transform: rotateY(0deg);
}

.cardHorizontal .back h3 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14pt;
}

.cardHorizontal .back {
    background-color: #f0f0f0;
    color: #000;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 10pt;
}

.cardHorizontal.flipped .front {
    transform: rotateY(-180deg);
}

.cardHorizontal.flipped .back {
    transform: rotateY(0deg);
}

/* FAN */
.swatch {
    display: block;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .swatch {
        display: block;
        text-align: center;
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }
}

.swatch div span {
    display: inline-block;
    transform: rotate(90deg);
    white-space: nowrap;
    /* Prevents text from breaking into multiple lines */
    transform-origin: center center;
    position: absolute;
    top: 50px;
    /* left: 50%; */
    transform: translateX(-50%) rotate(90deg);
    font-weight: 900;
    color: #fff;
    font-size: 14pt;
}

.swatch div {
    width: 120px;
    height: 300px;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
    transform-origin: center 90%;
    display: inline-block;
    backface-visibility: hidden;
    margin-left: -35px;
    transform: rotate(0deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
}

.swatch div .swatch div:before {
    width: 16px;
    height: 16px;
    content: "";
    background-color: white;
    display: inline-block;
    border-radius: 8px;
    bottom: 10px;
    position: absolute;
    margin-left: -8px;
}

.swatch div:nth-child(1) {
    /* background-color: purple; */
}

.swatch div:nth-child(2) {
    background-color: blue;
}

.swatch div:nth-child(3) {
    background-color: green;
}

.swatch div:nth-child(4) {
    background-color: yellow;
}

.swatch div:nth-child(5) {
    background-color: orange;
}

@keyframes swatch-purple-motion {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-78deg);
    }
}

@keyframes swatch-blue-motion {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-39deg);
    }
}

@keyframes swatch-green-motion {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes swatch-yellow-motion {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes swatch-orange-motion {
    0% {
        transform: rotate(0deg);
    }

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

.swatch .animate-1 {
    animation: swatch-purple-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.swatch .animate-2 {
    animation: swatch-blue-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.swatch .animate-3 {
    animation: swatch-green-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.swatch .animate-4 {
    animation: swatch-yellow-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.swatch .animate-5 {
    animation: swatch-orange-motion 5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* ABOUT HUNT */
.sectionHalf {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.sectionHalf .firstHalf {
    width: 50vw;
    height: 100%;
    padding: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1);
}

.sectionHalf .firstHalf .swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.sectionHalf .secondHalf {
    width: 50vw;
    height: 100%;
    padding: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1);
}

.secondhalfphoto::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.sectionHalf .firstHalf .heading {
    font-weight: 700;
    font-family: 'Barlow Condensed';
    font-size: 48pt;
}

.article {
    overflow: hidden;
}

.articleImage {
    width: 100%;
    border-radius: 20px;
}

/* .banner-about-hunt .secondHalf:before {
    border-top: 80vh solid transparent; 
    border-right: 20vw solid #f0f8ff; 
    content: '';
    position: absolute;
    top: 0;
    right: 50vw;
    width: 0;
    height: 0;
  } */

.articleSlide {
    position: relative;
}

.articleSlide .carousel-inner {
    padding-top: 60px;
}

.carousel-dark .carousel-control-prev,
.carousel-dark .carousel-control-next {
    position: absolute;
    top: 0px;
    bottom: auto;
    left: 40px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

.carousel-light .carousel-control-prev,
.carousel-light .carousel-control-next {
    position: absolute;
    top: 0px;
    bottom: auto;
    left: 40px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 50%;
}

.articleSlide .carousel-control-prev {
    left: 0px;
    right: auto !important;
}

@media (max-width: 768px) {
    .articleSlide .carousel-inner {
        padding-top: 35px;
    }

    /* .articleSlide .carousel-inner .carousel-item {
        padding-left: 50px;
        padding-right: 50px;
    } */

    /* .articleSlide .carousel-control-prev {
        position: absolute;
        top: -30px;
        bottom: auto;
        left: 0px;
        right: auto;
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 50%;
    }
    .articleSlide .carousel-control-next {
        position: absolute;
        top: 0px;
        bottom: auto;
        left: auto;
        right: 0px;
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 50%;
    } */
}

.articleSlide .carousel-control-prev-icon,
.articleSlide .carousel-control-next-icon {
    height: 20px;
    width: 20px;
    background-size: 100%, 100%;
}

.subContent {
    position: relative;
}

.subContent .carousel-control-prev,
.subContent .carousel-control-next {
    position: absolute;
    top: 40px;
    bottom: auto;
    right: 0px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

.subContent .carousel-control-prev {
    right: 40px;
    left: auto !important;
}

.subContent .carousel-control-prev-icon,
.subContent .carousel-control-next-icon {
    height: 20px;
    width: 20px;
    background-size: 100%, 100%;
}

.article .articlePhoto {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}

.article .articlePhotoVertical {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}

.carousel-dots {
    padding: 5px;
    border-radius: 5px;
}

.carousel-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.carousel-dots .dot.active {
    background-color: #000;
}

