@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.container-fluid {
    width: 90% !important;
}

@media (min-width: 992px) {
    .right {
        width: 22.333333%;
    }
}

.btn-cta {
    padding: 10px;
    width: 7rem;
    border-radius: 20rem;
    background: #FFF;
    border: 2px solid #E6EFF4;
}

.bg-block {
    width: 90%;
    border-radius: 0px 0px 100px 100px;
    background: #FFF;
    box-shadow: 8px 8px 50px 0px #E6EFF4 inset;
}

.btn-cta:hover {
    background: rgba(233, 118, 0, 0.80);
    color: #FFFFFF;

}

.hero-img {
    width: 100%;
    /* height: 100%; */
}

.box {
    border-radius: 30px;
    box-shadow: 8px 8px 60px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.text-justify {
    text-align: justify !important;
}

#sec-2-bg {
    background: rgb(255, 255, 255);
    padding: 4rem 0;
    box-shadow: 3px 6px 24px rgb(0 0 0 / 10%);
    border-radius: 10rem 0 10rem 0;
}

#products {
    background: rgb(255, 255, 255);
    padding: 4rem;
    box-shadow: 3px 6px 24px rgb(0 0 0 / 10%);
    border-radius: 10rem 0 10rem 0;
}

.about {
    width: 80%;
}

.blue {
    background: #00AFFF;
}

.purple {
    background: #695FFD;
}

.red {
    background: #F42478;
}

.accordion-button:not(.collapsed) {
    color: rgba(233, 118, 0, 0.80);
    background-color: rgba(255, 234, 214, 0.8);
}

.dropdown-toggle::after {
    display: none;
}

#profile-img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #305F72
}

.highlight {
    color: rgba(233, 118, 0, 0.80);
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #22424e;
    color: rgba(233, 118, 0, 0.80);
}

.swiper-slide:nth-child(n) {
    background-color: #305F72;
    border-radius: 20px;
    color: #E6EFF4;
    padding: 30px;
}

.swiper-pagination-bullet-active {
    background-color: rgba(233, 118, 0, 0.80) !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: rgba(233, 118, 0, 0.80) !important;
}

.no-margin {
    margin-bottom: 0 !important;
}

/* Small Screens */
@media screen and (max-width: 600px) {
    .container-fluid {
        width: 100% !important;
    }

    .navbar-toggler-icon {
        background-image: url("./static/images/menu-line.svg") !important;
    }

    .about {
        width: 90%;
    }
}