
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 800;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 8px;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/



/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: #FFB000;
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: white;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}
/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}
/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    
    border-radius: 10px;
    transition: 0.5s;
}



.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, -0.1)), url(../img/bg-1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-secondary);
    border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0; 
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white); 
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}  

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0; 
    left: 25px; 
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}
/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}
/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: #004225;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px; 
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: white;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: white;
}

.footer .footer-item .footer-btn a:hover i {
    color: white !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
    box-shadow: 0px -15px 32px 0px rgba(0, 0, 0, 0.31);
}
/*** copyright end ***/



.chatphone{
    display:none;
}
.chatemail{
    display:none;
}
.chatwhatsapp{
    display:none;
}
@media screen and (max-width: 480px) {
.chatphone{
    display:block;
position:fixed;
bottom:0;
left:0;
width:33.33%;
z-index:9999;
background:#03441F ;
padding:5px 5px;
font-size:1.3em; 
text-align:center;
box-shadow:2px 2px 5px rgba(0,0,0,0.5);
transition:0.2s all;
}
.chatphone:hover{ 
box-shadow:inset 0px 0px 5px rgba(0,0,0,1);
transition:0.2s all;
}
.chatphone a{ 	
color:#fff;
font-family: 'Jura', sans-serif !important;
text-shadow:1px 1px 2px #075E54;
}	 .chatemail{
    display:block;
position:fixed;
bottom:0;
left:33.33%;
width:33.33%;
z-index:9999;
background:#FFB000;
padding:5px 5px;
font-size:1.3em; 
text-align:center;
box-shadow:2px 2px 5px rgba(0,0,0,0.5);
transition:0.2s all;
}
.chatemail:hover{ 
box-shadow:inset 0px 0px 5px rgba(0,0,0,1);
transition:0.2s all;
}
.chatemail a{ 	
color:#fff;
font-family: 'Jura', sans-serif !important;
text-shadow:1px 1px 2px #075E54;
}
.chatwhatsapp{
    display:block;
position:fixed;
bottom:0;
right:0;
width:33.33%;
text-align:center;
z-index:9999;
background:#25D366;
padding:5px 5px;
font-size:1.3em; 
font-family: 'Jura', sans-serif;
box-shadow:2px 2px 5px rgba(0,0,0,0.5);
transition:0.2s all;
}
.chatwhatsapp:hover{ 
box-shadow:inset 0px 0px 5px rgba(0,0,0,1);
transition:0.2s all;
}
.chatwhatsapp a{ 	
color:#fff;
text-shadow:1px 1px 2px #075E54;
}
#main-slider .item { 
height:450px; 
}
#main-slider .item .slider_img_z {
margin:0 auto;
margin-top:30px;
clip-path:none;
height:200px;
object-fit:cover;
} 
#main-slider .item .slider_details h1 {
margin-left:20px;
color: rgba(148,38,120,1);
font-size: 1.6em;
text-shadow: 1px 1px 2px rgba(72,52,67,0.4);
}
#main-slider .item .slider_details p {
margin-left:20px;
font-size:1em;
}
.v_cars img{
height:150px;
object-fit:contain;
}
.about_text{
padding:10px 5px;
font-size:1.2em;
color:#000;
text-align:justify;
}
Â Â Â Â .description{Â 
font-size:19px;
line-height: 29px;
}
.description:before,
Â Â Â Â .description:after{
font-size:25px
Â Â Â Â }

.abovemenu {
margin:0 auto;
padding:0;
background:rgba(148,38,120,1);
}
.abovemenu ul {
list-style:none;
margin:0;
padding:0;	
margin-left:0px;
}
.abovemenu ul li {	
margin:5px 3px;
padding:0;
font-size: 14px;
line-height: 18px;
color: #fff;
font-weight:700;
letter-spacing:1px;
}
.abovemenu ul li:nth-child(4) {	
display:none;
}
.abovemenu ul li:nth-child(5) {	
font-size:1em;
}
.abovemenu ul li:nth-child(6) {	
font-size:1em;
}
.abovemenu ul li:nth-child(7) {	
font-size:1.1em;
}
.abovemenu ul li a {	
color: #fff;
}
.overlayer1{
position:absolute;
background:rgba(0,0,0,0.5);
width:100%;
height:150px;
margin:0;
z-index:9;
}
.section_box{
margin-top:105px;
}
.section_box img{
width:100%;
height:150px;
align-items:center;
}

