*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerheight: 100px;
  --headerpadding: 15px;
  --headerfixed: 156px;
  --headerstripfixed: 0px;
  --footerstrip: 66px;
  --sectionpadding: 50px 0 60px;
  --primary: rgba(237, 34, 36, 1);
  --secondary: rgba(0, 0, 0, 1);
  --light-gray: rgba(239, 239, 239, 1);
  --gray: rgba(102, 102, 102, 1);
  --dark-gray: rgba(18, 18, 18, 1);
  --white: #fff;
  --text: #c1c1c1;
  --triangle: 10px;
  --triangle2: 20px;
  --container:1750px;
  --containerfluid: 4rem;
  --arrowsize: 20px;
  --space: 11px;
}
@media (max-width: 767px) {
  :root {
    --space: 5px;
  }
}

body {
  background: var(--secondary);
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 8px;
}
@media (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 8px);
}
@media (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins";
  font-weight: 400;
}

body {
  background-color: var(--secondary);
}
body.hidden {
  overflow: hidden;
  margin-right: 8px;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
}

.container-main {
  padding: 4px var(--containerfluid);
}
@media (max-width: 1280px) {
  .container-main {
    padding: 4px 2rem;
  }
}
@media (max-width: 991px) {
  .container-main {
    padding: 4px 30px;
  }
}
@media (max-width: 540px) {
  .container-main {
    padding: 4px 12px;
  }
}

a {
  transition: 0.3s ease;
}

.ham-btn {
  margin-left: 20px;
}

.btn, .btn-dark, .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  font-size: 16px;
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
}
@media (max-width: 540px) {
  .btn, .btn-dark, .btn-primary {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.btn::before, .btn-dark::before, .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.btn:hover::before, .btn-dark:hover::before, .btn-primary:hover::before {
  transform: scaleX(1);
}
.btn svg, .btn-dark svg, .btn-primary svg {
  margin-right: 12px;
}
.btn svg path, .btn-dark svg path, .btn-primary svg path {
  transition: fill 0.4s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary::before {
  background-color: rgb(204.6578947368, 30.3947368421, 26.3421052632);
}
.btn-primary:hover {
  color: var(--white);
}
.btn-primary:hover svg {
  transform: translateX(3px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-dark {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.btn-dark::before {
  background-color: var(--secondary);
}
.btn-dark:hover {
  color: var(--white);
}
.btn-dark svg path {
  fill: var(--secondary);
}
.btn-dark:hover svg path {
  fill: var(--white);
}

.container-fluid {
  padding: 0 2rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1152px) {
  .container-fluid {
    padding: 0 1rem;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h4, h5 {
  font-weight: 600;
}

h6 {
  font-weight: 500;
}

h1 {
  font-size: 48px;
  line-height: 1.25;
}

h2 {
  font-size: 36px;
  line-height: 1.25;
}

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

h4 {
  font-size: 19.2px;
  line-height: 1.25;
}

h5 {
  font-size: 19.9968px;
  line-height: 1.25;
}

h6 {
  font-size: 18px;
  line-height: 1.25;
}

h1 {
  font-size: 48px;
}

@media (max-width: 1280px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 35px;
    line-height: 42px !important;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 30px;
    line-height: 38px !important;
  }
}
@media (max-width: 675px) {
  h1 {
    font-size: 25px;
    line-height: 32px !important;
  }
}
.cart {
  width: 290px;
}

p {
  color: var(--text);
  font-size: 16px;
}
@media (max-width: 540px) {
  p {
    font-size: 14px;
  }
}

.bg {
  height: 100%;
}

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

.grid {
  display: grid;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg {
  vertical-align: middle;
  transition: 0.3s ease;
}

.invert-img {
  transform: scaleX(-1);
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.owl-prev img {
  transform: scaleX(-1);
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
}
.item-md figure img {
  transition: 0.5s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
  max-width: 435px;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay {
    z-index: 4;
  }
}
.overlay.is-open {
  opacity: 1;
  transform: translateY(0%);
  z-index: 5;
}

.banner {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  margin-bottom: -1px;
}
.banner video, .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding-bottom: 20px;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .banner .banner-wrapper {
    bottom: 7%;
    padding-bottom: 15px;
  }
}
@media (max-width: 540px) {
  .banner .banner-wrapper {
    bottom: -8%;
    padding-bottom: 10px;
  }
}
@media (max-width: 1366px) {
  .banner {
    min-height: 850px;
    height: 100vh;
  }
}
@media (max-width: 1024px) {
  .banner {
    min-height: 825px;
    height: 95vh;
  }
}
@media (max-width: 991px) {
  .banner {
    min-height: 700px;
    height: 85vh;
  }
}
@media (max-width: 768px) {
  .banner {
    min-height: 600px;
    height: 75vh;
  }
}
@media (max-width: 675px) {
  .banner {
    min-height: 550px;
    height: 70vh;
  }
}
@media only screen and (max-width: 420px) {
  .banner {
    min-height: 450px;
    height: 65vh;
  }
}

.play-btn {
  --btnsize: 42px;
  --border: 1px;
  --bordercolor: var(--secondary);
  --playbtncolor: var(--secondary);
  width: 60px !important;
  height: 60px !important;
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: var(--white);
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: none;
}

.svg path[fill] {
  fill: currentColor;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.model.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  z-index: 99999 !important;
}
.model.enquire-pop.is-open {
  transform: translateX(0%);
}
.model.enquire-pop button.close {
  top: 25px;
  right: 25px;
}
.model.enquire-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.model.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.model.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.model.enquire-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--secondary);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}
.model.enquire-pop .model-body .title p {
  color: var(--text);
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
.model.enquire-pop .model-body .form {
  --gaptb: 15px;
}
.model.enquire-pop .model-body .form .sbmt-grp {
  width: 100%;
}
.model.enquire-pop .model-body .form .btn-primary {
  border: none;
}

.ham-pop-img {
  margin-right: -133px;
  margin-top: 95px;
}

.form-grid {
  --item: 1;
  --gaplr: 12px;
  --gaptb: 50px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
.form-grid .full {
  grid-column: span var(--item);
}

.form {
  --inputsize: 50px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--text);
  --borderafter: var(--dark-gray);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
  margin-bottom: 16px;
}
.form .form-group.hasCalender {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%237E84A3' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.form .form-group.hasCalender.hasCalender-white {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'><path fill='%23ffffff' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/></svg>");
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--secondary);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--gray);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--secondary);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}
.form .submit-grp .budget-group {
  margin-top: 20px;
}
.form .submit-grp .budget-label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
.form .submit-grp .budget-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.form .submit-grp .budget-range input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #e60000 0%, #ccc 0%);
  border-radius: 4px;
  outline: none;
  transition: background 450ms ease-in;
}
.form .submit-grp .budget-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #e60000;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px;
}
.form .submit-grp .budget-range input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #e60000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.sticky-action-bar {
  display: none;
}
@media (max-width: 991px) {
  .sticky-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background-color: var(--yellow);
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
  }
  .sticky-action-bar > div {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
  }
  .sticky-action-bar > div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
  }
  .sticky-action-bar > div a svg {
    width: 20px;
    height: 20px;
  }
  .sticky-action-bar > div a svg path {
    fill: #e9e9e9;
  }
  .sticky-action-bar > div a p {
    color: #e9e9e9;
    font-weight: 500;
    font-size: 14px;
  }
  .sticky-action-bar > div:nth-child(2) {
    border-left: 1px solid #cacaca;
  }
}

