@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Redressed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-clr: black;
  --secondary-clr: #2e9aff;
  --prm-bg-color: #f2f7f8;
  --prm-txt-color: black;
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --fs: 14px;
  --h1s: 34px;
  --h2s: 24px;
  --h3s: 20px;
  --h4s: 18px;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: var(--fs);
  background-color: white;
  letter-spacing: 0.4px;
  color: var(--prm-txt-color);
  line-height: 1.5;
}
body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  /* background-color: darkgrey; */
  background-color: #c2e9fb;
  outline: 1px solid #a1c4fd;
  border-radius: 4rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/*===== Firefox ====== */
input[type=number] {
-moz-appearance: textfield;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: var(--h1s);
  line-height: 52px;
}

h2 {
  font-size: var(--h2s);
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

h3 {
  font-size: var(--h3s);
  line-height: 1.5;
  font-weight: 700;
}

h4 {
  font-size: var(--h4s);
  font-weight: 700;
}

img {
  width: 100%;
}

.heading2 h2{
  color: var(--prm-txt-color);
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.p-tb {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.fixed-header {
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.986);
  box-shadow: 0px 0px 10px -1px rgba(255, 255, 255, 0.986);
  min-height: 64px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.fixed-header.fixed-nav {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  border-radius: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.dis-flex {
  display: flex !important;
}

.logo {
  overflow: hidden;
  max-height: 100%;
  max-width: 167px;
  background-color: transparent;
}

.logo .img-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-and-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-dist {
  flex: 1 1 auto !important;
}

.primary-menu {
  display: none;
  position: relative;
}

.primary-menu .navigation {
  position: relative;
  margin: 0;
}

.primary-menu .navigation {
  display: flex;
  justify-content: flex-end;
}

.primary-menu .navigation > li {
  position: relative;
  margin-left: 20px !important;
  display: flex;
  align-items: center;
}

.primary-menu .navigation > li > ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 120%;
  left: 0px;
  width: 220px;
  /* display: none; */
  z-index: 100;
  transition: all 0.4s ease;
  padding: 20px 15px;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.primary-menu .navigation > li.dropdown::after {
  /* position: absolute; */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  left: 0px;
  top: 0px;
  display: block;
  padding-left: 4px;
}

.primary-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  /* left: 0px; */
  top: 100%;
  display: block;
  transform: rotateX(0deg);
}

.primary-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  line-height: 30px;
  transition: all 0.5s ease;
  color: black;
  padding: 17px 0px;
}
.primary-menu .navigation > li > a:hover {
  color: var(--primary-clr);
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
}

.primary-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 16px;
  line-height: 24px;
  font-weight: 600;
  font-size: 15px;
  color: #7a7a7a;
  transition: all 0.5s ease;
}

.primary-menu .navigation > li > ul > li > a::before {
  position: absolute;
  /* content: "//"; */
  /* visibility: visible; */
  left: 0px;
  top: 5px;
  /* opacity: 0; */
  color: #7a7a7a;
  transition: all 0.5s ease;
}

.primary-menu .navigation > li > ul > li:hover > a {
  padding-left: 35px;
  color: var(--primary-clr);
}

.primary-menu .navigation > li > ul > li:hover > a::before {
  opacity: 1;
  left: 10px;
  color: var(--primary-clr);
}

.auth-btns {
  margin-left: 15px;
}

/*====== aside ======== menu */

.nav-btns {
  display: block;
}

#nav-aside {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(255, 255, 255);
  max-width: 360px;
  width: 100%;
  padding: 80px 20px;
  overflow-y: scroll;
  z-index: 99;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.4s all cubic-bezier(0.77, 0, 0.18, 1);
  transition: 0.4s all cubic-bezier(0.77, 0, 0.18, 1);
}

#nav-aside.active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.nav-aside-menu li a {
  display: block;
  padding: 15px 0px;
  color: var(--prm-txt-color);
  border-bottom: 1px solid #9e9e9e4f;
}

.nav-aside-menu li a:hover,
.nav-aside-menu li a:focus {
  color: var(--primary-clr);
}

.nav-aside-menu li.aside-has-dropdown > a {
  cursor: pointer;
}

.nav-aside-menu li.aside-has-dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  float: right;
  color: var(--prm-txt-color);
  font-weight: bold;
}

