/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #e5002b;
  --theme-colorRGB: 252, 102, 1;
  --title-color: #000000;
  --body-color: #666666;
  --text-color: #444444;
  --smoke-color: #868a8a;
  --tertiary-color: #141414;
  --secondary-color: #012269;
  --blackSand-color: #080808;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --rating-color: #ff890a;
  --border-color: #cecece;
  --border-blackColor: #272727;
  --border-blackLightColor: #515151;
  --border-silverSand: #c0c0c0;
  --darkJungleGreen-color: #1d1d1d;
  --silverDeep-color: #a9a9a9;
  --silverDeeper-color: #858585;
  --silver-color: #c8c8c8;
  --silverLight-color: #c1c1c1;
  --silverLighter-color: #a4a4a4;
  --silverLightest-color: #f1f1f1;
  --silverLightLight-color: #fafafa;
  --charcoalGrey-color: #050505;
  --charcoalGreyDeep-color: #555555;
  --grey-color: #f7f7f7;
  --arrow-color: #676767;
  --bg-color: #0d0d0d;
  --bg-color-h2: #dfeaf1;
  --bg-color3: #d8d8d8;
  --bg-color4: #f3f3f3;
  --bg-color4: #ececec;
  --title-font: "Oswald", sans-serif;
  --body-font: "jost", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1170px;
  --container-gutters: 30px;
  --section-space: 80px;
  --section-space-mobile: 60px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --box-shadow: 11px 18px 10px #0404040d;
}

.home-five,
.home-four {
  --theme-color: #fc6601;
  --smoke-color: #f6f7fc;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 30px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Small devices */
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--title-color);
}
a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  margin: 0 0 18px 0;
  color: var(--text-color);
  line-height: 1.8;
  /* Small devices */
}
@media (max-width: 767px) {
  p {
    line-height: 1.73;
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 65px;
}

.h2,
h2 {
  font-size: 47px !important;
}

.h3,
h3 {
  font-size: 45px;
}

.h4,
h4 {
  font-size: 35px;
}

.h5,
h5 {
  font-size: 25px;
}

.h6,
h6 {
  font-size: 15px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 36px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 24px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}

/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1399px) {
  .container-style2 {
    max-width: 1920px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
}
.container-style3 {
  --main-container: 1170px;
}

@media (min-width: 1500px) and (max-width: 1921px) {
  .container-style1 {
    max-width: 1576px;
    overflow: hidden;
    margin-right: 0;
    padding-right: 0;
  }
}
/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*="col"] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 767px) {
  .row:not([class*="gx-"]) {
    --bs-gutter-x: 30px;
  }
}
.gy-gx {
  --bs-gutter-y: var(--bs-gutter-x);
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.gx-0 {
  --bs-gutter-x: 0px;
}

@media (min-width: 1199px) {
  .gx-45 {
    --bs-gutter-x: 45px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-50 {
    --bs-gutter-x: 50px;
  }
  .gx-70 {
    --bs-gutter-x: 70px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
}
@media (min-width: 1399px) {
  .gx-20 {
    --bs-gutter-x: 20px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
}
/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 50px;
  padding: 0 30px 0 28px;
  padding-right: 45px;
  border: 1px solid #e0e0e0;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 9999px;
  border-radius: 0;
  font-size: 14px;
  width: 100%;
}
select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  background-color: var(--white-color);
}
select.form-control-lg,
.form-control.form-control-lg,
.form-select.form-control-lg,
textarea.form-control-lg,
input.form-control-lg {
  height: 60px;
}
select.form-control-sm,
.form-control.form-control-sm,
.form-select.form-control-sm,
textarea.form-control-sm,
input.form-control-sm {
  height: 40px;
  font-size: 12px;
}
select[readonly],
.form-control[readonly],
.form-select[readonly],
textarea[readonly],
input[readonly] {
  color: var(--title-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

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

/* Firefox */
input[type="number"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  -moz-appearance: textfield;
}

textarea.form-control,
textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type="checkbox"]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: block;
}
input[type="checkbox"] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: calc((100% - 20px) / 2);
  width: 20px;
  height: 20px;
  padding-left: 0px;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  transition: all 0.2s ease;
}
input[type="radio"]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.form-group > i {
  position: absolute;
  right: calc(var(--bs-gutter-x) / 2 + 30px);
  top: 18px;
  font-size: 14px;
  color: #a0abb4;
}
.form-group.has-label > i {
  top: 45px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right
    calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}
.form-messages.mb-0 * {
  margin-bottom: 0;
}
.form-messages.success {
  color: var(--success-color);
  display: block;
}
.form-messages.error {
  color: var(--error-color);
  display: block;
}
.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

/*------------------- 2.4. Slick Slider -------------------*/
.slick-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  border: 1px solid var(--smoke-color);
  left: var(--pos-x, -100px);
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 50px) / -2);
  z-index: 2;
  border-radius: 50%;
}
.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}
.slick-arrow.slick-next {
  right: var(--pos-x, -100px);
  left: auto;
}
.slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}

.arrow-margin .slick-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slick-arrow {
    --arrow-horizontal: -20px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .slick-arrow {
    --arrow-horizontal: 40px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
    margin-right: 40px;
  }
  .slick-arrow.slick-next {
    margin-right: 0;
    margin-left: 40px;
  }
  .slick-dots {
    margin: 8px 0 38px 0;
  }
}
.slick-dots {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  border: 1px solid var(--theme-color);
}
.slick-dots > li {
  height: 14px;
}
.slick-dots > li > button {
  background-color: var(--theme-color);
  text-indent: -99999999999px;
  border: none;
  min-width: 56.25px;
  height: 14px;
}
.slick-dots > li.slick-active > button {
  background-color: var(--secondary-color);
}

.slick-track {
  min-width: 100%;
}

/*------------------- 2.5. Mobile Menu -------------------*/
.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.vs-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: rgba(135, 135, 135, 0.1);
}
.vs-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 30px;
  height: 30px;
  line-height: 33px;
  font-size: 20px;
  z-index: 1;
  border-radius: 50%;
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.vs-menu-wrapper.vs-body-visible {
  opacity: 1;
  visibility: visible;
}
.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.vs-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.vs-mobile-menu .new-label {
  margin-left: 5px;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}
.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}
.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0 12px 17px;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
}
.vs-mobile-menu ul li.menu-item-has-children > a {
  padding: 12px 0 12px 0px;
}
.vs-mobile-menu ul li.menu-item-has-children > a i {
  font-size: 13px;
  padding-right: 10px;
  color: var(--theme-color);
}
.vs-mobile-menu ul li.menu-item-has-children > a .vs-mean-expand i {
  color: #fff;
  padding-right: 0;
}
.vs-mobile-menu ul li.menu-item-has-children > a .vs-mean-expand i:focus {
  display: none;
  opacity: 0;
}

.vs-mobile-menu ul li.vs-active > a {
  color: var(--theme-color);
}
.vs-mobile-menu ul li.vs-active > a:before {
  transform: rotate(90deg);
}
.vs-mobile-menu ul li ul li {
  padding-left: 17px;
}
.vs-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.vs-mobile-menu ul li ul li > a::before {
  display: none;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
/* .vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
  content: "\f067";
  font-family: var(--icon-font);
}
.vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
  content: "\f068";
} */
.vs-mobile-menu > ul {
  padding: 0 40px;
}
.vs-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.vs-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 24px;
  border: none;
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 0;
}
.vs-menu-toggle:hover {
  background-color: var(--secondary-color);
}
.vs-menu-toggle.style2 {
  background-color: var(--theme-color);
  border-radius: 0;
  color: var(--white-color);
  width: 56px;
  height: 56px;
}

@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .vs-mobile-menu > ul {
    padding: 0 20px;
  }
}
/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--white-color);
}
.preloader .vs-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.preloader-inner img {
  display: block;
  margin: 0 auto 10px auto;
}

.loader {
  animation: loaderspin 1.5s infinite;
  height: 50px;
  width: 50px;
  display: block;
  margin: 0 auto;
}
.loader:before,
.loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.loader:before {
  animation: ball1 1.5s infinite;
  background-color: var(--title-color);
  box-shadow: 30px 0 0 var(--theme-color);
  margin-bottom: 10px;
}
.loader:after {
  animation: ball2 1.5s infinite;
  background-color: var(--theme-color);
  box-shadow: 30px 0 0 var(--title-color);
}