.overlayer{
position:absolute;
background:rgba(0,0,0,0.5);
width:100%;
height:100%;
margin:0;
top:0;
left:0;
}
.table_boxtariff{
color:rgba(255,255,255,1);
font-size:1.2em;
margin:0;
padding:6% 8%;
}
#ratebg {
background-image: url(../images/slider-bg.webp);
background-attachment: fixed;
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
height:1040px;
margin:0;
color: #fff;
}
#ratebgtariff {
background-image: url(../images/slider-bg.webp);
background-attachment: fixed;
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
height:860px;
margin:0;
color: #fff;
}
.navbar-default .navbar-brand {
margin-right: 50px;
margin-left: 20px;
width:150px;
height:70px;
}
.navbar-default .navbar-brand img {
height: 40px;
margin:0;
padding:0;
}
.book_now{
text-align:center;
position:fixed;
bottom:20px;
right:20px;
background:transparent;
width:80px;
height:80px;
border-radius:100%;
padding:8px 0;
z-index:9999;
}
.table_desktop{
display:none;
}
.table_mobile{
display:block;
}
}







/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/bg24.webp");
}

.main-banner::before {
    content: '';
    left: 0;
    top: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
}

.main-banner-content {
    position: relative;
}

.main-banner-content .row {
    margin-left: 0px;
    margin-right: 0px;
}



