/*** slider or carousel ***/

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    padding-right: 5%;
    position: absolute;
    top: 60%;
    /* right: 5%; */
    transform: translateY(-50%);
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    width: 100%;
    /* left: 5%; */
    padding-left: 5%;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #026536 !important;
    border-color: #026536;
}


/* header */

.text--primary {
    color: #026536 !important;
}

.text--secondary {
    color: #fd814e !important;
}

.bg--primary {
    background-color: #026536 !important;
}

.bg--secondary {
    background-color: #fd814e !important;
}

.bg--light {
    background-color: #f1f3f5 !important;
}

.text--black {
    color: black !important;
}

.bg--black {
    background-color: black !important;
}

a {
    text-decoration: none !important;
}

.border--bottom {
    padding-bottom: 7px;
    border-bottom: 2px solid #fd814e;
}

.service-section {
    position: relative;
    padding: 120px 0px 112px 0px;
}

.bg-color-2 {
    background-repeat: no-repeat;
    background-size: cover;
}

.service-section {
    position: relative;
    padding: 120px 0px 112px 0px;
}

.service-block-one .inner-box .image-box img {
    width: 100%;
    transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box img {
    opacity: 0.12;
    transform: scale(1.1);
}

.service-block-one .inner-box .lower-content {
    position: relative;
    display: block;
    padding: 28px 30px 29px 30px;
}

.service-block-one .inner-box .overlay-content {
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    background: #026536;
    padding: 28px 30px 29px 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 500ms ease;
}

.service-block-one .inner-box:hover .overlay-content {
    bottom: 0px;
    opacity: 1;
    visibility: visible;
}

.single-page-header {
    background-size: cover;
    padding: 170px;
    color: #fff;
    position: relative;
}

.single-page-header:before {
    background: rgba(0, 0, 0, 0.089);
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.box--shadow:hover {
    box-shadow: 0px 0px 10px 0.1px black !important;
}