@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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&display=swap");

/***** General CSS *****/

:root {
  --ct1: #255d52;

  --ct2: #fae1c2;

  --ct3: #e6efef;

  --text-dark: #000;

  --text-muted: #6b7280;

  --text-white: #fff;

  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Chrome, Safari, Edge (Chromium) */

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
  display: none;
}

/* Firefox */

input[type="date"] {
  -moz-appearance: textfield;
}

/* Old Edge / IE */

input[type="date"]::-ms-clear,
input[type="date"]::-ms-expand {
  display: none;
}

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;

  font:
    15px/25px "Poppins",
    sans-serif;

  color: #393939;

  overflow-x: hidden;
}

a {
  text-decoration: none;

  color: #28b16d;

  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;

  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;

  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;

  -webkit-transition: all 0.5s ease;

  -moz-transition: all 0.5s ease;

  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;
}

ul {
  margin: 0 0 0px;

  padding: 0;

  list-style-type: none;
}

i {
  font-family: FontAwesome !important;

  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

.heading0 {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin: 0 0 30px 0;
}

.heading0-txt {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 10px;

  width: 60%;

  margin: 0 auto 0 0;

  position: relative;

  z-index: 999;
}

.heading1 {
  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  margin: 0 0 50px 0;
}

.heading1-txt {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 5px;
}

h3.heaed-color {
  color: var(--ct1);
}

/* 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;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";

  src: url(../fonts/fontawesome-webfont.eot);

  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");

  font-weight: 400;

  font-style: normal;
}

@font-face {
  font-family: "conduit-bold";

  src: url("../fonts/conduit-bold.otf");
}

@font-face {
  font-family: "conduit-regular";

  src: url("../fonts/conduit-regular.otf");
}

.slicknav_nav a:hover {
  background: var(--ct1);
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;

  margin: 0 auto;
}

.d-flex {
  display: flex;

  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  height: 50px;

  padding: 0 30px;

  background-color: var(--ct1);

  border: 2px solid #0000;

  border-radius: 100px;

  overflow: hidden;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme1:hover {
  border: 2px solid var(--text-white);

  /* border-radius: 5px; */

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme1::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  height: 0;

  width: 0;

  background-color: var(--ct2);

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme1:hover::before {
  height: 110%;

  width: 110%;

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-family: "Poppins";

  font-size: 16px;

  line-height: 1;

  color: var(--text-white);

  font-weight: 500;

  text-transform: uppercase;
}

.theme1 span.theme1-icon-ex {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;

  align-items: center;

  justify-content: center;

  height: 0;

  width: 0;

  z-index: 9;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon-ex {
  height: 20px;

  width: 20px;

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme1 span.theme1-icon-ex img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  /* filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%)

    hue-rotate(70deg) brightness(108%) contrast(108%); */
}

.theme2 {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  height: 50px;

  padding: 0 30px;

  background-color: var(--ct2);

  border: 2px solid #0000;

  border-radius: 100px;

  overflow: hidden;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme2:hover {
  border: 2px solid var(--text-white);

  /* border-radius: 5px; */

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme2::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  height: 0;

  width: 0;

  background-color: var(--ct1);

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme2:hover::before {
  height: 110%;

  width: 110%;

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  font-family: "Poppins";

  font-size: 16px;

  line-height: 1;

  color: var(--text-dark);

  font-weight: 500;

  text-transform: uppercase;
}

.theme2 span.theme2-icon-ex {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;

  align-items: center;

  justify-content: center;

  height: 0;

  width: 0;

  z-index: 9;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon-ex {
  height: 20px;

  width: 20px;

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme2 span.theme2-icon-ex img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%)
    hue-rotate(70deg) brightness(108%) contrast(108%);
}

.theme3 {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  height: 70px;

  width: 70px;

  border-radius: 100px;

  overflow: hidden;

  padding: 12px;

  border: 1px solid #000;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme3:hover {
  transition: ease-out;

  transition-duration: 0.5s;
}

.theme3 .theme3-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 20px;

  width: 100%;

  rotate: 330deg;

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme3:hover .theme3-icon {
  rotate: 0deg;

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme3 .theme3-icon img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: contain;
}

.theme4 {
  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 40px;

  width: 100%;

  padding: 0 6px 0 20px;

  gap: 10px;

  border-radius: 100px;

  overflow: hidden;

  background-color: var(--ct1);

  border: 1px solid #0000;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme4:hover {
  background-color: var(--ct2);

  border: 1px solid var(--text-muted);

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme4 span.theme4-txt {
  font-size: 14px;

  line-height: 1;

  font-family: "Poppins";

  text-transform: uppercase;

  color: var(--text-white);

  font-weight: 500;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme4:hover span.theme4-txt {
  color: var(--text-dark);

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme4 span.theme4-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 30px;

  width: 30px;

  border-radius: 100px;

  overflow: hidden;

  padding: 8px;

  background-color: var(--ct2);

  border: 1px solid #0000;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme4:hover span.theme4-icon {
  background-color: var(--ct1);

  border: 1px solid var(--ct3);

  transition: ease-out;

  transition-duration: 0.5s;
}

.theme4 span.theme4-icon img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: cover;

  transition: ease-in;

  transition-duration: 0.5s;
}

.theme4:hover span.theme4-icon img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(100%) saturate(22%)
    hue-rotate(45deg) brightness(106%) contrast(106%);

  transition: ease-out;

  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;

  display: -moz-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;

  -moz-box-flex: 1;

  -webkit-flex: 1;

  -ms-flex: 1;

  flex: 1;

  align-items: center;
}

h1 {
  font-family: "conduit-bold";

  font-size: 72px;

  line-height: 80px;

  color: var(--text-dark);

  font-weight: 400;

  margin: 0;

  text-transform: uppercase;
}

h2 {
  font-family: "conduit-bold";

  font-size: 60px;

  line-height: 65px;

  color: var(--text-dark);

  font-weight: 400;

  margin: 0;

  text-transform: uppercase;
}

h3 {
  font-family: "conduit-bold";

  font-size: 36px;

  line-height: 40px;

  color: var(--text-dark);

  font-weight: 600;

  margin: 0;
}

h4 {
  font-family: "conduit-regular";

  font-size: 30px;

  line-height: 35px;

  color: var(--text-dark);

  font-weight: 400;

  margin: 0;

  text-transform: uppercase;
}

h5 {
  font-family: "conduit-regular";

  font-size: 20px;

  line-height: 25px;

  color: var(--text-dark);

  font-weight: 400;

  margin: 0;
}

h6 {
  font-family: "conduit-regular";

  font-size: 18px;

  line-height: 23px;

  color: var(--text-dark);

  font-weight: 400;

  margin: 0;
}

p {
  color: #4f4f4f;

  font-size: 16px;

  line-height: 25px;

  font-family: "Poppins", serif;

  font-weight: 400;

  margin: 0;

  text-align: justify;
}

select {
  background: var(--text-white) url("../images/arrow.png") no-repeat right;

  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;

  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;

  opacity: 1;
}

/*Header Css Starts */

header {
  padding: 0;

  width: 80%;

  margin: 0 auto;

  border-radius: 0 0 20px 20px;

  overflow: hidden;

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  z-index: 999;
}

.header-logo {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 200px;

  width: 145px;

  border-radius: 10px;

  overflow: hidden;
}

.header-logo a {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;
}

.header-logo a img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: cover;
}

.top-bar-left-links ul {
  display: flex;

  align-items: center;

  justify-content: start;

  gap: 40px;
}

.top-bar-left-links ul li:last-child {
  padding: 0 0 0 40px;

  border-left: 1px solid var(--text-dark);
}

.top-bar-left-links ul li a {
  display: flex;

  align-items: center;

  justify-content: start;

  gap: 10px;
}

.top-bar-left-links ul li a p {
  position: relative;

  color: var(--text-dark);

  font-size: 14px;

  line-height: 25px;

  transition: ease-in;

  transition-duration: 0.5s;
}

.top-bar-left-links ul li a p::before {
  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  border-bottom: 1px solid var(--text-dark);

  width: 0;

  transition: ease-out;

  transition-duration: 0.5s;
}

.top-bar-left-links ul li a:hover p::before {
  width: 100%;

  transition: ease-out;

  transition-duration: 0.5s;
}

.top-bar-left-links ul li a i {
  color: var(--text-white);

  font-size: 14px;

  line-height: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 30px;

  width: 30px;

  border-radius: 100px;

  overflow: hidden;

  background-color: var(--ct1);

  transition: ease-in;

  transition-duration: 0.5s;
}

.top-bar-left-links ul li a:hover i {
  background-color: var(--ct1);

  color: var(--text-white);

  transition: ease-out;

  transition-duration: 0.5s;
}

.topSec {
  background: var(--ct2);

  padding: 20px 0;
}

.top-bar-socials ul {
  display: flex;

  align-items: center;

  justify-content: end;

  gap: 10px;
}

.top-bar-socials ul li a {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 30px;

  width: 30px;

  border-radius: 100px;

  overflow: hidden;

  padding: 5px;

  border: 1px solid var(--ct1);

  transition: ease-in;

  transition-duration: 0.5s;
}

.top-bar-socials ul li a:hover {
  border: 1px solid #0000;

  transition: ease-in;

  transition-duration: 0.5s;
}

.top-bar-socials ul li a::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  background-color: var(--ct1);

  border-radius: 100px;

  overflow: hidden;

  height: 0;

  width: 0;

  transition: ease-out;

  transition-duration: 0.5s;
}

.top-bar-socials ul li a:hover::before {
  height: 100%;

  width: 100%;

  transition: ease-in;

  transition-duration: 0.5s;
}

.top-bar-socials ul li a i {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  font-size: 12px;

  color: var(--ct1);

  z-index: 9;

  transition: ease-in;

  transition-duration: 0.5s;
}

.top-bar-socials ul li a:hover i {
  color: var(--text-white);

  transition: ease-out;

  transition-duration: 0.5s;
}

.menuSec {
  padding: 20px;

  background-color: var(--ct1);
}

/* .menuSec img {

    margin: 0;

} */

.menu-box ul {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  /* gap: 10px; */
}

.menu-box ul li {
  position: relative;

  display: inline-block;

  margin: 0;

  padding: 0;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;

  text-decoration: none;

  color: var(--text-white);

  padding: 0 15px;

  font-size: 16px;

  line-height: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 50px;

  z-index: 0;

  border-radius: 5px;

  overflow: hidden;

  font-weight: 300;

  letter-spacing: 2px;

  font-family: "Poppins", serif;

  text-transform: uppercase;

  transition: ease-in;

  transition-duration: 0.5s;

  transition-delay: 0.5s;
}

.menu-box ul li a:hover {
  color: var(--text-dark);

  transition: ease-out;

  transition-duration: 0.5s;

  transition-delay: 0.5s;
}

.menu-box ul li a::before {
  content: "";

  position: absolute;

  bottom: 0;

  right: 0;

  left: 0;

  margin: 0 auto;

  width: 0;

  border-bottom: 1px solid var(--ct2);

  transition: ease-out;

  transition-duration: 0.5s;

  transition-delay: 0.5s;

  z-index: -1;
}

.menu-box ul li a:hover::before {
  width: 100%;

  transition: ease-out;

  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";

  position: absolute;

  bottom: 0;

  right: 0;

  left: 0;

  margin: 0 auto;

  height: 0;

  background-color: var(--ct2);

  transition: ease-out;

  transition-duration: 0.5s;

  z-index: -1;
}

.menu-box ul li a:hover::after {
  height: 100%;

  transition: ease-out;

  transition-delay: 0.5s;

  transition-duration: 0.5s;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;

  -webkit-transition: all 0.5s ease;

  -moz-transition: all 0.5s ease;

  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;

  position: absolute;

  z-index: 1000;

  background-color: var(--text-dark) 000;

  left: 0px;

  width: 230px;

  text-align: left;

  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;

  padding: 13px 20px !important;

  color: var(--text-white) !important;

  overflow: hidden;

  font-size: 13px;

  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;

  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: var(--text-white) fff;

  color: var(--text-dark) 000 !important;
}

.menu-box ul ul ul {
  left: 100%;

  top: 0;
}

/* .menuSec ul:before,

.menuSec ul:after {

    content: "";

    display: table;

} */

/* .menuSec ul:after {

    clear: both;

} */

.menuSec li > ul > li:hover > ul {
  left: 230px;

  top: 0px;

  width: 270px;
}

/*Header Css Ends */

/*Banner Sec Css Starts */

section.banner-sec {
  background-image: url("../images/banner.jpg");

  background-position: center;

  background-repeat: no-repeat;

  background-attachment: fixed;

  height: 160vh;

  width: 100%;

  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: center;

  overflow: hidden;
}

.banner_slider .draggable {
  padding: 0 300px !important;
}

.banner_slider .slick-slide {
  opacity: 1;
}

.banner_slider .slick-slide {
  height: 560px;

  margin: 0 10px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: end;

  transition: ease-in;

  transition-duration: 0.5s;
}

.banner_slider .slick-current {
  height: 560px;

  transition: ease-out;

  transition-duration: 0.5s;
}

.banner_slider .slick-slide .banner-img-main {
  height: 500px;

  transition: ease-in;

  transition-duration: 0.5s;
}

.banner_slider .slick-current .banner-img-main {
  height: 560px;

  transition: ease-out;

  transition-duration: 0.5s;
}

.banner_slider .slick-prev,
.banner_slider .slick-next {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 60px;

  width: 60px;

  z-index: 99;

  border-radius: 100px;

  overflow: hidden;

  background-color: var(--ct1);

  border: 2px solid var(--text-white);

  transition: ease-in;

  transition-duration: 0.5s;
}

.banner_slider .slick-prev:hover,
.banner_slider .slick-next:hover {
  background-color: var(--ct2);

  transition: ease-out;

  transition-duration: 0.5s;
}

.banner_slider .slick-prev {
  left: 18%;
}

.banner_slider .slick-next {
  right: 18%;
}

.banner_slider .slick-prev::before,
.banner_slider .slick-next::before {
  color: var(--text-white);
}

.banner-wrap {
  /*margin: 400px 0 0 0;*/

  margin-top: 100px;
}

.banner-txt-main {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  gap: 20px;

  margin: 0 0 30px 0;
}

.banner-txt {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  gap: 10px;
}

.banner-txt h4 {
  letter-spacing: 2px;
}

.banner-btn-main {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;
}

.banner-img-main {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  border-radius: 40px 40px 0 0;

  overflow: hidden;
}

.banner-img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;
}

.banner-img img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: cover;

  object-position: center;
}

