body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #f9f9f9;
    --dark-green: #06484a;
}

.navbar a {
    color: #f9f9f9 !important;
}

#background {
    width: 100%;
    background: linear-gradient(to right,
            #f9f9f9 0%,
            #f9f9f9 50%,
            #06484a 50%,
            #06484a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

span {
    display: inline-block;
    position: relative;
    color: white;
    padding-bottom: 2px;
}

span:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform-origin: bottom left;
    transition: transform 0.25s ease-out
}

span:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;

}

.invertImage {
    transform: scaleX(-1);
}


.text-green {
    color: #06484a !important;
}

.text-green::after {
    width: 0%;
}

.container-100vh {
    height: 100vh;
}

.container-bg-img {
    background-image: url(../images/Rectangle\ 4.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 0%;
}

.container-bg-img-alt {
    background-image: url(../images/Rectangle\ 5.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 100%;
}

.bg-dark-green {
    background-color: var(--dark-green);
}

.carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    /* add border-radius */
    background-color: var(--dark-green);
}

.w-60 {
    width: 60%;
}

.carousel-control-prev-icon {
    width: 3rem !important;
    height: 3rem !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306484a'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    
}
.carousel-control-next-icon {
    width: 3rem !important;
    height: 3rem !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306484a'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    
}

.carousel-control-prev-icon::after {
    width: 0;
}

.carousel-control-next-icon::after {
    width: 0;
}

.up-button {
    position: fixed;
    right: -50rem;
    bottom: 3rem;
    border: none;
    padding: 15px;
    background-color: #f9f9f94b;
    transition: .5s;
    z-index: 99;
    border-radius: 100%;
    width: 4.5rem;
    height: 4.5rem;
}

.up-button-sm {
    position: fixed;
    right: 0rem;
    bottom: 0rem;
    border: none;
    padding: 15px;
    background-color: #f9f9f94b;
    transition: .5s;
    z-index: 99;
    border-radius: 100%;
    width: 4.5rem;
    height: 4.5rem;
}

.right-1 {
    right: 3rem;
    transition: .5s;
}

.icon{
  color: var(--dark-green);
  font-size: 2.5rem;
  transition: .3s;
  
  
}

.icon:hover {
    color: #3dbabe;
    text-shadow: #3dbabe 0px 0px 6px;
}

a img .img-format{
    width: 60%;
}

@media (min-width: 1080px) {
    .container-midle {
        background: linear-gradient(to right,
                #f9f9f9 0%,
                #f9f9f9 50%,
                #06484a 50%,
                #06484a 100%);
    }
}

@media (max-width: 768px) {
    .container-100vh {
        height: 100%;
    }

    .container-bg-img {
        background-size: 70%;
    }

    #background {
        background: var(--dark-green) !important;

    }

    .nav-link {
        color: var(--dark-green) !important;
    }

    .container-bg-img {
        background-size: 60%;
    }

    .container-bg-img-alt {
        background-size: 60%;
    }

    .carousel-control-next-icon {
        width: 2rem !important;
    }
    .carousel-control-prev-icon {
        width: 2rem !important;
    }
    .carousel-indicators [data-bs-target] {
        height: 8px;
        width: 8px;
    }

    a img .img-format{
        width: 100%;
    }

    .icon {
        font-size: 2rem;
    }

}