/* ====================================================
# carousel
==================================================== */
.carousel-main {
    position: relative;
    background-color: rgb(0, 20, 50)
}

.carousel-main .ci {
    position: absolute;
    bottom: 3%;
    justify-content: center;
}

.carousel-main .ci li {
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    background-color: transparent;
    opacity: 1;
}

.carousel-main .ci li.active {
    background-color: #ffffff;
}

.cl-mask {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
}

.cl-txt {
    text-align: center;
    padding: 2.5rem;
}


.cl-txt h1,
.cl-txt h2 {
    text-shadow: 2px 2px 4px #212121;
}

.cl-txt h1 {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.cl-txt h1 span {
    font-size: 4.8rem;
}

.cl-txt h2 {
    font-size: 4rem;
}

.cl-txt p {
    margin-top: 1rem;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.05rem;
}

.cl-txt p strong {
    font-weight: 500;
}

.cl-txt p small {
    font-size: 13px;
}

.cl-left {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 800px;
    left: 100px;
}


.btn-top {
    color: #ffffff;
    border: 1px solid #ffffff;
    letter-spacing: 0.3rem;
    padding: 0.5rem 2rem;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    margin-top: 15px;
    min-width: 220px;
    position: relative;
    border-radius: 25px;
    text-align: center;
}

.btn-top::after {
    font-family: 'bootstrap-icons';
    content: "\F285";
    position: absolute;
    right: 15px;
}

.btn-top:hover {
    color: #000000;
    border: 1px solid #02f0ff;
    background-color: #02f0ff;

}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

.visixs {
    display: none;
}

@media (min-width: 1500px) and (max-width: 1800px) {
    .cl-left {
        width: 700px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .cl-left {
        width: 500px;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .cl-txt h1 {
        font-size: 4rem;
    }

    .cl-txt h1 span {
        font-size: 3rem;
    }

    .cl-txt h2 {
        font-size: 3rem;
    }

    .cl-left {
        width: 60vh;
    }

}

@media (max-width:900px) {
    .cl-txt h1 {
        font-size: 3rem;
    }

    .cl-txt h1 span {
        font-size: 2rem;
    }


    .cl-txt h2 {
        font-size: 2rem;
    }

    .visimd {
        display: none;
    }

    .visixs {
        display: block;
    }

    .cl-left {
        width: 60vh;
        left: 50px;
    }
}

@media (max-width: 576px) {

    .cl-txt {
        padding: 1.5rem 3.5rem
    }

    .carousel-main .ci {
        bottom: 2%;
    }

    .ci {
        margin-left: 15%;
    }

    .btn-top {
        margin-top: 0;
    }

    .cl-left {
        width: 45vh;
        left: 40px;
    }
}

@media (max-width: 460px) {
    .cl-left {
        width: 70vw;
    }

    .cl-txt {
        padding: 10px;
    }

    .cl-txt h1 {
        font-size: 1.8rem;
    }

    .cl-txt h2 {
        font-size: 1.5rem;

    }

    .cl-txt h1 span {
        font-size: 1.4rem;
    }

    .cl-txt p {
        font-size: 16px;
        line-height: 20px;
    }

    .btn-top {
        letter-spacing: 0;
    }
}