:root {
    --color-green: #618A3C;
    --color-blue: #0679AE;
    --main-light: #87ba5a;
    --color-dark: #1D2231;
    --text-gray: #8390A2;
    --text-white: #fff;
    --text-green: #618A3C;
}

.nowrap{
    white-space: nowrap !important;
}

.bg_main {
    background-color: var(--color-green) !important;
    color: var(--text-white) !important;
}

.txt_main {
    color: var(--text-green) !important;
}

.fill_main {
    fill: var(--text-green) !important;
}

.overflow {
    overflow: auto;
}

.overflow::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}

.overflow::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey !important;
    border-radius: 10px !important;
}

.overflow::-webkit-scrollbar-thumb {
    background: var(--color-green) !important;
    border-radius: 10px !important;
}

.overflow::-webkit-scrollbar-thumb:hover {
    background: var(--color-green) !important;
}

.carousel {
    height: calc(100vh - 8vh);
}

ul.slides {
    display: block;
    position: relative;
    height: calc(100vh - 8vh);
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

ul.slides input {
    display: none;
}


.slide-container {
    display: block;
}

.slide-image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    transition: all .7s ease-in-out;
}

.slide-image img {
    width: auto;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-size: 100px;
    line-height: 600px;
    color: #fff;
}

.carousel-controls label {
    display: none;
    position: absolute;
    padding: 0 20px;
    opacity: 0;
    transition: opacity .2s;
    cursor: pointer;
}

.slide-image:hover+.carousel-controls label {
    opacity: 0.5;
}

.carousel-controls label:hover {
    opacity: 1;
}

.carousel-controls .prev-slide {
    width: 49%;
    text-align: left;
    left: 0;
}

.carousel-controls .next-slide {
    width: 49%;
    text-align: right;
    right: 0;
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 999;
    text-align: center;
}

.carousel-dots .carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 10px;
}

input:checked+.slide-container .slide-image {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

input:checked+.slide-container .carousel-controls label {
    display: block;
}

input#img-1:checked~.carousel-dots label#img-dot-1,
input#img-2:checked~.carousel-dots label#img-dot-2,
input#img-3:checked~.carousel-dots label#img-dot-3,
input#img-4:checked~.carousel-dots label#img-dot-4,
input#img-5:checked~.carousel-dots label#img-dot-5,
input#img-6:checked~.carousel-dots label#img-dot-6 {
    opacity: 1;
}


input:checked+.slide-container .nav label {
    display: block;
}

@media screen and (max-width: 640px) {
    .about .container {
        padding: 0 !important;
    }

    .about .row {
        padding: 0 !important;
        margin: 0 2.5vh !important;
    }

    .about .row .shadow-lg {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 2.5vh !important;
    }

    .slide-image img {
        width: 50vh;
        height: 100vh;
        object-fit: cover;
    }
}


.modal-header {
    background: var(--color-green);
    color: var(--text-white);
    border-radius: 0 !important;
    padding: 0.5rem !important;
}

.modal-header h1,
.modal-header button i {
    color: var(--text-white) !important;
}

.modal-header button:focus {
    outline: none;
    box-shadow: none;
    border: transparent !important;
    background: none;
}

.modal-content {
    border-radius: 0 !important;
}

.btn-success {
    background: var(--color-green);
    transition: 500ms ease-in-out;
}

.btn-success:hover {
    transition: 500ms ease-in-out;
}

.border-success{
    border-color: var(--text-green) !important;
}

.text-justify{
    text-align: justify !important;
}