/*--
<!-- GTcms :: GT Web Framework-->
--*/

:root {
    --primary: #F3BD00;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #787878;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25;
}

hr:not([size]) {
    height: 1px;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #16243d;
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media(min-width: 1200px) {
    h1,
    .h1 {
        font-size: 2.5rem;
    }
}

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media(min-width: 1200px) {
    h2,
    .h2 {
        font-size: 2rem;
    }
}

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media(min-width: 1200px) {
    h3,
    .h3 {
        font-size: 1.75rem;
    }
}

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media(min-width: 1200px) {
    h4,
    .h4 {
        font-size: 1.5rem;
    }
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 700;
    line-height: 1.2;
}

@media(min-width: 1200px) {
    .display-1 {
        font-size: 5rem;
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 700;
    line-height: 1.2;
}

@media(min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem;
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 700;
    line-height: 1.2;
}

@media(min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 700;
    line-height: 1.2;
}

@media(min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 700;
    line-height: 1.2;
}

@media(min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
}

@media(min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem;
    }
}
a {
  color:var(--color1);
  text-decoration:none;
}
a:hover {
  color:var(--color2);
}

/*** Spinner Start ***/
#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);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--color1);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--color1);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--color1);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--color1);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--color1);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--color1);
        color: var(--color1);
    }
}

.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 .dropdown-item:hover {
    background: var(--color1);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--color1);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background: linear-gradient(rgba(var(--color1rgb), 0.9), rgba(0, 0, 0, 0.2)), url(../images/bg-breadcrumb.jpg);
	background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 0.2)), url(../images/bg-breadcrumb.jpg);
    background-position: center center;
    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 ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
	height: 100%;
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--color1);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /*background: var(--bs-light);
	background: #f2f5f9;*/
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--color2);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--color1);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--color1);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--color1);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--color1);
}

.service .service-content {
    position: relative;
	border-radius: 10px;
    /*border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);*/
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service-content .service-content-inner a.btn.btn-color1 {
    color: var(--bs-white);
}
.service .service-item:hover .service-content .service-content-inner a.btn.btn-color1 {
    color: var(--color1);
    background: var(--bs-white);
}
.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}
.service .service-item:hover .service-content .service-content-inner .srvttl1 a {
    color: var(--color2);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    /*border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;*/
	border-radius: 10px;
    background: var(--color1);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--color1);
    background: var(--bs-light);
}
/*** FAQs 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, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--color1);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--color1);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.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-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--color1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--color1);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--color1);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    /*flex-direction: column;*/
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    /*line-height: 35px;*/
	text-align: justify;
}

.footer .footer-item a:hover {
    color: var(--color1);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--color1);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--color1);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--color1);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

/*--xtraStyles--*/
footer .copy-right-gtcren{
	background: #eaeaea;
}
@media(max-width:767px){
p.copyright span{
	display: block;
}
}
.hide{
	display:none !important;
}
.map hr {
    margin-top: .5rem;
    margin-bottom: .2rem;
}
.sptn {
    display: none;
}
.error { 
	display: none; 
	padding:10px; 
	margin:0 0 5px 0;
	color: #D8000C; 
	font-size:1em;
	background-color: #FFBABA;
}
.success { 
	display: none; 
	padding:10px; 
	color: #044406; 
	font-size:1em;
	background-color: #B7FBB9;
}
.error img { 
	vertical-align:top; 
}
.txtcenter{
	text-align:center;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
	width:100%;
}
.dashboard .footer {
  background: linear-gradient( to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9) ) var(--color1);
}
.dashboard .footer p, .dashboard .footer h4 {
	color: var(--color1);
}
#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 2%;
    overflow: hidden;
    z-index: 999;
    width: 32px;
    height: 38px;
    border: none;
    text-indent: 100%;
}
#toTopHover {
    width: 32px;
    height: 38px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}
