.hero-area {
    position: relative;
    z-index: 1;
    margin-left: 4%;
    margin-right: 4%;
}

.hero-slides {
    position: relative;
    z-index: 1;
}

.hero-slides .single-hero-slide {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 1;
}

@media only screen {
    .hero-slides .single-hero-slide {
        background-size: cover;
    }
}

.hero-slides .single-hero-slide .hero-slides-content {
    position: relative;
    z-index: 1;
    padding: 60px 50px;
    border-left: 3px solid #40ba37;
    background-color: rgba(24, 24, 24, 0.54);
}

@media only screen and (max-width: 767px) {
    .hero-slides .single-hero-slide .hero-slides-content {
        padding: 30px 20px;
    }
}

.hero-slides .single-hero-slide .hero-slides-content h1 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .hero-slides .single-hero-slide .hero-slides-content h1 {
        font-size: 24px;
    }
}

.hero-slides .single-hero-slide .hero-slides-content p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #ffffff;
}

.hero-slides .owl-prev,
.hero-slides .owl-next {
    background-color: transparent;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    top: 50%;
    margin-top: -20px;
    left: 3%;
    position: absolute;
    z-index: 10;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-bottom: 3px solid #1c8314;
}

@media only screen and (max-width: 767px) {
    .hero-slides .owl-prev,
    .hero-slides .owl-next {
        font-size: 13px;
    }
}

.hero-slides .owl-next {
    left: auto;
    right: 4%;
}

.hero-slides:hover .owl-prev,
.hero-slides:hover .owl-next {
    opacity: 1;
    visibility: visible;
}

.hero-slides .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 50px;
    z-index: 10;
    width: 80%;
    left: 17%;
}

.hero-slides .owl-dots .owl-dot {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-right: 10px;
}

.hero-slides .owl-dots .owl-dot.active {
    color: #1c8314;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breakpoint-on .classynav ul li.cn-dropdown-item>a::after,
    .breakpoint-on .classynav ul li.megamenu-item>a::after {
        top: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .breakpoint-on .classynav ul li.cn-dropdown-item>a::after,
    .breakpoint-on .classynav ul li.megamenu-item>a::after {
        top: 10px;
    }
}


/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 400 !important;
    font-family: 'Times New Roman', cursive !important;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
    font-family: 'Arial', sans-serif !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/

.btn.btn-primary {
    border: 0;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Button End ***/


/*** Navbar Start ***/

.nav-bar {
    background: var(--bs-light);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #970000;
}

.navbar .dropdown-toggle::after {
    content: "\f107";
    font-family: "Times New Roman";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #970000;
    color: var(--bs-white);
}


/*** Navbar End ***/


/*** Events Start ***/

.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}


/*** Events End ***/


/*** service start ***/

.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}


/*** Services End ***/


/*** Menu Start ***/

.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}


/*** Menu End ***/


/*** Team Start ***/

.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}


/*** Team End ***/


/*** testimonial Start ***/

.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}


/*** testimonial End ***/


/*** Contact start ***/

.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}


/*** Contact End ***/


/*** Footer Start ***/

.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}


/*** Footer End ***/