@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

/* font-family: "Funnel Display", sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 300;
  font-style: normal;
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  background-color: var(--blue-gray-color);
  position: relative;
  min-height: 100dvh;
}

:root {
  scroll-behavior: smooth;
  --body-font: "Funnel Display", sans-serif;
  --lime-yellow-color: #daff01;
  --blue-gray-color: #111e26;
  --white-color: #ffffff;
  --black-color: #000;
  --violet-color: #692fe6;
  --grey-color: #6f7f89;
}

.mce_inline_error {
  background-color: transparent !important;
}

#mc-embedded-subscribe {
  margin: 0 !important;
}

#mc_embed_signup div.mce_inline_error {
  display: none !important;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  /* distance between icons */
  align-items: center;
}

.social-icons a {
  font-size: 22px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #daff01;
}

/* Footer overall responsive alignment */
.wrap-ftr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* makes footer responsive */
  gap: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .wrap-ftr {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    order: 2;
  }

  .rgt-ftr {
    order: 3;
  }

  .lft-ftr {
    order: 1;
  }
}

.border-radius-css {
  border-radius: 10px !important;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 h5,
h6 {
  margin: 0 0 15px 0;
  padding: 0;
  color: var(--white-color);
  font-weight: 600;
  letter-spacing: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-size: 128px;
  line-height: 0.8;
}

h2,
.h2-title {
  font-size: 48px;
  line-height: 1.04;
}

h3,
.h3-title {
  font-size: 28px;
  line-height: 1;
}

h4,
.h4-title {
  font-size: 24px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--blue-gray-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--lime-yellow-color);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: var(--white-color);
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 20px;
  color: #000;
  height: 65px;
  padding: 0 21px;
  outline: none !important;
  border: 0.5px solid #f4f6ea;
  -webkit-box-shadow: 0px 4px 64px rgba(201, 212, 135, 0.22);
  box-shadow: 0px 4px 64px rgba(201, 212, 135, 0.22);
  margin-bottom: 20px;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: var(--lime-yellow-color);
  color: var(--blue-gray-color);
  height: 60px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 20px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  min-width: 180px;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: var(--violet-color);
  color: var(--white-color);
}

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

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

::-moz-placeholder {
  color: #d5dbb8;
}

:-moz-placeholder {
  color: #d5dbb8;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-right: 26px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  background: var(--white-color);
  border-radius: 5px;
}

.form_input_check label input[type="radio"] + span::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 7px;
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(3%)
    saturate(28%) hue-rotate(51deg) brightness(100%) contrast(98%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(28%)
    hue-rotate(51deg) brightness(100%) contrast(98%);
}

.form_input_check label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="radio"]:checked + span::before {
      
    } */

.form_input_check label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 4px;
}
.error-message.empty {
  visibility: hidden;
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 150px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 15px;
  padding: 20px 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
}

.navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3b61dc;
  /* opacity: 0; */
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: #3b61dc;
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  background-color: var(--lime-yellow-color);
  letter-spacing: 0;
  font-weight: 400;
  padding: 18px 31px;
  line-height: 1;
}

.download-btn span {
  display: inline-block;
  width: 21px;
  margin-right: 9px;
}

.download-btn span img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.download-btn:hover {
  background-color: var(--violet-color);
}

.download-btn:hover span img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.download-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -4px;
}

.download-list li {
  padding: 0 4px;
}

.download-wrp {
  margin-left: auto;
}

.navbar-brand img {
  width: 100%;
}

.main-head {
  padding: 33px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.body-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: hard-light;
}

.body-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
  background-color: var(--blue-gray-color);
}