.scrolltop {
	display:none;
	width:100%;
	margin:0 auto;
	position:fixed;
	bottom:20px;
	right:10px;	
}
.scrollicon {
	position:absolute;
	top: 0;
	width: 32px;
	height: 38px;
	text-indent: 0;
	/*background:#b2b2b2;
	background:rgba(178,178,178,0.7);*/
	padding: 5px 2px;
	text-align: center;
	margin: 0 0 0 0;
	cursor:pointer;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
 		
}
.scrollicon:hover {
	background:rgba(51,51,51,0.5);
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 	
	border-radius: 5px;	
}
.scrollicon:hover i {
	text-shadow: 1px 1px 0px #000;
}
.scrollicon i {
    color: var(--color1);
	font-size: 1.8rem;
	text-shadow: 0px 0px 8px #000;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 	
}
.pgntr .pagination{
	display: inline-flex;
	margin-bottom: 5px;
}
.page-item.active .page-link {
    background-color: var(--color1);
	border-color: #666;
	color: #fff;
}
.page-link {
    background-color: transparent;
    color: var(--color1);
	text-decoration: none;
	margin: 0px;
	border-radius: 0.0rem;
	padding: 11px 25px;
	border-color: #888;
}
.page-link:hover {
    color: #000;
	background-color:var(--color2);
	border-color:#888;
}
.page-item.disabled .page-link{
	background-color: #eee;
	border-color: #888;
}
.pgul ul {
  list-style: none;
  padding: 0;
  padding-left:10px;
  margin-top:10px;
}
.pgul ul li {
	font-size: 1.3rem;
	line-height:1.5em;
	padding-left:0px;
	padding-top:5px;
	padding-bottom:5px;
	list-style-type:none;
	list-style:none;
	/*display: table-row;*/
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	transition: all 0.3s ease-in;
}
.pgul ul li:before {
	content: "\f058";
	font-family: 'Font Awesome 5 Free';
	width: 1.3em;
	color:var(--color1);
	font-weight: 900;
	margin-right:5px;
	/*display: table-cell;*/
	display: flex;
	transition: all 0.3s ease-in;
}
.pgul ul li:hover:before {
	color:var(--color2);
	transition: all 0.3s ease-in;
}

[style*="--aspect-ratio"] > img {
  width: 100%;
}
[style*="--aspect-ratio"] > img {  
  height: auto;
} 
@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }  
  [style*="--aspect-ratio"] > img, [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    /*height: 100%;*/
  }
}  
img.contain-fit{
	object-fit: contain;
	height: 100%;
}

.ttllogo{
	max-height: 80px;
    transition: .5s;
	/*padding: 5px;
	background: #fff;
	border-radius: 5px;
	margin-bottom: -12px;*/
}
.bg-color1, .btn-color1{
    background:var(--color1);
    border-color:var(--color1);
}
.bg-color2, .btn-color2{
    background:var(--color2);
    border-color:var(--color2);
}
.bg-color3, .btn-color3{
    background:var(--color3);
    border-color:var(--color3);
}
.bg-color1-light{
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color1);
}
.bg-color2-light{
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color2);
}
.bg-color1-dark{
	background: linear-gradient(to top,rgba(0,0,0,0.85),rgba(0,0,0,0.85)) var(--color1);
}
.text-color1{
    color:var(--color1);
}
.text-color2{
    color:var(--color2);
}
.text-color3{
    color:var(--color3) !important;
}
.border-color1 {
    border-color: var(--color1) !important;
}

.border-color2 {
    border-color: var(--color2) !important;
}


