/*General*/
:root {
    --navbar-height: 100px;
    --footer-min-height: 100px;
    --burntyellow: #cd9933;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    max-width: 100vw;
    overflow-x: clip;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: clip;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400;
    background: linear-gradient(180deg, rgba(255,255,255, 0.9)), url("../images/gear-bg.png");
    background-repeat: repeat-y;
    background-size: cover;
}

.font-lexend {
    font-family: "Lexend", san-serif !important;
    font-weight: 400;
}

.container-fluid {
    margin: 0px !important;
    padding: 0px !important;
}

@media (max-width: 568px) {
    .container {
        padding-right: 10.5px !important;
        padding-left: 10.5px !important;
    }
}

h6 {
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Lexend", san-serif !important;
    font-size: 14px;
    color: var(--burntyellow);
}

/*Defined Styles*/
/*Font Size Classes*/
.text-xxl {
    font-size: 6rem;
}

.text-xl {
    font-size: 4.5rem;
}

.text-l {
    font-size: 3rem;
}

.text-m-2 {
    font-size: 2rem;
}

.text-m {
    font-size: 1.5rem;
}

.text-s-2 {
    font-size: 1.67rem;
}

.text-s {
    font-size: 1.2rem;
}

@media(max-width: 991px) {
    .text-xxl {
        font-size: 4.5rem;
    }

    .text-xl {
        font-size: 3rem;
    }

    .text-l {
        font-size: 2.8rem;
    }

    .text-m-2 {
        font-size: 1.5rem;
    }

    .text-m {
        font-size: 1.25rem;
    }

    .text-s-2 {
        font-size: 1rem;
    }

    .text-s {
        font-size: 1rem;
    }
}

@media(max-width: 768px) {
    .text-xxl {
        font-size: 4rem;
    }

    .text-xl {
        font-size: 2.75rem;
    }

    .text-l {
        font-size: 2rem;
    }

    .text-m-2 {
        font-size: 1.75rem;
    }

    .text-m {
        font-size: 1.5rem;
    }

    .text-s-2 {
        font-size: 1.25rem;
    }

    .text-s {
        font-size: 1.15rem;
    }
}

/*Framed Image*/
.square-img-container, .three-by-two-img-container, .two-by-three-container {
    width: 100%;
    position: relative;
    display: block;
}

    .square-img-container:after {
        content: "";
        display: block;
        padding-top: 100%;
    }

    .three-by-two-img-container:after {
        content: "";
        display: block;
        padding-top: 66.67%;
    }

.two-by-three-img-container:after {
    content: "";
    display: block;
    padding-top: 150%;
}

.framed-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/*Carousel*/
.carousel-container, .picture-carousel-container {
    position: relative;
    width: 100%;
    min-height: 150px;
    overflow: hidden;
}

._carousel {
    min-height: 150px;
    transition: transform 0.5s ease-in-out;
}

._carousel-item {
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.indicators {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.indicator {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background: #333;
}