.nav-aside-menu li.aside-has-dropdown > ul {
  display: none;
  margin-left: 30px;
}

.nav-aside-menu li.aside-has-dropdown.active > ul {
  display: block;
}

.nav-aside-menu li.aside-has-dropdown > ul a {
  padding: 15px;
}

.nav-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: none;
}

.nav-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-close span:before,
.nav-close span:after {
  content: "";
  display: block;
  width: 30px;
  background-color: #2a2a2a;
  height: 2px;
}

.nav-close span:before {
  -webkit-transform: translateY(0px) rotate(-135deg);
  -ms-transform: translateY(0px) rotate(-135deg);
  transform: translateY(0px) rotate(-135deg);
}

.nav-close span:after {
  -webkit-transform: translateY(-2px) rotate(135deg);
  -ms-transform: translateY(-2px) rotate(135deg);
  transform: translateY(-2px) rotate(135deg);
}

.nav-btns {
  float: right;
  padding: 10px 0px;
}

.nav-btns > button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  border: none;
  background: transparent;
}

/* main slider */

.mySwiper .swiper-wrapper {
  height: 700px;
}

.mySwiper .swiper-slide .slide-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.mySwiper .swiper-slide .slide-bg.slide-bg-first{
  background-image: url("./images/banner.jpg");
  background-position: 20% center;
}

.mySwiper .swiper-slide .slide-bg.slide-bg-second{
  background-image: url("./images/sliderm2.jpg");
}

.mySwiper .swiper-slide .slide-bg.slide-bg-third{
  background-image: url("./images/painter3.jpg");
}

.slide-bg .container {
  height: 100%;
}

.slide-main-content-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-head-content {
  color: white;
  text-align: center;
  padding-top: 196px;
  /* font-family: 'Redressed', cursive; */
  font-family: 'Kanit', sans-serif;
}

.slider-head-content .span-style {
  font-family: 'Redressed', cursive;
  /* color: crimson; */
  /* color: maroon; */
  color: orange;
  /* font-family: 'Dancing Script', cursive; */
}

.slide-main-content-container .slide-main-title {
  padding-left: 1.2rem;
  font-weight: 700;
  color: white;
  max-width: 712px;
  margin-bottom: 16px;
  /* margin-top: 20px; */
  /* margin-bottom: 25px; */
}

.slide-main-content-container .slide-sub-title {
  padding-left: 1.2rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.726);
  max-width: 712px;
  margin-bottom: 20px;
}

.slide-main-content {
  z-index: 101;
}

.slide-main-content .primary-btn {
  margin-left: 20px;
}



/*======== textures section =========*/

.color-box-border {
  width: 100%;
  height: 94px;
  border-radius: 8px;
  border: 4px solid rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}

.color-box {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  margin: 8px;
  cursor: pointer;
}

.color-box:active, .color-box-img:active {
  outline: 1px solid black;
}


.color-box.orange {
  background-color: orangered;
  /* box-shadow: 1px 1px 16px -1px rgba(248, 119, 119, 0.945); */
}

.color-box.violet {
  background-color: #cd6c83;
  /* box-shadow: 1px 1px 16px -1px rgba(159, 92, 223, 0.945); */
}

.color-box.green{
  background-color: #0b7c88;
}

.color-box-img {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  margin: 8px;
  cursor: pointer;
}

.color-box-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* banner section */

/* .banner-section{
  background-image: url(./images/banner1.jpg);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
} */

.hero{
  padding: 1rem 0;
}

/* .banner-body{
  text-align: left;
  background-color: #343a4038;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 40px;
} */

.header-content .header-title{
  font-weight: 700;
  color: white;
}

.header-content .header-subtitle{
  color: white;
  font-weight: 500;
  margin-top: 40px;
}

.banner-form{
  background-color: white;
  border: 1px solid #0000001a;
  box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 50%);
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.home-page-form{
  padding: 1.5rem;
}

.homep-dhf-heading span{
  display: block;
}

.homep-dhf-heading h2{
  color: var(--primary-clr);
  padding-bottom: 5px;
  font-size: 22px;
}

.homep-dhf-heading p{
  font-weight: 400;
  font-size: 14px;
  color: var(--prm-txt-color);
  margin-bottom: 10px;
}

.home-dhform{
  text-align: center;
  
}
.homep-dhf-heading span{
  position: relative;
  padding-left: 1rem;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 12px;
  color: var(--prm-txt-color);
}

