@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    font-family: "Outfit", sans-serif;
}
:root{
    --primary: #8126d6;
    --secondary: #12d6bc;
}
a{
    text-decoration: none;
}
p{
    text-align: justify;
}

h1,h2,h3,h4,h5{
    color: var(--secondary);
}

/*** Topbar ***/

.top_bg{
    background-color: var(--primary);
}
.socila-media{
    border-radius: 30px;
    border: 1px solid white;
    color: white;
}

/*** Navbar ***/

.nav-link{
    color: var(--secondary);
}
.nav-link:hover{
    color: var(--primary);
}
.nav-item .nav-link.active{
    color: var(--primary);
}
.navbar-toggler{
    border: none !important;
    box-shadow: none !important;
}



/*** Owl Carousel ***/

.owl-carousel{
    position: relative;
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: end;
    -webkit-tap-highlight-color: transparent;
}
.owl-dots {
   position: absolute;
   top: 50%;
   right: 10%;
}
.owl-theme .owl-dots .owl-dot {
    display: block;
    zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 5px 7px;
    background: #ffffff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: .5s ease-in-out;

  }
  .owl-theme .owl-dots .owl-dot.active span {
    height: 30px;
    background-color: var(--primary);
    border: 1px solid white;
  }

.main_silde img{
   height: 100vh;
   width: 100%;
   object-fit: cover;
   background-size: cover;
}
@media(max-width:768px){
    .main_silde img{
        height: 60vh !important;
    }
}

.inner-content{
    position: absolute;
    z-index: 11;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.inner-img{
    height: 450px !important;
    width: 100%;
    object-fit: cover;
}

/*** Page Header ***/

.page-header{
    background-image: url(../imgs/Road-Trip-Guide.webp);
    background-size: cover;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;
}
.page-header .home:hover{
    color: var(--primary) !important;
}


/*** Highlight ***/

.highlight{
    background-image: url(../imgs/background.jpg);
    background-size: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.726);
    background-blend-mode: multiply;
}


/*** Services ***/

.card{
    border: none !important;
    border-radius: 0px !important;
}
.cards{
    background-color: var(--primary);
}
.service-img{
    height: 350px !important;
    width: 100%;
    object-fit: cover;
}

/*** Gallery ***/

.gallery-img{
    height: 300px !important;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}


/*** Contact ***/

.contact_bg{
    background-color: var(--primary);
}
.contact-btn{
    border-radius: 0px !important;
    background-color: var(--primary);
    color: white !important;
    transition: .5s all ease-in-out;
}
.contact-btn:hover{
    background-color: #5500a5;
}
.contact input{
    border: none;
    border-bottom: 1px solid rgb(206, 206, 206) !important;
    box-shadow: none !important;
}
.contact textarea{
    border: none;
    border-bottom: 1px solid rgb(206, 206, 206) !important;
    box-shadow: none !important;
}

/*** Footer ***/

.footer{
    background-color: rgb(1, 0, 19);
}
.useful-link li a{
    color: white;
    transition: .5s all ease-in-out;
}
.useful-link li a:hover{
    color: rgb(161, 161, 161);
    /* letter-spacing: 3px; */
}
.copyrights{
    background-color:#006154;
}
@media(max-width:768px){
    .copyright{
        align-items: center !important;
        text-align: center !important;
    }
}
.copyright a{
    color: white;
    transition: .5s all ease-in-out;
}
.copyright a:hover{
    color: var(--primary) !important;
}