.iti__country-list {
  width: 100% !important;
  max-width: 500px !important;
  min-width: 450px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  box-sizing: border-box;
  z-index: 9999 !important;
  left: 0 !important;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f5f5f5;
}
.iti__country-list::-webkit-scrollbar {
  width: 6px;
}
.iti__country-list::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 3px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
  border: 1px solid #f5f5f5;
}
.iti__country-list .iti__country {
  width: 100% !important;
  font-size: 13px !important;
  padding: 12px !important;
}
.iti__country-list .iti__country .iti__country-name {
  width: 100% !important;
}
@media (max-width: 540px) {
  .iti__country-list {
    min-width: 280px !important;
  }
}

body {
  position: relative;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
  background: var(--white);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 4px;
}
body p {
  color: var(--gray);
}

.header-fixed {
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 540px) {
  .header-fixed {
    height: 80px;
  }
}

header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--prime);
}
header::after {
  bottom: auto;
  height: 0;
  z-index: -1;
  transition: 0.5s ease;
}
header .header-container {
  height: 100%;
  transition: 0.5s ease;
}
header .header-container .upper-container {
  height: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--containerfluid);
  transition: 0.5s ease;
  gap: 2rem;
}
@media (max-width: 1024px) {
  header .header-container .upper-container {
    padding: 12px 2rem;
  }
}
@media (max-width: 991px) {
  header .header-container .upper-container {
    padding: 12px 18px;
    gap: 0;
  }
}
@media (max-width: 540px) {
  header .header-container .upper-container {
    padding: 12px 18px;
    gap: 0;
  }
}
header .header-container .upper-container .colA, header .header-container .upper-container .colB, header .header-container .upper-container .colC {
  height: 100%;
  display: flex;
  align-items: center;
}
header .header-container .upper-container .colA {
  flex: 1;
}
header .header-container .upper-container .colA img {
  margin-top: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  header .header-container .upper-container .colA img {
    margin-top: 12px;
  }
}
@media (max-width: 540px) {
  header .header-container .upper-container .colA img {
    width: 80%;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 420px) {
  header .header-container .upper-container .colA img {
    width: 80%;
    margin-top: 0;
  }
}
header .header-container .upper-container .colC {
  flex: 1;
  display: flex;
  justify-content: end;
  margin: 0;
}
header .header-container .upper-container .colC ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 991px) {
  header .header-container .upper-container .colC ul {
    gap: 18px;
  }
}
@media (max-width: 991px) {
  header .header-container .upper-container .colC ul {
    gap: 8px;
  }
}
@media (max-width: 540px) {
  header .header-container .upper-container .colC ul {
    gap: 0;
  }
}
header .header-container .upper-container .colC ul li:not(:first-child) {
  padding: 10px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
header .header-container .upper-container .colC ul li:not(:first-child) svg {
  width: 25px;
  height: 25px;
}
header .header-container .upper-container .colC ul li:not(:first-child) svg path {
  fill: var(--black);
}
header .header-container .upper-container .colC ul li:not(:first-child):hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
}
header .header-container .upper-container .colC ul li:not(:first-child):hover svg path {
  fill: var(--white);
}
header .header-container .upper-container .colC ul li:last-child {
  display: none;
}
header .header-container .upper-container .colC ul .on-mobile {
  display: none;
}
@media (max-width: 991px) {
  header .header-container .upper-container .colC ul li:not(:last-child) {
    display: none;
  }
  header .header-container .upper-container .colC ul .on-mobile {
    display: block;
  }
  header .header-container .upper-container .colC ul li:last-child {
    display: block;
    border: none;
  }
  header .header-container .upper-container .colC ul li:last-child button {
    border-radius: 100px;
    background: var(--primary);
    padding: 8px;
  }
  header .header-container .upper-container .colC ul li:last-child button svg {
    width: 30px;
    height: 30px;
  }
  header .header-container .upper-container .colC ul li:last-child button svg path {
    fill: var(--white);
  }
}