.homep-dhf-terms-heading span{
  position: relative;
  padding-left: 1rem;
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 12px;
  color: var(--prm-txt-color);
  text-align: justify;
}

.form-floating{
  text-align: left;
}

.homep-dhf-heading .home-dhf-warrl::after{
  position: absolute;
  content: "*";
  left: 0;
  top: -3px;
  font-size: 23px;
  width: 20px;
  height: 2px;
  color: red;
}

.homep-dhf-term-heading .home-dhf-terms::after{
  position: absolute;
  content: "*";
  left: 0;
  top: -3px;
  font-size: 23px;
  width: 20px;
  height: 2px;
  color: red;
}


.icon-color, .icon-consultation, .icon-pricing, .icon-tools, .icon-professional{
  width: auto;
}

.home-dhf-terms {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.home-dhf-terms a {
  text-decoration: underline;
  color: var(--prm-txt-color);
}

.height-400px {
  height: 400px;
}

.lead-form {
  position: relative;
  top: -290px;
  margin-bottom: -240px;
  z-index: 11;
}

/* form-fields */

.home-dhform .form-button{
  border: none;
  display: inline-block;
  background: linear-gradient(104deg, rgba(198,63,133,0.9) 34%, rgba(156,73,152,0.9) 100%);
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
  padding: 8px 20px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: 0.5s;
}

input.input-group-input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,
select {
  width: 100%;
  padding: 8px 16px;
  line-height: 1.4;
  background-color: #f9f9f9;
  border: 1px solid #808080;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
input:focus {
  outline: 0;
  border-color: #bd8200;
}
input:focus + .input-icon i {
  color: #f0a500;
}
input:focus + .input-icon:after {
  border-right-color: #f0a500;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + label,
select {
  display: inline-block;
  width: 50%;
  text-align: center;
  float: left;
  border-radius: 0;
}
input[type="radio"] + label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
input[type="radio"] + label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
input[type="radio"] + label i {
  padding-right: 0.4em;
}
input[type="radio"]:checked + label,
input:checked + label:before,
select:focus,
select:active {
  background-color: #f0a500;
  color: #fff;
  border-color: #bd8200;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  position: relative;
  display: block;
  padding-left: 1.6em;
}
input[type="checkbox"] + label:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  padding: 0;
  content: "";
}
input[type="checkbox"] + label:after {
  position: absolute;
  top: 0.45em;
  left: 0.2em;
  font-size: 0.8em;
  color: #fff;
  opacity: 0;
  font-family: FontAwesome;
  content: "\f00c";
}
input.input-group-input:checked + label:after {
  opacity: 1;
}
.input-group {
  margin-bottom: 1em;
  zoom: 1;
}
.input-group:before,
.input-group:after {
  content: "";
  display: table;
}
.input-group:after {
  clear: both;
}
.input-group-icon {
  position: relative;
  font-size: 12px;
}
.input-group-icon input {
  padding-left: 4.4em;
}
.input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  pointer-events: none;
}
.input-group-icon .input-icon:after {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 32px;
  display: block;
  border-right: 1px solid #808080;
  content: "";
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.input-group-icon .input-icon i {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

/* button */

.button{
  display: inline-block;
  background: linear-gradient(104deg, rgba(198,63,133,0.9) 34%, rgba(156,73,152,0.9) 100%);
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
  padding: 12px 20px;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: 0.5s;
}

.button:hover{
  background: linear-gradient(260deg, rgba(198,63,133,1) 34%, rgba(156,73,152,1) 100%);
  color: white;
  text-decoration: none;
}

/* heading bottom line */

.heading-bottom {
  color: var(--primary-clr);
  padding-bottom: 1rem;
}

.heading-bottom span{
  width: 25%;
  height: 3px;
  display: block;
  margin: 10px auto 0px;
  background: rgb(236,88,17);
  background: linear-gradient(104deg, rgba(236,88,17,1) 43%, rgba(246,172,2,1) 100%);
}

/*======== About ========*/

.about-section{
  /* background-color: rgb(255, 255, 255); */
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.about-heading{
  position: relative;
  margin-bottom: 20px;
}

.about-title .about-heading h2{
  color: var(--primary-clr);
  padding-bottom: 20px;
}

.about-title .about-heading h2::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background: rgb(236,88,17);
  background: linear-gradient(104deg, rgba(236,88,17,1) 43%, rgba(246,172,2,1) 100%);
}

.about-title p{
  text-align: justify;
  font-weight: 400;
  color: var(--prm-txt-color);
}

.about-image{
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  overflow: hidden;
}

/*======== icons services section ========*/

.paint-work-section{
  /* background-color: #ffc107; */
  background-color: #c0deef;
}

.paintwork-box{
  text-align: center;
  padding: 10px;
  transition: all 0.4s;
}

.paintwork-icon-content p{
  font-weight: 700;
  margin: 0px; 
  padding-top: 10px;   
}

.paintwork-box:hover{
  box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
  border-radius: 8px;
}

/*======== services section ========*/

.our-services{
  color: black;
}

.services-section{
  /* background-color: rgb(255, 255, 255); */
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.services-title h2 {
  color: var(--primary-clr);
  margin-bottom: 20px;
}

.servies-card {
  border-radius: 8px;
  box-shadow: 0px 0px 3px 1px rgb(158 158 158 / 39%);
  overflow: hidden;
  margin: 15px 0;
  transition: all 0.4s;
}

.servies-card:hover {
  box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.serv-cardimg {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.serv-cardimg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.serv-waves{
  position: relative;
  top: -34px;
  width: 100%;
}

.serv-waves svg {
  height: 50px;
  width: 100%;
}

.serv-card-body{
  padding: 20px;
  text-align: center;
  background-color: white;
  color: var(--prm-txt-color);
}

.serv-card-body :hover{
  color: var(--prm-txt-color);
}

.serv-card-body p{
  text-align: justify;
}

/*========= choose-us-section ==========*/

.choose-us-section{
  padding: 4rem 0;
  /* background-color: #ffc107; */
  background-color: #c0deef;
}

.choose-us-image{
  border-radius: 10px;
  overflow: hidden;
}


.choose-us-content p{
  text-align: justify;
}
/* ======= gallery ========== */

.project-section{
  /* background-color: rgb(255, 255, 255); */
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.gallery-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.gallery-slider-card{
  height: 500px;
}

.gallery-slider-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider-inercontent{
  background-color: #ffffff7d;
  padding: 10px;
  width: 180px;
}

.gallery-slider-container .swiper-pagination {
  position: relative;
  bottom: 33px;
}

.gallery-slider-container .swiper-pagination .swiper-pagination-bullet {
  transition: all 0.2s;
}

.gallery-slider-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 20px;
}

.gallery-slider-container .swiper-button-prev,
.gallery-slider-container .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0px 0px 16px -1px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.gallery-slider-container .swiper-button-prev::after,
.gallery-slider-container .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.gallery-slider-content{
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-left-slide {
  height: 100%;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}

.gallery-left-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.gallery-left-slide h1 {
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: -30px;
}

.gallery-right-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 35%;
  width: 65%;
  transition: transform 0.5s ease-in-out;
}

.gallery-right-slide > div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}

.gallery-down-button , .gallery-up-button{
  background-color: #fff;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  padding: 15px;
}

.gallery-down-button:hover , .gallery-up-button:hover{
  color: #222;
}

.gallery-down-button:focus , .gallery-up-button:focus {
  outline: none;
}

.gallery-container .gallery-action-buttons button {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}

.gallery-container .gallery-action-buttons .gallery-down-button {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.gallery-container .gallery-action-buttons .gallery-up-button {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}


/*======== product and service ========*/


.product{
  padding: 4rem 0;
  text-align: center;
  /* background-color: #ffc107; */
  background-color: #c0deef;
}

.product-outerbox h2{
  font-size: var(--h2s);
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-icon
{
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: black;
  margin: 10px;
  border-radius: 10px;
}

.product-icon:hover{
  text-decoration: none;
  box-shadow: 0px 14px 28px rgb(0 0 0 / 10%);
  /* transform: scale(1.08); */
  color: black;
  transform: scale(1.05);
  transition: all 1s ease;

}

.pi-1{
  background-color: #e0fdff;
  border: 1px solid #c0eef1;
}

.pi-2{
  background-color: #dbffdb;
  border: 1px solid #c4f4c4;
}

.pi-3{
  background-color: #ffe3dc;
  border: 1px solid #eec8be;
}

.pi-4{
  background-color: #e1f2ff;
  border: 1px solid #ccdeec;
}

.pi-5{
  background-color: #ffefdd;
  border: 1px solid #f8dfc3;
}

.pi-6{
  background-color: #fff9c3;
  border: 1px solid #f0e9ad;
}

.pi-7{
  background-color: #f9eaf9;
  border: 1px solid #f0d4f0;
}

.pi-8 {
  background-color: #f2eff5;
  border: 1px solid #dcd9df;
}

.product-icon h4{
  font-size: 18px;
}

.product-icon img{
  margin: 8px auto;
  width: auto;
}

.product-icon .meter{
  border-radius: 50%;
  object-fit: cover;
  height: 128px;
}


/*======== testimonial section ========*/

.testimonial {
  padding: 4rem 0;
  height: 100%;
  width: 100%;
  /* background-color: #ffc107; */
  background-color: #c0deef;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial4_slide p {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.testimonial4_slide h4 {
  text-align: center;
}

#testimonial-top-heading{
  color: var(--prm-txt-color) !important;
}

.testimonial-heading {
  margin-bottom: 30px;
}

.testimonial-heading  h2 {
  color: var(--primary-clr);
  text-align: center;
  margin-bottom: 20px;
}

.testimonial .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.testimonial .swiper-pagination .swiper-pagination-bullet {
  transition: all 0.2s;
}

.testimonial .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 20px;
}

.testimonial .swiper-button-prev,
.testimonial .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0px 0px 16px -1px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.testimonial .swiper-button-prev::after,
.testimonial .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

/*======== faq section ========*/

.faq-full-section{
  box-shadow: rgb(50 50 93 / 25%) 0px 0px 10px 1px, rgb(0 0 0 / 30%) 0px 0px 0px 0px;
  padding: 25px 0px;
} 

.faq-sec{
  padding: 4rem 0;
  /* background-color: rgb(255, 255, 255); */
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.faq-part{
  border-bottom: 1px solid #d5d4d4;
  margin-bottom: 25px;
}

.faq-title{
  text-align: center;
  color: var(--primary-clr);
}

.faq-heading span{
  width: 60%;
  height: 3px;
  display: block;
  margin: 10px auto 0px;
  background: rgb(236,88,17);
  background: linear-gradient(104deg, rgba(236,88,17,1) 43%, rgba(246,172,2,1) 100%);
}

.faq-question{
  display: flex;
  align-items: center;
  /* background-color: rgb(203 195 231); */
  background-color: #c0deef;
  margin-bottom: 20px;
}

.faq-answer{
  display: flex;
}

.faq-part h3{
  margin-bottom: 0px;
  padding: 0px 15px;
}

.faq-part p{
  padding: 0px 15px;
}

.faq-ques{
  text-align: center;
  align-items: center;
  color: #ec1b11;
}

.faq-ques h3{
  font-size: 35px;
}

.faq-ans{
  margin-right: 10px;
  line-height: 10px;
  color: #071fc7;
}
.faq-ans-head p{
  text-align: justify;
  margin-bottom: 0.5rem;
  color: var(--prm-txt-color);
}

.faq-ans h3{
  font-size: 35px;
  align-items: center;
}

/* brand section */

.brand{
  /* background-color: rgb(255, 255, 255); */
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.brand-innerbox img{
  width: 100%;
  height: 100%;
}

.brand-innerbox{
  height: 166px;
  width: 166px;
  margin: auto;
}

.brand-innerbox-content h3{
  text-align: center;
}

/*======== footer section ========*/

.new_footer_area {
  background-color: rgb(0, 0, 0);
}

.new_footer_top {
  padding: 80px 0px 20px;
  position: relative;
  overflow-x: hidden;
}
.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 10px 0px;
}

.text-right p{
  margin: 0px;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.Aq-content p{
  text-align: justify;
}

.footer-head span{
  width: 25%;
  height: 3px;
  display: block;
  margin: 10px 0px 0px;
  background: rgb(236,88,17);
  background: linear-gradient(104deg, rgba(236,88,17,1) 43%, rgba(246,172,2,1) 100%);

}

.new_footer_top .company_widget p {
  font-weight: 300;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}
.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}
.btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.social-nav {
  padding: 0;
  list-style: none;
  display: inline-block;
  margin: 10px auto;
}
.social-nav li {
  display: inline-block;
}
.social-nav a {
  display: inline-block;
  width: 48px;
  height: 48px;
  font-size: 20px;
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 48px;
  background: #000;
  position: relative;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.model-2 a {
  overflow: hidden;
  font-size: 26px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin: 0 5px;
}

.model-2 a:hover {
  background: #fff;
  text-shadow: 0px 0px #d5d5d5, 1px 1px #d5d5d5, 2px 2px #d5d5d5, 3px 3px #d5d5d5, 4px 4px #d5d5d5, 5px 5px #d5d5d5, 6px 6px #d5d5d5, 7px 7px #d5d5d5, 8px 8px #d5d5d5, 9px 9px #d5d5d5, 10px 10px #d5d5d5, 11px 11px #d5d5d5, 12px 12px #d5d5d5, 13px 13px #d5d5d5, 14px 14px #d5d5d5, 15px 15px #d5d5d5, 16px 16px #d5d5d5, 17px 17px #d5d5d5, 18px 18px #d5d5d5, 19px 19px #d5d5d5, 20px 20px #d5d5d5, 21px 21px #d5d5d5, 22px 22px #d5d5d5, 23px 23px #d5d5d5, 24px 24px #d5d5d5, 25px 25px #d5d5d5, 26px 26px #d5d5d5, 27px 27px #d5d5d5, 28px 28px #d5d5d5, 29px 29px #d5d5d5, 30px 30px #d5d5d5;
}
.model-2 .twitter {
  background: #00ACED;
  text-shadow: 0px 0px #0087ba, 1px 1px #0087ba, 2px 2px #0087ba, 3px 3px #0087ba, 4px 4px #0087ba, 5px 5px #0087ba, 6px 6px #0087ba, 7px 7px #0087ba, 8px 8px #0087ba, 9px 9px #0087ba, 10px 10px #0087ba, 11px 11px #0087ba, 12px 12px #0087ba, 13px 13px #0087ba, 14px 14px #0087ba, 15px 15px #0087ba, 16px 16px #0087ba, 17px 17px #0087ba, 18px 18px #0087ba, 19px 19px #0087ba, 20px 20px #0087ba, 21px 21px #0087ba, 22px 22px #0087ba, 23px 23px #0087ba, 24px 24px #0087ba, 25px 25px #0087ba, 26px 26px #0087ba, 27px 27px #0087ba, 28px 28px #0087ba, 29px 29px #0087ba, 30px 30px #0087ba;
}
.model-2 .twitter:hover {
  color: #00ACED;
}
.model-2 .facebook {
  background: #3B579D;
  text-shadow: 0px 0px #2d4278, 1px 1px #2d4278, 2px 2px #2d4278, 3px 3px #2d4278, 4px 4px #2d4278, 5px 5px #2d4278, 6px 6px #2d4278, 7px 7px #2d4278, 8px 8px #2d4278, 9px 9px #2d4278, 10px 10px #2d4278, 11px 11px #2d4278, 12px 12px #2d4278, 13px 13px #2d4278, 14px 14px #2d4278, 15px 15px #2d4278, 16px 16px #2d4278, 17px 17px #2d4278, 18px 18px #2d4278, 19px 19px #2d4278, 20px 20px #2d4278, 21px 21px #2d4278, 22px 22px #2d4278, 23px 23px #2d4278, 24px 24px #2d4278, 25px 25px #2d4278, 26px 26px #2d4278, 27px 27px #2d4278, 28px 28px #2d4278, 29px 29px #2d4278, 30px 30px #2d4278;
}
.model-2 .facebook:hover {
  color: #3B579D;
}
.model-2 .google-plus {
  background: #DD4A3A;
  text-shadow: 0px 0px #c23122, 1px 1px #c23122, 2px 2px #c23122, 3px 3px #c23122, 4px 4px #c23122, 5px 5px #c23122, 6px 6px #c23122, 7px 7px #c23122, 8px 8px #c23122, 9px 9px #c23122, 10px 10px #c23122, 11px 11px #c23122, 12px 12px #c23122, 13px 13px #c23122, 14px 14px #c23122, 15px 15px #c23122, 16px 16px #c23122, 17px 17px #c23122, 18px 18px #c23122, 19px 19px #c23122, 20px 20px #c23122, 21px 21px #c23122, 22px 22px #c23122, 23px 23px #c23122, 24px 24px #c23122, 25px 25px #c23122, 26px 26px #c23122, 27px 27px #c23122, 28px 28px #c23122, 29px 29px #c23122, 30px 30px #c23122;
}
.model-2 .google-plus:hover {
  color: #DD4A3A;
}
.model-2 .linkedin {
  background: #007BB6;
  text-shadow: 0px 0px #005983, 1px 1px #005983, 2px 2px #005983, 3px 3px #005983, 4px 4px #005983, 5px 5px #005983, 6px 6px #005983, 7px 7px #005983, 8px 8px #005983, 9px 9px #005983, 10px 10px #005983, 11px 11px #005983, 12px 12px #005983, 13px 13px #005983, 14px 14px #005983, 15px 15px #005983, 16px 16px #005983, 17px 17px #005983, 18px 18px #005983, 19px 19px #005983, 20px 20px #005983, 21px 21px #005983, 22px 22px #005983, 23px 23px #005983, 24px 24px #005983, 25px 25px #005983, 26px 26px #005983, 27px 27px #005983, 28px 28px #005983, 29px 29px #005983, 30px 30px #005983;
}
.model-2 .linkedin:hover {
  color: #007BB6;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #5e2ced;
}
.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}
.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}
.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}
.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}
.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ti-facebook:before {
  content: "\e741";
}
.ti-twitter-alt:before {
  content: "\e74b";
}
.ti-vimeo-alt:before {
  content: "\e74a";
}
.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #5e2ced;
  border-color: #5e2ced;
  color: #fff;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color:white;
}
.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}
.new_footer_top .f-title {
  margin-bottom: 30px;
  color: #ffffff;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: #ffffff;
}

.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("http://droitthemes.com/html/saasland/img/seo/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("https://1.bp.blogspot.com/-mvKUJFGEc-k/XclCOUSvCnI/AAAAAAAAUAE/jnBSf6Fe5_8tjjlKrunLBXwceSNvPcp3wCLcBGAsYHQ/s1600/volks.gif") no-repeat center center;
  width: 330px;
  height: 105px;
  background-size:100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("https://1.bp.blogspot.com/-hjgfxUW1o1g/Xck--XOdlxI/AAAAAAAAT_4/JWYFJl83usgRFMvRfoKkSDGd--_Sv04UQCLcBGAsYHQ/s1600/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size:100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}

.footer-contact{
  margin-top: 20px;
  color: #ffffff;
  font-size: 16px;
}

/* .call-button .no-button ::before{
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f879";
} */

.no-button{
  /* border: 1px solid black; */
  background: linear-gradient(104deg, rgba(198,63,133,0.9) 34%, rgba(156,73,152,0.9) 100%);
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
  color: white;
}

.footer_bottom{
  background-color: rgb(31, 30, 30);
  color: white;
  text-align: center;
}

@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

/*************footer End*****************/


/* ------------------- */

@media (min-width: 768px) {
  :root {
    --h1s: 45px;
    --h2s: 28px;
  }
  .mySwiper .swiper-slide .slide-bg video {
    height: 700px;
    object-fit: cover;
  }
  .var-video {
    height: 632px;
  }
  .var-img {
    height: 200px;
    margin-bottom: 16px;
  }
  .lead-form {
    position: absolute;
    top: 80px;
    left: 60px;
    margin-bottom: 0;
    z-index: 11;
  }
  .mySwiper .swiper-slide .slide-bg.slide-bg-first{
    background-position: center center;
  }
}

@media (min-width: 990px) {
  :root {
    --fs: 16px;
    --h1s: 64px;
    --h2s: 32px;
  }
  body {
    font-size: var(--fs);
  }

  h1 {
    line-height: 72px;
  }

  nav.primary-menu {
    display: block;
  }

  .slider-head-content {
    text-align: left;
  }

  .details-para p,
  .details-para p span {
    font-size: 20px;
    line-height: 32px;
  }
  .nav-btns {
    display: none;
  }
  .var-video {
    height: 540px;
  }
  .variety-video video {
    height: 540px;
  }
  .var-img {
    height: 260px;
  }
  .footer-top {
    flex-direction: row;
  }
  .footer-top h2 {
    margin-bottom: 0px;
  }
  .copy-box {
    flex-direction: row;
  }
}