.main-banner-content .main-banner-img-slide .owl-nav {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.main-banner-content .main-banner-img-slide .owl-nav button {
    color: var(--mainColor);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    padding: 0px 10px !important;
    border: .5px solid #f9580e5b;
    background-color: var(--whiteColor);
}

.main-banner-content .main-banner-img-slide .owl-nav button:hover {
    color: var(--whiteColor);
    background-color: var(--mainColor);
}

.main-banner-text {
    padding: 100px 0px;
    max-width: 545px;
    margin-left: auto;
}

.main-banner-text h1 {
    margin-bottom: 15px;
    color: var(--whiteColor);
    font-size: 45px;
    font-weight: 700;
    text-shadow: rgb(0, 0, 0) 1px 1px 2px, rgb(0, 0, 0) 0px 0px 25px, rgb(0, 0, 0) 0px 0px 5px;

}

.main-banner-text p {
    max-width: 600px;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: rgb(0, 0, 0) 1px 1px 2px, rgb(0, 0, 0) 0px 0px 25px, rgb(0, 0, 0) 0px 0px 5px;

}

@media only screen and (max-width: 767px) {
    .banner-single-slider {
        padding-top: 80px;
        padding-bottom: 0px;
    }

    .banner-single-slider::before {
        width: 100%;
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .banner-single-slider .banner-text-area {
        text-align: center;
    }

    .banner-single-slider .banner-text-area h1 {
        font-size: 28px;
    }

    .banner-single-slider .banner-text-area p {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-slider-area .owl-dots {
        left: 0px;
        top: unset;
        width: 100%;
        bottom: 50px;
        text-align: center;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    .banner-btn-group {
        margin-top: 15px;
    }

    .banner-btn-group .default-button-1 {
        font-size: 13px;
        padding: 10px 15px 10px 15px;
        margin-top: 5px;
        margin-left: 10px;
        margin-right: 10px;
    }



    .banner-btn-group .default-button-2 {
        font-size: 13px;
        padding: 10px 15px 10px 15px;
        margin-top: 5px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .home-banner-img {
        background-image: unset;
        height: auto;
    }

    .home-banner-img img {
        display: block;
    }

    .home-banner-text {
        text-align: center;
        max-width: 100%;
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .home-banner-text h1 {
        font-size: 27px;
    }

    .home-banner-text p {
        max-width: 100%;
    }

    .home-banner-content {
        position: relative;
    }

    .home-banner-content .row .col-lg-5 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-banner-text {
        padding: 50px 0px 20px 0px;
        max-width: 100%;
    
    }

    .main-banner-text h1 {
        font-size: 30px;
    }

    .main-banner-text p {
        max-width: 100%;
    }

    .main-banner-content .main-banner-img-slide {
        padding-bottom: 80px;
    }

    .main-banner-content .main-banner-img-slide .owl-nav {
        bottom: 50px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-single-slider {
        padding-top: 80px;
        padding-bottom: 150px;
    }

    .banner-single-slider::before {
        width: 100%;
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .banner-single-slider .banner-text-area {
        text-align: center;
    }

    .banner-single-slider .banner-text-area h1 {
        font-size: 40px;
    }

    .banner-single-slider .banner-text-area p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-banner-img {
        background-image: unset;
        height: auto;
    }

    .home-banner-img img {
        display: block;
    }

    .home-banner-text {
        text-align: center;
        max-width: 100%;
        padding-bottom: 30px;
    }

    .home-banner-text h1 {
        font-size: 45px;
    }

    .home-banner-text p {
        max-width: 100%;
    }

    .home-banner-content {
        position: relative;
    }

    .home-banner-content .row .col-lg-5 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-banner-text {
        padding: 100px 0px 10px 0px;
        max-width: 100%;
        text-align: center;
    }

    .main-banner-text h1 {
        font-size: 40px;
    }

    .main-banner-text p {
        max-width: 100%;
    }

    .main-banner-content .main-banner-img-slide {
        padding-bottom: 50px;
    }

    .main-banner-content .main-banner-img-slide .owl-nav {
        bottom: 25px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .banner-text-area h1 {
        font-size: 40px;
    }

    .banner-single-slider::before {
        width: 70%;
    }

    .banner-slider-area .owl-dots {
        left: 95%;
    }

    .banner-slider-area .owl-dots .owl-dot {
        background-color: #181870e3;
        border: 2px solid #f5f5f5e3;
        -webkit-box-shadow: 0px 0px 0px 2px #181870e3;
        box-shadow: 0px 0px 0px 2px #181870e3;
    }

    .banner-slider-area .owl-dots .active {
        -webkit-box-shadow: 0px 0px 0px 2px var(--mainColor);
        box-shadow: 0px 0px 0px 2px var(--mainColor);
        background-color: var(--mainColor);
    }

    .home-banner-text {
        max-width: 535px;
    }

    .home-banner-text h1 {
        font-size: 40px;
    }

    .main-banner-text {
        max-width: 460px;
    }

    .main-banner-text h1 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1550px) {
    .banner-single-slider {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .banner-slider-area .owl-dots {
        left: 5%;
    }

    .home-banner-text {
        padding: 300px 0;
        max-width: 800px;
    }

    .main-banner-text {
        padding: 50px 0px;
        max-width: 635px;
        margin-left: auto;
    }

    .main-banner-text h1 {
        font-size: 50px;
    }

    .main-banner-content .main-banner-img-slide {
        padding: 50px 80px;
    }

    .main-banner-content .main-banner-img-slide .owl-nav {
        bottom: 100px;
    }
}

.features-card {
    position: relative;
    padding: 30px 20px;

    text-align: center;

    background-color: var(--whiteColor);
    -webkit-box-shadow: 0 0 11px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 11px 0px rgba(0, 0, 0, 0.05);

    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: .5s;
    transition: .5s;
}



.features-card h2 {
    left: 20px;
    top: 30px;
    position: absolute;
    font-size: 40px;
    color: #eeeeee;
    -webkit-transition: .5s;
    transition: .5s;
}

.features-card img {
    width: 100px;
    height: 100px;
    border-radius: 20%;
    display: inline-block;
    background-color: #f85906;

    padding: 15px;
    line-height: 1.7;

    margin-bottom: 20px;
    position: relative;
}

.features-card h3 {
    margin-bottom: 0px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
}

.features-card:hover::before {
    height: 0%;
}

.features-card:hover h2 {
    color: #f85906;
}

.features-content {
    position: relative;
    margin-top: 30px;
    z-index: 9;
}


@media (max-width:900px){
   #fix-icon{display: none;}
}

@media (max-width:900px){
    #fix-icon-whataap{display: none;}
 }


.fix-icon {
	display: inline-block;
	position: fixed;
	bottom: 90px;
	left: 10px;
	z-index: 999999;
  }
  
  #fix-icon {
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-name: example;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
  }
  
  @-webkit-keyframes mover {
	0% {
	  transform: translateY(0);
	}
  
	100% {
	  transform: translateY(-20px);
	}
  }
  
  .fix-icon-item img {
	width: 55px !important;
	height: 55px !important;
	background:
    #FFB000;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
  }
  
  .fix-icon-whataap {
	display: inline-block;
	position: fixed;
	bottom: 20px;
	left: 10px;
	z-index: 999999;
	transition: all0.5s ease-in-out;
	width: 55px !important;
	height: 55px !important;
  }
  
  .fix-icon-whataap-item img {
	border-radius: 50%;
	box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
	transition: box-shadow .2s;
	cursor: pointer;
	overflow: hidden;
	width: 55px !important;
	height: 55px !important;
	background:
	  #25d366 !important;
  }

  
.states-div a {
	display: block;
	background-color: #b68c5a ;
	font-size: 15px;
	text-transform: capitalize;
	padding: 7px 20px;
	text-align: center;
	margin-bottom: 10px;
	color: white;
	border-radius: 25px;
  
  }
  
  .text_decoration {
	text-decoration: none;
  }
  .main_div_all_name h2 {
	text-align: center;
	color: black;
  }


  /* Css*/

  .tj-tabs-section {
    position: relative;
    z-index: 9;
}

.tj-tabs-section-two {
    padding-top: 80px;
}

.tj-tabs-section-two .slider-tabs.slider-tabs-two {
    margin: 0 auto;
}

.tabs-box .tab-content {
    position: relative;
    border-radius: 3px;
    background: var(--tj-white-color);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 45px 60px;
}

.tabs-box .nav {
    justify-content: center;
}

.tabs-box .nav .nav-item {
    width: 50%;
}

.tabs-box .nav .nav-item .nav-link {
    width: 100%;
    background: var(--tj-secondary-color);
    color: var(--tj-white-color);
    font-family: var(--tj-ff-title);
    font-size: 24px;
    border-radius: 30px 30px 0px 0px;
    padding: 11px 16px;
}

.tabs-box .nav .nav-item .nav-link i {
    position: relative;
    top: 4px;
    right: 5px;
}

.tabs-box .nav .nav-item .nav-link.active {
    background: var(--tj-primary-color);
    position: relative;
    z-index: 10;
}

.tabs-box .nav .nav-item .nav-link.active::before {
    position: absolute;
    left: 50%;
    bottom: -10px;
    border-right: 26px solid transparent;
    border-bottom: 26px solid var(--tj-primary-color);
    content: "";
    z-index: -1;
    transform: rotate(-405.853deg);
}

.tabs-box .tabs-form-box {
    margin-bottom: 40px;
}

.tabs-box .tabs-form-box .title {
    font-size: 24px;
    margin-bottom: 15px;
}

.tabs-box .tabs-form-box .tabs-input input {
    background: rgba(225, 225, 225, 0.4);
    width: 100%;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
}

.tabs-box .tj-quiz-list {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tabs-box .tj-quiz-list .quiz-check {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
    margin-right: 40px;
    padding-left: 40px;
}

.tabs-box .tj-quiz-list .quiz-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.tabs-box .tj-quiz-list .quiz-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid var(--tj-gray-color5);
}

.tabs-box .tj-quiz-list .quiz-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--tj-primary-color);
}

.tabs-box .tj-quiz-list .quiz-check input:checked ~ .checkmark {
    border-color: var(--tj-primary-color);
    background-color: transparent;
}

.tabs-box .tj-quiz-list .quiz-check input:checked ~ .checkmark:after {
    display: block;
}

.tabs-box .tabs-image {
    position: absolute;
    bottom: 0;
    right: 20px;
}

.tabs-box .tabs-image img {
    max-width: 340px;
    width: 100%;
}

.breadcrumb{
    background-image: url(/img/bread.webp);
    background-size: cover;
    height: 250px;
}

.breadcrumb-title h2{
    text-align: center;
    padding-top: 80px;
    color: #004225;
}

.breadcrumb-item{
    display: inline-block;
    text-align: center;
    font-size: 20px;
}

.breadcrumb-title a:hover{
    color: #fff;
}

.gal{
    
    margin-top: 10px;
    border: 10px solid #004225;
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
    
}

.gal:hover{
    border: 5px solid #004225;
  
    -webkit-filter: none;
    filter: none;
}





/* ======= Contact Box style ======= */
.contact-box {
    position: relative;
    margin-bottom: 0px;
    margin-top: -100px;
}
.contact-box .container {
    position: relative;
    z-index: 2;
}
.contact-box .item {
    background: #f2f2f2;
    padding: 60px 30px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 20px;
}
.contact-box .item.active {
    background: #004225;
}
.contact-box .item:hover {
    background: #FFB000;
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;

}
.contact-box .item h5 {
    font-size: 21px;
    color: #1b1b1b;
    margin-bottom: 0px;
}
.contact-box .item.active h5 {
    color: #1b1b1b
}
.contact-box .item:hover h5 {
    color: #1b1b1b;
    -webkit-transition: .5s;
    transition: .5s;
}
.contact-box .item p {
    color: #555;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}
.contact-box .item.active p {
    color: #1b1b1b;
}
.contact-box .item:hover p {
    color: #1b1b1b;
}
.contact-box .item span {
    font-size: 35px;
    color: #f67d0a;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
}
.contact-box .item.active span {
    color: #1b1b1b;
}
.contact-box .item:hover span {
    color: #1b1b1b;
}
.contact-box .item i.numb {
    font-size: 120px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    color: rgba(0,0,0, 0.1);
    opacity: .2;
}
.contact-box .item.active i.numb {
    color: rgba(0, 0, 0, 0.2);
}
.contact-box .item:hover .numb {
    color: rgba(0, 0, 0, 0.2);
}


/* ======= Contact style ======= */
.contact p {
    color: #555;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact p b {
    color: #1b1b1b;
    font-weight: 700;
}
.contact h5 {
    color: #1b1b1b;
    font-size: 21px;
    text-align: center;
    margin-bottom: 20px;
}
.contact .con {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #555;
    text-decoration: none;
}
.contact .con .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 100%;
    border: 1px solid #f67d0a;
    text-align: center;
    background: transparent;
    font-size: 21px;
    color: #fff;
}
.contact .con .icon .img {
    border-radius: 0;
    border: 1px solid #f67d0a;
}
.contact .con .icon img {
    background: transparent;
    padding: 13px;
}
.contact .con .text {
    color: #555;
    line-height: 1.5em;
}
/* contact form */

.mylist{
    list-style: none;
}

.list-link{
    padding: 15px;
    background-color:#fff;
   
}

.mylink{
    
    color: #004225;
    padding: 10px;
    width: max-content;
}


.ifame{
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 10px;
    box-shadow: 7px 6px 5px #FFB000;
   }
   
   
   .mycont{
       background:#00275E;
       color:#00265D;
       padding:10px;
       border-radius:10px;
       margin-top:20px;
       
   }
   
 
   
   
   .mycont:hover{
  background-color:#F85905 ;
  color: #fff;
 }