@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sarala:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary:#ef4035;
  --secondary:#be0b31;
  --white:#fff;
  --black:#000;
  --gradient: linear-gradient(90deg, var(--primary)12%, var(--secondary) 100%);
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary)12%, var(--secondary) 100%); 
  border-radius: 10px;
}

body {
    margin: 0;
    padding: 0 !important;
	font-family: "Barlow Condensed", sans-serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    background: none;
    border: solid 1px #ddd;
    color: #333;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 10px;
    padding: 13px 20px;
    width: 100%;
    outline: 0;
    border-radius: 4px;
    font-family: "Roboto", sans-serif;
    background: var(--white);
}
input[type="submit"] {
    background: var(--primary);
    text-transform: capitalize;
    border: none;
    padding: 13px 25px;
    font-size: 15px;
    border: 0;
    letter-spacing: 0.5px;
    cursor: pointer;
    outline: none;
    font-weight: 400;
    border-radius: 4px;
    font-family: "Roboto", sans-serif;
    color: var(--white);
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
  height: 100px;
  margin-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 15px 0;
    color: var(--black);
    font-weight: 500;
    text-transform: inherit;
    line-height: normal;
	font-family: "Saira", sans-serif;
}
h1 {
  font-size:32px
}
h2 {
  font-size:24px
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family:"Saira", sans-serif;
    color: #1a1a1ac7;
    font-size: 15.5px;
    line-height: 26px;
    font-weight: 400;
}
ul, li, a{
  list-style-type: none;
font-family: "Roboto", sans-serif;
  color: #444;
  line-height: 25px;
  font-size: 15px;
font-weight: 400;	
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading, .leftheading {
    margin-bottom: 30px !important;
    font-size: 35px;
    position: relative;
    font-weight: 600;
    width: fit-content;
}
.heading {
    text-align: center;
    display: block;
    margin: auto;
    padding-left: 42px;
    font-family: "Saira", sans-serif;
    position: relative;
}
.subheading {
    margin: 0 auto 8px;
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary);
    font-size: 16px;
    letter-spacing: 1px;
    font-family: "Saira", sans-serif;
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}

/* TOP BAR CSS */
.topbar {
    padding: 9px 0;
    background: var(--primary);
    border-bottom: 1px solid #ffffff2b;
}
.topbar .container {
    max-width: 1263px;
}
.top-contact li, .top-contact li a {
    color: var(--white);
    font-weight: 500;
    letter-spacing: .5px;
    font-size: 14px;
}
.top-contact {
    column-gap: 20px;
}
.top-contact i {
    color: var(--white);
    font-size: 15px;
    height: 30px;
    width: 30px;
    background: #00000014;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0px 8px;
}
.topbar-rgt a.topphn {
    background: var(--primary);
    color: var(
    --white);
    padding: 5px 15px 8px;
    border-bottom: solid 2px var(--white);
    border-radius: 0 0 30px;
}
.topbar-rgt a.topphn i {
    border: solid 1px #ddd;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 6px;
}
.smoicons{
	column-gap:8px;
}
.smoicons li a {
    border-radius: 3px;
    background: var(--white);
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 16px;
    border: solid 1px #ddd;
}
.top-contact p {
    padding: 0 15px;
}
.top-contact p:first-child {
    padding-left: 0;
    border-right: 1px solid #ffffff26;
}
.top-contact p a, .top-contact p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}
.topbar-rgt {
    column-gap: 45px;
}
.topbar a.arrow-btn {
    display: inline-block;
    color: var(--white);
    transition-delay: 0.1s;
}
.topbar a.arrow-btn i {
    padding-left: 5px;
}