@keyframes loaderspin {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 var(--theme-color);
  }
  50% {
    box-shadow: 0 0 0 var(--theme-color);
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 var(--theme-color);
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 var(--title-color);
  }
  50% {
    box-shadow: 0 0 0 var(--title-color);
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 var(--title-color);
    margin-top: 0;
  }
}
/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 42px;
  border-radius: 0;
  z-index: 1;
  overflow: hidden;
}
.vs-btn.vs-btn-blue {
  background-color: var(--secondary-color);
}

@media (max-width: 319px) {
  .vs-btn {
    padding: 18px 30px;
  }
}
.vs-btn__bar::before,
.vs-btn__bar::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 42.07px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white-color);
  transition:
    width 0.5s ease-in-out,
    background-color 0.5s ease-in-out;
  z-index: -1;
}
.vs-btn__bar::before {
  left: auto;
  right: 0;
  width: 0px;
}
.vs-btn__bar::after {
  left: 0;
  right: auto;
}
.vs-btn__bar.black::before,
.vs-btn__bar.black::after {
  background-color: var(--secondary-color);
}
.vs-btn::after,
.vs-btn::before {
  width: 110%;
  height: 110%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--secondary-color);
  transition: all ease 0.4s;
  z-index: -2;
  border-radius: inherit;
}
.vs-btn:before {
  transform: rotateX(90deg);
}
.vs-btn:after {
  transform: rotateY(90deg);
}
.vs-btn > i {
  margin-left: 8px;
}
.vs-btn.style2,
.vs-btn.style16 {
  background-color: var(--white-color);
  color: var(--secondary-color);
  border: 1px solid var(--theme-color);
  transition: color ease 2s;
}
.vs-btn.style2:hover,
.vs-btn.style16:hover {
  transition: all ease 0.4s;
  border: 1px solid var(--secondary-color);
}
.vs-btn.style2::before,
.vs-btn.style2::after,
.vs-btn.style16::before,
.vs-btn.style16::after {
  background-color: var(--secondary-color);
}
.vs-btn.style2 .vs-btn__bar::before,
.vs-btn.style2 .vs-btn__bar::after,
.vs-btn.style16 .vs-btn__bar::before,
.vs-btn.style16 .vs-btn__bar::after {
  background-color: var(--theme-color);
}
.vs-btn.style3 {
  background-color: var(--white-color);
  padding: 23px 61px;
  color: var(--secondary-color);
}
.vs-btn.style3:hover {
  color: var(--white-color);
}
.vs-btn.style3::before,
.vs-btn.style3::after {
  background-color: var(--secondary-color);
}
.vs-btn.style3 .vs-btn__bar::before,
.vs-btn.style3 .vs-btn__bar::after {
  background-color: var(--secondary-color);
}
.vs-btn.style5 {
  background-color: var(--tertiary-color);
  color: var(--white-color);
}
.vs-btn.style6 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.vs-btn.style6:after,
.vs-btn.style6::before {
  background-color: var(--theme-color);
}
.vs-btn.style7 {
  border-radius: 9999px;
  text-transform: capitalize;
}
.vs-btn.style8 {
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  background-color: transparent;
  border-radius: 9999px;
  padding: 17px 28px;
  text-transform: capitalize;
}
.vs-btn.style8:after,
.vs-btn.style8:before {
  display: none;
}
.vs-btn.style8:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.vs-btn.style9 {
  background-color: var(--white-color);
  color: var(--theme-color);
  border-radius: 9999px;
  text-transform: capitalize;
}
.vs-btn.style10 {
  border: 2px solid var(--white-color);
  color: var(--white-color);
  background-color: transparent;
  border-radius: 9999px;
  padding: 17px 28px;
  text-transform: capitalize;
}
.vs-btn.style10:hover {
  border-color: transparent;
}
.vs-btn.style11 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  padding: 22px 40px 22px 40px;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-transform: capitalize;
  border-radius: 9999px;
  line-height: 1;
  transition: all ease 0.4s;
  z-index: 2;
  border-radius: 0;
}
.vs-btn.style11:before,
.vs-btn.style11:after {
  content: "";
  position: absolute;
  top: var(--border-size, 3px);
  bottom: var(--border-size, 3px);
  left: var(--border-size, 3px);
  width: calc(50% - var(--border-size, 3px));
  background-color: var(--white-color);
  z-index: -1;
  transform: scaleY(0.4);
  transform-origin: 100% 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  border-radius: 9999px 0 0 9999px;
  border-radius: 0;
}
.vs-btn.style11::after {
  left: auto;
  right: var(--border-size, 3px);
  transform-origin: 100% 100%;
  border-radius: 0;
}
.vs-btn.style11:hover {
  color: var(--theme-color);
  background-color: var(--white-color);
}
.vs-btn.style11:hover:before,
.vs-btn.style11:hover:after {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.vs-btn.style12::before,
.vs-btn.style12::after {
  background-color: var(--white-color);
}
.vs-btn.style13 {
  padding: 22px 42px;
}
.vs-btn.style13::before,
.vs-btn.style13::after {
  background-color: var(--white-color);
}
.vs-btn.style14,
.vs-btn.style15 {
  padding: 20px 29px;
}
.vs-btn.style14::before,
.vs-btn.style14::after {
  background-color: var(--theme-color);
}
.vs-btn.style15 {
  background-color: var(--secondary-color);
}
.vs-btn.style15::before,
.vs-btn.style15::after {
  background-color: var(--white-color);
}
.vs-btn.style16::before,
.vs-btn.style16::after {
  background-color: var(--white-color);
}
.vs-btn.style16 .vs-btn__bar::before,
.vs-btn.style16 .vs-btn__bar::after {
  width: 3px;
  height: 29px;
}
.vs-btn.style16 .vs-btn__bar::before {
  width: 0;
}
.vs-btn.style17 {
  background-color: var(--white-color);
  color: var(--theme-color);
}
.vs-btn.style17::before,
.vs-btn.style17::after {
  background-color: var(--theme-color);
}
.vs-btn.style17 .vs-btn__bar::before,
.vs-btn.style17 .vs-btn__bar::after {
  background-color: var(--theme-color);
}
.vs-btn:hover {
  color: var(--white-color);
}
.vs-btn:hover:before {
  transform: rotateX(0);
}
.vs-btn:hover:after {
  transform: rotateY(0);
}
.vs-btn:hover .vs-btn__bar::before,
.vs-btn:hover .vs-btn__bar::after {
  background-color: var(--theme-color);
  width: 120%;
  transition:
    width 0.6s ease-in-out,
    background-color 0.6s ease-in-out;
}
.vs-btn:hover .vs-btn__bar::before {
  transition:
    width 0.6s ease-in-out,
    background-color 0.6s ease-in-out;
}

.icon-btn {
  display: inline-flex;
  font-size: var(--btn-font-size, 20px);
  background-color: var(--theme-color);
  color: var(--white-color);
  border: none;
  text-align: center;
  border-radius: 50%;
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
}
.icon-btn.style2 {
  border: 2px solid var(--white-color);
  color: var(--white-color);
  background-color: transparent;
}
.icon-btn.style2:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.icon-btn.style4,
.icon-btn.style3 {
  --btn-size: 55px;
  background-color: transparent;
  color: var(--charcoalGrey-color);
  border-radius: 5px;
}

.icon-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
  border-color: transparent;
}
.icon-btn.style7 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: var(--btn-size, 43px);
  font-size: var(--btn-font-size, 20px);
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  text-align: center;
  border-radius: 0;
  padding: 14px 20px;
  border: 1px solid var(--silver-color);
}
.icon-btn.style7:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
.icon-btn.style8,
.icon-btn.style9 {
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--silverLight-color);
  background: var(--white-color);
}
@media (max-width: 767px) {
  .icon-btn.style8,
  .icon-btn.style9 {
    width: var(--btn-size, 65px);
  }
  .vs-btn {
    padding: 14px 32px;
  }
  .vs-btn__bar::before,
  .vs-btn__bar::after {
    height: 32px;
  }
  .vs-btn.vs-btn-blue {
    margin-left: 10px;
  }
}
.icon-btn.style8:hover,
.icon-btn.style9:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
.icon-btn.style9 {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  fill: var(--white-color);
}
.icon-btn.style9:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
}
.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--theme-color);
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i,
.scroll-btn:hover i {
  background-color: var(--title-color);
  color: var(--white-color);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .scroll-btn {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }

  .scroll-btn.show {
    bottom: 15px;
  }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 96;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

/* Small devices */
@media (max-width: 767px) {
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}

/*------------------- 3.3. Titles -------------------*/
.sec-titlexh1 {
  font-size: 70px;
}
@media (max-width: 991px) {
  .sec-titlexh1 {
    font-size: 40px;
  }
}

.sec-title3,
.sec-title {
  text-transform: uppercase;
  line-height: 1.2;
  margin: -0.25em 0 18px 0;
  font-weight: 700;
  font-size: 50px;
}
@media (max-width: 991px) {
  .sec-title3,
  .sec-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .sec-title3,
  .sec-title {
    font-size: 24px;
  }
}

.sec-title2 {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 22px 0;
  color: var(--white-color);
}
@media (max-width: 767px) {
  .sec-title2 {
    font-size: 34px;
  }
}

.sec-subtitle2 {
  text-transform: uppercase;
  display: block;
  color: var(--theme-color);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  margin: -0.25em 0 15px 0;
  letter-spacing: 0.11em;
}

.sec-subtitle2 > i {
  margin-right: 15px;
}

.sec-subtitle2 {
  color: var(--text-color);
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 30px);
}