/*Banner Sec Css Ends */

/*Inne Banner Sec Css Starts */

section.banner-sec.inn {
  height: 550px;

  object-fit: cover;
}

section.banner-sec.inn .banner-txt {
  margin-top: 50px;
}

section.banner-sec.inn .banner-wrap {
  margin: 300px 0 0 0;
}

/*Inne Banner Sec Css Ends */

/*Services Sec Css Starts */

.services-tabs-main {
  display: flex;

  /* flex-direction: column; */

  align-items: start;

  justify-content: start;

  gap: 40px;

  margin: 0 0 30px 0;
}

.services-tabs-main .nav {
  display: flex;

  flex-direction: row !important;

  flex-wrap: nowrap;

  align-items: start;

  justify-content: start;

  width: 85%;

  margin: 0 !important;

  gap: 10px;
}

.services-tabs-main .nav .nav-link {
  display: flex;

  align-items: center;

  justify-content: space-between;

  text-align: start;

  width: 100%;

  height: 50px;

  padding: 5px 10px;

  font-size: 15px;

  line-height: 1;

  font-family: "conduit-bold";

  text-transform: uppercase;

  color: var(--text-dark);

  border: 1px solid var(--text-dark);

  border-radius: 5px;

  overflow: hidden;

  transition: ease-in;

  transition-duration: 0.5s;
}

.services-tabs-main .nav .nav-link span {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 30px;

  width: 30px;

  font-family: "conduit-bold";

  font-size: 16px;

  line-height: 1;

  color: var(--text-white);

  background-color: var(--text-dark);

  border-radius: 100px;

  overflow: hidden;

  transition: ease-out;

  transition-duration: 0.5s;
}

.services-tabs-main .nav .nav-link.active {
  color: var(--text-white);

  background-color: var(--ct1);

  border: 1px solid #0000;

  transition: ease-in;

  transition-duration: 0.5s;
}

.services-tabs-main .nav .nav-link.active span {
  color: var(--text-dark);

  background-color: var(--ct2);

  transition: ease-out;

  transition-duration: 0.5s;
}

.services-tabs-btn-main {
  display: flex;

  align-items: center;

  justify-content: end;

  width: 15%;
}

.services-card-main {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 20px;

  border-radius: 20px;

  overflow: hidden;

  border: 1px solid #0000002b;
}

.services-card-img-mian {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 300px;

  width: 100%;
}

.services-card-img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;
}

.services-card-img img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: cover;
}

.services-card-txt-btn-mian {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: space-between;

  gap: 10px;

  padding: 0 20px 40px 20px;

  height: 200px;
}

.services-card-txt {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 10px;
}

.services-card-txt h5 {
  font-size: 25px;
  line-height: 1;
  font-family: "conduit-bold";
  text-transform: uppercase;
}

.services-card-txt ul,
.der-ser-txt ul {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 10px;

  list-style-type: disc;

  padding: 0 0 0 30px;

  margin: 0;
}