.wcbx {
  font-size: 1.2rem;
  text-align: justify;
  letter-spacing: .7px;
}
#vehiclesinfo .vehinfolist- {
    box-shadow: 0px 0px 1px #555;
 	border-radius: 20px;
   padding: 20px 10px;
	height: 100%;
}
#vehiclesinfo .vehinfobx .column {
    width: 50%;
	border: 1px solid #ccc;
	border: 1px solid rgba(var(--color1rgb),.3);
	margin: 1px 0;
	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	color: #333;
	padding: 5px;
	align-items: center;
	display: grid;
	/*background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color2);*/
}
#vehiclesinfo .vehinfobx .column:nth-child(odd) {
	/*border-right: 2px solid #ddd;
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color1);*/
}
}
#vehiclesinfo .vehinfolist a {
    color: var(--color1);
	transition: all 0.3s ease-in;
}
#vehiclesinfo .vehinfolist a:hover {
    color: var(--color2);
	transition: all 0.3s ease-in;
}
#vehiclesinfo .vehinfolist .vehi_img img {
	background: linear-gradient(to top,rgba(var(--color2rgb),.65),rgba(var(--color1rgb),.65));
	border-radius: 20px;
}
#vehiclesinfo .vlst .vehinfolist .vehi_img img {
	height:300px;
	width:auto;
	object-fit: contain;
	background: linear-gradient(to top,rgba(var(--color2rgb),.65),rgba(var(--color1rgb),.65));
	border-radius: 20px;
}
.vehrowbx{
	/*border: 2px solid var(--color1);
	border-radius: 10px;*/
	height: 100%;
	overflow: hidden;
	background: rgba(255,255,255,.85);
	box-shadow: 0px 0px 5px #333;
	border-radius: 20px;
	border-top-left-radius: 30%;
	border-top-right-radius: 30%;
	background: linear-gradient(to top,rgba(var(--color2rgb),.65),rgba(var(--color1rgb),.65));
	background: linear-gradient(to top,rgba(var(--color1rgb),.25),rgba(var(--color2rgb),.65));
}
}
.vehrowbx:hover{
	box-shadow: 0px 0px 10px #fff;
}
.vehirowimgbx1 img {
  width: 400px;
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.pgvw .vehirowimgbx1{
	width: 100%;
	height: auto;
	position: relative;
	transform: none;
	left: 0;
	/*background: linear-gradient(to top,rgba(255,255,255,.65),rgba(255,255,255,.85)) var(--color1);*/
}
.pgvw .vehirowimgbx1 img{
	border-radius: 0;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.service-item {
	height: 100%;
}
.service-item img, .pgimg {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1.6;
}
.stickednav{
	padding-top: 0;
	padding-bottom: 0;
}
.btn-color1:hover{
	background: linear-gradient(to top,rgba(255,255,255,.65),rgba(255,255,255,.65)) var(--color1);
	background: linear-gradient(to top,rgba(255,255,255,.35),rgba(255,255,255,.35)) var(--color1);
}
.btn-color2:hover{
	background: linear-gradient(to top,rgba(255,255,255,.65),rgba(255,255,255,.65)) var(--color2);
}
.form-control:focus{
	box-shadow:none;
	border-color: rgba(var(--color1rgb),.7);
}
.wchltxt {
	/*width: min-intrinsic;
	width: -webkit-min-content;
	width: -moz-min-content;
	width: min-content;
	display: table-caption;
	display: -ms-grid;
	-ms-grid-columns: min-content;*/
	font-size: 1.6rem;
}
.img-sm{
	width: 50px;
}
.floatbtns a {
  position:fixed;
  bottom:56px;
  left:10px;
  padding:8px;
  overflow:hidden;
  transition:all .3s ease-in;
  left:100%;
  margin:0 auto;
  z-index:99;
  width:100%;
  text-align:center;
  color:#fff
}
.floatbtns a:hover {
  color:#fff
}
.floatbtns .btn {
  border-radius:5px;
  width:42px;
  height:42px;
  max-width:200px;
  margin-right:5px;
  padding:.3rem .5rem;
  padding:.1rem .2rem;
  border: 1px solid var(--color1);
/*	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;
}
.floatbtns .btn .h5 {
  font-size:1.6rem;
  line-height: 1.6;
  color:var(--color1);
  color:#fff;
}
.floatbtns .wafloat {
  left:5px;
  background:#25d366;
}
.floatbtns .wafloat.moveup {
  margin-bottom: 40px;
  /*bottom:56px;*/
}
.floatbtns .wafloat i {
  font-size:1.2em;
  line-height:1em
}
.floatbtns .bnfloat {
  background:linear-gradient(to top,rgba(10,10,10,.15),rgba(10,10,10,.15)) var(--color2);
  background:var(--color1);
  padding:.4rem .4rem;
  padding: .5rem .5rem;
  left:5px;
}
.floatbtns .bnfloat .h5 {
  line-height:1.0em;
  font-size:1.7rem;
  color:var(--color3);
}
.floatbtns .btntop {
  bottom: 70px;
}
.floatbtns .btnbottom {
  bottom: 20px;
}
.footer .address span {
  display: inline-grid;
}
.swiper-slide img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  min-height:350px;
}
.swiper-slide{
	position: relative;
}
.banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  width:100%;
	z-index: 1;
	max-width: 692px;
}
.banner-caption .h2{
	font-size: 3.2rem;
	color: var(--color3);
	color: #ffffff;
	letter-spacing: 3px;
	text-align: center;
	font-weight: 900;
	text-shadow: 1px 1px 1px var(--color1), -1px -1px 1px var(--color2);
	text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff;
	text-shadow: 1px 1px 1px #000, -1px -1px 1px #fff;
}
.swiper-pagination-bullet {
	background: #aaa;
	width: 22px;
	/*height: 4px;*/
	width: 30px;
	max-width: 25%;
	height: 8px;
	width: 20px;
	height: 12px;
	box-shadow: 0px 2px 1px #333;
	opacity:.5;
	border-radius: 30%;
	transition: opacity 1s ease;
	box-sizing: content-box;
	border: 3px solid transparent;
	background-clip: padding-box;
	background-color: #fff;
}
.swiper-pagination-bullet-active{
  background: var(--color1);
  background: #ffffff;
	opacity:1;
	border: 3px solid var(--color1);
}
.swiper-pagination-bullet.swiper-pagination-bullet.swiper-pagination-bullet {
  margin: 1px;
}
.swiper-button-next, .swiper-button-prev{
	opacity:.3;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
	color: var(--color1);
	opacity:1;
}
.swiper-slide:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0.4));
	transition: all 0.8s;
  --circle_w: 2px;
  --circle_color: rgba(0, 0, 0, .7);
  --bg_color: transparent;
  --m_bet_circle: 2px;
  --A: calc(var(--circle_w) + var(--m_bet_circle));
  --B: calc(var(--circle_w) / 2);
  background: 0 0/var(--A) var(--A) radial-gradient(circle at center, var(--circle_color) var(--B), var(--bg_color) var(--B)), center/cover;
}
.callbtn {
  align-items: center;
  background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  background-image: linear-gradient(180deg,rgba(var(--color1rgb), 0.7), rgba(var(--color2rgb), 0.9) 50%,rgba(var(--color1rgb), 0.7));
  background-image: linear-gradient(0deg,var(--color3), var(--color1) 50%,var(--color3));
  background-image: linear-gradient(144deg,rgba(var(--color1rgb), 0.7), rgba(var(--color2rgb), 0.9) 50%,rgba(var(--color1rgb), 0.7));
  border: 0;
  border-radius: 3px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-shadow: rgba(var(--color3rgb), 0.4) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 150px;
  padding: 14px 20px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  align-self: flex-end;
  transform: skewX(0deg);
  box-shadow: 4px 4px 0 var(--color2);
  box-shadow: -4px -4px 0 #ccc;
}
.callbtn:active,
.callbtn:hover {
  outline: 0;
}
.callbtn:hover, .footer .share-link a.callbtn:hover {
  background-image: linear-gradient(180deg,rgba(var(--color1rgb), 0.9), rgba(var(--color1rgb), 0.7) 50%,rgba(var(--color1rgb), 0.9));
  color: var(--color3);
  box-shadow: -6px -6px 0 #aaa;
  box-shadow: 0px 0px 10px var(--color3);
}
.callbtn.unskew {
  transform: none;
}
.rounded-10px {
  border-radius: 10px !important;
  overflow: hidden;
}
.round-top-0{
	border-top-left-radius:0;
	border-top-right-radius:0;
}
.main-slider .swiper-button-next, .main-slider .swiper-button-prev {
  color: var(--color2);
}
.float-right{
	float:right;
}
.float-left{
	float:left;
}
.btn-link {
  font-weight: 400;
  color:var(--color1);
  text-decoration: none;
}
.btn-link:hover {
  color: #c29700;
  color:var(--color3);
}
.btn-outline-color1{
	color:var(--color1);
	border-color:var(--color1);
}
.btn-outline-color1:hover{
	background-color:var(--color1);
	border-color:var(--color1);
	color: #FFFFFF;
}
.letterspacing2{
	letter-spacing: 2px;
}
.text-color2-hover:hover{
	color:var(--color2)!important;
}
.footertxtcolor{
  color:#b4a684;
}
.footer .address span {
  display: inline-grid;
}
.footer .btn.btn-link {
	display: inline-flex;
    display: block;
    /*margin-bottom: 5px;*/
    padding: 0;
    text-align: left;
    font-weight: normal;
    text-transform: capitalize;
	text-decoration:none;
	/*font-size:1.3rem;*/
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
	color:var(--color2);
}
.dropdown-item {
	white-space: normal;
	min-width:280px;
	font-size:1.2rem;
	/*padding: .5rem 1rem;*/
	border-bottom: 1px dotted var(--color1);
}
.dropdown-item:hover, .dropdown-item.active {
  color: var(--color1);
  background: transparent;
}
#features- {
	background: #f2f5f9;
}
.rounded-50px{
	border-radius: 30px;
	overflow: hidden;
}
.taglstimg {
  width: 100%;
  height: auto;
  aspect-ratio: 1.78;
  object-fit: fill;
  background: var(--color4);
}
.abimg{
	border-radius: 30px;
	outline: 4px solid var(--color1);
	outline-offset: -2px;
}
.package-item, .service-item {
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color1);
	height: 100%;
}
.package-item .package-content{
}
.categories .categories-item {
    position: relative;
    border: 1px solid var(--color1);
    border-radius: 10px;
	height: 100%;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--color2);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
	height: 100%;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(var(--color1rgb), .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
    background: var(--color4);
}
.categories .categories-item-inner .categories-img img{
	width: 100%;
	height: 200px;
	object-fit: contain;
}
.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
    background: var(--color4);
	height: 100%;
}

.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(--color1);
    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(--color2);
    color: var(--bs-white);
}
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	justify-content: space-between;
	justify-content: flex-start;
    text-align: center;
    background: var(--bs-light);
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color1);
	height: 100%;
}
.travel .item-boxes {
	border: 1px solid var(--color3);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 5px #ccc;
	display: flex;
}
.travel .item-boxes.imgleft {
	flex-direction: row;
}
.travel .item-boxes.imgright {
	flex-direction: row-reverse;
}
.travel .pgpkgtxt {
	font-size:1.2rem;
}
.travel .item-boxes.imgleft img, .travel .item-boxes.imgright img {
	height:100%;
}
*{
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
	transition: 0.5s;
}
.pgpkgtxt.customized a{
	color: #787878;
}





@media (max-width: 767px){
.ttllogo {
  max-height: 70px;
}
.swiper.main-slider{
  min-height: 310px;
}
.banner-caption .h2 {
font-size: 1.8rem;
letter-spacing: 2px;
}
.navbar-toggler:focus{
	box-shadow: 0 0 0 1px;
}
.swiper-slide::before {
	--circle_color: rgba(0, 0, 0, .4);
}
}