.sec-btns2 {
  margin-bottom: calc(var(--section-title-space) - 5px);
}

.sec-line {
  background-color: var(--theme-color);
  flex: 1;
  height: 2px;
}

.border-title {
  position: relative;
  padding: 0 0 5px 0;
  margin-bottom: 0;
}
.border-title-border {
  width: 48px;
  height: 2px;
  display: inline-block;
  background-color: var(--theme-color);
  margin-bottom: 25px;
}

/* Large devices */
@media (max-width: 1199px) {
  .sec-title4 {
    font-size: 36px;
    line-height: 1.4;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sec-title3.h1,
  .sec-title.h1 {
    font-size: 36px;
  }
  .sec-line-wrap {
    margin: 0 0 60px 0;
  }
  .sec-subtitle2 {
    margin-bottom: 15px;
  }
  .title-area {
    margin-bottom: 40px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sec-title3.h1,
  .sec-title.h1 {
    font-size: 30px;
  }
  .sec-subtitle {
    font-size: 16px;
  }
  .sec-line-wrap {
    margin: 0 0 40px 0;
    gap: 10px;
  }
  .sec-title4 {
    font-size: 30px;
    line-height: 1.4;
  }
}
.sec-text {
  font-size: 16px;
  line-height: 2;
}

.sec-text2 {
  max-width: 72%;
  color: var(--white-color);
}
@media (max-width: 767px) {
  .sec-text2 {
    max-width: 100%;
  }
}

.sec-icon {
  margin-bottom: 23px;
  display: inline-block;
}

/*------------------- 3.4. Common -------------------*/

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  flex: 1;
}

.badge {
  background-color: var(--theme-color);
  border-radius: 50%;
  color: var(--white-color);
  display: inline-block;
  padding: 0.35em 0.55em;
  position: absolute;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.hr-style1 {
  background-color: var(--white-color);
  margin: 20px 0 30px 0;
}

.new-label {
  background-color: var(--error-color);
  border-radius: 4px;
  color: var(--white-color);
  font-size: 12px;
  line-height: 1;
  padding: 1px 5px;
  position: relative;
  text-transform: capitalize;
  top: -1px;
}

.big-name {
  -webkit-text-stroke: 2px #eef0ff;
  color: var(--white-color);
  font-size: 450px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  margin: -234px 30px -59px 0;
  position: relative;
  text-align: right;
  z-index: 31;
}

.sec-big-text2,
.sec-big-text {
  color: #f1f3f9;
  display: block;
  font-family: var(--title-font);
  font-size: 160px;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  right: 0;
  top: -37px;
  z-index: -1;
}

.sec-big-text2 {
  bottom: -26px;
  left: auto;
  right: 120px;
  top: auto;
}

.home-five-shape1 {
  background-color: #f6f7fc;
  bottom: 0;
  left: 0;
  max-width: 1255px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -3;
}

/* Hight Resoulation devices */
@media (min-width: 1921px) {
  .ls-wrapper > .ls-layer.d-hd-none,
  .ls-wrapper > a > .ls-layer.d-hd-none,
  .d-hd-none {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  .d-xxxl-block {
    display: block !important;
  }
}
/* Extra large devices */
@media (max-width: 1500px) {
  .big-name {
    font-size: 320px;
    margin: -168px 30px -59px 0;
  }

  .sec-big-text2,
  .sec-big-text {
    font-size: 130px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .big-name {
    font-size: 245px;
    margin: -128px 40px -42px 0;
  }
  .home-five-shape1 {
    right: 0;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .big-name {
    font-size: 190px;
    margin: -100px 40px -42px 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .big-name {
    font-size: 146px;
    margin: -78px 40px -25px 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .big-name {
    font-size: 75px;
    letter-spacing: 0;
    margin: -20px 0 -12px 0;
    text-align: center;
  }
}

.vs-divider {
  background-color: var(--border-color);
  height: 75px;
  margin-bottom: 30px;
  width: 1px;
}
@media (max-width: 767px) {
  .vs-divider {
    margin-left: 0;
    margin-right: auto;
    height: 1px;
    width: 75px;
  }
}

.section-button {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .element > svg {
    width: 100%;
    height: 100%;
  }
}

/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-smoke {
  background-color: var(--smoke-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-black {
  background-color: var(--secondary-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

.bg-gray {
  background-color: #e5e5e5;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit,
.footer-layout5 .copyright-text a,
.footer-info-list .info a {
  color: inherit;
}
.text-inherit:hover,
.footer-layout5 .copyright-text a:hover,
.footer-info-list .info a:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

.text-light2 {
  color: #919398;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
}
[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
  z-index: 1;
}

[data-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}

[data-overlay="title"]:before {
  background-color: var(--title-color);
}

[data-overlay="white"]:before {
  background-color: var(--white-color);
}

[data-overlay="black"]:before {
  background-color: var(--secondary-color);
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.fadeInUp {
  animation-name: fadeInUp;
}

.wow-animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadein {
  --animation-name: fadein-custom;
}

.slideinup {
  --animation-name: slideinup;
}

.slideindown {
  --animation-name: slideindown;
}

.slideinleft {
  --animation-name: slideinleft;
}

.slideinright {
  --animation-name: slideinright;
}

.animated {
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.ripple-animation,
.play-btn:after,
.play-btn:before,
.play-btn2:after,
.play-btn2:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadein-custom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rippleFixed {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/*------------------- 4.2. Header  -------------------*/
.vs-header {
  position: relative;
  z-index: 41;
}

.menu-top {
  position: relative;
  z-index: 9;
}

.header-bottom {
  position: relative;
}

.header-menu {
  background-color: var(--secondary-color);
  padding: 3px 6px 3px 41px;
  position: relative;
}
.header-menu nav ul li a svg.icon-angle-down{ display:none;} 
@media (max-width: 1199px) {
  .header-menu {
    padding: 4px 6px 4px 6px;
  }
}

.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  transition: all ease 0.8s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.will-sticky .sticky-active.active {
  top: 0;
}

.header-shape {
  position: absolute;
  min-width: 272px;
  min-height: 172.28px;
  position: absolute;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background: var(--theme-color);
  top: 0;
  left: 0;
  z-index: 32;
}
@media (max-width: 1919px) {
  .header-shape {
    min-width: 100px;
    min-height: 100px;
  }
}
@media (max-width: 767px) {
  .header-shape {
    min-width: 80px;
    min-height: 80px;
  }
.vs-mobile-menu ul li a svg.icon-angle-down{ display:none;}	
}

.header-main {
  background-color: #fff;
}

.main-menu .main-menu__list {
  display: flex;
  align-items: center;
}
.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.main-menu a:hover {
  color: var(--theme-color);
}
.main-menu > ul > li > a {
  display: flex;
  align-items: center;
  padding: 16px 27px 16px 0;
  margin-right: 27px;
  font-weight: 500;
}
.main-menu ul.main-menu__list li.menu-item-has-children a i {
  font-size: 13px;
  padding-left: 10px;
}
@media (max-width: 1199px) {
  .main-menu > ul > li > a {
    padding: 18px 15px 18px 0;
    margin-right: 15px;
  }
}
.main-menu > ul > li > a::before {
  content: "";
  position: absolute;
  min-width: 1px;
  min-height: 26.04px;
  background-color: var(--border-silverSand);
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.main-menu > ul > li > a .new-label {
  position: absolute;
  top: -10px;
  right: -27px;
  font-size: 11px;
  border-radius: 3px;
}
.main-menu > ul > li > a .has-new-lable {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.main-menu > ul > li > a .has-new-lable__icon {
  display: inline-flex;
  align-items: center;
}
.main-menu > ul > li:last-child > a {
  margin-right: 0;
  padding-right: 0;
}
.main-menu > ul > li:last-child > a::before {
  display: none;
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li i{
	font-size: 13px;
	padding-left: 6px;
    padding-top: 4px;
	
}

.contact-page .address{
	padding: 50px 20px;
	background: #012169;
	padding-left: 20px;
	border-radius: 10px;
}
.contact-page .address ul{ padding-left: 0;}
.contact-page .address li{
	display: flex;
	list-style: none;
	margin-bottom: 20px;
}
.contact-page .address  li i{
	padding-top: 8px;
	margin-right: 15px;
	color: #e4002b;
}
.contact-page .address li a,
.contact-page .address li p{
	color: #fff;
	word-break:break-all;
}
.project-sec.gallery-page{
	background: #fff;
}
.project-sec.gallery-page:after,
.project-sec.gallery-page:before{
	display: none;
}


/* .main-menu ul li.menu-item-has-children > a:after {
  content: "\f107";
  position: relative;
  font-family: "Font Awesome 6 Free";
  margin-left: 5px;
  font-size: 0.6rem;
  transition: all 0.3s ease-in-out;
} */
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  box-shadow:
    0px 10px 60px 0px rgba(0, 0, 0, 0.09),
    0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  transform-origin: top center;
  transition:
    margin-top 0.4s ease-in-out 0s,
    visibility 0.4s ease-in-out 0s,
    opacity 0.4s ease-in-out 0s,
    z-index 0s;
}
.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}
.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -41px;
}
@media (max-width: 1199px) {
  .main-menu ul.sub-menu {
    left: -6px;
  }
}
.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}
.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 3px;
}
.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 21px;
  color: #000;
}
.main-menu ul.sub-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 10px;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--theme-color);
  font-weight: 700;
  background-color: var(--white-color);
  box-shadow: inset 0px 2px 4px 0px rgba(173, 136, 88, 0.4);
}
.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.main-menu .mega-menu-wrap {
  position: static;
}
.main-menu ul.mega-menu {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu ul.mega-menu .main-menu ul.mega-menu > li > ul > li > a {
  position: relative;
}
.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.main-menu ul.mega-menu li li {
  padding: 4px 0;
}
.main-menu ul.mega-menu li a {
  display: inline-block;
}
.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after,
.main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}
.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}
.main-menu ul.mega-menu > li > ul > li > a:before {
  content: "\f105";
  font-family: var(--icon-font);
  font-weight: 400;
  margin: 0 10px 0 0;
}
.main-menu.menu-style1 > ul > li > a,
.main-menu.menu-style2 > ul > li > a,
.main-menu.menu-style4 > ul > li > a {
  color: var(--secondary-color);
  padding: 36.5px 43px 36.5px 0;
  margin-right: 0;
}
.main-menu.menu-style1 > ul > li > a::before,
.main-menu.menu-style2 > ul > li > a::before,
.main-menu.menu-style4 > ul > li > a::before {
  display: none;
}
@media (max-width: 1399px) {
  .main-menu.menu-style1 > ul > li > a,
  .main-menu.menu-style2 > ul > li > a,
  .main-menu.menu-style4 > ul > li > a {
    padding: 18px 25px 18px 0;
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .main-menu.menu-style1 > ul > li > a,
  .main-menu.menu-style2 > ul > li > a,
  .main-menu.menu-style4 > ul > li > a {
    padding: 18px 13px 18px 0;
    font-size: 15px;
  }
}
.main-menu.menu-style1 > ul > li > a {
  color: var(--white-color);
  padding: 14px 27px 14px 0;
}
@media (max-width: 1199px) {
  .main-menu.menu-style1 > ul > li > a {
    padding: 14px 7px 14px;
  }
}
.main-menu.menu-style1 > ul > li > a:hover {
  color: var(--theme-color);
}
.main-menu.menu-style1 > ul > li > a:hover::after {
  transform: rotate(180deg);
}
.main-menu.menu-style2 > ul > li > a,
.main-menu.menu-style4 > ul > li > a {
  padding: 36.5px 25px 36.5px 0;
}
.main-menu.menu-style2 > ul > li > a:hover,
.main-menu.menu-style4 > ul > li > a:hover {
  color: var(--theme-color);
}
@media (max-width: 1199px) {
  .main-menu.menu-style2 > ul > li > a,
  .main-menu.menu-style4 > ul > li > a {
    padding: 36.5px 15px 36.5px 0;
    font-size: 14px;
  }
}

.header-layout1 .will-sticky .sticky-active {
  padding: 15px 0;
}

.header-layout3 .sideMenuToggler {
  border: 1px solid var(--theme-color);
  border-radius: 0;
  background: var(--theme-color);
  color: var(--white-color);
}
.header-layout3 .sideMenuToggler:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}
.header-layout3 .will-sticky .sticky-active .sideMenuToggler {
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
}
.header-layout3 .will-sticky .sticky-active .sideMenuToggler:hover {
  border-color: var(--theme-color);
}

.header-text {
  margin: 0;
  font-size: 16px;
  font-family: var(--title-font);
  display: inline-flex;
  align-items: center;
  gap: 9.7px;
}
.header-text__bullet {
  min-width: 12px;
  min-height: 12px;
  background-color: var(--white-color);
  display: inline-block;
  border-radius: 50%;
}

.header-infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* padding-left: 36px; */
}
@media (max-width: 1199px) {
  .header-infos {
    padding-left: 0;
  }
}

.header-info {
  display: flex;
  align-items: center;
}
.header-info:nth-child(2) {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}
.header-info_icon {
  color: var(--theme-color);
  font-size: 24px;
  margin-right: 20px;
}
.header-info_icon img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(91%) saturate(7497%)
    hue-rotate(345deg) brightness(89%) contrast(103%);
}
.header-info_label {
  font-size: 16px;
  color: var(--secondary-color);
  font-family: var(--title-font);
  font-weight: 500;
  display: block;
  margin-bottom: 0px;
}
.header-info_link {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: var(--title-font);
}
.header-info_link a {
  color: inherit;
  position: relative;
}
.header-info_link a::before {
  position: absolute;
  content: "";
  width: 0%;
  left: auto;
  right: 0;
  height: 1px;
  background-color: var(--theme-color);
  transition: all 0.3s ease-in-out;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}
.header-info_link a:hover {
  color: var(--theme-color);
}
.header-info_link a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
  visibility: visible;
}

.header-social {
  font-size: 18px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header-social {
    justify-content: center;
  }
}
.header-social .social-title {
  color: var(--title-color);
  display: inline-block;
}
.header-social a {
  display: inline-flex;
  color: var(--title-color);
  padding-left: 25px;
  border-left: 1px solid var(--border-color);
  margin-left: 25px;
}
.header-social a:first-child {
  border-left: 0px solid transparent;
  padding-left: 0;
  margin-left: 0;
}
.header-social a:hover {
  color: var(--theme-color);
}
.header-social.style-white .social-title,
.header-social.style-white a {
  color: var(--white-color);
}
.header-social.style-white a:hover {
  color: var(--title-color);
}

.header-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1199px) {
  .header-btns {
    gap: 5px;
  }
}

.header-box {
  border: 10px solid var(--theme-color);
  background-color: var(--white-color);
  padding: 20px;
}
.header-box__icon {
  border-radius: 5px;
  margin: 0 15px 0 0;
  font-size: 18px;
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
}
.header-box__title {
  display: inline-block;
  color: var(--title-color);
  font-weight: 600;
  font-family: var(--title-font);
}
.header-box__number {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color);
  margin: 15px 0 0 0;
}

.header-dropdown > .dropdown-toggle {
  color: var(--title-color);
}
.header-dropdown > .dropdown-toggle i {
  margin: 0 10px 0 0;
}
.header-dropdown > .dropdown-toggle:after {
  content: "\f107";
  font-family: var(--icon-font);
  border: none;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 5px;
}
.header-dropdown > .dropdown-toggle:hover {
  color: var(--theme-color);
}
.header-dropdown ul.dropdown-menu {
  padding: 10px 15px;
  border: none;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  margin: 0;
  margin-left: -15px !important;
  margin-top: 15px !important;
  width: -moz-max-content;
  width: max-content;
  min-width: auto;
  position: relative;
  z-index: 1;
  border: none;
}
.header-dropdown ul.dropdown-menu li {
  margin-bottom: 10px;
}
.header-dropdown ul.dropdown-menu li:last-child {
  margin-bottom: 0;
}
.header-dropdown ul.dropdown-menu a {
  display: block;
  margin: 0 0;
  width: -moz-max-content;
  width: max-content;
  padding: 2px 10px;
  color: var(--title-color);
  font-weight: 400;
  font-size: 14px;
}
.header-dropdown ul.dropdown-menu a:hover {
  color: var(--theme-color);
}
.header-dropdown ul.dropdown-menu a:first-child {
  margin-top: 0;
  padding-top: 0;
}
.header-dropdown ul.dropdown-menu a:last-of-type,
.header-dropdown ul.dropdown-menu a:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.header-dropdown ul.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 47px;
  top: -7px;
  width: 14px;
  height: 14px;
  background-color: var(--white-color);
  z-index: -1;
  transform: rotate(45deg);
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
}
.header-dropdown.style-white > .dropdown-toggle {
  color: var(--white-color);
}
.header-dropdown.style-white > .dropdown-toggle:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
}

.header-layout3,
.header-layout2 {
  margin-bottom: -37px;
}
.header-layout3 .header-top,
.header-layout2 .header-top {
  background-color: var(--theme-color);
  padding: 15px 0;
  position: relative;
  z-index: 32;
}

.header-layout2 {
  margin-bottom: 0;
}

.header-layout3 .header-text {
  color: var(--white-color);
}

/* Hight Resoulation devices */
@media (min-width: 1921px) {
  .logo-style1 {
    margin-bottom: -1px;
  }
}
/* Extra large devices */
@media (max-width: 1500px) {
  .header-layout6 {
    position: relative;
  }
  .header-layout6 .shape3,
  .header-layout6 .shape2,
  .header-layout6 .shape1 {
    display: none;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .header-links li {
    padding-right: 15px;
    margin-right: 10px;
  }
  .header-logo {
    padding: 15px 0;
    position: relative;
    z-index: 31;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .header-info:nth-child(2) {
    padding-left: 10px;
  }
  .header-info_icon {
    font-size: 20px;
    margin-right: 10px;
  }
}
@media (min-width: 320px) {
  .d-vc-sm-block {
    display: block !important;
  }
}

@media (min-width: 576px) {
  .d-vc-ssm-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .header-layout3 .header-logo {
    padding: 10px 0;
  }
  .project-sec::before {
    display: none;
  }
  .faq-one form:before {
    transform: rotate(-1deg) !important;
  }
  .faq-one form input[type="submit"] {
    padding: 10px !important;
  }
}
.header-layout3 .header-info {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .header-layout3 .header-info {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/*------------------- 4.8. Hero Area  -------------------*/
.hero-bg,
.hero-bg3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  opacity: 0.3;
  transform: scale(1);
  transition:
    transform 7000ms ease,
    opacity 1500ms ease-in;
}

.hero-bg3 {
  opacity: 1;
}
@media (max-width: 767px) {
  /* .hero-bg3 {
    background-position: -1000px 0;
  } */
}

.hero--layout3 .hero-title,
.hero--layout3 .hero-text,
.hero--layout3 .hero-btns,
.hero--layout3 .play-btn,
.hero--layout3 .hero-subtitle {
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.hero--layout3 .slick-current {
  --animation-name: slideinup;
}

.hero--layout3 .hero-inner {
  position: relative;
  min-height: 834px;
  display: flex;
  align-items: center;
  background-color: var(--title-color);
  overflow: hidden;
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .hero--layout3 .hero-inner {
    min-height: 875px;
  }
}
@media (max-width: 1199px) {
  .hero--layout3 .hero-inner {
    min-height: 775px;
  }
}
@media (max-width: 767px) {
  .hero--layout3 .hero-inner {
    min-height: 550px;
    padding-top: 0px;
  }
}
@media (max-width: 319px) {
  .hero--layout3 .hero-inner {
    min-height: 480px;
  }
}

.hero--layout3 .hero-content {
  position: relative;
  z-index: 4;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .hero--layout3 .hero-content {
    padding: 0 0;
  }
}

.hero--layout3 .hero-title {
  color: var(--white-color);
  margin: -0.2em 0 20px 0;
  font-size: 70px;
  line-height: 1.3;
  animation-delay: 0s;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .hero--layout3 .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero--layout3 .hero-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero--layout3 .hero-title {
    font-size: 30px;
  }
}
@media (max-width: 319px) {
  .hero--layout3 .hero-title {
    font-size: 24px;
  }
}

.hero--layout3 .hero-text {
  font-size: 22px;
  color: var(--white-color);
  margin: 0 0 40px 0;
  animation-delay: 0.2s;
}
@media (max-width: 1199px) {
  .hero--layout3 .hero-text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero--layout3 .hero-text {
    font-size: 16px;
  }
}

.hero--layout3 .hero-btns {
  animation-delay: 0.4s;
}

.hero-slider--buttons {
  margin-top: -153px;
  position: relative;
  padding-bottom: 49px;
}
@media (max-width: 767px) {
  .hero-slider--buttons {
    margin-top: -63px;
    padding-bottom: 20px;
  }
}
.hero .icon-btn {
  margin-right: 13px;
}

.hero--layout3 .hero-inner {
  padding-top: 126px;
  min-height: 760px;
  padding-bottom: 14px;
}
@media (max-width: 767px) {
  .hero--layout3 .hero-inner {
    min-height: 720px;
  }
}
.hero--layout3 .icon-btn {
  border: 1px solid var(--theme-color);
  background-color: transparent;
  font-size: 18px;
  background-color: var(--theme-color);
  color: var(--white-color);
}
.hero--layout3 .icon-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.hero-content3 {
  position: relative;
  z-index: 4;
  padding: 68px 50px 106px;
  margin-left: -50px;
}
@media (max-width: 1199px) {
  .hero-content3 {
    padding: 68px 20px 144px;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .hero-content3 {
    max-width: 575px;
  }
}
@media (max-width: 767px) {
  .hero-content3 {
    padding: 15px;
    min-height: auto;
  }
}
.hero-content3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(74% 0, 100% 31%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(74% 0, 100% 31%, 100% 100%, 0 100%, 0 0);
  opacity: 0.3;
}
@media (max-width: 767px) {
  .hero-content3::before {
    -webkit-clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0 100%, 0 0);
    background: #fff;
    opacity: 0.6;
  }
}
.hero-content3 .hero-title {
  color: #000;
  margin: -0.2em 0 25px 0;
  font-size: 55px;
  line-height: 1.2;
  animation-delay: 0s;
  font-weight: 800;
}
@media (max-width: 1199px) {
  .hero-content3 .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-content3 .hero-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-content3 .hero-title {
    font-size: 25px;
  }
}
@media (max-width: 319px) {
  .hero-content3 .hero-title {
    font-size: 20px;
  }
}
.hero-content3 .hero-subtitle {
  display: inline-block;
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: var(--title-font);
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 25px;
  z-index: 1;
  line-height: 1.2;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .hero-content3 .hero-subtitle {
    font-size: 13px;
  }
}
.hero-content3 .hero-subtitle::before,
.hero-content3 .hero-subtitle::after {
  position: absolute;
  content: "";
  height: 1px;
  bottom: 0;
  left: 0;
}
.hero-content3 .hero-subtitle::before {
  width: 100%;
  background-color: var(--white-color);
  z-index: -9;
}
.hero-content3 .hero-subtitle::after {
  width: 34px;
  background-color: var(--theme-color);
  z-index: -8;
}
.hero-content3 .hero-text {
  font-size: 22px;
  color: var(--white-color);
  margin: 0 0 10px 0;
  line-height: 26px;
}
@media (max-width: 1199px) {
  .hero-content3 .hero-text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero-content3 .hero-text {
    font-size: 16px;
	color:#333;
  }
}

/* About Style */
.about--layout3 {
  position: relative;
}
.about--layout3:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  content: "";
  background: url(../img/about-overlay.png) no-repeat;
  background-size: cover;
}

.about--layout3 .title-area span {
  color: #e4002b;
  font-weight: 600;
}
.about--layout3 .title-area h2 {
  margin-top: 7px;
}

.about--layout3 .play-btn2 {
  position: absolute;
  bottom: -83.5px;
  right: 42px;
}
@media (max-width: 767px) {
  .about--layout3 .play-btn2 {
    position: absolute;
    bottom: auto;
    top: -36px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    --icon-size: 72px;
  }
}
.about-text--style3 {
  margin-bottom: 40px;
}
.about-widget {
  padding: 50px 53px 4px 40px;
  max-width: 456px;
  margin-top: -190px;
  background: var(--white-color);
  position: relative;
  z-index: 1;
  margin-left: -22%;
  margin-bottom: 30px;
  height: 323px;
 overflow-y: scroll;
}
.about-img--style3.about-img {
  height: 360px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .about-widget {
    padding: 50px 53px 45px 40px;
  }
}
@media (max-width: 1199px) {
  .about-widget {
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    background-color: transparent;
  }
}
.about-img--style3 {
  margin-bottom: 30px;
  position: relative;
  height: 427px;
 overflow: hidden;
}
.about-img--style3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-img--style3 {
    text-align: center;
  }
}

/*------------------- Service  -------------------*/
.service--layout1 .slick-list {
  margin: 0 -15px;
}
@media (max-width: 767px) {
  .service--layout1 .slick-list {
    margin: 0 -12px;
  }
}
.service--layout1 .slick-slide {
  padding: 0 15px;
}
@media (max-width: 767px) {
  .service--layout1 .slick-slide {
    padding: 0 12px;
  }
}

.service-block {
  text-align: center;
  border: 1px solid var(--silverLight-color);
  padding: 52px 30px 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 85px;
  background-color: var(--white-color);
}
@media (max-width: 1199px) {
  .service-block {
    padding: 52px 20px 38px;
  }
}
@media (max-width: 767px) {
  .service-block {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.service-block__icon {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .service-block__icon {
    margin-bottom: 24px;
  }
}
.service-block__title {
  font-size: 22px;
}
.service-block__title__link {
  color: var(--secondary-color);
}
.service-block__title__link:hover {
  color: var(--theme-color);
}
@media (max-width: 1199px) {
  .service-block__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .service-block__title {
    font-size: 18px;
  }
}
.service-block__text {
  margin-bottom: 39px;
}
.service-block__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 6px 33px;
  border: 1px solid var(--secondary-color);
  min-width: 98px;
  background-color: var(--secondary-color);
  fill: white;
}
.service-block__link:hover {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.service-block__shape {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.service-block__shape path {
  transition: all 0.3s ease-in-out;
  fill: var(--theme-color);
}
.service-block:hover .service-block__link {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.service-block:hover .service-block__shape {
  transform: scale(1.1);
}
.service-block:hover .service-block__shape path {
  fill: var(--secondary-color);
}

.service-page {
  background: linear-gradient(180deg, #0f224c 50%, #10101a 100%);
}
.service-page h2 {
  color: #e5002b;
}
.service-block--style2 {
  min-height: 485px;
  display: flex;
  align-items: end;
  padding: 0 20px 20px 0;
  position: relative;
  margin-bottom: 30px;
}
.service-block--style2 .service-block__body {
  background-color: var(--white-color);
  padding: 0px 38px 26px;
  position: absolute;
  left: 0;
  max-width: 95%;
  bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.service-block--style2 .service-block__body:nth-of-type(1) {
  transition-delay: 0.2s;
}
.service-block--style2 .service-block__body:nth-of-type(2) {
  transition-delay: 0.3s;
}
.service-block--style2 .service-block__body:nth-of-type(3) {
  transition-delay: 0.4s;
}
@media (max-width: 767px) {
  .service-block--style2 .service-block__body {
    padding: 0px 15px 20px;
  }
}
.service-block--style2 .service-block__icon {
  display: inline-flex;
  min-width: 81px;
  background-color: var(--theme-color);
  margin-top: -59px;
  margin-bottom: 17px;
  padding: 12px 0;
  height: 75px;
}
.service-block--style2 .service-block__title {
  margin-bottom: 0px;
}
.service-block--style2 .service-block__text {
  margin-bottom: 27px;
  padding-top: 17px;
}
.service-block--style2 .service-block__hide {
  max-height: 0px;
  opacity: 0;
  transition:
    max-height 1s ease 0s,
    opacity 1s ease 0s,
    transform 1s ease 0s;
  transform-origin: center top;
  padding-bottom: 1px;
}
.service-block--style2 .service-block__link {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  fill: var(--white-color);
}
.service-block--style2 .service-block__link:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.service-block--style2:hover .service-block__hide {
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
  transform: scaleY(1);
  transition:
    max-height 1s ease 0s,
    opacity 1s ease 0s,
    transform 1s ease 0s;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  z-index: 1;
}
.why-choose-one__content {
  background-color: #f4f4f4;
  padding: 88px 26px;
  position: relative;
  z-index: 1;
}
.why-choose-one__content .title-area span {
  color: #e5002b;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 500px) {
  .why-choose-one__content {
    padding: 30px 20px;
  }
}
.why-choose-one__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--bultax-white, #fff);
  width: 143px;
  height: 151px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (max-width: 500px) {
  .why-choose-one__content::after {
    width: 50px;
    height: 70px;
  }
}
.why-choose-one .sec-title {
  padding-bottom: 15px;
}
.why-choose-one__text {
  margin-bottom: 25px;
}
.why-choose-one__list {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--bultax-border-color, #dddddd);
  padding-top: 30px;
}
.why-choose-one__list::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 135px;
  width: 61px;
  height: 3px;
  background-color: var(--bultax-base, #e5002b);
}
.why-choose-one__list__item {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  text-transform: uppercase;
  color: var(--bultax-black2, #333333);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.why-choose-one__list__item .why-choose-one__list__icon i {
  color: var(--theme-color);
  margin-right: 10px;
}
.why-choose-one__list__item + .why-choose-one__list__item {
  margin-top: 10px;
}

.why-choose-one__btn .bultax-btn {
  background-color: var(--bultax-black4, #0e0e0e);
}
.why-choose-one__btn .bultax-btn::before {
  background-color: var(--bultax-base, #e5002b);
}
.why-choose-one__btn .bultax-btn .bultax-btn__icon {
  background-color: var(--bultax-white, #fff);
}
.why-choose-one__thumb-content {
  background-color: var(--bultax-black4, #012269);
  padding: 87px 37px 23px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .why-choose-one__thumb-content {
    padding: 65px 15px 20px;
  }
}
.why-choose-one__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 136%;
  text-transform: capitalize;
  color: var(--bultax-white, #fff);
  margin-bottom: 14px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .why-choose-one__title {
    font-size: 18px;
  }
}
.why-choose-one__text-two {
  text-transform: capitalize;
  color: var(--bultax-white, #fff);
}
@media (max-width: 1199px) and (min-width: 992px) {
  .why-choose-one__text-two {
    font-size: 14px;
  }
}
.why-choose-one__btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--bultax-white, #fff);
  display: flex;
  align-items: center;
  gap: 4px;
}
.why-choose-one__thumb {
  height: 315px;
   overflow: hidden;
}
.why-choose-one__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose-one__thumb.thumb-top {
  height: 326px;
  overflow: hidden;
  margin-top: 20px;
}

.why-choose-one__btn i {
  font-size: 14px;
  color: var(--bultax-base, #e5002b);
}
.why-choose-one__thumb img {
  object-fit: cover;
  width: 100%;
}
.why-choose-one__funfact {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e5002b;
  padding: 9px 16px;
  min-width: 140px;
}
.why-choose-one__funfact__count {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5002b;
  text-shadow:
    -1px 1px 1px #ffffff,
    1px 1px 1px #ffffff,
    -1px -1px 1px #ffffff,
    1px -1px 1px #ffffff;
  font-weight: 700;
  font-size: 35px;
  line-height: 86%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.why-choose-one__funfact::after {
  position: absolute;
  content: "";
  width: 42px;
  height: 102%;
  top: 0;
  right: -42px;
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  background-color: #e5002b;
  opacity: 0.72;
}
.why-choose-one__shape {
  position: absolute;
  bottom: -170px;
  right: -30px;
}
@media (max-width: 1800px) {
  .why-choose-one__shape {
    text-align: end;
    right: 0;
  }
  .why-choose-one__shape img {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .why-choose-one__shape {
    display: none;
  }
}
.why-choose-one__shape img {
  animation: bwTopToBottom 3s linear infinite;
  object-fit: cover;
}

/* usp */
.cate--layout1 {
  margin-top: 40px;
}
.cate-block--style {
  margin-bottom: 30px;
  position: relative;
  background: #eeeeee;
  padding: 50px 20px 20px 20px;
  border-radius: 10px 10px 10px 10px;
  margin-top: 38px;
}
.cate-block--style .cate-block__content {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cate-block--style .cate-block__content h3 {
  color: #e5002b;
}
.cate-block--style .cate-block__content p {
  color: #000000;
}
.cate-block--style .cate-block__icon {
  position: absolute;
  min-width: 90px;
  min-height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: -93px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #012269;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
/* @media (max-width: 1199px) {
  .cate-block--style .cate-block__icon {
    right: 5px;
  }
} */
.cate-block--style .cate-block__icon > img {
  filter: brightness(0) invert(1);
  width: 53px;
}
.cate-block--style .cate-block__icon::before,
.cate-block--style .cate-block__icon::after {
  content: "";
  min-width: 77.14px;
  min-height: 77.14px;
  position: absolute;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.cate-block--style .cate-block__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 0;
  position: relative;
  max-width: 100%;
  padding: 13px 10px 2px 0;
}
.cate-block--style .cate-block__title:hover > a {
  color: var(--theme-color);
}
.cate-block--style .cate-block__title::before {
  position: absolute;
  content: "";
  min-width: 30px;
  min-height: 2px;
  background-color: #012269;
  bottom: -5px;
  left: 0;
}
.cate-block--style .cate-block__title > a {
  color: var(--black-color);
}
.cate-block--style:hover .cate-block__icon {
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.cate-block--style:hover .cate-block__icon::before,
.cate-block--style:hover .cate-block__icon::after {
  transition: all 0.3s ease-in-out;
  border-color: var(--white-color);
}
.cate-block--style:hover .cate-block__icon > img {
  transition: all 0.3s ease-in-out;
  filter: brightness(0) invert(1);
}

/* Testimonial */

.client--layout2 .title-area span {
  color: var(--theme-color);
}

.client-block--style2 {
  border: 1px solid var(--border-color);
  padding: 56px 63px 57px 52px;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 1399px) {
  .client-block--style2 {
    padding: 56px 44px 44px 44px;
  }
}
@media (max-width: 767px) {
  .client-block--style2 {
    padding: 56px 15px 15px 15px;
  }
  .why-choose-one__thumb {
    margin-bottom: 20px;
  }
  .sucess-block--style1 {
    padding: 45px 30px 15px 30px !important;
    height: auto !important;
  }

  .sec-title3,
  .sec-title,
  h2 {
    font-size: 28px !important;
  }
  .sucess-block--style1 .sucess-block__icon img {
    width: 100px;
  }
  #image-gallery {
    z-index: 9;
    position: relative;
  }
}

.client-block--style2::before {
  content: "";
  width: 100%;
  height: 11px;
  background-color: var(--theme-color);
  position: absolute;
  top: -1px;
  left: -1px;
  transition: all 0.3s ease-in-out;
}

.client-block--style2 .client-block__header {
  display: flex;
  gap: 12.5px;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .client-block--style2 .client-block__header {
    margin-bottom: 15px;
  }
}

.client-block--style2 .client-block__name {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--body-font);
}

.client-block--style2 .client-block__info {
  padding-top: 12px;
}

.client-block--style2 .client-block__ratings {
  line-height: 1;
  padding-top: 10px;
}

.client-block--style2 .client-block__ratings > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.client-block--style2 .client-block__ratings > ul > li {
  font-size: 12px;
  color: #e38b01;
}

.client-block--style2 .client-block__text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .client-block--style2 .client-block__text {
    font-size: 15px;
  }
}

.client-block--style2 .client-block__avatar {
  height: 100%;
  box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3490196078);
  border-radius: 50%;
}

.client-block--style2 .client-block__shape svg path {
  transition: all 0.3s ease-in-out;
}
.client-block--style {
  transition: all 0.3s ease-in-out;
}
.client-block--style:hover {
  box-shadow: 11px 18px 10px rgba(4, 4, 4, 0.0509803922);
}
.client-block--style:hover::before {
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.client-block--style:hover .client-block__shape svg path {
  fill: var(--secondary-color);
}
.client-block--style2 {
  padding: 0;
  border: 0;
  z-index: 1;
  padding-right: 4px;
}
.client-block--style2::before {
  display: none;
}
.client-block--style2 .client-block__shape {
  z-index: -1;
}
@media (max-width: 991px) {
  .client-block--style2 .client-block__shape {
    max-width: 200px;
  }
}
.client-block--style2 .client-block__clientInfo {
  display: flex;
  gap: 12px;
}
.client-block--style2 .client-block__text {
  margin-bottom: 32px;
}
@media (max-width: 1199px) {
  .client-block--style2 .client-block__text {
    font-size: 16px;
  }
}
.client-img {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.client-img__two {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  overflow: hidden;
  margin-left: auto;
  margin-bottom: -39%;
  position: relative;
  margin-right: -30px;
  border: 2px solid #012269;
  z-index: 9;
}
.client-img__two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .client-img__two {
    margin-right: -15px;
  }
}
.client-img__one {
  display: inline-block;
  padding: 80px 10px 0 0;
}
.client-img__one > img {
  position: relative;
  z-index: 1;
}

/*------------------- 4.26. Product  -------------------*/
.sucess--layout1 {
  overflow: hidden;
}
.sucess__overlay,
.sucess__shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #121212;
  opacity: 0.7;
  top: 0;
}
.sucess__overlay {
  z-index: -3;
}
.sucess__shape {
  height: 98px;
  background-color: var(--white-color);
  opacity: 1;
  top: auto;
  bottom: -1px;
  z-index: -1;
}
.sucess__element1,
.sucess__element2 {
  z-index: -2;
  opacity: 0.2;
}
@media (max-width: 1199px) {
  .sucess__element1 {
    width: 300px;
    height: 240px;
  }
}
@media (max-width: 991px) {
  .sucess__element1 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .sucess__element1 > svg {
    width: 100%;
    height: 100%;
  }
}
.sucess-block--style1 {
  background-color: var(--secondary-color);
  padding: 57px 47px 50px 47px;
  background-size: auto;
  background-position: right top;
  margin: 30px 1px 0 1px;
  position: relative;
  height: 390px;
}
.sucess-block--style1:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 131px;
  height: 200px;
  background: url(../img/count-pattern.png) no-repeat;
  background-size: contain;
}

.sucess-block--style1 p {
  color: var(--theme-color);
  font-size: 24px;
}
@media (max-width: 1199px) {
  .sucess-block--style1 {
    padding: 45px 30px 45px 30px;
  }
}
@media (max-width: 991px) {
  .sucess-block--style1 {
    margin: 2px 1px 0 1px;
  }
}
@media (max-width: 767px) {
  .sucess-block--style1 {
    text-align: center;
  }
}
.sucess-block--style1 .sucess-block__icon {
  margin-bottom: 44px;
  position: relative;
  display: inline-block;
}
.sucess-block--style1 .sucess-block__icon img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(91%) saturate(7497%)
    hue-rotate(345deg) brightness(89%) contrast(103%);
  width: 80px;
}
.sucess-block--style1 .sucess-block__icon::before {
  position: absolute;
  content: "";
  min-width: 85px;
  min-height: 85px;
  background-color: var(--theme-color);
  opacity: 0.1;
  border-radius: 50%;
  top: 19px;
  left: auto;
  right: -30px;
}
.sucess-block--style1 .sucess-block__number {
  color: var(--white-color);
  position: relative;
}
.sucess-block--style1 .sucess-block__number h3 {
  color: #fff;
  font-size: 58px;
}

.sucess-block--style1 .sucess-block__number p {
  color: #fff;
}

.sucess-block--style1 .sucess-block__number > span {
  font-size: 40px;
  color: var(--theme-color);
}
.sucess-block--style1 .sucess-block__number > sup {
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.sucess-block--style1 .sucess-block__text {
  color: var(--white-color);
  margin-bottom: 0;
}

/* project-sec style start */
.project-sec {
  padding: 80px 0;
  position: relative;
  background: #252122;
}
.project-sec h2 {
  color: #fff;
}
.project-sec::after {
  position: absolute;
  width: 500px;
  height: 500px;
  content: "";
  background: url(../img/project-1.png) no-repeat;
  top: 0;
  right: 0;
  z-index: 1;
  background-size: contain;
}
.project-sec::before {
  position: absolute;
  width: 500px;
  height: 360px;
  content: "";
  background: url(../img/project2.png) no-repeat;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-size: contain;
}

.project-sec .title-area span {
  color: var(--theme-color);
}

.project-sec .main-btn.pro-btn:hover {
  color: #000;
}
.project-sec .main-btn.pro-btn:before {
  background: #ffffff;
}

/* For gallery style start */

#image-gallery {
  position: relative;
  z-index: 9;
}

#gallery .img-wrapper {
  position: relative;
  margin-top: 15px;
  transition: 0.5s;
  z-index: 1;
  margin-bottom: 6px;
  transition: 0.5s;
}

#gallery .img-wrapper:hover:before {
  top: 0;
  left: 0;
  transition: 0.5s;
}

#gallery .img-wrapper img {
  width: 100%;
  border-radius: 6px;
}

#gallery .img-wrapper:hover .img-overlay {
  opacity: 1;
}
#exitButton {
  position: relative;
  top: -170px;
}
#exitButton i {
  font-size: 30px;
  color: #fff;
}

#gallery .img-wrapper .img-overlay {
  background: #032f5ea3;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
}
#gallery .img-wrapper {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}
#gallery .img-wrapper a img {
  height: 100%;
}
#gallery .img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgb(0 0 0 / 91%);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5%;
}
@media screen and (max-width: 767px) {
  #gallery .img-wrapper {
    height: 130px;
    border-radius: 10px;
  }
  .faq-one__left {
    margin-top: 30px;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

/* project-sec style end */

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  padding: 80px 0;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 30px;
}
.faq-one__left .title-area span {
  color: var(--theme-color);
}

.faq-one__left .section-title {
  margin-bottom: 40px;
}

.faq-one__left .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 19px 9px 19px;
  padding-left: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border: 1px solid #e4002b;
  border-radius: 31px;
}

.faq-one__left .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--secondary-color);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--secondary-color);
}

.faq-one__left .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 20px;
}

.faq-one__left .faq-one-accrodion .accrodion-title::before {
  content: "\f107";
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  position: absolute;
  top: 50%;
  right: 0px;
  line-height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 50px;
  height: 50px;
  background-color: #dcdcdc;
}
.faq-one__left .faq-one-accrodion .accrodion-title::before {
  font-size: 13px;
  right: 15px;
  width: 40px;
  height: 40px;
  top: 11px;
  transform: rotate(270deg);
}
.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title::before {
  transform: rotate(360deg);
}

.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title::before {
  content: "\f107";
  font-family: "Font Awesome 6 Free" !important;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-color);
}

