@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #FBFBFB !important;
}

h1 {
    font-weight: 600 !important;
    font-size: 40px !important;
}

h2 {
    color: #18af54 !important;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: 32px !important;
    margin-bottom: 1em !important;
}

h3 {
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: 28px !important;
    text-align: left;
    color: #3b3b3b ! important;
}

h4 {
    text-transform: uppercase;
}

.card {
    padding: 5%;
    text-align: justify;
}

.btn-white-bg {
    color: #18af54 !important;
    background-color: white !important;
}

.btn-white-bg:hover {
    box-shadow: 2px 2px 2px darkslateblue;
    color: darkslateblue !important;
}

.btn-green-bg:hover {
    background-color: white !important;
    border: 1px groove darkslateblue !important;
    box-shadow: 2px 2px 2px darkslateblue;
    color: darkslateblue !important;
}

.navbar {
    padding-left: 3em!important;
    padding-right: 3em!important;

    @media screen and (max-width: 600px) {
        #logo {
            max-height: 58px;
            max-width: 58px;
        }
    }

    #logo {
        max-height: 100px;
        max-width: 100px;
    }
}

.colored_div {
    transform: none;
    background: #1fd969;
    color: white;
    align-items: center;
    justify-content: center;
    padding-top: 120px;

    .sub-title {
        font-size: 20px;
    }

    #baseline {
        font-weight: bold;
        margin: 1em 0 !important;
    }

    img {
        min-width: 350px;
        max-width: 750px;
    }

}

@media screen and (max-width: 750px) {

    .description_colored_div {
        padding-right: 5em;
    }
}

@media screen and (max-width: 1200px) {

    .colored_div {
        padding-left: 5%;
        padding-right: 5%;
    }

    .description_colored_div {
        padding-left: 5em;
    }
}

@media screen and (min-width: 1200px) {

    .colored_div {
        padding-left: 10%;
        padding-right: 10%;
    }

    .description_colored_div {
        padding-left: 10em;
        max-width: 600px;
    }
}

@media screen and (min-width: 600px) {
    .content-block {
        margin: 10% 15%;
    }
}

@media screen and (max-width: 600px) {
    .content-block {
        margin: 10% 10%;
    }
}

.how_its_working {
    text-align: center;

    .grid_how_its_working {
        padding-bottom: 2em;
    }

    img {
        min-width: 120px;
        max-width: 140px;
        margin: auto;
    }

    .subtitle {
        font-size: 18px;
    }

    .process_detail {
        font-size: 16px;
        max-width: 300px;
        margin: auto;
    }

}

.our_tech {
    position: relative;
    text-align: justify;

    .card {
        margin-bottom: 15px;
        min-width: 300px;
    }
}

.our_tech li {
    margin-bottom: 5%;
    margin-top: 5%;
}

.subtitle_benef{
    font-size: 25px;
    font-weight: bold;
}

.our_expert {
    text-align: center;

    .content_our_expert {
        .expertise {
            margin-top: 3em;
            padding: 0 2em;
        }

        h4 {
            text-align: left;
        }

        p {
            word-spacing: -0.05em;
            hyphens: auto;
            text-align: justify;
            margin-bottom: 0;
        }
    }
}

.img-box {
    overflow: hidden;
    color: white;
    position: relative;
    padding: 5px !important;
    max-width: 300px !important;
    max-height: 300px;
}

.img-box img {
    transform: scale(1.0);
    transition: transform 0.4s ease;
}

.transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

.caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-align: left;
    margin: 10%
}

.img-box:hover img {
    transform: scale(1.25);
}

.img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
}

.img-box:hover {
    cursor: pointer;
}

.caption > p:nth-child(2) {
    font-size: 0.8em;
}

.opacity-low {
    opacity: 0.5;
}

button.carousel-control-prev {
    left: -15%; !important;
}

.carousel-control-next {
    left: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff0000' viewBox='0 0 16 16'%3E%3Cpath d='M11 1 5 8l6 7'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300ff00' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l6 7-6 7'/%3E%3C/svg%3E");
}

.colored_footer {
    padding-top: 5em;
    padding-bottom: 3em;
    background: #1fd969;
    color: white;
    text-align: center;

    a {
        margin: auto;
    }
}

.bottom-links-menu {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 2em;

    a {
        color: #3b3b3b;
    }

    #full_email {
        font-size: small;
    }
}

.btn {
    margin: 2em 0;
}

@media screen and (min-width: 600px) {

    .top {
        justify-self: self-start;
        --offset: 50px;
        position: sticky;
        bottom: 60px;
        margin-right: 10px;
        left: 10%;
        place-self: end;
        margin-top: calc(100vh + var(--offset));
        text-decoration: none;
        padding: 10px;
        font-family: sans-serif;
        color: #fff;
        background: darkslateblue;
        border-radius: 100px;
        white-space: nowrap;
        z-index: 99;
    }

    .top:hover {
        background-color: white;
        color: #1fd969;
        border: 1px solid #1fd969;
        transition: .4s ease;
    }

}

.hidden-slides {
    display: none;
}

#form_btn_txt {
    justify-self: center;
}

#form_btn_spinner {
    display: none;
    justify-self: center;
}