.bnr-top-txt {
  font-size: 40px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.bnr-desc {
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 400;
  max-width: 400px;
  margin-top: 35px;
}

.price-status {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--violet-color);
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.price-status span {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 62px;
  line-height: 1;
  display: block;
}

.price-status p {
  margin-bottom: 4px;
}

.current-job-inn {
  max-width: 300px;
  background-color: #fdfeff;
  border-radius: 17px;
  padding: 17px 13px;
  color: var(--grey-color);
  -webkit-filter: drop-shadow(-29.5px 58.11px 86.71px rgba(7, 21, 29, 0.7));
  filter: drop-shadow(-29.5px 58.11px 86.71px rgba(7, 21, 29, 0.7));
}

.current-job-head p {
  font-size: 9px;
  letter-spacing: 0;
  margin-bottom: 12px;
  line-height: 1.1;
}

.current-job-head h2 {
  color: var(--blue-gray-color);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1;
}

.current-job-head strong {
  color: #282c32;
  font-size: 10px;
  font-weight: 400;
  display: block;
}

.current-job-head {
  margin-bottom: 18px;
}

.current-job-img-row {
  --bs-gutter-x: 5px;
  --bs-gutter-y: 5px;
}

.current-job-img-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.current-job-img-card {
  position: relative;
  padding-top: 105%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.current-job-img-col:first-child {
  width: 40%;
}

.current-job-img-col:not(:first-child) {
  width: 20%;
}

.current-job-img-wrp {
  margin-bottom: 12px;
}

.job-name-col-left span {
  font-size: 13px;
  color: #282c32;
  letter-spacing: 0;
  font-weight: 400;
}

.post-time-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-time-wrp {
  font-size: 8px;
}

.post-time-wrp img {
  width: 12px;
  margin-right: 4px;
}

.urg-btn {
  font-size: 10px;
  color: var(--blue-gray-color);
  letter-spacing: 0;
  line-height: 1;
  padding: 7px 18px;
  background-color: var(--lime-yellow-color);
  border-radius: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.job-name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.job-name-col-rgt {
  padding-left: 12px;
}

.job-name-wrp {
  margin-bottom: 14px;
}

.job-name-desc {
  font-size: 9px;
  color: #60666e;
  letter-spacing: 0;
  margin-bottom: 13px;
  max-width: 260px;
}

.address-loc {
  width: 30px;
  height: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.addredd-col-rgt span {
  font-weight: 500;
  color: var(--blue-gray-color);
  font-size: 10px;
}

.addredd-col-rgt p {
  font-size: 8px;
}

.address-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 16px 15px 12px;
  background-color: #f2f5e4;
  border-radius: 17px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.address-col-left {
  padding-right: 8px;
}

.bnr-col-img-wrp {
  position: relative;
  margin-left: -33%;
  margin-top: -2%;
}

.bnr-cont {
  padding-top: 160px;
}

.price-status-wrp {
  position: absolute;
}

.price-status-wrp {
  position: absolute;
  top: 3%;
  right: 23%;
  z-index: 1;
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
}

.current-job-wrp {
  position: absolute;
  bottom: 23%;
  right: 2%;
}

/* .bnr-row {
    align-items: center;
} */

.bnr-mb-img {
  max-width: 780px;
}

.bnr-col-rgt {
  width: 60%;
}

.bnr-col-left {
  width: 40%;
}

/* .bnr-sec-main {
    padding-bottom: 40px;
} */

.system-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.system-main-wrp {
  padding: 47px 90px 47px 72px;
  border-radius: 30px;
  background-color: var(--lime-yellow-color);
}

.system-col-left h2 {
  color: var(--blue-gray-color);
}

.system-col-left h2 span {
  color: var(--violet-color);
}

.system-col-left {
  width: 40%;
  padding-right: 20px;
}

.system-col-rgt {
  color: var(--blue-gray-color);
  width: 60%;
  font-size: 22px;
  line-height: 1.2;
}

.system-col-rgt p {
  font-weight: 400;
}

.system-col-rgt strong {
  display: block;
  margin-bottom: 10px;
}

.cmn-gap {
  padding: 100px 0;
}

.destination-head {
  margin-bottom: 46px;
}

.destination-card {
  border-radius: 30px;
  background: -o-linear-gradient(292.72deg, #030b0f 2.98%, #11212b 80.87%);
  background: linear-gradient(157.28deg, #030b0f 2.98%, #11212b 80.87%);
  padding: 48px 44px 0 44px;
}

.destination-card-head {
  margin-bottom: 16px;
}

.destination-card-head span {
  text-transform: uppercase;
  color: var(--lime-yellow-color);
  display: block;
  margin-bottom: 6px;
}

.destination-desc {
  margin-bottom: 40px;
}

.destination-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* position: absolute;
    top: 0;
    left: 0; */
}

/* .destination-img {
    position: relative;
    padding-top: 60%;
} */

.destination-row {
  --bs-gutter-x: 40px;
}

.destination-col:last-child .destination-col-wrp {
  padding-top: 40px;
}

.system-sec-main.cmn-gap.pb-0 {
  padding-top: 70px;
}

.htg-head-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.htg-head {
  max-width: 606px;
}

.htg-head h2 span {
  color: var(--lime-yellow-color);
}

.hgt-tab .nav {
  padding: 4px;
  background-color: #00131f;
  border-radius: 15px;
}

.hgt-tab .nav .nav-item .nav-link {
  background-color: var(--blue-gray-color);
  min-width: 166px;
  font-size: 14px;
  letter-spacing: -0.06em;
  border-radius: 10px;
  color: var(--white-color);
  font-weight: 400;
}

.hgt-tab .nav .nav-item .nav-link:hover {
  background-color: var(--grey-color);
}

.hgt-tab .nav .nav-item:first-child .nav-link.active {
  background-color: var(--lime-yellow-color);
  color: var(--blue-gray-color);
}

.hgt-tab .nav .nav-item:last-child .nav-link.active {
  background-color: var(--violet-color);
  color: var(--white-color);
}

.hgt-tab .nav .nav-item {
  padding: 2px;
}

.hgt-card {
  -webkit-box-shadow: 30.3057px 36.3668px 81.8253px rgba(75, 40, 169, 0.09);
  box-shadow: 30.3057px 36.3668px 81.8253px rgba(75, 40, 169, 0.09);
  border-radius: 30px;
  background-color: var(--card-bg);
  padding: 32px 30px 55px 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hgt-cont {
  color: var(--font-color);
  /* margin-top: auto; */
}

.hgt-cont h3 {
  color: var(--font-color);
}

.hgt-ico {
  margin-bottom: 20px;
}

.hgt-num {
  min-height: 58px;
  margin-bottom: 14px;
  position: relative;
}

.hgt-num::before {
  counter-increment: my-sec-counter;
  content: "0" counter(my-sec-counter);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 58px;
  color: var(--font-color);
  line-height: 1;
}

.htg-main-wrp {
  counter-reset: my-sec-counter;
}

.hgt-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* 4.11.25 */
.list-ftr {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.list-ftr li:not(:last-child) {
  margin-right: 50px;
}

.list-ftr li a {
  color: var(--white-color);
}

.list-ftr li a:hover {
  color: var(--lime-yellow-color);
}

.footer-sec {
  background-color: #13242e;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ftr-logo {
  max-width: 149px;
  width: 100%;
  display: inline-block;
}

.ftr-logo img {
  width: 100%;
}

.wrap-ftr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.inr-do {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}

.logo-do {
  margin: 0 auto 30px;
  max-width: 64px;
}

.logo-do img {
  width: 100%;
}

.inr-do h3 {
  margin-bottom: 15px;
}

.col-wedo:nth-child(1) .inr-do {
  margin-left: 0;
}

.col-wedo:nth-child(3) .inr-do {
  margin-right: 0;
}

.cmn-hdr {
  max-width: 600px;
  margin: 0 auto 40px;
}

.green-text {
  color: var(--lime-yellow-color);
  display: inline-block;
}

.wrap-input {
  margin-top: 20px;
  max-width: 380px;
}

.app-sec .cmn-hdr {
  margin: 0;
}

.big-phone-img {
  max-width: 299px;
}

.app-sec {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 130px 0;
  scroll-behavior: smooth;
  /* overflow: auto; */
}

.mobile-img {
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12%;
  max-width: inherit;
  pointer-events: none;
  width: 110%;
}

.wrap-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  padding-top: 30px;
}

.up-shape {
  position: absolute;
  pointer-events: none;
  bottom: -10%;
  left: 0;
  max-width: 900px;
}

.row-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* align-items: center; */
}

.col-lft-app {
  width: 450px;
}

.col-rgt-app {
  width: calc(100% - 450px);
}

.down-shape {
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: -1;
  max-width: 900px;
  pointer-events: none;
}

.green-shape {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  max-width: 410px;
}

.wrap-coming {
  text-align: center;
  padding-top: 176px;
}

.wrap-coming .download-list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 27px;
}

.downshapdown {
  position: absolute;
  bottom: -70%;
  left: -30%;
  pointer-events: none;
}

.form_input_check label:not(:last-child) {
  margin-right: 36px;
}

.hgt-ico img {
  max-height: 90px;
}

.privacy-policy h1 {
  font-size: 52px;
  margin: 0;
  margin-bottom: 6px;
}

.policy-cntnt-wpr h2 {
  font-size: 30px;
  line-height: 1.3;
  margin: 40px 0 15px;
}

.policy-cntnt-wpr h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 30px 0 12px;
}

.policy-cntnt-wpr h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 20px 0 12px;
}

.policy-cntnt-wpr {
  line-height: 1.8;
}

.policy-cntnt-wpr p > strong,
.policy-cntnt-wpr p > b {
  font-weight: 600;
}

.policy-cntnt-wpr ul > li {
  margin-bottom: 12px;
}

.policy-cntnt-wpr p > a {
  text-decoration: underline !important;
  color: #475ba8;
  word-break: break-all;
}

.policy-cntnt-wpr p > a:hover {
  text-decoration: none !important;
}

.privacy-table-wpr {
  width: 100%;
  overflow: auto;
  margin: 30px 0;
}

.privacy-table-wpr table {
  width: 100%;
  min-width: 600px;
}

.privacy-table-wpr table th,
.privacy-table-wpr table td {
  border: 1px solid #3f3f3f;
  padding: 10px 15px;
}

.privacy-table-wpr table th {
  font-weight: 600;
}

.page-wrapper {
  padding-top: 130px;
}

.privacy-policy.cmn-gap {
  padding-top: 30px;
}

.main-head.fixed {
  padding: 16px 0;
  background-color: var(--blue-gray-color);
  -webkit-box-shadow: 0 26.3668px 31.8253px rgba(255, 255, 255, 0.09);
  box-shadow: 0 26.3668px 31.8253px rgba(255, 255, 255, 0.09);
}

.main-head.fixed .navbar-brand {
  width: 120px;
}

.bnr-sec-main {
  position: relative;
}

.bnr-lyr-01 {
  position: absolute;
  top: -170px;
  left: 0px;
  max-width: 560px;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}

.bnr-lyr-02 {
  position: absolute;
  bottom: -60px;
  left: 0;
  max-width: 390px;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}

.system-sec-main {
  position: relative;
}

.system-sec-lyr {
  position: absolute;
  bottom: -60px;
  right: 0;
  max-width: 440px;
  pointer-events: none;
  z-index: -1;
}

.bag-ico {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background-color: var(--blue-gray-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.job-post-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px 19px 30px 17px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f3f3f3;
}

.post-btn {
  background-color: var(--lime-yellow-color);
  border-radius: 15px;
  line-height: 1;
  color: var(--blue-gray-color);
  font-size: 14px;
  padding: 9px 13px;
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 400;
}

.post-cont {
  font-size: 12px;
  color: var(--blue-gray-color);
  margin-top: 8px;
  line-height: 1;
}

.job-post-rgt {
  padding-left: 12px;
}

.boilers-main-wrp .post-time-wrp {
  font-size: 10px;
  color: var(--blue-gray-color);
}

.boilers-main-wrp span {
  font-size: 18px;
  color: var(--blue-gray-color);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.post-desc {
  line-height: 1.5;
  font-size: 12px;
  font-weight: 400;
  margin: 9px 0 15px;
}

.boilers-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  overflow: hidden;
}

.boilers-card {
  position: relative;
  padding-top: 98%;
}

.boilers-row {
  --bs-gutter-x: 7px;
  --bs-gutter-y: 7px;
}

.current-job-inn.current-job-inn-new {
  padding: 0;
}

.boilers-main-wrp {
  padding: 0 18px 34px;
}

/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
  }

  /* .bnr-top-txt {
        font-size: 30px;
    } */
}

@media (max-width: 1399px) {
  .big-phone-img {
    max-width: 239px;
  }

  .mobile-img {
    max-width: 770px;
    right: 3%;
  }

  h1,
  .h1-title {
    font-size: 100px;
  }

  .bnr-desc {
    font-size: 25px;
  }

  .bnr-mb-img {
    max-width: 650px;
  }

  .bnr-col-img-wrp {
    margin-top: 5%;
    margin-left: -21%;
  }

  .system-col-rgt {
    font-size: 20px;
  }

  .hgt-card {
    border-radius: 24px;
    padding: 24px 30px;
  }

  .hgt-ico img {
    max-height: 70px;
  }

  .price-status span {
    font-size: 52px;
  }

  .price-status {
    width: 190px;
    height: 190px;
    padding: 15px;
    font-size: 16px;
  }

  .price-status-wrp {
    top: -7%;
    right: 29%;
  }
}

@media (max-width: 1199px) {
  h2,
  .h2-title {
    font-size: 40px;
  }

  h3,
  .h3-title {
    font-size: 25px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    border-radius: 10px;
    height: 50px;
    margin-bottom: 15px;
  }

  input[type="submit"] {
    height: 50px;
    border-radius: 10px;
    min-width: 150px;
  }

  .main-head {
    padding: 15px 0;
  }

  .navbar-brand {
    width: 120px;
  }

  .download-btn {
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 14px;
  }

  .download-btn span {
    width: 15px;
    margin-right: 6px;
  }

  .col-rgt-app {
    width: calc(100% - 400px);
  }

  .col-lft-app {
    width: 400px;
  }

  .logo-do {
    margin: 0 auto 10px;
    max-width: 52px;
  }

  .big-phone-img {
    max-width: 189px;
  }

  .mobile-img {
    max-width: 600px;
    right: 3%;
  }

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

  .ftr-logo {
    max-width: 100px;
  }

  .list-ftr li:not(:last-child) {
    margin-right: 30px;
  }

  .app-sec {
    padding: 110px 0;
  }

  .wrap-coming {
    padding-top: 96px;
  }

  .bnr-col-img-wrp {
    margin-left: -30%;
    margin-top: 9%;
  }

  .bnr-mb-img {
    max-width: 550px;
  }

  .current-job-wrp {
    bottom: 21%;
    right: 6%;
  }

  .price-status {
    width: 160px;
    height: 160px;
    padding: 13px;
    font-size: 15px;
  }

  .price-status span {
    font-size: 46px;
  }

  .current-job-wrp {
    right: 0%;
  }

  .price-status-wrp {
    top: -17%;
    right: 31%;
  }

  h1,
  .h1-title {
    font-size: 92px;
  }

  .bnr-top-txt {
    font-size: 35px;
  }

  .bnr-desc {
    font-size: 22px;
  }

  .destination-card {
    border-radius: 20px;
    padding: 34px 30px 0 30px;
  }

  .destination-row {
    --bs-gutter-x: 30px;
  }

  .htg-head {
    max-width: 536px;
  }

  .hgt-num::before {
    font-size: 48px;
  }

  .hgt-num {
    min-height: 48px;
  }

  .cmn-gap {
    padding: 80px 0;
  }

  .main-head.fixed .navbar-brand {
    width: 100px;
  }

  .main-head.fixed {
    padding: 10px 0;
  }
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav > li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav > li > a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px;
  }

  .sub-menu > li > a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */

  /* 4.11.25 */
  h2,
  .h2-title {
    font-size: 32px;
  }

  h3,
  .h3-title {
    font-size: 22px;
  }

  .logo-do {
    margin: 0 auto 20px;
    max-width: 40px;
  }

  .inr-do {
    margin: 0;
    text-align: center;
  }

  .down-shape {
    bottom: 0%;
    max-width: 420px;
  }

  .up-shape {
    bottom: 0;
    max-width: 430px;
  }

  .green-shape {
    max-width: 260px;
  }

  .col-lft-app {
    width: 320px;
  }

  .big-phone-img {
    max-width: 139px;
  }

  .col-rgt-app {
    width: calc(100% - 320px);
  }

  .downshapdown {
    bottom: -90%;
    left: -20%;
    max-width: 430px;
  }

  .mobile-img {
    max-width: 400px;
  }

  .wrap-coming {
    padding-top: 56px;
  }

  /* 4.11.25 */

  .bnr-col-left {
    width: 100%;
  }

  .bnr-col-rgt {
    width: 100%;
  }

  .bnr-cont {
    padding-top: 0;
  }

  .bnr-col-img-wrp {
    margin-left: -5%;
    margin-top: 16%;
  }

  h1,
  .h1-title {
    font-size: 82px;
  }

  .price-status-wrp {
    top: -18%;
    right: 28%;
  }

  .bnr-col-left {
    margin-bottom: 30px;
  }

  .current-job-wrp {
    right: 1%;
    bottom: 22%;
  }

  .system-col-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .system-col-rgt {
    width: 100%;
    font-size: 20px;
  }

  .system-main-wrp {
    padding: 30px 30px 40px 30px;
    border-radius: 20px;
  }

  .destination-head {
    margin-bottom: 30px;
  }

  .destination-card {
    padding: 28px 20px 0 20px;
  }

  .destination-row {
    --bs-gutter-x: 20px;
  }

  .htg-head {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .hgt-col {
    width: 50%;
  }

  .privacy-policy h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  /* 4.11.25 */
  .col-wedo {
    width: 50%;
    margin-bottom: 30px;
  }

  .row-wedo {
    margin-bottom: -30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .col-lft-app {
    width: 100%;
    margin-bottom: 70px;
  }

  .col-rgt-app {
    width: 100%;
  }

  .app-sec .cmn-hdr {
    max-width: 100%;
    text-align: center;
  }

  .wrap-input {
    margin: 20px auto 0;
    max-width: 380px;
  }

  .wrap-mobile {
    max-width: 320px;
    margin: 0 auto;
  }

  .wrap-coming {
    padding-top: 76px;
  }

  .downshapdown {
    bottom: -90%;
    left: -30%;
    max-width: 410px;
  }

  .download-btn {
    padding: 13px 10px;
    font-size: 13px;
  }

  .navbar-brand {
    width: 90px;
  }

  .ftr-logo {
    max-width: 80px;
  }

  .app-sec {
    padding: 50px 0;
  }

  .list-ftr li:not(:last-child) {
    margin-right: 20px;
  }

  .down-shape {
    max-width: 300px;
  }

  .up-shape {
    max-width: 310px;
  }

  /* 4.11.25 */
  h1,
  .h1-title {
    font-size: 66px;
  }

  .current-job-inn {
    max-width: 250px;
    border-radius: 14px;
  }

  .address-row {
    padding: 12px;
    border-radius: 10px;
  }

  .current-job-head h2 {
    font-size: 22px;
  }

  .bnr-col-img-wrp {
    margin-left: -11%;
  }

  .bnr-mb-img {
    max-width: 460px;
  }

  .price-status {
    width: 150px;
    height: 150px;
    padding: 12px;
    font-size: 14px;
  }

  .price-status-wrp {
    top: -22%;
    right: 40%;
  }

  .bnr-top-txt {
    font-size: 30px;
  }

  .hgt-card {
    border-radius: 17px;
    padding: 19px 15px;
  }

  .hgt-ico img {
    max-height: 60px;
  }

  .page-wrapper {
    padding-top: 110px;
  }

  .main-head.fixed .navbar-brand {
    width: 80px;
  }

  .job-post-main {
    padding: 16px;
    margin-bottom: 18px;
  }

  .boilers-main-wrp {
    padding: 0 14px 20px;
  }
}

@media (max-width: 575px) {
  /* 4.11.25 */
  h2,
  .h2-title {
    font-size: 28px;
  }

  h3,
  .h3-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  input[type="submit"] {
    height: 45px;
    min-width: 130px;
  }

  /* 4.11.25 */
  .hgt-col {
    width: 100%;
  }

  .bnr-mb-img {
    max-width: 380px;
  }

  .price-status span {
    font-size: 40px;
  }

  .current-job-head {
    margin-bottom: 12px;
  }

  .current-job-head h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  h1,
  .h1-title {
    font-size: 58px;
    line-height: 0.9;
  }

  .bnr-top-txt {
    font-size: 26px;
  }

  .bnr-desc {
    font-size: 20px;
  }

  .current-job-wrp {
    bottom: 12%;
  }

  .price-status-wrp {
    top: -29%;
    right: 46%;
  }

  .bnr-col-left {
    margin-bottom: 70px;
  }

  .system-main-wrp {
    padding: 30px 20px;
    border-radius: 13px;
  }

  .system-col-rgt {
    font-size: 18px;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  .container {
    padding: 0 25px;
  }
}

@media (max-width: 540px) {
  .current-job-inn {
    max-width: 190px;
  }

  .navbar-brand {
    width: 80px;
  }

  .bnr-mb-img {
    max-width: 440px;
    width: 100%;
  }

  .bnr-col-img-wrp {
    margin-top: 15px;
  }

  .price-status-wrp {
    top: -19%;
    right: 16%;
  }
}

@media (max-width: 479px) {
  /* 4.11.25 */

  .navbar-brand {
    width: 112px;
  }

  .download-wrp .download-btn {
    padding: 0;
    font-size: 0;
    border-radius: 100%;
    height: 31px;
    width: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .download-wrp .download-btn span {
    margin-right: 0;
    width: 12px;
  }

  .mobile-img {
    max-width: 320px;
  }

  .big-phone-img {
    max-width: 109px;
  }

  .wrap-coming .download-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .wrap-coming .download-list li {
    margin-bottom: 15px;
    width: 100%;
  }

  .wrap-coming .download-list li:last-child {
    margin-bottom: 0;
  }

  .col-wedo {
    width: 100%;
  }

  .rgt-ftr {
    width: 100%;
  }

  .list-ftr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .wrap-ftr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .lft-ftr {
    margin-bottom: 15px;
  }

  .inr-do {
    max-width: 100%;
  }

  /* 4.11.25 */

  .bnr-top-txt {
    font-size: 18px;
  }

  .bnr-desc {
    font-size: 18px;
    margin-top: 25px;
  }

  .system-col-rgt {
    font-size: 16px;
  }

  .hgt-tab .nav .nav-item .nav-link {
    min-width: 130px;
  }

  .price-status {
    width: 118px;
    height: 118px;
    font-size: 11px;
  }

  .price-status span {
    font-size: 37px;
  }

  .current-job-wrp {
    /* position: relative; */
    right: 2%;
    top: 17%;
    bottom: auto;
    width: 48%;
    max-width: 143px;
  }

  .bnr-col-img-wrp {
    margin-left: 0;
    margin-top: 0;
  }

  .current-job-inn {
    max-width: inherit;
    width: 100%;
    border-radius: 8px;
  }

  .price-status-wrp {
    top: -180px;
    right: 1%;
  }

  .bnr-col-left {
    margin-bottom: 10px;
  }

  .page-wrapper {
    padding-top: 100px;
  }

  .bnr-cont {
    max-width: 220px;
    width: 100%;
  }

  .bnr-mb-img {
    max-width: inherit;
    width: 110%;
    margin-left: -14%;
    min-height: 300px;
  }

  .bag-ico {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .bag-ico img {
    width: 11px;
  }

  .post-btn {
    font-size: 7px;
    padding: 4px 9px;
    min-width: 40px;
    display: inline-flex;
    line-height: 1;
  }

  .post-cont {
    font-size: 6px;
    margin-top: 5px;
  }

  .job-post-main {
    padding: 10px 10px 12px;
    margin-bottom: 11px;
  }

  .boilers-main-wrp {
    padding: 0 10px 16px;
  }

  .boilers-main-wrp span {
    font-size: 9px;
  }

  .boilers-main-wrp .post-time-wrp {
    font-size: 5px;
  }

  .post-time-wrp img {
    width: 6px;
    margin-right: 2px;
  }

  .post-desc {
    font-size: 6px;
    margin: 9px 0;
  }

  .boilers-row {
    --bs-gutter-x: 4px;
    --bs-gutter-y: 4px;
  }

  .boilers-card img {
    border-radius: 6px;
  }

  .job-post-rgt {
    line-height: 0;
  }

  .price-status p {
    margin-bottom: 0px;
  }
}

@media (max-width: 374px) {
  h1,
  .h1-title {
    font-size: 36px;
  }

  .bnr-cont h1,
  .bnr-cont .h1-title {
    max-width: 130px;
  }

  .price-status span {
    font-size: 30px;
  }

  .price-status {
    width: 105px;
    height: 105px;
  }

  .price-status-wrp {
    top: -160px;
  }

  .current-job-wrp {
    right: 0%;
  }

  .bnr-desc {
    font-size: 16px;
  }
}

/*###############Skeleton###############*/
.skeleton-loader {
  width: 100%;
  max-width: 800px;
  margin: 1rem 0;
}

.skeleton-line {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  margin-bottom: 12px;
  border-radius: 4px;
}

.skeleton-line--large {
  height: 24px;
  margin-bottom: 16px;
}

.skeleton-line--medium {
  width: 70%;
}

@keyframes loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