.faq-one__left .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 20px;
}

.faq-one__left .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

.faq-one__right {
  position: relative;
  display: block;
  margin-top: 19px;
}

.faq-one__img-1 {
  position: relative;
  display: block;
  margin-right: 13px;
}

.faq-one__img-1 img {
  width: 100%;
  border-radius: 20px;
}

.faq-one__img-2 {
  position: relative;
  display: block;
  margin-left: -13px;
}

.faq-one__img-2 img {
  width: 100%;
  border-radius: 20px;
}

.faq-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--maroof-base);
  border-radius: 20px;
  padding: 38px 60px 38px;
  margin-left: 49px;
  margin-right: -91px;
  margin-top: 26px;
  z-index: 2;
}

.faq-one__icon {
  position: relative;
  display: inline-block;
}

.faq-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: #fff;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.faq-one__count-box:hover .faq-one__icon span {
  transform: scale(0.9);
}

.faq-one__count-inner {
  position: relative;
  display: block;
  margin-left: 40px;
}

.faq-one__count {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-one__count h3 {
  font-size: 59px;
  font-weight: 700;
  line-height: 59px;
  letter-spacing: -1.2px;
  color: #fff;
}

.faq-one__count span {
  font-size: 59px;
  font-weight: 700;
  line-height: 59px;
  letter-spacing: -1.2px;
  color: #fff;
}

.faq-one__count-box p {
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
  font-size: 16px;
}

.faq-one form {
  padding: 50px 30px 50px 30px;
  background: #e4002b;
  border-radius: 40px;
  position: relative;
}
.faq-one form:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #012169;
  transform: rotate(-5deg);
  z-index: -1;
}
.faq-one form h3 {
  font-size: 25px;
}