.services-card-txt ul li p {
  font-size: 11px;

  line-height: 15px;

  text-align: start;
}

.services-card-txt p {
  font-size: 12px;

  line-height: 20px;
}

.services-card-btn {
  width: 100%;
}

/*Services Sec Css Ends */

/*About Us Sec Css Starts */

.about-txt-main {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 10px;
}

.about-txt {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 10px;
}

.about-list {
  width: 100%;
}

.about-list ul {
  column-count: 2;

  width: 100%;
}

.about-list ul li {
  margin: 0 0 10px 0;
}

.about-list-txt {
  display: flex;

  align-items: center;

  justify-content: start;

  gap: 10px;
}

.about-list ul li .about-list-txt img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 20px;

  width: 20px;

  border-radius: 100px;

  overflow: hidden;

  background-color: var(--ct1);

  padding: 5px;

  object-fit: contain;
}

.about-list-txt h5 {
  text-transform: uppercase;

  font-family: "conduit-bold";

  font-size: 16px;

  line-height: 25px;
}

.about-img-main {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 590px;

  width: 100%;
}

.about-img-main::before {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  height: 50%;

  width: 25%;

  background-color: var(--ct2);

  border-radius: 10px;
}

.about-img-main::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  height: 50%;

  width: 25%;

  background-color: var(--ct1);

  border-radius: 10px;
}

.about-img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 535px;

  width: 100%;

  border-radius: 300px;

  overflow: hidden;

  border: 3px solid var(--text-white);

  position: relative;

  z-index: 99;
}

.about-img img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: cover;

  object-position: 0 0;
}

/*About Us Sec Css Ends */

/*Quote Sec Css Starts */

section.quote-sec {
  position: relative;

  background-image: url("../images/quote-bg.jpg");

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;
}

section.quote-sec::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  background-color: var(--ct1);

  opacity: 0.9;

  z-index: 0;
}

.quote-txt-main {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 10px;

  position: relative;

  z-index: 999;
}

.quote-txt {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 10px;
}

.quote-txt h2 {
  font-size: 92px;

  line-height: 100px;

  color: var(--text-white);
}

.quote-txt h5 {
  color: var(--text-white);

  font-size: 30px;

  line-height: 35px;

  text-transform: uppercase;

  letter-spacing: 2px;
}

/*Quote Sec Css Ends */

/*Gallery Sec Css Starts */

section.gallery-sec {
  position: relative;

  padding: 80px 0 0 0;
}

section.gallery-sec::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 30%;

  height: 100%;

  background-color: #e6efef;
}

.gallery_slider .slick-slide {
  margin: 0px 10px;
}

.gallery_slider .slick-active {
  opacity: 1;
}

.gallery_slider .slick-prev,
.gallery_slider .slick-next {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 60px;

  width: 60px;

  background-color: var(--ct1);

  border-radius: 5px;

  overflow: hidden;

  top: unset;

  bottom: -5%;

  z-index: 999;

  transition: ease-in;

  transition-duration: 0.5s;
}

.gallery_slider .slick-prev {
  left: 0;
}

.gallery_slider .slick-next {
  right: unset;

  left: 70px;
}

.gallery_slider .slick-prev:hover {
  background-color: var(--ct2);

  transition: ease-out;

  transition-duration: 0.5s;
}

.gallery_slider .slick-next:hover {
  background-color: var(--ct2);

  transition: ease-out;

  transition-duration: 0.5s;
}

.gallery_slider .draggable {
  padding: 0 0 150px 0;
}

.slick-prev:before {
  content: "\f104";

  font-family: "FontAwesome";

  color: var(--text-white);

  transition: ease-out;

  transition-duration: 0.5s;
}

.slick-next:before {
  content: "\f054";

  font-family: "FontAwesome";

  color: var(--text-white);

  transition: ease-out;

  transition-duration: 0.5s;
}

.slick-prev:hover:before {
  color: var(--text-dark);

  transition: ease-out;

  transition-duration: 0.5s;
}

.slick-next:hover:before {
  color: var(--text-dark);

  transition: ease-out;

  transition-duration: 0.5s;
}

.gallery-card {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 470px;

  width: 100%;

  border-radius: 20px;

  overflow: hidden;
}

.gallery-card a {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;
}

.gallery-card a img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: cover;
}

/*Gallery Sec Css Ends */

/*Book Sec Css Starts */

section.book-sec {
  background-color: #e6efef;
}

.book-txt-main {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: center;

  height: 100%;

  width: 75%;

  gap: 30px;

  margin: 0 auto 0 50px;
}

.book-input {
  position: relative;

  display: flex;

  align-items: start;

  justify-content: start;

  width: 100%;

  margin: 0 0 10px 0;

  z-index: 9;
}

.book-input input,
.book-input select {
  display: flex;

  align-items: center;

  justify-content: start;

  height: 50px;

  width: 100%;

  border-radius: 5px;

  font-size: 14px;

  line-height: 1;

  font-family: "Poppins";

  color: #000;

  padding: 0 20px;

  background-color: #0000;

  border: 1px solid #00000038;

  z-index: 9;
}

.book-input input::placeholder {
  font-size: 14px;

  line-height: 1;

  font-family: "Poppins";

  color: #5c5b5b;

  text-transform: capitalize;
}

.book-selec i,
.book-date i {
  position: absolute;

  top: 35%;

  right: 5%;
}

.book-selec select {
  cursor: pointer;
}

.book-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;
}

.book-btn button {
  width: 100%;

  border-radius: 5px;
}

/*Book Sec Css Ends */

/*Testimonial Sec Css Starts */

.testimonial-card-main {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  margin: 0 0 50px 0;

  transition: ease-in;

  transition-duration: 0.5s;
}

.testimonial-card-main:hover {
  transition: ease-out;

  transition-duration: 0.5s;
}

.testimonial-card-txt {
  position: relative;

  padding: 50px 40px;

  border-radius: 30px;

  overflow: hidden;

  border: 1px solid #00000045;

  transition: ease-in;

  transition-duration: 0.5s;
}

.testimonial-card-main:hover .testimonial-card-txt {
  border-radius: 300px;

  border: 1px solid #0000;

  background-color: var(--ct1);

  transition: ease-out;

  transition-duration: 0.5s;
}

.testimonial-card-txt p {
  color: #000;

  transition: ease-in;

  transition-duration: 0.5s;
}

.testimonial-card-main:hover .testimonial-card-txt p {
  color: #fff;

  transition: ease-in;

  transition-duration: 0.5s;
}

.testimonial-card-txt img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 120px;

  width: 120px;

  object-fit: contain;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);
}

.testimonial_slider .slick-active,
.testimonial_slider .slick-slide {
  opacity: 1;
}

.testimonial_slider .slick-slide {
  margin: 0px 10px;
}

.testimonial-card-user-main {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 10px;

  text-align: center;

  width: 100%;

  margin: -40px 0 0 0;

  z-index: 9;
}

.testimonial-card-user-img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 80px;

  width: 80px;

  border-radius: 100px;

  overflow: hidden;

  border: 2px solid #fff;
}

.testimonial-card-user-txt h5 {
  font-size: 24px;

  line-height: 1;

  font-family: "conduit-bold";
}

.testimonial-card-user-txt h6 {
  color: var(--ct1);

  font-family: "conduit-bold";
}

.testimonial-heading {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  margin: 0 0 20px 0;
}

/*Testimonial Sec Css Ends */

/* Footer Css Starts */

footer.footer-sec {
  position: relative;

  background-image: url(../images/footer-bg.jpg);

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  padding: 80px 0 0 0;

  color: var(--text-white);

  background-attachment: fixed;
}

footer.footer-sec::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  background-color: #255d52e6;
}

.footer-logo-content {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 20px;
}

.footer-logo-content p {
  color: #fff;

  font-size: 16px;

  line-height: 26px;
}

.footer-links {
  margin-left: 30%;
}

.footer-contact ul li span {
  color: #fff;

  font-family: "Poppins";

  font-size: 14px;
}

.footer-logo {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 210px;

  width: 150px;

  border-radius: 10px;

  overflow: hidden;
}

.footer-logo a {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;
}

.footer-logo img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: contain;
}

.footer-links h3,
.footer-contact h3,
.footer-socials h3 {
  font-size: 22px;

  line-height: 1;

  color: var(--text-white);

  margin-bottom: 20px;

  font-family: "conduit-bold";

  padding-top: 10px;

  text-transform: uppercase;
}

.footer-links ul li {
  margin-bottom: 5px;
}

.ft-bot {
  border-top: 1px solid rgb(255 255 255 / 59%);

  margin-top: 10px;
}

.footer-links ul li a {
  color: #fff;

  font-size: 16px;

  text-transform: uppercase;

  transition: 0.3s;

  font-family: "Poppins";

  font-weight: 300;
}