.hero-heading {
  text-align: left;
  max-width: 615px;
}
@media (max-width: 991px) {
  .hero-heading {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 675px) {
  .hero-heading {
    max-width: 86%;
  }
}
@media (max-width: 540px) {
  .hero-heading {
    max-width: 100%;
  }
}
.hero-heading h1 {
  text-align: left;
  color: var(--secondary);
  font-weight: 600;
  line-height: 54px;
}
@media (max-width: 991px) {
  .hero-heading h1 {
    text-align: center;
  }
}
.hero-heading p {
  color: var(--secondary);
  width: 67%;
  margin: 18px 0 34px;
}
@media (max-width: 1280px) {
  .hero-heading p {
    width: 95%;
  }
}
.hero-heading ul {
  display: flex;
  gap: 20px;
  margin: 10% 0 0;
}
.hero-heading ul li img {
  width: 150px;
}

.hero-content-left {
  text-align: left;
  justify-self: end;
  background-color: #fff;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.24);
  padding: 30px;
  width: 500px;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .hero-content-left {
    justify-self: end;
    width: 430px;
  }
}
@media (max-width: 991px) {
  .hero-content-left {
    justify-self: center;
    text-align: center;
    display: none;
  }
}
.hero-content-left h4 {
  margin-bottom: 16px;
}

.form button {
  margin-top: 20px;
}
.form .phone-field {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 540px) {
  .form .phone-field {
    gap: 35px;
  }
}
.form .phone-field .prefix {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form .phone-field .prefix .flag {
  width: 30px;
}
.form .phone-field .prefix span {
  font-size: 16px;
  color: #000;
}
.form .phone-field .input-wrap {
  flex: 1;
  position: relative;
}
.form .phone-field .input-wrap label {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.form .phone-field .btn-primary {
  margin: 30px 0 0;
}
.form .budget-range {
  margin: 20px 0;
}
.form .budget-label {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  display: block;
}
.form .range-wrapper {
  display: grid;
  grid-template-columns: 72px 1fr 98px;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.form .range-wrapper .budget-amount {
  font-size: 13px;
  color: #333;
  font-weight: 600;
}
.form .range-wrapper .range-input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #e31019 0%, #ccc 0%);
  border-radius: 5px;
  outline: none;
  margin: 0;
  padding: 0;
}
.form .range-wrapper .range-input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 5px;
  background: transparent;
}
.form .range-wrapper .range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background: #e31019;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 0 0 3px #fff inset;
  position: relative;
  z-index: 2;
}
.form .range-wrapper .range-input::-moz-range-thumb {
  height: 18px;
  width: 18px;
  background: #e31019;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 3px #fff inset;
}
.form .range-wrapper .range-input::-moz-range-track {
  height: 6px;
  background: transparent;
  border-radius: 5px;
}

.hero-lower {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1280px) {
  .hero-lower {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .hero-lower {
    grid-template-columns: 1fr !important;
  }
}

.ad-pop {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.ad-pop.is-open {
  opacity: 1;
  visibility: visible;
}
.ad-pop.model {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.ad-pop.model .model-body {
  background: #fff;
  position: relative;
  padding: 25px;
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
}
@media (max-width: 540px) {
  .ad-pop.model .model-body {
    padding: 16px;
  }
}
.ad-pop.model .model-body .form {
  margin-top: 24px;
}
.ad-pop.model .model-body .form button {
  margin-top: 24px;
}
.ad-pop.model .model-body .close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.ad-pop.model .model-body .close svg {
  width: 20px;
  height: 20px;
}
.ad-pop.model .model-body .close svg path {
  stroke: #000000;
  transition: stroke 0.3s ease;
}/*# sourceMappingURL=header.css.map */