.faq-one form input {
  background: #fff;
  border-radius: 6px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 6px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq-one form select {
  height: 60px;
  display: block !important;
  appearance: auto;
  border-radius: 6px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq-one form textarea {
  border-radius: 6px;
  padding-left: 20px;
  padding-top: 20px;
}
.faq-one form input[type="submit"] {
  display: flex;
  margin: auto;
  background: #012169;
  text-align: center;
  border: 2px solid #fff;
  padding: 10px 50px;
  color: #fff;
  font-weight: 600;
  height: unset;
  margin-top: 14px;
}
.faq-one form input[type="submit"] {
  width: 40%;
  margin: auto;
  margin-top: 20px;
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.px-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.px-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.px-30 {
  padding-right: 30px;
  padding-left: 30px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

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

.pt-25 {
  padding-top: 25px;
}

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

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

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

.pb-15 {
  padding-bottom: 15px;
}

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

.pb-25 {
  padding-bottom: 25px;
}

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

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

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

.mt-25 {
  margin-top: 25px;
}

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

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-n1 {
  margin-top: -0.25rem;
}

.mt-n2 {
  margin-top: -0.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -0.25rem;
}

.mb-n2 {
  margin-bottom: -0.5rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.mb-40 {
  margin-bottom: 40px;
}

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

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
}

@media (max-width: 1199px) {
  .sec-title3,
  .sec-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .sec-title3,
  .sec-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .faq-one__left .faq-one-accrodion .accrodion-title h4 {
    font-size: 14px;
  }
  ul.footer-menu li {
    margin-bottom: 10px;
  }
}

/* Footer style */

.footer {
  padding: 60px 0;
  background: #012269;
  position: relative;
  z-index: 1;
}
.footer::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 290px;
  height: 290px;
  background: url(https://safecareroofingandbuilding.com/wp-content/uploads/2025/08/craftsmen.png)
    no-repeat;
  z-index: -1;
  opacity: 0.08;
  display: none;
}

.footer .footer_logo_area p {
  color: #fff;
  font-size: 18px;
  padding-top: 7px;
}

.footer .wideget-area h3 {
  border-bottom: 3px solid var(--theme-color);
  display: inline-block;
  color: #fff;
  padding-bottom: 4px;
  text-transform: uppercase;
  font-size: 23px;
}
.footer .wideget-area ul {
  padding-top: 7px;
  list-style: none;
}

.footer ul.footer-menu li {
  position: relative;
  transition: 0.8s;
}
.footer ul.footer-menu li:hover {
  padding-left: 10px;
}

.footer .wideget-area ul li a {
  text-decoration: none;
  color: #fff;
  padding-bottom: 10px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  position: relative;
  transition: 0.5s;
}
.footer .wideget-area ul li a:hover {
  transform: translateX(10px);
}

.footer .wideget-contact-area ul li i {
  color: var(--theme-color);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
  margin-bottom: 30px;
  padding-top: 6px;
  width: 26px;
}
.footer .wideget-contact-area ul li p {
  /* font-weight: 600; */
  padding-top: 3px;
}

.footer .wideget-contact-area h3 {
  border-bottom: 3px solid var(--theme-color);
  display: inline-block;
  color: #fff;
  padding-bottom: 4px;
  font-size: 23px;
  text-transform: uppercase;
}
.footer .wideget-contact-area ul {
  padding-top: 7px;
}
.footer .wideget-contact-area ul li p {
  color: #fff;
  font-size: 18px;
}
.footer .wideget-contact-area ul li {
  display: flex;
}
.footer .wideget-contact-area a {
  text-decoration: none;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  word-break: break-all;
}
.footer .wideget-contact-area a:hover {
  color: #fff;
}
/* footer style end */
/* footer-bottom style start */

.footer-bottom {
  padding: 10px 0;
  background: #01143f;
}
.footer-bottom p {
  padding-top: 10px;
  font-size: 18px;
  margin-bottom: 0;
}

.header-info.style5 {
  padding-left: 35px;
  position: relative;
}
@media (max-width: 1499px) {
  .header-info.style5 {
    display: none;
  }
}

.header-social.v5 a {
  border-left: 0;
  padding-left: 0;
}
@media (max-width: 1399px) {
  .header-social.v5 a {
    margin-left: 13px;
  }
}
@media (max-width: 991px) {
  .header-social.v5 a {
    margin-left: 35px;
  }
}
@media (max-width: 991px) {
  .header-social.v5 a:first-child {
    margin-left: 0;
  }
}
/************* inner Page *****************/
.inner_banner_caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 100%;
  padding: 0 10px;
}
.inner_banner {
  position: relative;
  z-index: 1;
}
.inner_banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.inner_banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.inner_banner h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #fff;
}
.servicessingelpage {
    padding: 60px 0;
}
.servicessingelpage img {
  float: right;
  width: 40%;
  height: auto;
  margin: 0 0 20px 20px;
}
.servicessingelpage p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  line-height: 28px;
  margin-bottom: 10px;
  color: #505050;
}
.servicessingelpage p a {
  color: #ec6e12;
  font-weight: bold;
}
.servicessingelpage ul li {
  list-style: none;
  color: #505050;
  margin: 5px 0;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}
.servicessingelpage li:before {
  content: "\f14a";
  color: #ec6e12;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  position: absolute;
  left: 0;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

@media (max-width: 767px) {
 .servicessingelpage img {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
}
	.contact-page .address {
	margin-top:30px;	
	}	
}