.footer-links ul li a:hover {
  color: var(--ct2);
}

.footer-contact ul li {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 20px;

  color: #b0c4d6;

  font-size: 14px;

  font-family: "conduit-regular";
}

.footer-contact ul li i {
  color: var(--text-white);

  font-size: 16px;

  margin-top: 4px;
}

.footer-contact ul li a {
  color: #b0c4d6;

  font-family: "conduit-regular";

  font-family: "Poppins";

  color: #fff;
}

.footer-socials ul {
  display: flex;

  gap: 10px;
}

.footer-socials ul li a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 40px;

  height: 40px;

  border: 1px solid var(--text-white);

  border-radius: 50%;

  color: var(--text-white);

  transition: 0.3s;
}

.footer-socials ul li a:hover {
  background-color: var(--ct2);

  color: var(--ct1);
}

.footer-copyright {
  margin-top: 0px;

  padding: 30px 0;

  text-align: center;
}

.footer-copyright p {
  color: var(--text-white);

  font-size: 16px;

  text-transform: uppercase;

  text-align: center;

  font-family: "Poppins";
}

footer.footer-sec .container,
footer.footer-sec .ft-bot {
  position: relative;

  z-index: 9999;
}

/* Footer Css Ends */

/* About Us Page Css Starts */

.about-txt-main.bot {
  margin-top: 30px;
}

/* About Us Page Css Ends */

/* Contact Us Page Css Starts */

section.contact-pg {
  padding: 100px 0px;
}

.cont-bx {
  min-height: 100%;

  padding: 60px 20px;

  background-color: var(--ct1);

  border-radius: 10px;
}

.cont-bx h3 {
  font-size: 26px;

  line-height: 23px;

  margin-bottom: 16px;

  color: #fff;

  font-weight: 400;

  padding-bottom: 15px;

  border-bottom: 1px solid #fff;

  width: 75%;
}

.cont-bx a {
  color: #fff;
}

.cont-bx a span {
  display: block;
}

.cont-bot-txt {
  text-align: center;
}

.cont-bot-txt h3 {
  font-size: 56px;

  line-height: 63px;

  margin-bottom: 10px;
}

.cont-bot-txt p {
  font-size: 15px;

  width: 70%;

  margin: 0 auto;

  margin-bottom: 40px;

  text-align: center;
}

.cont-bot-txt form input {
  width: 100%;

  padding: 15px;

  margin-bottom: 30px;

  background-color: transparent;

  border: 1px solid #c5c5c5;

  color: #000;
}

.cont-bot-txt form textarea {
  width: 100%;

  padding: 15px;

  margin-bottom: 30px;

  background-color: transparent;

  border: 1px solid #c5c5c5;

  color: #000;

  height: 150px;

  resize: none;
}

.cont-bot-txt form button {
  border: none;

  color: var(--text-white);

  border: none;

  padding: 15px 30px;

  border-radius: 100px;

  cursor: pointer;

  transition: background-color 0.3s;

  white-space: nowrap;

  /* margin-top: 20px; */

  font-family: "Poppins";

  font-size: 15px;

  text-transform: uppercase;

  background-color: var(--ct1);

  transition: ease-in;

  transition-duration: 0.5s;
}

.cont-bot-txt form button:hover {
  background-color: var(--ct2);

  color: var(--text-dark);

  transition: ease-out;

  transition-duration: 0.5s;
}

.contact_map {
  padding: 0px 2% 100px;
}

.contact_map iframe {
  width: 100%;

  height: 475px;
}

/* Contact Us Page Css Ends */

/* Gallery Page Css Starts */

section.gallery-sec.inn::before {
  display: none;
}

section.gallery-sec.inn {
  padding: 80px 0px;
}

section.gallery-sec.inn .heading0-txt {
  width: 100%;

  text-align: center;

  display: unset;
}

/* Gallery Page Css Ends */

/* Service Page Css Starts */

section.services-page .services-tabs-main .nav {
  width: 100%;
}

/* Service Page Css Ends */

/* Service Detail Page Css Starts */

.det-ser-img img {
  height: 560px;

  width: 100%;

  object-fit: cover;

  border-radius: 20px;
}

section.det-service {
  padding: 100px 0px;
}

.der-ser-txt {
  margin-top: 30px;

  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: start;

  gap: 20px;
}

section.services-sec.sec.inn .services-heading-txt.heading0-txt {
  width: 100%;

  text-align: center;

  display: block;
}

section.services-sec.sec.inn .services-heading-txt.heading0-txt p {
  text-align: center;

  width: 65%;

  margin: 0 auto;
}

/* Service Detail Page Css Ends */

/* Quote Start */

.btn-theme.snd {
  padding: 2%;
}

section.quote {
}

.quote-head h4 {
  font-size: 50px;

  line-height: normal;

  font-weight: 700;

  margin: 0 0 30px;

  color: #000;
}

.quote-input {
  position: relative;
}

.quote-input::before {
}

.quote-input.selectbox:before {
  content: "";

  position: absolute;

  width: 10px;

  height: 45px;

  top: 5px;

  left: unset !important;

  background: url(../images/contact-input-bef.png) no-repeat;

  right: 60px;

  transform: rotateY(156deg);
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

.quote-input input {
  width: 100%;

  height: 55px;

  border: 1px solid #7e7e7e6b;

  margin-bottom: 20px;

  padding: 0 20px;

  background: transparent;

  font-size: 14px;

  font-weight: 400;

  color: #000;

  font-family: "Montserrat";

  border-radius: 7px;

  outline: none;
}

.quote-input textarea {
  width: 100%;

  height: 150px;

  border: 1px solid #7e7e7e6b;

  margin-bottom: 20px;

  padding: 12px 20px 12px 21px;

  font-size: 14px;

  font-weight: 400;

  color: #3d3d3d;

  resize: none;

  background: transparent;

  border-radius: 11px;
}

.quote-input input::placeholder,
.quote-input textarea::placeholder {
  color: #7e7e7e;
}

.quote-input i {
  position: absolute;

  top: 15px;

  left: 18px;

  color: #42603e;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;
}

.send-btn {
  background-color: var(--golden);

  padding: 15px 42px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: #fff;

  text-transform: capitalize;

  font-weight: 500;

  font-size: 16px;

  background: #0288d1;

  font-family: "Montserrat";

  border: none;
}

button.send-btn:hover {
  background: transparent;

  color: var(--golden);

  border: 1px solid var(--golden);

  transition: 0.5s all ease-in-out;
}

.quote-info-item {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 34px 30px;

  border: 1px solid #c1c1c1;

  margin: 15px 0;

  transition: 0.8s all ease-in-out;

  background: #42603e;

  border-radius: 6px;
}

.quote-info-icon {
  width: 55px;

  height: 55px;

  border: 1px solid var(--golden);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  transition: 0.8s all ease-in-out;
}

.quote-info-icon i {
  font-size: 28px;

  transition: 0.8s all ease-in-out;

  border: 1px solid;

  border-radius: 50%;

  height: 55px;

  width: 55px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #fff;

  box-shadow: 0px 0px 20px 0px #8d88883b;

  color: #42603e;
}

.quote-info-item:hover i {
  transform: rotate(360deg);

  transition: 0.8s all ease-in-out;
}

.quote-info-item-details h5 {
  margin: 0;

  font-size: 24px;

  text-transform: capitalize;

  color: #fff;

  letter-spacing: 1px;

  line-height: 35px;
}

.quote-info-item-details a,
.quote-info-item-details p {
  font-size: 16px;

  color: #fff;

  line-height: 30px;

  font-family: "Montserrat";
}

.quote-input.selectbox select {
  width: 100%;

  height: 55px;

  border: 1px solid #7e7e7e6b;

  margin-bottom: 20px;

  padding: 0 80px 0 20px;

  background: transparent;

  font-size: 14px;

  font-weight: 400;

  color: #000;

  font-family: "Montserrat";

  border-radius: 7px;

  z-index: 1;

  position: relative;

  cursor: pointer;
}

section.quote .rates button.theme1 {
  border: 0px;
}

section.quote .get-in-touch.quote-head {
  padding-right: 30px;
}

.quote-input.selectbox i.fa-solid.fa-sort-down {
  position: absolute;

  right: 20px;

  left: unset !important;

  top: 20%;

  color: #000;

  opacity: 40%;

  cursor: pointer;
}

.quote-input.textaryea:before {
  display: none;
}

.quote-input.textaryea textarea::placeholder {
  position: absolute;

  bottom: 20px;
}

section.quote .formWraper {
  width: 88%;

  margin: 0px auto;
}

section.quote .heading {
  margin-bottom: 50px;
}

section.quote .heading p {
  font-weight: 500;

  opacity: 100%;

  line-height: 26px;

  width: 60%;

  margin: 0px auto;
}

section.quote-map {
  position: relative;

  overflow: hidden;
}

section.quote-map iframe {
  width: 100%;

  margin-bottom: -7px;
}

section.quote.sec.withMap {
  padding: 60px 0px 80px;
}

/* Quote Ends */

/* Quote Modal Css Starts */

.quote-modal {
  background: #173b34;

  color: #e5e7eb;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.quote-footer {
  background: rgba(255, 255, 255, 0.035);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-label {
  color: #fff;

  margin: 0 0 10px 0;

  font-size: 15px;

  line-height: 1;

  text-transform: capitalize;
}

.muted {
  color: rgb(229 231 235 / 75%);

  font-size: 13px;
}

.req {
  color: var(--ct2);

  font-weight: 600;
}

.step-title {
  color: #fff;

  font-weight: 700;

  font-size: 24px;

  line-height: 34px;

  margin: 18px 0 14px;

  letter-spacing: 0.3px;
}

.step-note {
  color: #fff;

  font-size: 13px;

  line-height: 1.2;

  margin: 14px 0 0;
}

.q-control {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #e5e7eb;

  resize: none;

  border-radius: 5px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;

  padding: 0 10px;

  height: 40px;
}

.q-control:hover {
  border-color: rgba(12, 197, 219, 0.35);

  background: rgba(255, 255, 255, 0.04);
}

.q-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 197, 219, 0.18);

  border-color: rgba(12, 197, 219, 0.65);

  background: rgba(255, 255, 255, 0.05);

  color: #fff;
}