/* Header */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}
header .row {align-items: center;}
.logo img {
    width: 100%;
}
header .col-sm-8 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    z-index: 1;
    text-align: center;
    position: relative;
}
/* .logo:before {
    position: absolute;
    left: 0;
    top: -10px;
    height: 100px;
    width: 230px;
    background: #f1f1f1;
    content: '';
    transform: translateY(0px) skew(-30deg);
    border-radius: 10px;
    z-index: -1;
} */
.menubar {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 50px;
}
.headercnt {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.headercnt h4 {
    font-size: 17px;
    margin: 0;
}
.headercnt h4 span {
    display: block;
}
.headercnt i {
    font-size: 35px;
    color: var(--primary);
}

/* Menubar */

.mainmenu .btn-primary {margin-left: 10px;}

.menubar p{
	margin:0;
}
.menubar form .wpcf7-form-control{
	border:unset;
	padding:0;
}    
.hdrcnt a {
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    background: var(--primary);
    padding: 8px 20px;
    color: var(
    --white);
    border-radius: 6px;
}
.hdrcnt i {
padding-left:8px;
}
.hdrcnt {
    column-gap: 13px;
}




/* Main Slider */

.mainslider .carousel-item {
	position:relative;
	z-index:0;
	overflow:hidden;
}
.mainslider .carousel-item:after {
	position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0C0C0C;
    opacity: 0.3;
    z-index: 1;
}
.mainslider figure{
	margin:0;
	position: relative;
}
.mainslider figure img {
    width: 100%;
    object-fit: cover;
    height: 650px;
	filter:brightness(0.5);
}
.mainslider .carousel-caption {
    top: 60%;
    left: 100px;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
    position: absolute;
    bottom: inherit;
    z-index: 2;
}
.mainslider .carousel-content {
    width: 45%;
}
.mainslider .subheading {
    letter-spacing: 4px;
    line-height: 25px;
    border-radius: 0;
    font-weight: 400;
    color: var(--white);
    font-size: 20px;
    padding: 0;
    text-transform: uppercase;
}
.mainslider .carousel-caption h2, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h2 {
    font-size: 50px;
    line-height: 65px;
    font-weight: 600;
    letter-spacing: .5px;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    text-transform: capitalize;
    margin-bottom: 0;
}
.mainslider .carousel-caption h2 span{
    display: block;
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.carousel-content p span {
    color: var(--white);
    font-weight: bold;
}
.mainslider .carousel-content p {
    margin: 15px 0 15px;
    line-height: 30px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    color: #fff;
    font-size: 19px !important;
    letter-spacing: .5px;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
.carousel-content ul {
    column-gap: 15px;
}
/* dolphin images  */
.dolphinimgs ul {
    display: flex;
}
.dolphinimgs img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}


/* About Us */
.about-content p {
    margin-bottom: 25px;
}

.about {
    padding: 60px 0;
}
.about-content .leftheading {
    margin-bottom: 11px !important;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.aboutimg img {
    width: 100%;
    border-radius: 8px;
}
.aboutus .about img {
    width: 100%;
    height: 100%;
}
.aboutlist li {
    column-gap: 15px;
    margin-bottom: 13px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #c343381c;
    width: 49%;
}
.aboutlist-info h4 {
    margin: 0;
    font-size: 18px;
}
.aboutlist li figure {
    height: 36px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed1b2412;
    border-radius: 8px;
}
.aboutlist li img {
    width: 16px;
}
.aboutlist-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}
.aboutlist .btn-primary{
	margin:0;
}

.aboutlist {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}
.features {
    background: #f5f7fa;
    padding: 55px 0 60px;
}
.features-item {
    border-radius: 10px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 0 40px 5px #0000000d;
    height: 100%;
}
.features-item figure {
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed1b2412;
    border-radius: 50px;
    transition: .5s;
}
.features-item:hover figure img {
    transform: rotate(25deg);
}
.features img {
    width: 60px;
	transition: all .5s ease-in-out;
}
.features-item h3 {
    font-size: 24px;
    margin: 10px 0;
	font-weight:600;
}
.features h4 {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.about-content h2 {
    font-size: 40px;
}
.about-content h2:first-letter {
    color: var(--primary);
}
.ourstory {
    padding-bottom: 60px;
}
.aboutstories {
    background: #c343380d;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    border-radius: 6px;
    border: 1px solid #c3433814;
}
.aboutstories figure {
    height: 110px;
    width: 110px;
    background: linear-gradient(49deg, black, var(--primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.aboutstories figure img {
    width: 55px;
    filter: brightness(100);
}
.storyinfo h3 {
    font-size: 24px;
}
.ourstory .heading {
    margin-bottom: 12px !important;
}
.ourstory .row {
    row-gap: 20px;
    justify-content: center;
}
.brandhistory {
    background: #f7f7f7;
    padding: 45px 0;
}
.brandhistory .row {
    row-gap: 20px;
}
.aboutbrand {
    background: #fff;
    height: 100%;
    padding: 25px;
    border: 1px solid #c3433826;
    border-radius: 8px;
}
.whychoose {
    padding-top: 60px;
}
.whychoose ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    column-gap: 15px;
}
.whychoose ul li {
    width: 49%;
    margin-bottom: 15px;
    background: #c343381a;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 3px solid var(--primary);
}
.msnvsn {
    background: #f9f9f9;
    padding: 50px 0;
    margin-bottom: 60px;
}
.msnvsn-item {
    border: solid 1px #ddd;
    padding: 15px;
    height: 100%;
    text-align: center;
    transition: all ease-in-out .5s;
    border-radius: 0 0 15px 15px;
    background: #be0b310f;
}
.msnvsn-item:hover {
	border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 3px 3px 13px #eee;
}
.msnvsn-item figure {
    height: 90px;
    width: 90px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}
.msnvsn-item h3 {
    margin: 0 0 18px;
    background: var(--secondary);
    padding: 5px 5px 10px;
    color: var(--white);
    border-radius: 0 0 6px 6px;
}
.msnvsn-item:hover h3{
	background:var(--secondary);
}
.msnvsn-item:hover h3 {
    background: var(--secondary);
}

/* manufacture section  */
.manufacture {
    text-align: center;
    background: #be0b310a;
    margin-top: 50px;
    padding: 30px 0;
}
.aboutmanufacture p {
    width: 85%;
    margin: 0 auto;
    line-height: 30px;
}
.aboutmanufacture .heading {
    margin-bottom: 20px !important;
}
.aboutmanufacture figure {
    height: 110px;
    width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #be0b3117;
    outline: 1px dotted var(--primary);
    outline-offset: 5px;
    margin-bottom: 15px;
}

  /* Products */

.product
{  
	padding: 40px 0; 
}
.product .heading {
    font-family: Apple Chancery, cursive;
}
.product-aqueous img {
	border-radius: 10px;
    height: 100%;
    transition: .5s;
}

/* feasibility section  */
.feasibility {
    padding-top: 60px;
}
.aboutfeasibility {
    border-radius: 10px;
    height: 100%;
    transition: .5s;
    background: #ef403514;
    border-bottom: 3px solid var(--primary);
}
.feasibility ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 20px;
}
.feasibility li {
    width: 32%;
}
.aboutfeasibility ul li {
    width: 100%;
    position: relative;
    padding-left: 20px;
}
.aboutfeasibility h3 {
    padding: 20px 15px 10px;
    font-size: 21px;
}
.feasibility .heading {
    font-style: italic;
    font-size: 26px;
    padding: 0;
    margin-bottom: 60px !important;
}
.feasibility .heading:after {
    position: absolute;
    content: '';
    bottom: -21px;
    left: 50%;
    height: 3px;
    width: 100px;
    background: var(--primary);
    transform: translateX(-50%);
}
.feasibility .heading:before {
    position: absolute;
    content: '';
    bottom: -13px;
    left: 50%;
    height: 3px;
    width: 75px;
    background: var(--primary);
    transform: translateX(-50%);
}
.aboutfeasibility figure{
    overflow:hidden;
    border-radius:6px;
}
.aboutfeasibility ul li:after {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    height: 2px;
    width: 10px;
    background: var(--primary);
}

/* product details page  */
.aboutproducts {
    text-align: center;
    padding: 35px 20px 20px 20px;
    background: #ef403521;
    height: 100%;
    border-radius: 8px;
}
.aboutproducts .btn {
    background: unset;
    color: var(--primary);
    margin-top: 5px;
    font-weight: 500;
    border-bottom: 1px solid var(--primary);
    padding: 0 0 8px 0 !important;
}
.modal-body ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    padding-left: 20px;
}
.modal-body ul li:after {
    position: absolute;
    content: '';
    top: 6px;
    left: 0;
    height: 8px;
    width: 8px;
    background: var(--primary);
    border-radius: 50%;
    outline: 1px solid #ef403580;
    outline-offset: 3px;
}
.products .row {
    justify-content: center;
    row-gap: 20px;
}




/* Services */

.services {
    padding: 50px 0 60px;
    background: #f6f7fb;
}
.services-item {
    background: var(--white);
    padding: 30px 20px;
    box-shadow: 0 0 40px 5px #0000000d;
    border-radius: 20px 0 20px 0;
    transition: .4s;
    height: 100%;
    border: 1px solid #c3433845;
}
.services .row {
    row-gap: 15px;
    justify-content:center;
}
.servicescptn h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 12px 0 10px;
}
.services-item figure {
    background: #c3433821;
    height: 80px;
    width: 80px;
    border-radius: 50px;
    margin: 0 auto;
    outline: 2px solid #fff;
    box-shadow: 0 0 10px #adadad;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-item figure img{
 width:60px !important;
}
.read-btn {
    color: var(--primary);
    font-size: 17px;
    font-weight: 400;
}


/* SERVICES DETAILS */

.services-description h2 {
    font-size: 35px;
    margin-bottom: 10px;
}
.servicesinfo img {
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}
.servicesinfo .row {
    background: linear-gradient(90deg, #0027680a, #b30d3405);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px dotted #be0b3182;
}
.servicesinfo .row:nth-child(even) {
    flex-direction: row-reverse;
}
.servicesinfo .row:nth-child(even) .services-content {
    padding: 0 16px 0 0;
}
.services-content {
    padding-left: 15px;
}
.services-content h3 {
    font-size: 30px;
}
.services-content p {
    margin: 0;
}

/* MOTORCYCLE SECTION CSS */

.motorcycle {
    background: url(../images/bikebg.jpg);
    padding: 30px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.motorcycle-content h2 {
    color: var(--white);
    font-size: 40px;
}
.motorcycle-content p {
    color: var(--white);
    font-weight: 300;
    margin: 0;
}


/* FEATURED PORTFOLIO SECTION CSS */
.gallerylightboxlist {
    height: 350px;
    width: 100%;
    background-position: center;
    background-size: cover;
}
.ourgallery {
    padding: 40px 0;
    background: #c343380f;
    margin-top: 60px;
}
.ourgallery .heading {
    margin-bottom: 10px !important;
}
.ourgallery .subtitle {
    text-align: center;
    padding-left: 42px;
    margin-bottom: 45px !important;
    font-size: 16px;
}
/* TOUR SECTION CSS */

.tour {
    background: #f6f7fb;
    padding: 40px 0 60px;
}
.tour .row {
    row-gap: 25px;
}
.tour-item {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 14px #f3f3f3;
    height: 100%;
}
.tour-sidebar {
    position: sticky;
    top: 0;
}
.tour-item figure:after, .tour-item figure:before {
    background: #ffffff80 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .7s ease 0s;
    right: 0;
    top: 0;
    z-index: 1;
}
.tour-item figure:hover:after {
    bottom: 50%;
    opacity: 1;
    top: 50%;
}
.tour-item figure:hover:before {
    left: 50%;
    opacity: 1;
    right: 50%;
}
.tour-item figure{
	overflow:hidden;
	position:relative;
}
.tour-item img {
    height: 270px;
    object-fit: cover;
	transition: all ease-in-out .5s;
}
.tour-item:hover figure img {
    transform: scale(1.1);
}
.tour-item figure span {
    top: 10px;
    left: 10px;
    background: #00000061;
    color: var(--white);
    font-family: "Roboto", sans-serif;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 6px;
}
.tour-info {
    padding: 20px;
}
.tour-item h3 {
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}
.tour-info .btn-primary {
    padding: 8px 15px !important;
    font-size: 15px;
}
.tour-info p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tours-info tr td {
    border: 1px solid #ccc;
    padding: 8px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
}
.tours-info table {
    width: 100%;
}
.sidebar-item li {
    padding-left: 15px;
    line-height: 30px;
    position: relative;
}
.sidebar-item li:before {
    position: absolute;
    content: '';
    top: 11px;
    left: 0;
    height: 8px;
    width: 8px;
    background: var(--primary);
    border-radius: 50px;
    outline: 2px solid #ed1b244d;
}


/* Why Choose Us */

.whychooseus {
    padding: 60px 0;
    background:linear-gradient(#000000, #000000c4), url(../images/whychoosebg.webp) center / cover;
}
.whychooseus .row {
    row-gap: 25px;
    justify-content: center;
}
.whychooseus-item figure {
    background: #ffffff26;
    height: 95px;
    width: 95px;
    margin: 0 auto;
    border-radius: 50px;
}
.whychooseus-item img {
    width: 64px;
}
.whychooseus-item h3 {
    margin: 20px 0 0;
    font-size: 40px;
    color: var(--white);
    line-height: 28px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.whychooseus-item h3 span {
    display: block;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .5px;
    margin-top: 15px;
    font-family: "Barlow Condensed", sans-serif;
}
.whychooseus-item p{
    height: 100px;
    overflow-y: scroll;
    padding-right: 10px;	
}
.whychooseus-item p::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 4px rgb(0 0 0 / 30%);
 border-radius: 10px;
 background-color: var(--white);
}
 .whychooseus-item p::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 .whychooseus-item p::-webkit-scrollbar-thumb {
 border-radius: 10px;
 -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
 background: var(--primary);
}




/* HOME BLOG SECTION CSS */

.homeblog {
    padding: 50px 0 60px;
}
.homeblog .row, .blogpost .row {
    row-gap: 25px;
}
.homebloglist {
    border-radius: 10px;
    transition: .5s;
    box-shadow: 0 0 40px 5px #0000000d;
    padding: 8px;
    height: 100%;
}
.homebloglist:hover {
    transform: translateY(-2px);
    background: var(--white);
}
.homebloglist:hover img {
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(1);
}
.homeblogbox h3 {
    line-height: 25px;
    font-weight: 600;
    margin: 0 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.homeblogbox span {
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-bottom: 12px;
    display: block;
}
.homebloglist figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.homebloglist img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}
.homeblogbox {
    padding: 20px;
    position: relative;
}
.homebloglist p {
    margin: 10px 0 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.homebloglist ul {
    column-gap: 20px;
    border-bottom: solid 1px #dddddd8c;
    padding: 0 0 12px;
    margin-bottom: 15px;
}
.homebloglist ul li, .homebloglist ul li a {
    font-size: 15px;
}
.homebloglist ul li i {
    margin-right: 5px;
    color: var(--primary);
}
.homebloglist .btn-primary {
    padding: 9px 15px !important;
    font-weight: 300;
}
.homeblogbox .readmore {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--primary);
    margin: 15px 0 0;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}
.blogpost .homeblog {
    background: none;
    padding: 0;
}

.homebloglist figure:before, .whychoose-thumb:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
    transition: all .3s ease;
	z-index:-3;
}
.homebloglist:hover figure:before, .whychoose-thumb:hover:before {
    animation: shine 1s;
	z-index: 1;

}

@keyframes shine{
	100% {
    left: 125%;
}
}
.homeblog .blogcategory {
    padding: 8px 20px 6px;
    background: #ffffffc9;
    border-radius: 30px;
    transition: all .4s;
    color: var(--primary);
    content: "";
    width: fit-content;
    height: fit-content;
    top: -20px;
    left: 10px;
    opacity: 0;
    font-weight: 600;
}
.homebloglist:hover .blogcategory{
	top:10px;
	opacity:1;
}
.blogpage .row {
    row-gap: 25px;
}

/* Car Repair */

.carrepair {
    padding: 55px 0;
}
.carrepair-topcnt {
    background: var(--primary);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 18px;
}
.carrepair-topcnt p:last-child {
    margin-bottom: 0;
}
.carrepair-topcnt h2, .carrepair-topcnt p {
    color: var(--white);
}
.carrepair-form {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
}
/* downloadble section  */
li.nav-item button {
    background: var(--white);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    margin-right: 10px;
    padding: 20px 30px;
    font-size: 16px;
    color: var(--primary);
    border-radius: 10px 0 10px 0 !important;
    border: 1px solid #c3433845 !important;
}

/* Footer */

footer {
    background: #131036d4;
    padding-top: 50px;
}
footer .border-start {
    border-left: 1px solid #dee2e640!important;
}
a.footer-logo{
	width:100%;
	background: var(--white);
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}
.footerlogo img {
    width: 170px;
    margin-bottom: 20px;
}
footer .col-sm-4 {
    padding: 50px 30px;
}
footer .col-sm-4:nth-child(2) {border-right: solid 1px #6a6a6a2e;border-left: solid 1px #6a6a6a2e;}
footer h3 {
    color: var(--white);
    position: relative;
    width: fit-content;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: .5px;
}
footer h3:after, footer h3:before {
    background: var(--primary);
    position: absolute;
    content: "";
    height: 2px;
    width: 15px;
    bottom: 0;
    left: 0;
}
footer h3:before {
    width: 35px;
    left: 20px;
}
footer a, footer ul li {
    color: #efefef;
    transition: 0.5s ease-in-out;
}
footer a:hover {
    color: var(--secondary);
}
footer i{
    font-size: 13px;
    margin-right: 6px;
}
footer p {
    margin-bottom: 0;
    color: #efefef;
    font-size: 15px;
}
footer .supporter {
    background: var(--white);
    padding: 15px;
    border-radius: 6px;
}
.ftricons {
    margin-top: 20px;
    column-gap: 5px;
}
footer .ftr-txt {
    width: 91%;
}
.ftricons li i {
    color: #fff;
    font-size: 14px;
    background: #ffffff00;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 2px solid #ed1b2433;
}
.ftr-link li {
    padding-left: 15px;
    position: relative;
    line-height: 35px;
}
footer ul.hours li{
 line-height: 26px;	
}
.ftr-link li:before {
    position: absolute;
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
    left: 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}
.ftr-contact {
    display: flex;
    column-gap: 20px;
    border-bottom: 1px solid #ffffff1f;
    padding-bottom: 25px;
}
.ftr-contact li {
    width: 33.333%;
    border: 1px solid #ffffff21;
    padding: 15px;
    background: #0000003d;
    text-align: center;
    border-radius: 6px;
}
.ftr-contact li i {
    color: var(--white);
    font-size: 16px;
    background: #ffffff1f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
}
.ftr-contact li h4 {
    font-size: 18px;
    color: var(--white);
    margin: 18px 0 5px;
    font-weight: 600;
}

.ftrcontact li:before {
	display:none;
}
.ftrcontact li {
    padding: 0;
    align-items: center;
    column-gap: 10px;
    padding: 0;
    margin-bottom: 20px;
    line-height: 30px;
    position: relative;
}
.ftrcontact li a {
    font-size: 15px;
}
.ftrcontact li a span {
    font-size: 15px;
}
.ftrcontact li i {
    font-size: 15px;
    margin: 0;
    color: var(--primary);
    height: 35px;
    width: 35px;
    background: #dddddd0d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: absolute;
}
ul.ftrcontact p {
    padding-left: 44px;
    margin: 0;
}
.ftr-newsletter input[type="submit"] {
    width: 100%;
    margin-top: 5px;
}
.copyright {
    padding: 12px 0;
	margin-top: 30px; 
    border-top: 1px solid #ffffff12;
}
.copyright ul{
	column-gap:15px;
}
.copyright p {
    color: #efefef;
    letter-spacing: .5px;
}
.copyright p a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
	transition:0.5s ease-in-out;
}
.copyright p a:hover{
	color:var(--primary);
}
.paymentopt {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
}
.paymentopt img {
    width: 320px;
}

#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 10px;
    border-radius: 8px;
    z-index: 99999999;
    padding: 0;
    border: 1px solid var(--white);
    background: var(
    --primary);
    width: 44px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    text-decoration: none;
    padding-top: 11px;
    box-shadow: 3px 11px 12px #00000045;
    color: var(--white);
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}

@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
    margin-top: 10px;
}

.secondary-container {
	padding: 180px 0 60px;
}
.breadcrumb {
    background: linear-gradient(var(--primary), #222 50%);
    padding: 160px 0 25px;
    text-align: center;
    border-top: solid 1px #dddddd3b;
    display:none;
}
.breadcrumb h1 {
    display: none;
}
.breadcrumb h1, .breadcrumb p {
    color: var(--white);
}
.breadcrumb p {
    margin: 0;
}
.breadcrumb a {
    color: var(--white);
    margin-right: 25px;
    position: relative;
}
.breadcrumb a:after {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 12px;
    top: -1px;
    right: -21px;
    color: var(--white);
}


/* Modal Multi Step Form */

.modalformbox {
    width: 60%;
    margin: 0 auto;
}
.modalformbox h3 {
    font-size: 28px;
    font-weight: 500;
}
.modalformbox .wpcf7-list-item {
    width: 100%;
    background: #e1e1e1 !important;
    border: solid 1px #333;
    border-radius: 6px;
    padding: 6px 15px;
    margin: 10px 0;
    position: relative;
}
.modalformbox input[type="radio"] {
    position: absolute;
    right: 0;
    text-align: right;
    cursor: pointer;
}
.modalformbox input[type="radio"] {
    position: absolute;
    right: 8px;
    text-align: right;
    cursor: pointer;
    height: 100%;
    top: -2px;
    width: 22px;
}
.modalformbox input[type="radio"]:checked {
    accent-color: #222;
}
.modalformbox .cf7mls-btns button {
    margin: 0 !important;
    border-radius: 6px;
    font-size: 16px;
    background: #111;
    letter-spacing: 1px;
}
.modalformbox p>label {
    font-size: 20px;
}
.modalformbox input[type="text"], .modalformbox input[type="email"], .modalformbox input[type="tel"] {
    border: none;
    border-bottom: solid 1px #777;
    border-radius: 0;
    font-size: 28px;
    font-weight: normal;
    padding: 15px 0;
    color: #777;
}
.modalformbox .cf7mls_back {
    background: #eee !important;
}
.modalformbox .offcanvas-header {
    justify-content: flex-end;
}
.wpcf7-not-valid-tip {
    display: none !important;
}
.wpcf7-not-valid::placeholder {
    color: red;
}

/* CONTACT US PAGE CSS */
.secondary-container.contactus img {
    width: 97%;
    height: 460px !important;
    border: 1px solid #c343384f;
    border-radius: 8px;
    object-fit: contain;
}
.contactus form {
    padding: 25px 25px 15px;
    border-radius: 10px;
    border: 1px dashed #ed1b2463;
    margin-top: 55px;
}
.contactus_details {
    padding: 28px;
    margin-bottom: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    box-shadow: 0 0 14px #ededed;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}
.contactus_details p {
    margin: 0;
}
.contactus_details i.fas {
    background: var(--primary);
    color: transparent;
    height: 70px;
    width: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    -webkit-text-stroke: 1px var(--white);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.contactus_details h3 {
    font-size: 21px;
    font-weight: 600;
}
.contactus_details p a {
    font-size: 16px;
    color: #5c5c5c;
    font-weight: 400;
}
.contactus_details:last-child {
    margin: 0;
}
.contactus form input[type="submit"] {
    width: 100%;
    padding: 15px 20px 9px;
    border-radius: 10px;
}
.contactus form span.wpcf7-spinner {
    display: none;
}
.google-map {
    padding: 0 10px;
    margin-top: 22px;
}
.google-map iframe {
    width: 100%;
    border-radius: 10px;
}



/* Services Details */ 

.servicesdtls-sidebar {
    position: sticky;
    top: 0;
    background: var(--primary);
    padding: 15px;
    border-radius: 6px;
}
.servicesdtls-item {
    box-shadow: 3px 3px 12px #0000001a;
    padding: 15px;
    border: 2px dotted #2bb3ff;
    border-radius: 6px;
    margin-bottom: 15px;
    background: var(--white);
}
.servicesdtls-item:last-child {
    margin-bottom: 0;
}
.servicesdtls-sidebar h3 {
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.servicesdtls-sidebar h3:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2.8px;
    background: #d1d1d1;
    border-radius: 13px;
}
.servicesdtls-content {
    box-shadow: 3px 3px 13px #ddd;
    border-radius: 6px;
    padding: 15px;
}
.servicesdtls-content img {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    object-fit: cover;
}
.servicesdtls-content h2 {
    color: var(--primary);
    line-height: 29px;
    background: var(--white);
    position: relative;
    width: fit-content;
    margin: -33px 0 12px;
    padding: 2px 25px;
    border-radius: 6px 6px 0 0;
    border-left: solid;
    border-right: solid;
}
.servicesdtls-item ul li.current_page_item a {
    color: var(--primary);
}
.servicesdtls-item ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 45px;
}
.servicesdtls-item ul li:before {
    content: '\f0e7';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    color: var(--primary);
    left: 0;
    top: 5px;
    font-weight: 600;
    font-size: 16px;
    border: solid 1px var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.servicesdtls-content h5 strong {
    color: var(--primary);
}

/* Policy */

.policy h3 {
    font-size: 18px;
    margin: 15px 0 10px;
}
.policy ul li {
    margin: 8px 0;
    list-style-type: disc;
    list-style-position: inside;
}
.policy h4 {
    margin: 20px 0 10px;
}
span.rmp-menu-title-link span {
    display: none;
}


/* TOUR DETAILS */

/* ROOM DETAILS SECTION CSS */

.toursliders img {
    height: 450px !important;
    object-fit: cover;
    border-radius: 6px;
}
.tourslider-nav li img {
    height: 110px !important;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
}
.room-sidebar iframe {
    width: 100%;
    border-radius: 6px;
}
.sidebar-form {
    box-shadow: 0 0 14px #f1f1f1;
    padding: 20px 20px 15px;
    border: 1px solid #1354081f;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}
.sidebar-form input[type="submit"] {
    width: 100%;
}
.room-features {
    flex-wrap: wrap;
}
.room-features {
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
}
.room-features li {
    background: var(--white);
    padding: 3px 10px;
    column-gap: 8px;
    border-radius: 6px;
    border: solid 1px #ddd;
}
.room-features li figure {
    background: var(--white);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
}
.highlights {
    background: #f3f6f2;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}
.highlights h3 {
    font-size: 20px;
}
.highlights li {
    line-height: 30px;
}
.tour-sidebar h3 {
    border-left: solid 3px #444;
    padding-left: 8px;
}
.tours-info h3 {
    position: relative;
    padding-left: 20px;
}
.tours-info h3:before {
    position: absolute;
    top: 10px;
    left: 0;
    height: 9px;
    width: 9px;
    background: var(--primary);
    content: '';
    border-radius: 30px;
    outline: 3px solid #ed1b2440;
}
.sidebar-item {
    box-shadow: 0 0 14px #e7e7e7;
    padding: 20px;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-radius: 10px;
}
.price {
    color: var(--primary);
    font-size: 20px;
    font-weight: 500;
}
.sidebar-item p span {
    display: block;
    color: var(--black);
    font-weight: 500;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
}
.sidebar-form .wpcf7-spinner {
    display: none;
}

.waterprint-info h2 {
    color: #fff;
	font-size:48px;
}
.waterprint-info p {
    color: #fff;
}
.waterprint {
    padding: 100px 0;
    background: linear-gradient(#c3433863, #000000e3), url(../images/cta2-bg-img.jpg) center / cover;
}
.waterprint-info {
    width: 78%;
    margin: 0 auto;
}

/* Reviews  */

.reviews {
    padding: 40px 0;
    background: #f9f9f9;
}
.reviews-info {
    background: var(--white);
    padding: 68px 25px 25px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.1);
    border-radius: 8px;
    height: 300px;
}
.reviews-item:after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 6px;
    width: 206px;
    height: 200px;
    background-image: url(../images/tool-dots.png);
    background-repeat: no-repeat;
    animation: zoom-two 5s linear infinite;
    animation-delay: 3s;
    opacity: .6;
}
.reviews-item:before {
    content: "";
    position: absolute;
    top: 5px;
    right: -105px;
    width: 206px;
    height: 200px;
    background-image: url(../images/tool-dots.png);
    background-repeat: no-repeat;
    animation: zoom-two 5s linear infinite;
    opacity: .6;
}
.reviews-info p {
    margin: 15px 0;
}
.reviews-info span.starreviews i {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 5px;
}
.reviews-info figure img {
    width: 80px;
    border-radius: 50px;
}
.reviews-info figure {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-40px);
    box-shadow: 0 21px 10px rgba(4,4,4,.05);
    border-radius: 50%;
    outline: 1px solid #c1c1c1;
    overflow: hidden;
    outline-offset: 10px;
    margin-bottom: 30px;
    z-index: 1;
}
.slick-track {
    margin-top: 0 !important;
}
.reviews-info h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 25px;
}

@media (max-width:991px) {
.topbar {
    display: none;
}
.mainmenu {
    padding: 15px !important;
}
.logo img {
    width: 140px;
}
#rmp_menu_trigger-573 {
    width: 46px !important;
    height: 46px !important;
    top: 30px !important;
    right: unset !important;
    background: var(--primary) !important
}
#rmp-container-573 {
    background-color: var(--black) !important;
}
#rmp-menu-additional-content-573 {
    display: none;
}
form.rmp-search-form {
    display: none;
}
.mainslider .carousel-content {
    width: 80%;
}
.mainslider figure img {
    height: 100vh;
}
.about .row {
    row-gap: 20px;
}
.feasibility li {
    width: 100%;
}
footer .row {
    row-gap: 30px;
}
.mainmenu.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.aboutimg img {
    height: 100%;
}
.msnvsn .row{
   row-gap:20px;
}
.ourstory .col-lg-4 {
    width: 100%;
}
.ourstory .row{
 row-gap:20px;
}
.whychoose ul li {
    width: 100%;
}
.aboutmanufacture p {
    width: 100%;
}
.nav li {
    margin-bottom: 15px;
}
.contactus .row .col-sm-7 {
    width: 100%;
}
.contactus .row .col-sm-5 {
    width: 100%;
}
.contactus .row {
  row-gap:20px;
}
form.wpcf7-form.init .row {
    row-gap: 0;
}
.secondary-container.contactus img {
    height: 100%;
}
}

@media (max-width:767px) {
.secondary-container {
    padding: 135px 0 60px;
}

}


@media (max-width:667px) {
#rmp_menu_trigger-573 {
    display: block;
    right: 10% !important;
}
.mainslider .carousel-caption h2 {
    font-size: 35px;
}
.carousel-control-prev {
    left: 5px;
}
.carousel-control-next {
    right: 5px;
}
.mainslider .carousel-caption {
    left: 50px;
}	
.mainmenu {
    padding: 8px !important;
}	
#rmp_menu_trigger-573 {
    top: 20px !important;
}	
.about {
    padding: 40px 0;
}	
.aboutlist li {
    width: 100%;
}
.services {
    padding: 40px 0;
}	
.feasibility {
    padding-top: 40px;
}	
.ourgallery {
    margin-top: 40px;
}	
header .col-sm-2 {
    width: 40%;
}
header .col-sm-10{
    width: 60%;
}	
}

@media (max-width:479px) {
.mainslider .carousel-caption h2 {
    font-size: 25px;
}
.mainslider .carousel-content p {
    margin: 0;
}
.mainslider .carousel-content p {
    font-size: 16px !important;
}
.heading {
    padding-left: 0;
    font-size: 24px;
}	
.gallerylightboxlist {
    height: 240px;
}
.feasibility .heading {
    font-size: 20px;
}	
.ourgallery .subtitle {
    padding-left: 0;
}
.nav li {
    margin-bottom: 15px;
    width: 100%;
}
.nav-pills .nav-link {
    width: 100%;
}
}

@media (max-width:375px) {
.mainslider .carousel-caption h2 {
    font-size: 17px;
    line-height: 55px;
}
}

@media (max-width:360px) {
.ourgallery .subtitle {
    padding-left: 0;
    margin-bottom: 22px !important;
    font-size: 16px;
}
}