.quote-modal select.q-control,
.quote-modal .form-select.q-control {
  cursor: pointer;

  color: #e5e7eb !important;

  background-color: rgba(255, 255, 255, 0.03) !important;

  border-color: rgba(255, 255, 255, 0.1) !important;
}

.quote-modal select.q-control option,
.quote-modal .form-select.q-control option {
  background: var(--ct1);

  color: #e5e7eb;
}

.quote-modal select.q-control option[value=""],
.quote-modal .form-select.q-control option[value=""] {
  color: rgba(229, 231, 235, 0.65);
}

.quote-modal .form-select.is-invalid,
.quote-modal .form-control.is-invalid {
  background-image: none !important;

  padding-right: 0.75rem !important;
}

.quote-modal .q-control.is-invalid {
  border-color: #dc3545 !important;

  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.quote-stepper {
  margin-bottom: 0;
}

.quote-stepper-track {
  position: relative;

  height: 3px;

  background: var(--ct1);

  border-radius: 999px;

  overflow: hidden;
}

.quote-stepper-progress {
  position: absolute;

  inset: 0 auto 0 0;

  width: 0%;

  background: var(--ct2);

  border-radius: 999px;

  transition: width 0.25s ease;
}

.quote-steps {
  display: flex;

  align-items: center;

  justify-content: space-evenly;

  gap: 10px;

  overflow: hidden;

  padding: 20px 20px;
}

.quote-step {
  min-width: 0;

  flex: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  user-select: none;

  opacity: 0.55;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.quote-step:hover {
  opacity: 0.9;

  transform: translateY(-1px);
}

.quote-step .label {
  display: none;

  font-size: 12px;

  white-space: nowrap;

  color: rgba(229, 231, 235, 0.9);
}

.quote-step .dot {
  width: 28px;

  height: 28px;

  border-radius: 999px;

  border: 2px solid rgba(255, 255, 255, 0.18);

  display: grid;

  place-items: center;

  background: rgba(255, 255, 255, 0.02);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.quote-step .num {
  font-size: 12px;

  color: var(--ct2);

  font-weight: 600;
}

.quote-step.completed .dot span.num {
  color: var(--ct1);
}

.quote-step.active {
  opacity: 1;

  cursor: pointer;
}

.quote-step.active .label {
  display: inline;
}

.quote-step.active .dot {
  border-color: var(--ct2);

  box-shadow: 0 0 20px 0 #fae1c21f;

  transform: scale(1.04);
}

.quote-step.completed {
  opacity: 1;

  cursor: pointer;
}

.quote-step.completed .dot {
  background: var(--ct2);

  border-color: var(--ct1);
}

.step-pane {
  display: none;

  animation: fadeIn 0.18s ease;
}

.step-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;

    transform: translateY(4px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.q-card {
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.02);

  border-radius: 12px;

  padding: 14px;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.q-card:hover {
  border-color: rgba(12, 197, 219, 0.22);

  background: rgba(255, 255, 255, 0.03);

  transform: translateY(-1px);

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.q-card-title {
  color: #fff;

  font-weight: 700;

  margin-bottom: 10px;

  letter-spacing: 0.2px;
}

.q-hr {
  border-color: rgba(255, 255, 255, 0.12);

  opacity: 1;
}

.q-check,
.q-radio {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 9px 10px;

  border-radius: 10px;

  cursor: pointer;

  width: 100%;

  color: rgba(229, 231, 235, 0.92);

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.q-check:hover,
.q-radio:hover {
  background: rgba(255, 255, 255, 0.03);

  transform: translateY(-1px);
}

.q-check input,
.q-radio input {
  accent-color: var(--ct1);
}

.q-check-lg {
  padding: 12px 12px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.02);

  margin: 10px 0 0 0;
}

.q-radio-row {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}

.q-radio-row .q-radio {
  width: auto;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.02);
}

.q-dropzone {
  border: 1px dashed rgba(255, 255, 255, 0.18);

  background: rgba(255, 255, 255, 0.02);

  border-radius: 14px;

  padding: 16px;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.q-dropzone:hover {
  border-color: rgba(12, 197, 219, 0.5);

  background: rgba(255, 255, 255, 0.03);

  transform: translateY(-1px);
}

.q-dropzone.dragover {
  border-color: rgba(12, 197, 219, 0.9);

  background: rgba(12, 197, 219, 0.08);

  box-shadow: 0 0 0 4px rgba(12, 197, 219, 0.12);

  transform: translateY(-1px);
}

.q-dropzone-inner {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 18px;

  border-radius: 12px;

  background: var(--ct1);

  transition: background 0.2s ease;
}

.q-dropzone:hover .q-dropzone-inner {
  background: rgba(255, 255, 255, 0.03);
}

.q-drop-icon {
  width: 46px;

  height: 46px;

  border-radius: 12px;

  display: grid;

  place-items: center;

  background: rgba(12, 197, 219, 0.12);

  border: 1px solid rgba(12, 197, 219, 0.25);

  font-size: 20px;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.q-dropzone:hover .q-drop-icon {
  transform: scale(1.05);

  background: rgba(12, 197, 219, 0.16);

  border-color: rgba(12, 197, 219, 0.35);
}

.q-drop-title {
  font-weight: 700;

  color: #fff;

  margin-bottom: 2px;
}

.q-drop-sub {
  color: rgba(229, 231, 235, 0.75);

  font-size: 13px;
}

.q-browse-btn {
  background: none;

  border: none;

  padding: 0;

  color: var(--text-white);

  font-weight: 700;

  text-decoration: underline;

  cursor: pointer;

  transition: opacity 0.15s ease;
}

.q-browse-btn:hover {
  opacity: 0.85;
}

.q-drop-hint {
  margin-top: 10px;

  color: rgba(229, 231, 235, 0.6);

  font-size: 12px;
}

.q-file-list {
  margin-top: 12px;

  display: flex;

  flex-direction: column;

  gap: 8px;
}

.q-file-item {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  padding: 10px 12px;

  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.02);

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.q-file-item:hover {
  background: rgba(255, 255, 255, 0.03);

  border-color: rgba(12, 197, 219, 0.18);

  transform: translateY(-1px);
}

.q-file-left {
  display: flex;

  align-items: center;

  gap: 10px;

  min-width: 0;
}

.q-file-badge {
  width: 34px;

  height: 34px;

  border-radius: 10px;

  display: grid;

  place-items: center;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #fff;

  font-size: 12px;
}

.q-file-name {
  color: rgba(229, 231, 235, 0.92);

  font-size: 13px;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  max-width: 360px;
}

.q-file-size {
  color: rgba(229, 231, 235, 0.55);

  font-size: 12px;
}

.q-file-remove {
  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.03);

  color: rgba(229, 231, 235, 0.85);

  border-radius: 10px;

  padding: 6px 10px;

  font-size: 12px;

  cursor: pointer;

  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.q-file-remove:hover {
  border-color: rgba(220, 53, 69, 0.6);

  color: #fff;

  background: rgba(220, 53, 69, 0.18);

  transform: translateY(-1px);
}

.form-control:disabled,
.form-control:read-only {
  background-color: transparent !important;

  opacity: 0.8;
}

/* @media (max-width: 576px) {
  .quote-steps {
    gap: 6px;
  }

  .quote-step .dot {
    width: 26px;

    height: 26px;
  }

  .q-dropzone-inner {
    align-items: flex-start;
  }

  .q-file-name {
    max-width: 220px;
  }

  .step-title {
    font-size: 21px;

    line-height: 30px;
  }
} */

.q-card textarea {
  height: 250px;

  padding: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;

  display: block;

  filter: invert(1);
}

/* Quote Modal Css Ends */

/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec {
    padding: 50px 0;
  }

  .heading0-txt {
    width: 100%;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 50px;
    line-height: 55px;
  }

  h2 {
    font-size: 45px;
    line-height: 50px;
  }

  h3 {
    font-size: 30px;
    line-height: 35px;
  }

  h4 {
    font-size: 35px;
    line-height: 40px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 25px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  header {
    position: relative;
    width: 95%;
    border-radius: 0 0 10px 10px;
  }

  .menuSec {
    padding: 20px 10px;
  }

  .menu-box ul li a {
    height: 40px;
    padding: 0 15px;
  }

  .header-logo {
    height: 170px;
    width: 120px;
    margin: 0 auto;
  }

  section.banner-sec {
    height: 700px;
    justify-content: end;
  }

  .banner_slider .draggable {
    padding: 0 150px !important;
  }

  .banner-wrap {
    margin-top: 0;
  }

  .banner-txt-main {
    width: 90%;
    margin: 0 auto;
  }

  .banner-txt h4 {
    letter-spacing: 0;
  }

  .banner-img-main {
    border-radius: 20px 20px 0 0;
  }

  .banner_slider .slick-slide .banner-img-main {
    height: 350px;
  }

  .banner_slider .slick-slide {
    height: 450px;
  }

  .banner_slider .slick-current .banner-img-main {
    height: 400px;
  }

  .banner_slider .slick-current {
    height: 450px;
  }

  .banner_slider .slick-prev,
  .banner_slider .slick-next {
    height: 50px;
    width: 50px;
  }

  .banner_slider .slick-prev {
    left: 13%;
  }

  .banner_slider .slick-next {
    right: 13%;
  }

  .services-tabs-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
  }

  .services-tabs-main .nav {
    width: 100%;
    flex-direction: column !important;
    gap: 20px;
  }

  .services-tabs-main .nav .nav-link {
    font-size: 20px;
    line-height: 25px;
    height: 50px;
    padding: 0 15px;
  }

  .services-tabs-btn-main {
    width: 100%;
    justify-content: start;
  }

  .services-card-main {
    gap: 10px;
    margin: 0 0 30px 0;
    border-radius: 5px;
  }

  .services-card-img-mian {
    height: 300px;
  }

  .services-card-txt-btn-mian {
    padding: 0 10px 20px 10px;
    height: 100%;
  }

  .about-img-main {
    height: 500px;
  }

  .about-img {
    height: 400px;
    border-radius: 300px;
  }

  .about-img-main::before {
    width: 45%;
  }

  .about-img-main::after {
    width: 45%;
  }

  .about-txt-main {
    margin: 30px 0 0 0;
  }

  .about-list ul {
    column-count: 1;
  }

  .quote-txt {
    text-align: center;
  }

  .quote-txt h2 {
    font-size: 60px;
    line-height: 65px;
  }

  .quote-txt h5 {
    font-size: 30px;
    line-height: 35px;
  }

  section.gallery-sec {
    padding: 40px 0 0 0;
  }

  section.gallery-sec::before {
    width: 90%;
  }

  .gallery-card {
    height: 400px;
    border-radius: 10px;
  }

  .gallery_slider .slick-prev,
  .gallery_slider .slick-next {
    height: 40px;
    width: 40px;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 15px;
  }

  .gallery_slider .draggable {
    padding: 0 0 90px 0;
  }

  .gallery_slider .slick-next {
    left: 50px;
  }

  .book-txt-main {
    width: 80%;
    margin: 20px auto 0 auto;
    gap: 10px;
  }

  .book-input input,
  .book-input select {
    height: 40px;
    padding: 0 10px;
  }

  .book-selec i,
  .book-date i {
    right: 3%;
  }

  .book-form-main {
    padding: 20px 0 50px 0;
  }

  .testimonial-card-txt {
    padding: 10px 20px 50px 20px;
    border-radius: 5px;
  }

  .testimonial-card-main:hover .testimonial-card-txt {
    border-radius: 20px;
  }

  .testimonial-card-user-img {
    height: 60px;
    width: 60px;
  }

  .testimonial-card-user-txt h5 {
    font-size: 20px;
  }

  .testimonial-card-main {
    margin: 0;
  }

  footer.footer-sec {
    padding: 40px 0 0 0;
  }

  .footer-logo {
    height: 180px;
    width: 150px;
  }

  .footer-logo-content {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 0 0 20px 0;
  }

  .footer-logo-content p {
    font-size: 14px;
    line-height: 25px;
    width: 100%;
  }

  .footer-links,
  .footer-contact,
  .footer-socials {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-socials h3 {
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-links ul li {
    margin: 0;
  }

  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-contact ul li {
    margin: 0;
  }

  .footer-copyright {
    padding: 10px 0;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.banner-sec.inn {
    height: 300px;
    justify-content: center;
  }

  section.banner-sec.inn .banner-txt {
    margin-top: 0;
  }

  section.banner-sec.inn .banner-wrap {
    margin: 0;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.det-service {
    padding: 40px 0;
  }

  .det-ser-img img {
    height: 400px;
    border-radius: 5px;
  }

  .der-ser-txt {
    margin: 20px 0 0 0;
    gap: 10px;
  }

  .der-ser-txt h2 {
    font-size: 35px;
    line-height: 40px;
  }

  /* About Us Page Css Ends */

  /* Contact Us Page Css Starts */

  section.contact-pg {
    padding: 40px 0px;
  }

  .cont-bx {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .cont-bx h3 {
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    text-transform: uppercase;
  }

  .cont-bx a {
    font-size: 16px;
    line-height: 25px;
  }

  .cont-bot-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .cont-bot-txt h3 {
    font-size: 40px;
    line-height: 45px;
    width: 100%;
    margin: 0;
  }

  .cont-bot-txt p {
    font-size: 12px;
    line-height: 25px;
    width: 100%;
    margin: 0 0 20px 0;
  }

  /* Contact Us Page Css Ends */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec {
    padding: 50px 0;
  }

  .heading0-txt {
    width: 100%;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 45px;
    line-height: 50px;
  }

  h3 {
    font-size: 30px;
    line-height: 35px;
  }

  h4 {
    font-size: 35px;
    line-height: 40px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 25px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  .theme1 {
    height: 40px;
    padding: 0 15px;
  }

  .theme1 span.theme1-txt {
    font-size: 14px;
  }

  .theme2 {
    height: 40px;
    padding: 0 15px;
  }

  .theme2 span.theme2-txt {
    font-size: 14px;
  }

  .theme3 {
    height: 50px;
    width: 50px;
    padding: 5px;
  }

  /* Buttons css Ends */

  /* Home css Starts */

  header {
    position: relative;
    width: 95%;
    border-radius: 0 0 10px 10px;
  }

  .menuSec {
    padding: 20px 10px;
  }

  .menu-box ul li a {
    height: 30px;
    padding: 0 3px;
    font-size: 13px;
  }

  .header-logo {
    height: 170px;
    width: 120px;
    margin: 0 auto;
  }

  section.banner-sec {
    height: 700px;
    justify-content: end;
  }

  .banner_slider .draggable {
    padding: 0 100px !important;
  }

  .banner-wrap {
    margin-top: 0;
  }

  .banner-txt-main {
    width: 90%;
    margin: 0 auto;
  }

  .banner-txt h4 {
    letter-spacing: 0;
  }

  .banner-img-main {
    border-radius: 20px 20px 0 0;
  }

  .banner_slider .slick-slide .banner-img-main {
    height: 350px;
  }

  .banner_slider .slick-slide {
    height: 450px;
  }

  .banner_slider .slick-current .banner-img-main {
    height: 400px;
  }

  .banner_slider .slick-current {
    height: 450px;
  }

  .banner_slider .slick-prev,
  .banner_slider .slick-next {
    height: 40px;
    width: 40px;
  }

  .banner_slider .slick-prev {
    left: 5%;
  }

  .banner_slider .slick-next {
    right: 5%;
  }

  .services-tabs-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
  }

  .services-tabs-main .nav {
    width: 100%;
    flex-direction: column !important;
    gap: 20px;
  }

  .services-tabs-main .nav .nav-link {
    font-size: 20px;
    line-height: 25px;
    height: 50px;
    padding: 0 15px;
  }

  .services-tabs-btn-main {
    width: 100%;
    justify-content: start;
  }

  .services-card-main {
    gap: 10px;
    margin: 0 0 30px 0;
    border-radius: 5px;
  }

  .services-card-img-mian {
    height: 300px;
  }

  .services-card-txt-btn-mian {
    padding: 0 10px 20px 10px;
    height: 100%;
  }

  .about-img-main {
    height: 500px;
  }

  .about-img {
    height: 400px;
    border-radius: 20px;
  }

  .about-img-main::before {
    width: 45%;
  }

  .about-img-main::after {
    width: 45%;
  }

  .about-txt-main {
    margin: 30px 0 0 0;
  }

  .about-list ul {
    column-count: 1;
  }

  .quote-txt {
    text-align: center;
  }

  .quote-txt h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .quote-txt h5 {
    font-size: 25px;
    line-height: 30px;
  }

  section.gallery-sec {
    padding: 40px 0 0 0;
  }

  section.gallery-sec::before {
    width: 90%;
  }

  .gallery-card {
    height: 400px;
    border-radius: 10px;
  }

  .gallery_slider .slick-prev,
  .gallery_slider .slick-next {
    height: 40px;
    width: 40px;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 15px;
  }

  .gallery_slider .draggable {
    padding: 0 0 90px 0;
  }

  .gallery_slider .slick-next {
    left: 50px;
  }

  .book-txt-main {
    width: 80%;
    margin: 20px auto 0 auto;
    gap: 10px;
  }

  .book-input input,
  .book-input select {
    height: 40px;
    padding: 0 10px;
  }

  .book-selec i,
  .book-date i {
    right: 3%;
  }

  .book-form-main {
    padding: 20px 0 50px 0;
  }

  .testimonial-card-txt {
    padding: 10px 20px 50px 20px;
    border-radius: 5px;
  }

  .testimonial-card-main:hover .testimonial-card-txt {
    border-radius: 20px;
  }

  .testimonial-card-user-img {
    height: 60px;
    width: 60px;
  }

  .testimonial-card-user-txt h5 {
    font-size: 20px;
  }

  .testimonial-card-main {
    margin: 0;
  }

  footer.footer-sec {
    padding: 40px 0 0 0;
  }

  .footer-logo {
    height: 150px;
    width: 20%;
  }

  .footer-logo-content {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
  }

  .footer-logo-content p {
    font-size: 14px;
    line-height: 25px;
    width: 100%;
  }

  .footer-links,
  .footer-contact,
  .footer-socials {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-socials h3 {
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-links ul li {
    margin: 0;
  }

  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-contact ul li {
    margin: 0;
  }

  .footer-copyright {
    padding: 10px 0;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.banner-sec.inn {
    height: 200px;
    justify-content: center;
  }

  section.banner-sec.inn .banner-txt {
    margin-top: 0;
  }

  section.banner-sec.inn .banner-wrap {
    margin: 0;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.det-service {
    padding: 40px 0;
  }

  .det-ser-img img {
    height: 400px;
    border-radius: 5px;
  }

  .der-ser-txt {
    margin: 20px 0 0 0;
    gap: 10px;
  }

  .der-ser-txt h2 {
    font-size: 25px;
    line-height: 30px;
  }

  /* About Us Page Css Ends */

  /* Contact Us Page Css Starts */

  section.contact-pg {
    padding: 40px 0px;
  }

  .cont-bx {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    min-height: auto;
    margin: 0 0 20px 0;
  }

  .cont-bx h3 {
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    text-transform: uppercase;
  }

  .cont-bx a {
    font-size: 16px;
    line-height: 25px;
  }

  .cont-bot-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .cont-bot-txt h3 {
    font-size: 40px;
    line-height: 45px;
    width: 100%;
    margin: 0;
  }

  .cont-bot-txt p {
    font-size: 12px;
    line-height: 25px;
    width: 100%;
    margin: 0 0 20px 0;
  }

  /* Contact Us Page Css Ends */
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  .sec {
    padding: 40px 0;
  }

  .heading0 {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 0 0 20px 0;
  }

  .heading0-txt {
    width: 100%;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 35px;
    line-height: 40px;
  }

  h3 {
    font-size: 30px;
    line-height: 35px;
  }

  h4 {
    font-size: 25px;
    line-height: 30px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 14px;
    line-height: 25px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  .theme1 {
    height: 40px;
    padding: 0 15px;
  }

  .theme1 span.theme1-txt {
    font-size: 14px;
  }

  .theme2 {
    height: 40px;
    padding: 0 15px;
  }

  .theme2 span.theme2-txt {
    font-size: 14px;
  }

  .theme3 {
    height: 50px;
    width: 50px;
    padding: 5px;
  }

  /* Buttons css Ends */

  /* Home css Starts */

  header {
    position: relative;
    width: 95%;
    border-radius: 0 0 10px 10px;
  }

  .menuSec {
    padding: 30px 10px;
  }

  .header-logo {
    height: 150px;
    width: 110px;
    margin: 0 auto;
  }

  section.banner-sec {
    height: 650px;
    justify-content: end;
  }

  .banner_slider .draggable {
    padding: 0 !important;
  }

  .banner-wrap {
    margin-top: 0;
  }

  .banner-txt h4 {
    letter-spacing: 0;
  }

  .banner-img-main {
    border-radius: 20px 20px 0 0;
  }

  .banner_slider .slick-slide .banner-img-main {
    height: 300px;
  }

  .banner_slider .slick-slide {
    height: 300px;
  }

  .banner_slider .slick-current .banner-img-main {
    height: 350px;
  }

  .banner_slider .slick-current {
    height: 350px;
  }

  .banner_slider .slick-prev,
  .banner_slider .slick-next {
    height: 40px;
    width: 40px;
  }

  .banner_slider .slick-prev {
    left: 5%;
  }

  .banner_slider .slick-next {
    right: 5%;
  }

  .services-tabs-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
  }

  .services-tabs-main .nav {
    width: 100%;
    flex-direction: column !important;
    gap: 20px;
  }

  .services-tabs-main .nav .nav-link {
    font-size: 20px;
    line-height: 25px;
    height: 100px;
    padding: 0 15px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
    display: flex;
  }

  .services-tabs-btn-main {
    width: 100%;
    justify-content: start;
  }

  .services-card-main {
    gap: 10px;
    margin: 0 0 30px 0;
    border-radius: 5px;
  }

  .services-card-img-mian {
    height: 300px;
  }

  .services-card-txt-btn-mian {
    padding: 0 10px 20px 10px;
    height: 100%;
  }

  .about-img-main {
    height: 500px;
  }

  .about-img {
    height: 400px;
    border-radius: 20px;
  }

  .about-img-main::before {
    width: 45%;
  }

  .about-img-main::after {
    width: 45%;
  }

  .about-txt-main {
    margin: 30px 0 0 0;
  }

  .about-list ul {
    column-count: 1;
  }

  .quote-txt {
    text-align: center;
  }

  .quote-txt h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .quote-txt h5 {
    font-size: 25px;
    line-height: 30px;
  }

  section.gallery-sec {
    padding: 40px 0 0 0;
  }

  section.gallery-sec::before {
    width: 90%;
  }

  .gallery-card {
    height: 400px;
    border-radius: 10px;
  }

  .gallery_slider .slick-prev,
  .gallery_slider .slick-next {
    height: 40px;
    width: 40px;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 15px;
  }

  .gallery_slider .draggable {
    padding: 0 0 90px 0;
  }

  .gallery_slider .slick-next {
    left: 50px;
  }

  .book-txt-main {
    width: 80%;
    margin: 20px auto 0 auto;
    gap: 10px;
  }

  .book-input input,
  .book-input select {
    height: 40px;
    padding: 0 10px;
  }

  .book-selec i,
  .book-date i {
    right: 3%;
  }

  .testimonial-card-txt {
    padding: 10px 20px 50px 20px;
    border-radius: 5px;
  }

  .testimonial-card-main:hover .testimonial-card-txt {
    border-radius: 20px;
  }

  .testimonial-card-user-img {
    height: 60px;
    width: 60px;
  }

  .testimonial-card-user-txt h5 {
    font-size: 20px;
  }

  .testimonial-card-main {
    margin: 0;
  }

  footer.footer-sec {
    padding: 40px 0 0 0;
  }

  .footer-logo {
    height: 150px;
    width: 110px;
  }

  .footer-logo-content p {
    font-size: 14px;
    line-height: 25px;
  }

  .footer-links,
  .footer-contact,
  .footer-socials {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-socials h3 {
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-links ul li {
    margin: 0;
  }

  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-contact ul li {
    margin: 0;
  }

  .footer-copyright {
    padding: 10px 0;
  }

  .footer-copyright p {
    font-size: 12px;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.banner-sec.inn {
    height: 150px;
    justify-content: center;
  }

  section.banner-sec.inn .banner-txt {
    margin-top: 0;
  }

  section.banner-sec.inn .banner-wrap {
    margin: 0;
  }

  section.banner-sec.inn .banner-txt-main {
    margin: 0;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.det-service {
    padding: 40px 0;
  }

  .det-ser-img img {
    height: 400px;
    border-radius: 5px;
  }

  .der-ser-txt {
    margin: 20px 0 0 0;
    gap: 10px;
  }

  .der-ser-txt h2 {
    font-size: 25px;
    line-height: 30px;
  }

  /* About Us Page Css Ends */

  /* Contact Us Page Css Starts */

  section.contact-pg {
    padding: 40px 0px;
  }

  .cont-bx {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    min-height: auto;
    margin: 0 0 20px 0;
  }

  .cont-bx h3 {
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    text-transform: uppercase;
  }

  .cont-bx a {
    font-size: 16px;
    line-height: 25px;
  }

  .cont-bot-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .cont-bot-txt h3 {
    font-size: 40px;
    line-height: 45px;
    width: 100%;
    margin: 0;
  }

  .cont-bot-txt p {
    font-size: 12px;
    line-height: 25px;
    width: 100%;
    margin: 0 0 20px 0;
  }

  /* Contact Us Page Css Ends */

  /* Quote Modal Page Css Starts */

  .quote-modal {
    border-radius: 5px;
    font-size: 12px;
  }

  .quote-steps {
    gap: 5px;
    padding: 20px 0px;
  }

  .step-note {
    font-size: 12px;
    line-height: 30px;
    text-align: start;
  }

  .form-label {
    font-size: 12px;
    line-height: 25px;
  }

  .q-dropzone {
    padding: 10px;
  }

  .q-dropzone-inner {
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .q-file-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .q-file-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  .q-file-name {
    white-space: break-spaces;
    font-size: 12px;
    line-height: 25px;
  }

  /* Quote Modal Page Css Ends */
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  .sec {
    padding: 40px 0;
  }

  .heading0 {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 0 0 20px 0;
  }

  .heading0-txt {
    width: 100%;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 30px;
    line-height: 35px;
  }

  h2 {
    font-size: 25px;
    line-height: 30px;
  }

  h3 {
    font-size: 30px;
    line-height: 35px;
  }

  h4 {
    font-size: 20px;
    line-height: 25px;
  }

  h6 {
    font-size: 14px;
    line-height: 20px;
  }

  p {
    font-size: 12px;
    line-height: 25px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  .theme1 {
    height: 40px;
    padding: 0 15px;
  }

  .theme1 span.theme1-txt {
    font-size: 14px;
  }

  .theme2 {
    height: 40px;
    padding: 0 15px;
  }

  .theme2 span.theme2-txt {
    font-size: 14px;
  }

  .theme3 {
    height: 50px;
    width: 50px;
    padding: 5px;
  }

  /* Buttons css Ends */

  /* Home css Starts */

  header {
    position: relative;
    width: 95%;
    border-radius: 0 0 10px 10px;
  }

  .menuSec {
    padding: 30px 10px;
  }

  .header-logo {
    height: 150px;
    width: 110px;
    margin: 0 auto;
  }

  section.banner-sec {
    height: 650px;
    justify-content: end;
  }

  .banner_slider .draggable {
    padding: 0 !important;
  }

  .banner-wrap {
    margin-top: 0;
  }

  .banner-txt h4 {
    letter-spacing: 0;
  }

  .banner-img-main {
    border-radius: 20px 20px 0 0;
  }

  .banner_slider .slick-slide .banner-img-main {
    height: 300px;
  }

  .banner_slider .slick-slide {
    height: 300px;
  }

  .banner_slider .slick-current .banner-img-main {
    height: 350px;
  }

  .banner_slider .slick-current {
    height: 350px;
  }

  .banner_slider .slick-prev,
  .banner_slider .slick-next {
    height: 40px;
    width: 40px;
  }

  .banner_slider .slick-prev {
    left: 5%;
  }

  .banner_slider .slick-next {
    right: 5%;
  }

  .services-tabs-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin: 0 0 20px 0;
  }

  .services-tabs-main .nav {
    width: 100%;
    flex-direction: column !important;
    gap: 20px;
  }

  .services-tabs-main .nav .nav-link {
    font-size: 18px;
    line-height: 20px;
    height: 100px;
    padding: 0 15px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
    display: flex;
  }

  .services-tabs-btn-main {
    width: 100%;
    justify-content: start;
  }

  .services-card-main {
    gap: 10px;
    margin: 0 0 30px 0;
    border-radius: 5px;
  }

  .services-card-img-mian {
    height: 200px;
  }

  .services-card-txt-btn-mian {
    padding: 0 10px 20px 10px;
    height: 100%;
  }

  .about-img-main {
    height: 400px;
  }

  .about-img {
    height: 300px;
    border-radius: 20px;
  }

  .about-img-main::before {
    width: 45%;
  }

  .about-img-main::after {
    width: 45%;
  }

  .about-txt-main {
    margin: 30px 0 0 0;
  }

  .about-list ul {
    column-count: 1;
  }

  .quote-txt {
    text-align: center;
  }

  .quote-txt h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .quote-txt h5 {
    font-size: 20px;
    line-height: 25px;
  }

  section.gallery-sec {
    padding: 40px 0 0 0;
  }

  section.gallery-sec::before {
    width: 90%;
  }

  .gallery-card {
    height: 300px;
    border-radius: 10px;
  }

  .gallery_slider .slick-prev,
  .gallery_slider .slick-next {
    height: 40px;
    width: 40px;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 15px;
  }

  .gallery_slider .draggable {
    padding: 0 0 90px 0;
  }

  .gallery_slider .slick-next {
    left: 50px;
  }

  .book-txt-main {
    width: 80%;
    margin: 20px auto 0 auto;
    gap: 10px;
  }

  .book-input input,
  .book-input select {
    height: 40px;
    padding: 0 10px;
  }

  .book-selec i,
  .book-date i {
    right: 3%;
  }

  .testimonial-card-txt {
    padding: 10px 20px 50px 20px;
    border-radius: 5px;
  }

  .testimonial-card-main:hover .testimonial-card-txt {
    border-radius: 20px;
  }

  .testimonial-card-user-img {
    height: 60px;
    width: 60px;
  }

  .testimonial-card-user-txt h5 {
    font-size: 20px;
  }

  .testimonial-card-main {
    margin: 0;
  }

  footer.footer-sec {
    padding: 40px 0 0 0;
  }

  .footer-logo {
    height: 150px;
    width: 110px;
  }

  .footer-logo-content p {
    font-size: 12px;
    line-height: 25px;
  }

  .footer-links,
  .footer-contact,
  .footer-socials {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-socials h3 {
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-links ul li {
    margin: 0;
  }

  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-contact ul li {
    margin: 0;
  }

  .footer-copyright {
    padding: 10px 0;
  }

  .footer-copyright p {
    font-size: 12px;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.banner-sec.inn {
    height: 150px;
    justify-content: center;
  }

  section.banner-sec.inn .banner-txt {
    margin-top: 0;
  }

  section.banner-sec.inn .banner-wrap {
    margin: 0;
  }

  section.banner-sec.inn .banner-txt-main {
    margin: 0;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.det-service {
    padding: 40px 0;
  }

  .det-ser-img img {
    height: 300px;
    border-radius: 5px;
  }

  .der-ser-txt {
    margin: 20px 0 0 0;
    gap: 10px;
  }

  .der-ser-txt h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .der-ser-txt h2 {
    font-size: 20px;
    line-height: 25px;
  }

  /* About Us Page Css Ends */

  /* Contact Us Page Css Starts */

  section.contact-pg {
    padding: 40px 0px;
  }

  .cont-bx {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    min-height: auto;
    margin: 0 0 20px 0;
  }

  .cont-bx h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 5px 0;
    padding: 0 0 5px 0;
    text-transform: uppercase;
  }

  .cont-bx a {
    font-size: 14px;
    line-height: 25px;
  }

  .cont-bot-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }

  .cont-bot-txt h3 {
    font-size: 30px;
    line-height: 35px;
    width: 100%;
  }

  .cont-bot-txt p {
    font-size: 12px;
    line-height: 25px;
    width: 100%;
    margin: 0 0 20px 0;
  }

  /* Contact Us Page Css Ends */

  /* Quote Modal Page Css Starts */

  .quote-modal {
    border-radius: 5px;
    font-size: 12px;
  }

  .quote-steps {
    gap: 5px;
    padding: 20px 0px;
  }

  .step-note {
    font-size: 12px;
    line-height: 30px;
    text-align: start;
  }

  .form-label {
    font-size: 12px;
    line-height: 25px;
  }

  .q-dropzone {
    padding: 10px;
  }

  .q-dropzone-inner {
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .q-file-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .q-file-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  .q-file-name {
    white-space: break-spaces;
    font-size: 12px;
    line-height: 25px;
  }

  /* Quote Modal Page Css Ends */
}

/*Media Query End*/
