:root {
  --theme-color: #0f6bac;
  --secondary-color: #37afe3;
  --title-color: #010f30;
  --body-color: #364863;
  --border-color: #85b7fe;
  --smoke-color: #ecf5fb;
  --white-color: #ffffff;
  --black-color: #000000;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --title-font: "Exo", sans-serif;
  --body-font: "Inter", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1220px;
  --vs-container1: 1390px;
  --vs-container2: 1858px;
  --vs-container3: 1920px;
  --vs-container4: 1470px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 80px;
  --ripple-ani-duration: 5s;
}

/*------------------- 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: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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;
  padding-left: 0;
}

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;
  color: var(--title-color);
}

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

a {
  color: var(--body-color);
  text-decoration: none !important;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--theme-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(--body-color);
  line-height: 26px;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
}

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.4;
  margin: 0 0 15px 0;
}

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

.h2,
h2 {
  font-size: 40px;
  line-height: 46px;
}

.h3,
h3 {
  font-size: 36px;
  line-height: 46px;
}

.h4,
h4 {
  font-size: 30px;
  line-height: 46px;
}

.h5,
h5 {
  font-size: 24px;
  line-height: 100%;
}

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

/* 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: 26px;
    line-height: 36px;
  }
  .h4,
  h4 {
    font-size: 22px;
    line-height: 32px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
/*=================================
      02. Reset
  ==================================*/
/*------------------- 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);
  }
}
.vs-container1 {
  max-width: calc(var(--vs-container1) + var(--container-gutters));
  padding-left: calc(var(--container-gutters) / 2);
  padding-right: calc(var(--container-gutters) / 2);
  margin: 0 auto;
}

.vs-container2 {
  max-width: calc(var(--vs-container2) + var(--container-gutters));
  padding-left: calc(var(--container-gutters) / 2);
  padding-right: calc(var(--container-gutters) / 2);
  margin: 0 auto;
}

.vs-container3 {
  max-width: calc(var(--vs-container3) + var(--container-gutters));
  padding-left: calc(var(--container-gutters) / 2);
  padding-right: calc(var(--container-gutters) / 2);
  margin: 0 auto;
}

.vs-container4 {
  max-width: calc(var(--vs-container4) + var(--container-gutters));
  padding-left: calc(var(--container-gutters) / 2);
  padding-right: calc(var(--container-gutters) / 2);
  margin: 0 auto;
}

@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;
  }
}
/*------------------- 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: 26px;
  }
  .w-md-75 {
    width: 75% !important;
  }
}
.gy-30 {
  --bs-gutter-y: 30px;
}

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

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

.gx-gy {
  --bs-gutter-y: var(--bs-gutter-x);
}

@media (min-width: 1500px) {
  .gx-45 {
    --bs-gutter-x: 45px;
  }
  .gx-50 {
    --bs-gutter-x: 50px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-70 {
    --bs-gutter-x: 70px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-100 {
    --bs-gutter-x: 100px;
  }
}
@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: 55px;
  padding: 0 30px 0 28px;
  padding-right: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--white-color);
  font-family: var(--title-font);
  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);
  border-color: transparent;
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}
select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}
select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  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"] {
  -moz-appearance: textfield;
}

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

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type="checkbox"]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--title-color);
  border-color: var(--title-color);
}
input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 34px;
  cursor: pointer;
  display: block;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
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;
  border-radius: 4px;
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  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: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--secondary-color);
  background: var(--white-color);
  border-radius: 100%;
  transition: all 0.2s ease;
}

input[type="radio"]:checked ~ label:before {
  background-color: var(--secondary-color);
}

input[type="radio"]:checked ~ label:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
  opacity: 1;
  background-color: var(--white-color);
  transform: scale(1);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--body-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;
}

textarea.form-control,
textarea::placeholder {
  color: #0bf;
}

/*------------------- 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: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.vs-menu-wrapper .mobile-logo {
  padding-bottom: 1rem;
  padding-top: 1rem;
  display: block;
  text-align: start;
  background-color: var(--title-color);
}
.vs-menu-wrapper .mobile-logo img,
.vs-menu-wrapper .mobile-logo svg {
  max-width: 190px;
  max-height: 4.4rem;
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--title-color);
  border-radius: 50%;
}
.vs-menu-wrapper .vs-menu-toggle i {
  line-height: inherit;
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  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.style2 ul li a {
  padding: 2px 0;
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  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: 6px 0;
  font-size: 16px;
  font-family: var(--title-font);
  text-transform: capitalize;
  color: var(--body-color);
  line-height: 26px;
  font-weight: 400;
}
.vs-mobile-menu ul li a:hover {
  color: var(--secondary-color);
}
.vs-mobile-menu ul li.vs-active > a {
  color: var(--title-color);
}
.vs-mobile-menu ul li.vs-active > a:before {
  transform: rotate(90deg);
}
.vs-mobile-menu ul li ul li {
  padding-left: 20px;
}
.vs-mobile-menu ul li ul li:last-child {
  border-bottom: 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(--secondary-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: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--title-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 0;
  vertical-align: middle;
}
.vs-menu-toggle:hover {
  background-color: var(--theme-color);
}
/* Medium devices */
@media (max-width: 991px) {
  .vs-menu-toggle {
    width: 35px;
    height: 35px;
    font-size: 22px;
    line-height: 36px;
    border-radius: 5px;
  }
}
.vs-menu-toggle.style-text,
.vs-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}
.vs-menu-toggle.style-text i,
.vs-menu-toggle.style-text-white i {
  margin-right: 10px;
}
.vs-menu-toggle.style-text-white {
  color: var(--white-color);
}

@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(--theme-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%);
}
.preloader-inner img {
  display: block;
  margin: 0 auto 25px auto;
  width: 100%;
  height: 15vh;
  object-fit: contain;
}

.loader {
  display: block;
  position: relative;
  height: 20px;
  width: 140px;
  margin: 0 auto;
  background-image: linear-gradient(var(--title-color) 20px, transparent 0),
    linear-gradient(var(--title-color) 20px, transparent 0),
    linear-gradient(var(--title-color) 20px, transparent 0),
    linear-gradient(var(--title-color) 20px, transparent 0);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0 0, 40px 0, 80px 0, 120px 0;
  animation: animloader 1s linear infinite;
}

@keyframes animloader {
  0% {
    background-image: linear-gradient(var(--title-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0);
  }
  25% {
    background-image: linear-gradient(
        var(--secondary-color) 20px,
        transparent 0
      ),
      linear-gradient(var(--title-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0);
  }
  50% {
    background-image: linear-gradient(
        var(--secondary-color) 20px,
        transparent 0
      ),
      linear-gradient(var(--secondary-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0);
  }
  75% {
    background-image: linear-gradient(
        var(--secondary-color) 20px,
        transparent 0
      ),
      linear-gradient(var(--secondary-color) 20px, transparent 0),
      linear-gradient(var(--secondary-color) 20px, transparent 0),
      linear-gradient(var(--title-color) 20px, transparent 0);
  }
  100% {
    background-image: linear-gradient(
        var(--secondary-color) 20px,
        transparent 0
      ),
      linear-gradient(var(--secondary-color) 20px, transparent 0),
      linear-gradient(var(--secondary-color) 20px, transparent 0),
      linear-gradient(var(--secondary-color) 20px, transparent 0);
  }
}
/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  border: none;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  font-family: var(--title-font);
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-weight: 700;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1;
  padding: 17.5px 28px;
  border-radius: 5px;
  text-shadow: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s ease;
}
.vs-btn.style3 {
  padding: 10px 20px;
}
.vs-btn i {
  margin-left: 2px;
  font-size: 14px;
}
.vs-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--title-color);
  transform: scale(0);
  z-index: -1;
  border-radius: 0;
  transition: opacity ease 0.4s, visibility ease 0.4s, transform ease 0.4s;
}
.vs-btn:hover {
  color: var(--white-color);
}
.vs-btn:hover:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.icon-btn {
  border: 1px solid var(--smoke-color);
  display: inline-block;
  padding: 0;
  font-size: 14px;
  vertical-align: middle;
  color: var(--secondary-color);
  background-color: var(--smoke-color);
  text-align: center;
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 50%;
  position: relative;
  transition: all 0.5s ease;
}
.icon-btn:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.icon-btn:hover .badge {
  background-color: var(--title-color);
}

.link-btn {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: capitalize;
}
.link-btn a {
  color: var(--theme-color);
}
.link-btn i {
  margin-left: 7px;
  font-size: 0.9rem;
}
.link-btn:hover {
  color: var(--secondary-color);
}

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

/* Small devices */
@media (max-width: 767px) {
  .vs-btn.style3 {
    font-size: 12px;
    padding: 10px;
  }
  .vs-btn.style3 i {
    font-size: 10px;
  }
}
/*------------------- 3.3. Titles -------------------*/
.title-area {
  margin-bottom: 60px;
}

.sec-title {
  text-transform: capitalize;
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 700;
  position: relative;
  line-height: 58px;
}

.sec-line {
  max-width: 200px;
  height: 8px;
  position: relative;
  margin: 0 auto 20px;
  overflow: hidden;
}
.sec-line::before {
  content: "";
  height: 4px;
  width: 100%;
  border-radius: 30px;
  background-color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec-line::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 60px;
  transform: translateY(-50%);
  height: 8px;
  text-align: center;
  margin: 0 auto;
  border-radius: 30px;
  display: block;
  margin-bottom: 20px;
  background-color: var(--theme-color);
  animation: sectionLine 5s linear infinite;
}
.sec-line.sec-line-left {
  margin: 0;
}

.sec-line2 {
  max-width: 50px;
  height: 10px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.sec-line2::before {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 100%;
  height: 3px;
  background-color: var(--body-color);
  border-radius: 3px;
}
.sec-line2::after {
  content: "";
  border: 3px solid var(--secondary-color);
  background-color: var(--white-color);
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: sectionLine2 4s linear infinite;
}

.sec-subtitle {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: var(--secondary-color);
  text-transform: capitalize;
  letter-spacing: normal;
  margin-bottom: 8px;
  font-family: var(--title-font);
}

/* Medium devices */
@media (max-width: 991px) {
  .title-area {
    margin-bottom: 40px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sec-title {
    font-size: 36px;
    line-height: 43px;
  }
}
/*------------------- 3.4. Common -------------------*/
.image-scale-hover {
  overflow: hidden;
}
.image-scale-hover img {
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.image-scale-hover:hover img {
  transform: scale(1.2);
}

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

.vs-media {
  display: flex;
}

.shape-mockup {
  position: absolute;
  z-index: 0;
}

.social-media a {
  color: var(--title-color);
  width: 30px;
  height: 30px;
  line-height: 32px;
  text-align: center;
  margin-right: 5px;
  display: inline-block;
  font-size: 14px;
  border-radius: 50%;
}
.social-media a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.social-media2 a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 5px;
  display: inline-block;
  color: var(--secondary-color);
  font-size: 16px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  background-color: var(--smoke-color);
}
.social-media2 a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
.social-media2.style1 {
  margin-bottom: 14px;
}
.social-media2.style1 a {
  background-color: var(--body-color);
  color: var(--white-color);
  border-color: var(--body-color);
}
.social-media2.style1 a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.social-media2.style2 {
  margin-top: 50px;
  text-align: center;
}
.social-media2.style2 a {
  background-color: var(--white-color);
  color: var(--theme-color);
  border-color: var(--white-color);
}
.social-media2.style2 a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}

@keyframes newlabel {
  0% {
    background-color: var(--title-color);
  }
  50% {
    background-color: var(--secondary-color);
  }
  100% {
    background-color: var(--title-color);
  }
}
@media (max-width: 1550px) {
  .d-xxxl-block {
    display: block !important;
  }
}
/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

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

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

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

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

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

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

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

.shape-dotted {
  width: 140px;
  height: 140px;
  --dot-color: #b9bab9;
  background: radial-gradient(
      circle,
      transparent 20%,
      var(--dot-bg, #fff) 20%,
      var(--dot-bg, #fff) 80%,
      transparent
    ),
    radial-gradient(
        circle,
        transparent 20%,
        var(--dot-bg, #fff) 20%,
        var(--dot-bg, #fff) 0%,
        var(--dot-color, red)
      )
      var(--dot-size, 5.8px) var(--dot-size, 5.8px);
  background-color: transparent;
  background-size: calc(var(--dot-size, 5.8px) * 2)
    calc(var(--dot-size, 5.8px) * 2);
}

.shape-dotted2 {
  width: 140px;
  height: 140px;
  --dot-color: #b9bab9;
  background: radial-gradient(
      circle,
      transparent 20%,
      var(--dot-bg, #fdfce8) 20%,
      var(--dot-bg, #fdfce8) 80%,
      transparent
    ),
    radial-gradient(
        circle,
        transparent 20%,
        var(--dot-bg, #fdfce8) 20%,
        var(--dot-bg, #fdfce8) 0%,
        var(--dot-color, #fdfce8)
      )
      var(--dot-size, 5.8px) var(--dot-size, 5.8px);
  background-color: transparent;
  background-size: calc(var(--dot-size, 5.8px) * 2)
    calc(var(--dot-size, 5.8px) * 2);
}

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

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

.text-secondary {
  color: var(--secondary-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-border {
  color: var(--border-color) !important;
}

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

.text-inherit {
  color: inherit;
}
.text-inherit:hover {
  color: var(--secondary-color);
}

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

/*------------------- 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(--black-color);
}

[data-overlay="custom1"]:before {
  background-color: var(--title-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 -------------------*/
.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
  animation: jumpping var(--duration, 6s) infinite linear;
}

.jump-reverse-img,
.jump-img {
  --duration: 5s;
}

.jump-reverse-img,
.jump-reverse {
  --jump-y: -20px;
}

.mega-hover {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.mega-hover img {
  transition: all 2s ease;
  transform: scale(1);
  width: 100%;
  height: revert-layer;
  object-fit: cover;
  max-height: 250px;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .mega-hover {
    display: flex;
    justify-content: center;
  }
}
.mega-hover:after,
.mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  transform: rotate(5deg);
}
.mega-hover:before {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
}
.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear;
}
.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}
.mega-hover:hover img {
  transform: scale(1.05);
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

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

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

@keyframes sectionLine {
  0% {
    left: -60px;
  }
  100% {
    left: 100%;
  }
}
@keyframes sectionLine2 {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}
@keyframes fadein-custom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes jumpping {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(var(--rotate-angle, 360deg));
  }
}
/*=================================
      04. Template Style
  ==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget {
  background-color: var(--smoke-color);
  position: relative;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 6px;
}
.widget select,
.widget input {
  height: 60px;
  border: none;
  background-color: var(--input-bg, #f0f4f5);
  border-radius: 9999px;
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--title-font);
  line-height: 34px;
  margin-bottom: 12px;
  text-transform: capitalize;
  color: var(--title-color);
}

.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sidebar-gallery .gallery-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.sidebar-gallery .gallery-thumb img {
  height: revert-layer;
  object-fit: cover;
  transform: scale(1);
  transition: all ease 0.4s;
}
.sidebar-gallery .gallery-thumb:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.sidebar-gallery .gallery-thumb .gal-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: var(--white-color);
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.sidebar-gallery .gallery-thumb:hover:before {
  opacity: 0.9;
  visibility: visible;
}
.sidebar-gallery .gallery-thumb:hover .gal-btn {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.1s;
}
.sidebar-gallery .gallery-thumb:hover img {
  transform: scale(1.12);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .widget_title {
    font-size: 22px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sidebar-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .widget {
    margin-bottom: 50px;
    padding: 30px 10px 30px 20px;
  }
}
.footer-widget {
  margin-bottom: 0px;
}
.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
}
.footer-widget .widget_title {
  border: none;
  font-size: 22px;
  line-height: 34px;
  padding: 0;
  margin-bottom: 0;
  color: var(--title-color);
  text-transform: capitalize;
  position: relative;
  padding-bottom: 10px;
}
.footer-widget .sidebar-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.copyright-area {
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
}
.copyright-area .terms-condition ul li {
  font-family: var(--title-font);
  position: relative;
  padding-right: 0.5rem;
}
.copyright-area .terms-condition ul li::after {
  content: "|";
  position: absolute;
  color: var(--border-color);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.copyright-area .terms-condition ul li:last-child::after {
  display: none;
}

.footer-address {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin-bottom: 8px;
  font-family: var(--title-font);
  display: flex;
  align-items: baseline;
}
.footer-address i,
.footer-address img {
  margin-right: 10px;
  color: var(--secondary-color);
}
.footer-address img {
  position: relative;
  top: -3px;
}

.footer-address2 {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  max-width: 340px;
  color: var(--body-color);
  margin-bottom: 8px;
}
.footer-address2 i {
  margin-right: 8px;
}

.footer-address3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  max-width: 340px;
  color: var(--smoke-color);
  margin-bottom: 8px;
}
.footer-address3 i {
  margin-right: 8px;
}

.footer-logo {
  max-width: 20rem !important;
  overflow: hidden;
  margin-left: -1rem;
}

.footer-text {
  color: var(--body-color);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--title-font);
  margin-top: 30px;
  line-height: 26px;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-widget {
    margin-bottom: 40px;
  }
  .footer-widget .widget_title {
    font-size: 26px;
    margin-bottom: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .footer-widget .widget_title {
    font-size: 22px;
  }
}
/*------------------- 4.2. Header  -------------------*/
.vs-header {
  z-index: 9;
  position: relative;
}

.header-layout3 .header-info_link a {
  color: var(--white-color);
}
.header-layout3 .header-info_link a:hover {
  color: var(--secondary-color);
}
.header-layout3 .bar-btn,
.header-layout3 .icon-btn {
  color: var(--white-color);
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  cursor: pointer;
}
.header-layout3 .bar-btn .badge,
.header-layout3 .icon-btn .badge {
  background-color: var(--title-color);
}
.header-layout3 .bar-btn:hover,
.header-layout3 .icon-btn:hover {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.header-layout3 .sticky-active.active .bar-btn:hover,
.header-layout3 .sticky-active.active .icon-btn:hover {
  border-color: var(--title-color);
  background-color: var(--title-color);
}
.header-layout3 .bar-btn:hover .badge,
.header-layout3 .icon-btn:hover .badge {
  background-color: var(--secondary-color);
}

.header-top {
  background-color: var(--white-color);
  padding-top: 16px;
  padding-bottom: 64px;
}

.dropdown {
  border-right: 1px solid var(--white-color);
  padding-right: 20px;
  margin-right: 20px;
  line-height: 18px;
}
.dropdown button {
  background: transparent;
  border: unset;
  color: var(--white-color);
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  font-family: var(--title-font);
}
.dropdown button i {
  margin-right: 5px;
}
.dropdown button:hover {
  color: var(--secondary-color);
}
.dropdown .dropdown-menu {
  transform: translate(20px, 38px) !important;
  min-width: 5rem;
  padding: 1rem 0;
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.dropdown .dropdown-menu .dropdown-item {
  color: var(--white-color);
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--theme-color);
}

.header-links ul {
  margin-bottom: 0;
}
.header-links ul li {
  display: inline-block;
  line-height: normal;
  border-right: 1px solid var(--white-color);
  padding-right: 20px;
  margin-right: 20px;
}
.header-links ul li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.header-links ul li a {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 500;
  position: relative;
  display: inline-block;
  line-height: 20px;
}
.header-links ul li a:hover {
  color: var(--theme-color);
}
.header-links ul li a i {
  margin-right: 5px;
}

.vs-logo img {
  display: block;
  max-height: 5rem;
  height: auto;
}
.vs-logo .sticky-logo img {
  display: none;
  border-radius: 1rem;
}

.main-menu {
  text-align: center;
}
.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 8;
  color: var(--title-color);
}
.main-menu a:hover {
  color: var(--secondary-color);
}
.main-menu > ul > li {
  margin: 0 18px;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .main-menu > ul > li {
    margin: 0 18px;
  }
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li.menu-item-has-children > a:after {
  content: "\f107";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 5px;
  top: -0.8px;
  font-size: 0.8rem;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}

.vs-container1 {
  position: relative;
}
.vs-container1 .sticky-wrapper {
  position: absolute;
  width: 100%;
  left: 0;
  top: -50px;
  background-color: var(--white-color);
  border-radius: 6px;
}
.vs-container1 .vs-logo img {
  max-width: 210px;
}
.vs-container1.style3 .sticky-wrapper {
  background-color: var(--title-color);
}
.vs-container1.style3 .main-menu ul li > a {
  color: var(--white-color);
}
.vs-container1.style3 .main-menu ul li > a:hover {
  color: var(--secondary-color);
}
.vs-container1.style3 .header-info_label {
  color: var(--white-color);
}

.header-info {
  display: flex;
  align-items: center;
}
.header-info .icon-btn {
  margin-right: 8px;
}
.header-info .header-info_label {
  font-weight: 400;
  font-family: var(--title-font);
  font-size: 14px;
  line-height: 18px;
}

.header-info_label {
  font-size: 14px;
  color: var(--title-color);
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}

.header-info_link {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.header-info_link a {
  color: var(--title-color);
}
.header-info_link a:hover {
  color: var(--title-color);
}

.will-sticky {
  position: absolute;
  width: 100%;
  left: 0;
  top: 10%;
}
.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;
  background: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(33, 37, 41, 0.3803921569);
  padding: 10px 0;
}
.will-sticky .sticky-active.active .vs-logo img {
  display: none;
}
.will-sticky .sticky-active.active .vs-logo .sticky-logo img {
  display: block;
  max-height: 5rem;
  height: auto;
}
.will-sticky .sticky-active.active .vs-logo.style2::before {
  display: none;
}
.will-sticky .sticky-active.active .main-menu ul li > a {
  line-height: 5;
  color: var(--title-color);
}
.will-sticky .sticky-active.active .main-menu ul li > a:hover {
  color: var(--secondary-color);
}
.will-sticky .sticky-active.active .header-info_link a {
  color: var(--title-color);
}
.will-sticky .sticky-active.active .header-info_link a:hover {
  color: var(--secondary-color);
}
.will-sticky .sticky-active.active .header-info_label {
  color: var(--title-color);
}
.will-sticky .sticky-active.active .icon-btn.style1 {
  background-color: var(--title-color);
  border-color: var(--title-color);
}
.will-sticky .sticky-active.active .icon-btn.style1:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.will-sticky .sticky-active.active .bar-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.will-sticky .sticky-active.active .bar-btn.style1:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .main-menu > ul > li {
    margin: 0 12px;
  }
  .main-menu > ul > li > a {
    font-size: 16px;
  }
  .main-menu a {
    line-height: 6;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .main-menu {
    text-align: end;
  }
  .main-menu > ul > li {
    margin: 0 10px;
  }
  .main-menu > ul > li > a {
    font-size: 12px;
  }
  .header-info {
    display: block;
    --icon-size: 40px;
  }
  .vs-container1 .sticky-wrapper {
    border-radius: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .main-menu > ul > li {
    margin: 0 10px;
  }
  .sticky-wrapper {
    border-radius: 0;
    padding: 5px 0;
  }
  .vs-logo img {
    display: block;
    max-width: 140px;
    padding: 5px 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .header-top .dropdown {
    display: none;
  }
  .social-media {
    display: block;
    width: 100%;
  }
}
/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  overflow: hidden;
}

.widget-area {
  padding-bottom: 100px;
}
.widget-area .vs-widget-about {
  margin-bottom: 30px;
}

.copyright-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}

.copyright-text {
  margin: 0;
  font-weight: 400;
  color: var(--body-color);
  font-family: var(--title-font);
  font-size: 15px;
  line-height: 24px;
  text-transform: capitalize;
}
.copyright-text a {
  color: var(--smoke-color);
  font-weight: 700;
}
.copyright-text a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-layout.style1 .widget_title,
.footer-layout.style1 .footer-address,
.footer-layout.style1 .footer-text {
  color: var(--white-color);
}
.footer-layout.style1 ul li a {
  color: var(--white-color);
}

.footer-widget .sidebar-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.footer-widget.widget_nav_menu a {
  color: var(--white-color);
}
.footer-widget.widget_nav_menu a:hover {
  color: var(--secondary-color);
}

.terms-condition ul li a {
  color: var(--body-color);
  display: inline-block;
  transition: all 0.5s ease;
}
.terms-condition ul li a:hover {
  color: var(--secondary-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .widget-area {
    padding-bottom: 30px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .copyright-text {
    font-size: 14px;
  }
  .terms-condition ul li a {
    font-size: 14px;
  }
}
/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  margin: 0 0 0 0;
  padding: 42px 67px;
  list-style-type: none;
  font-size: 16px;
  background: var(--white-color);
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0px 10px 25px 0px rgba(1, 15, 48, 0.1019607843);
  position: relative;
  z-index: 1;
}
.breadcumb-menu li {
  display: inline;
  list-style: none;
  position: relative;
}
.breadcumb-menu li a {
  color: var(--title-color);
}
.breadcumb-menu li a:hover {
  color: var(--secondary-color);
}
.breadcumb-menu li:after {
  content: "/";
  position: relative;
  margin-left: 8px;
  margin-right: 5px;
  color: var(--title-color);
}
.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  color: var(--secondary-color);
}
.breadcumb-menu li:last-child:after {
  display: none;
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  word-break: break-word;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  font-family: var(--title-font);
  color: var(--secondary-color);
}
.breadcumb-menu li > i,
.breadcumb-menu a > i,
.breadcumb-menu span > i {
  margin-right: 10px;
}
.breadcumb-menu a {
  color: var(--white-color);
}
.breadcumb-menu a:hover {
  color: var(--secondary-color);
}

.breadcumb-title {
  font-size: 70px;
  color: var(--white-color);
  margin-bottom: 0;
  text-transform: capitalize;
  font-family: var(--title-font);
  line-height: 100%;
}

.breadcumb-subtitle {
  color: var(--white-color);
  font-size: 18px;
  margin: 22px 0 -0.25em 0;
}

.breadcumb-wrapper {
  padding-top: 255px;
  padding-bottom: 185px;
  margin-bottom: 50px;
  background-color: var(--title-color);
  position: relative;
}
.breadcumb-wrapper .breadcumb-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.breadcumb-wrapper .breadcumb-content img {
  margin-bottom: 5px;
}
/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper .breadcumb-content {
    display: block;
    text-align: center;
  }
  .breadcumb-wrapper .breadcumb-content img {
    display: none;
  }
}

.breadcumb-menu-wrap {
  position: absolute;
  bottom: -10%;
  right: 18%;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-title {
    font-size: 48px;
    margin-right: 0px;
  }
  .breadcumb-subtitle {
    font-size: 16px;
  }
  .breadcumb-menu {
    padding: 30px 50px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-title {
    font-size: 40px;
    margin: -0.05em 0 -0.07em 0;
  }
  .breadcumb-subtitle {
    font-size: 14px;
  }
  .breadcumb-wrapper {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .breadcumb-menu {
    display: inline-block;
    padding: 10px 16px;
    font-size: 14px;
  }
  .breadcumb-wrapper {
    margin-bottom: 0;
  }
  .breadcumb-menu-wrap {
    display: block;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 0 10px;
    z-index: 1;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .breadcumb-title {
    font-size: 30px;
    margin-right: 0px;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 14px;
  }
  .breadcumb-menu li:after {
    margin-left: 8px;
    margin-right: 5px;
  }
}
/*------------------- 4.8. hero  -------------------*/
.hero-content {
  position: relative;
  z-index: 1;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-layout1.style3 .hero-content {
  text-align: center;
  margin: 0 auto;
}
.hero-layout1.style3 .slick-dots {
  right: 4%;
  left: unset;
}
.hero-layout1.style3 .hero-inner {
  position: relative;
  padding: 355px 0 285px 0;
}
.hero-layout1.style3 .hero-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero-layout1.style3 .shape-mockup {
  z-index: 1;
}
.hero-layout1.style3 .hero-btns {
  justify-content: center;
}
.hero-layout1 .hero-content {
  max-width: 700px;
}
.hero-layout1 .hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--title-color);
  padding: 375px 0 295px;
  z-index: 1;
  overflow: hidden;
}
.hero-layout1 .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  bottom: 2%;
  z-index: 1;
  max-width: var(--main-container);
}
.hero-layout1 .slick-arrow.slick-prev {
  top: unset;
  bottom: 8%;
  right: 22%;
  left: unset;
}
.hero-layout1 .slick-arrow.slick-next {
  top: unset;
  bottom: 8%;
  right: 18.4%;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 74px;
  font-family: var(--title-font);
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 30px;
}

.hero-text {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--title-font);
  line-height: 26px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 30px;
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-layout1 {
    padding: 0;
  }
  .hero-layout1 .hero-inner {
    padding: 100px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 52px;
    line-height: 62px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .hero-layout1 {
    padding: 0;
  }
  .hero-layout1 .hero-inner {
    padding: 90px 0;
    min-height: auto;
  }
  .hero-layout1.style2 .hero-inner {
    padding: 100px 0;
  }
  .hero-layout1.style3 .hero-inner {
    padding: 100px 0;
    min-height: auto;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .hero-layout1 {
    padding: 0;
  }
  .hero-layout1 .hero-inner {
    padding: 80px 0;
    min-height: auto;
  }
  .hero-layout1.style2 .hero-inner {
    padding: 80px 0;
  }
  .hero-layout1.style3 .hero-inner {
    padding: 80px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 30px;
    line-height: 40px;
  }
}
/*------------------- 4.9. Service  -------------------*/
.service-style1 {
  background-color: var(--white-color);
  text-align: center;
  padding-bottom: 22px;
  transition: all 0.5s ease;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-style1 .service-img {
  overflow: hidden;
  border-radius: 10px;
  flex: 0 0 auto;
}
.service-style1 .service-img img {
  transform: scale(1);
  width: 100%;
  transition: all 0.5s ease;
  height: -webkit-fill-available;
  object-fit: cover;
}
.service-style1 .service-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin: -70px auto 15px auto;
  box-shadow: 0.5px 0.87px 27px rgba(35, 31, 32, 0.04);
  transform: scaleX(1);
  transition: all 0.5s ease;
}
.service-style1 .service-title {
  flex: 0 0 auto;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
  padding: 0 15px;
}
.service-style1 .service-text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--title-font);
  line-height: 24px;
  padding: 0 15px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: all 0.5s ease;
}
.service-style1 .link-btn {
  flex: 0 0 auto;
  padding: 0 15px;
}
.service-style1:hover {
  background-color: var(--theme-color);
}
.service-style1:hover .service-title {
  color: var(--white-color);
}
.service-style1:hover .service-title a:hover {
  color: #dddddd;
}
.service-style1:hover .service-text {
  color: var(--white-color);
}
.service-style1:hover .service-icon {
  transform: scaleX(-1);
  background-color: var(--theme-color);
}
.service-style1:hover .service-icon img {
  filter: brightness(0) invert(1);
}
.service-style1:hover .link-btn a {
  color: var(--white-color);
}
.service-style1:hover .link-btn a:hover {
  color: #dddddd;
}
.service-style1:hover .service-img img {
  transform: scale(1.1);
}

.service .slick-track {
  padding-top: 12px;
}
.service .slick-slide:nth-child(odd) {
  margin-top: 30px;
}

/* Medium devices */
@media (max-width: 991px) {
  .service .slick-slide:nth-child(odd) {
    margin-top: 0px;
  }
}

.service_style5 .service_inner {
  position: relative;
  transition: all 0.5s ease;
}
.service_style5 .service_inner .service_img img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}
.service_style5 .service_inner .service_icon {
  position: absolute;
  top: 40px;
  right: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.service_style5 .service_inner .service_icon .icon-btn {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}
.service_style5 .service_inner .service_icon .icon-btn i {
  color: var(--white-color);
  transform: rotate(45deg);
}
.service_style5 .service_inner .service_icon .icon-btn:hover {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.service_style5 .service_inner .service_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px;
}
.service_style5 .service_inner .service_content .service_title {
  color: var(--white-color);
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 0;
}
.service_style5 .service_inner .service_content .service_title:hover {
  color: var(--secondary-color);
}
.service_style5 .service_inner:hover .service_icon {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1497px) {
  .service_style5 .service_inner .service_content .service_title {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .service_style5 .service_inner .service_content .service_title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .service_style5 .service_inner .service_content .service_title {
    font-size: 26px;
  }
}
/*------------------- 4.10. explore  -------------------*/
.picture-box1 {
  position: relative;
}
.picture-box1 .media-box1 {
  position: absolute;
  top: 13%;
  right: 0;
  background-color: var(--secondary-color);
  padding: 45px;
  border-radius: 10px;
}
.picture-box1 .media-box1 .media-title {
  color: var(--white-color);
  font-size: 36px;
  font-family: var(--title-font);
  line-height: 46px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.picture-box1 .media-box1 .media-text {
  font-size: 24px;
  color: var(--white-color);
  font-family: var(--title-font);
  text-transform: capitalize;
  line-height: 36px;
  font-weight: 600;
  margin: 0;
}
.picture-box1.style1 {
  margin-bottom: -50px;
  text-align: start;
  z-index: 1;
}
.picture-box1.style2 {
  text-align: end;
  z-index: 0;
}
.picture-box1.style2 .media-box1 {
  top: unset;
  right: unset;
  bottom: 13%;
  left: 0;
  background-color: var(--theme-color);
}

.explore-shape {
  top: -5%;
  left: 0%;
}

.img_box1 {
  position: relative;
}
.img_box1.style2 {
  margin-top: 55px;
}
.img_box1 .img_1,
.img_box1 .img_2 {
  border-radius: 0px;
  overflow: hidden;
  width: max-content;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.img_box1 .img_1 img,
.img_box1 .img_2 img {
  border-radius: 0;
  height: 100%;
  width: 100%;
}
.img_box1 .img_2 {
  right: 35px;
  z-index: 0;
  margin: -62px 0 0 auto;
}
.img_box1 .exp_box1 {
  background-color: var(--secondary-color);
  position: absolute;
  right: 10px;
  top: 50px;
  padding: 45px 30px;
  border-radius: 10px;
  z-index: 1;
}
.img_box1 .exp_box1:last-child {
  top: auto;
  right: auto;
  left: -30px;
  bottom: 50px;
  background-color: var(--theme-color);
}
.img_box1 .exp_box_title {
  color: var(--white-color);
  margin: 0;
  font-size: 34px;
}
.img_box1 .exp_box_text {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .picture-box1 {
    margin-bottom: 30px;
  }
  .img_box1.style2 {
    margin-top: 50px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .img_box1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
  }
  .img_box1.style2 {
    margin-top: 0px;
    margin-bottom: 0;
  }
  .img_box1 .img_1,
  .img_box1 .img_2 {
    width: 100%;
  }
  .img_box1 .img_1 img,
  .img_box1 .img_2 img {
    border-radius: 10px;
  }
  .img_box1 .img_2 {
    margin: 0;
    right: 0;
  }
  .img_box1 .exp_box1 {
    top: auto;
    bottom: 30px;
    background-color: rgba(15, 107, 172, 0.8588235294);
    padding: 24px 24px;
    backdrop-filter: blur(3px);
  }
  .img_box1 .exp_box1:last-child {
    top: auto;
    right: auto;
    left: 0;
    bottom: 30px;
  }
  .img_box1 .exp_box_title {
    font-size: 30px;
  }
  .picture-box1.style1 .img-1 {
    margin-bottom: 30px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .img_box1 .exp_box1 {
    top: 0;
    left: 0;
    padding: 15px 15px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    background-color: var(--theme-color);
  }
  .img_box1 .exp_box1:last-child {
    bottom: 0;
  }
  .img_box1 .exp_box_title {
    font-size: 18px;
  }
  .img_box1 .exp_box_text {
    font-size: 12px;
  }
}
/*------------------- 4.12. team  -------------------*/
.team_style2 {
  display: flex;
  align-items: flex-start;
  margin: 0 0 18px 15px;
}
.team_style2 .team_img {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  flex-shrink: 1;
}
.team_style2 .team_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1;
}
.team_style2 .team_img:before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  border: 30px solid var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0% 100%);
  transform: rotate(50deg);
  pointer-events: none;
  transition: all ease 0.4s;
}
.team_style2 .team_content {
  flex: 1;
  padding: 0 0 0 var(--img-gap, 30px);
}
.team_style2 .team_info {
  position: relative;
  flex: 1;
  z-index: 1;
  padding: 25px 30px 30px 0;
}
.team_style2 .team_info::before {
  content: "";
  position: absolute;
  left: calc((var(--img-size, 300px) + var(--img-gap, 30px)) / -2);
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: -1;
  border-radius: 0 30px 30px 0;
}
.team_style2 .team_name {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  font-family: var(--title-font);
  margin: 0 0 5px 0;
}
.team_style2 .team_name a {
  color: inherit;
}
.team_style2 .team_name a:hover {
  color: var(--theme-color);
}
.team_style2 .team_degi {
  color: var(--theme-color);
  font-weight: 700;
  margin: 0 0 25px 0;
}
.team_style2 .team_mail {
  display: inline-block;
  padding: 1px 20px 1px 1px;
  font-weight: 700;
  background-color: var(--smoke-color);
  color: var(--title-color);
  font-size: 14px;
  font-family: var(--title-font);
  border-radius: 9999px;
  transition: all ease 0.4s;
}
.team_style2 .team_mail i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  margin-right: 15px;
  border-radius: 50%;
  color: var(--theme-color);
  background-color: var(--white-color);
}
.team_style2 .team_mail:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.team_style2 .team_social {
  padding: 20px 0 0 0;
}
.team_style2 .team_social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white-color);
  color: var(--theme-color);
  transition: all ease 0.4s;
  margin: 0 3px 0 0;
  border-radius: 50%;
}
.team_style2 .team_social a:last-child {
  margin-right: 0;
}
.team_style2 .team_social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.team_style2.space-style1 {
  padding-bottom: 115px;
}
.team_style2:hover .team_img:before {
  transform: rotate(30deg);
  border-color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .team_style2 .team_img {
    width: 250px;
    height: 250px;
  }
  .team_style2 .team_name {
    font-size: 26px;
  }
  .team_style2 .team_info {
    padding: 25px 20px 30px 0;
  }
  .team_style2 .team_mail {
    font-size: 12px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .team_style2 {
    display: block;
    overflow: hidden;
  }
  .team_style2 .team_info::before {
    left: 0;
    border-radius: 20px;
  }
  .team_style2 .team_info {
    padding: 30px;
  }
  .team_style2.space-style1 {
    padding-bottom: 0px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .team_style2 {
    display: block;
    text-align: center;
    margin: 0 0 0px 0;
  }
  .team_style2 .team_img {
    margin: 0 auto 30px auto;
    width: 200px;
    height: 200px;
  }
  .team_style2 .team_info {
    padding: 20px;
  }
  .team_style2 .team_info::before {
    left: 0;
    right: 0;
    border-radius: 20px;
  }
  .team_style2 .team_mail {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
  }
  .team_style2 .team_degi {
    margin: 0 0 15px 0;
  }
  .team_style2 .team_content {
    padding: 0;
  }
}
/* Smaller devices */
@media (max-width: 480px) {
  .team_style2 .team_img {
    width: 180px;
    height: 180px;
  }
}

.range-slider {
  height: 10px;
  position: relative;
  background-color: #e1e9f6;
  border-radius: 5px;
}

.range-selected {
  height: 100%;
  left: 30%;
  right: 30%;
  position: absolute;
  border-radius: 5px;
  background-color: var(--theme-color);
}

.range .filter-btn {
  padding: 10px 23px;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.thumbs-item {
  list-style: none;
  padding: 18px 10px;
  margin: 0 5px;
  text-align: center;
  background-color: var(--smoke-color);
  border-radius: 10px;
  border: 1px solid transparent;
}
.thumbs-item:hover {
  border-color: var(--theme-color);
}
.thumbs-item.slick-center {
  border: 1px solid var(--theme-color);
}

/*------------------- 4.16. testimonial  -------------------*/
.testi-img1 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.testi-img1 .testi-item2 {
  border-radius: 50%;
  padding: 20px;
  position: relative;
}
.testi-img1 .testi-item2 img {
  border-radius: 100%;
  position: relative;
  background-color: var(--white-color);
  z-index: 9;
  border: 40px solid var(--white-color);
}
.testi-img1 .testi-item2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(
    to right,
    rgba(236, 245, 251, 0) 50%,
    rgb(55, 175, 227)
  );
  border-radius: 50%;
  clip-path: polygon(47% 0, 100% 0%, 100% 100%, 47% 100%);
}
.testi-img1 .testi-item2 img {
  border-radius: 100%;
}

.testi-img {
  position: relative;
  max-width: 250px;
  min-height: 262px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 281/224;
}

.testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testi_style1 {
  padding: 56px 90px 90px 120px;
}
.testi_style1.style2 {
  padding: 90px 90px 90px 70px;
}
.testi_style1.style2 .title-area {
  margin-bottom: 10px;
}
.testi_style1 .title-area {
  text-align: left;
}
.testi_style1 .sec_subtitle {
  color: #f9f7e6;
}
.testi_style1 .sec_title {
  color: var(--title-color);
  margin: 0 0 28px 0;
}
.testi_style1 .testi_quote {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--white-color);
  color: var(--theme-color);
  border-radius: 10px;
  font-size: 38px;
  margin-bottom: 22px;
}
.testi_style1 .testi_quote.no-width {
  width: auto;
  height: auto;
  line-height: 1;
  text-align: inherit;
  background-color: transparent;
}
.testi_style1 .testi_text {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: var(--title-color);
  font-family: var(--title-font);
  margin: 0 0 22px 0;
}
.testi_style1 .testi_author {
  font-size: 24px;
  line-height: 1;
  margin: 0 0 15px 0;
  color: var(--theme-color);
  font-weight: 700;
  font-family: var(--title-font);
}
.testi_style1 .testi_degi {
  line-height: 1;
  color: #364863;
  display: block;
  font-family: var(--title-font);
}

.testi_avater1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 65px;
}
.testi_avater1.style2 {
  transform: translate(-78%, -50%);
}
.testi_avater1.style2 .slick-center {
  background-color: var(--theme-color);
}
.testi_avater1.style2 .avater {
  background-color: var(--secondary-color);
}
.testi_avater1.style2 .avater.slick-center {
  background-color: var(--theme-color);
}
.testi_avater1.style2 .avater:hover {
  background-color: var(--theme-color);
}

.avater {
  background-color: var(--white-color);
  padding: 6px;
  border-radius: 50%;
  margin: 10px auto;
  cursor: pointer;
  transition: all ease 0.4s;
}
.avater img {
  width: 100%;
}
.avater:hover {
  background-color: var(--theme-color);
}

.slick-center.avater {
  background-color: var(--theme-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .testi_style1 {
    padding: 60px 60px 60px 40px;
  }
  .testi_style1 .sec_title {
    margin: 0 0 30px 0;
  }
  .testi_style1 .testi_quote {
    width: 65px;
    height: 65px;
    line-height: 66px;
    font-size: 26px;
  }
  .testi_style1 .testi_text {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 22px 0;
  }
  .vs-comapany-welcome {
    width: 100%;
    overflow: hidden;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .testi_avater1 {
    width: 400px;
    max-width: 100%;
  }
  .testi_avater1.style2 {
    transform: translate(-50%, -50%);
  }
  .testi_avater1.style2 .avater {
    padding: 3px;
    margin: auto 12px;
  }
  .testi_avater1 .avater {
    padding: 3px;
    margin: auto 12px;
  }
  .testi_style1 {
    text-align: center;
  }
  .testi_style1 .title-area {
    text-align: center;
  }
  .testi_style1 .testi_quote {
    margin-left: auto;
    margin-right: auto;
  }
  .testi_style1.style2 {
    padding: 90px 90px 0px 70px;
  }
  .testimonial .vs-container1 {
    padding: 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .testi_style1 {
    padding: 80px 15px 70px 15px;
  }
  .testi_style1.style2 {
    padding: 70px 0px 0px 0px;
  }
  .testimonial-btn .author-info {
    margin-top: 15px;
    padding-bottom: 0;
    cursor: pointer;
  }
  .testi_avater1 {
    max-width: 80%;
  }
  .testi_avater1 .avater {
    padding: 3px;
    margin: auto 8px;
  }
}

/*------------------- 4.17. Updates  -------------------*/
.blog-style2 {
  background-color: var(--smoke-color);
  border-radius: 6px;
  transition: all 0.5s ease;
}
.blog-style2.vs-blog {
  background-color: var(--white-color);
}
.blog-style2:hover .blog-img img {
  transform: scale(1.2);
}
.blog-style2 .blog-title {
  font-size: 24px;
  line-height: 36px;
}
.blog-style2 .blog-img {
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
  border-radius: 6px;
}
.blog-style2 .blog-img img {
  transform: scale(1);
  transition: all 0.5s ease;
  height: 250px;
  object-fit: cover;
}
.blog-meta2 {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: rgba(15, 107, 172, 0.8509803922);
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 0;
}
.blog-meta2 span {
  display: block;
  color: var(--white-color);
}
.blog-meta2 .month {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--title-font);
}
.blog-content {
  padding: 25px;
  border-radius: 6px;
}
.blog-title {
  font-weight: 600;
  font-family: var(--title-font);
  text-transform: capitalize;
}
.blog-text {
  font-family: var(--title-font);
  line-height: 20px;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .blog-style2 .blog-title {
    font-size: 20px;
    line-height: 30px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-style2 .blog-title {
    font-size: 20px;
    line-height: 30px;
  }
  .blog-style2 .blog-text {
    font-size: 14px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blog-style2 .blog-content {
    padding: 30px 20px;
  }
  .blog-style2 .blog-content {
    padding: 30px 20px;
  }
}

/*------------------- 4.18. subscribe  -------------------*/
.subscribe.style1 {
  transform: translateY(50%);
  position: relative;
  padding: 70px;
  overflow: hidden;
}
.subscribe.style1::after {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--body-color);
  border-radius: 30px;
  z-index: 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .subscribe {
    background-color: var(--body-color);
    border-radius: 10px;
  }
  .subscribe.style1::after {
    width: 100%;
    border-radius: 30px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .subscribe {
    text-align: center;
  }
  .subscribe .sec-title {
    margin-bottom: 30px;
  }
  .subscribe.style1 {
    transform: translateY(32%);
    padding: 30px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .subscribe::after {
    width: 100%;
    border-radius: 0;
  }
  .subscribe .sec-title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .subscribe.style1 {
    padding: 30px 10px;
  }
  .subscribe.style1 input {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 5px;
  }
}
/*------------------- 4.19. forms  -------------------*/
.form-style {
  position: relative;
  width: 595px;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--white-color);
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.form-style .form-group .form-select {
  border-left: 1px solid #dee4f9;
  border-right: unset;
  border-top: unset;
  border-bottom: unset;
  background-image: none;
  padding: 0 30px 0 53px;
  color: #8e95b1;
  font-weight: 500;
}
.form-style .form-group i {
  left: 8%;
  font-size: 20px;
  line-height: 12px;
}
.form-style .vs-btn i {
  font-size: 20px;
}

.subscribe .form-style input {
  border-radius: 6px;
  /* Small devices */
}
@media (max-width: 767px) {
  .subscribe .form-style input {
    margin-bottom: 10px;
  }
}

.form-style2 select,
.form-style2 input {
  border-radius: 6px;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .form-style {
    width: 520px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .form-img1 {
    margin: 0;
    padding: 60px 0;
  }
  .form-img1 img {
    width: 100%;
  }
  .form-style2.layout2 {
    padding: 0 20px 0 0;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .form-style2.layout2 {
    padding: 0 0 0 0;
  }
  .form-style2.layout2 .form-title {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .form-style2.layout2 textarea,
  .form-style2.layout2 input {
    padding-left: 20px;
  }
  .form-style2 {
    margin-top: 20px;
  }
  .form-style2 .form-group {
    width: 100%;
  }
  .form-style3 {
    max-width: 100%;
  }
  .form-style3 .form-select {
    padding: 0 30px 0 44px;
    font-size: 12px;
  }
  .form-style3 .form-control {
    padding: 0 30px 0 44px;
    font-size: 12px;
  }
  .form-style5 {
    padding: 60px 15px;
    max-width: 100%;
  }
  .form-title .sec-title2 {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 140%;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .form-img1 {
    padding: 60px 0 0 0;
  }
  .form-style2 .form-title {
    margin: 0 0 30px 0;
  }
  .form-style2 {
    margin-top: 20px;
  }
  .form-style2 .form-group input {
    font-size: 12px;
  }
  .form-style3 {
    display: none;
  }
  .form-style5 {
    padding: 60px 15px;
    max-width: 100%;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .form-style2 .form-title {
    margin: 0 0 30px 0;
    font-size: 20px;
  }
  .form-style2 input,
  .form-style2 select {
    height: 50px;
    padding-left: 15px;
    background-position: right 15px center;
  }
  .form-style4 {
    padding: 40px 20px;
  }
}
/*------------------- 4.22. feature -------------------*/
.feature-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  line-height: 30px;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 14px;
  font-family: var(--title-font);
  line-height: 24px;
  transition: all 0.5s ease;
}

.feature-style1 .feature-body {
  background-color: var(--smoke-color);
  border-radius: 6px;
  transition: all 0.5s ease;
}
.feature-style1 .feature-body .icon-box1 {
  position: absolute;
  right: -16%;
  top: 50%;
  transform: scaleX(1) translateY(-50%);
  padding: 10px;
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  transition: all 0.5s ease;
}
.feature-style1 .feature-body .feature-icon {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background-color: var(--theme-color);
  transition: all 0.5s ease;
}
.feature-style1 .feature-body .feature-icon img {
  filter: brightness(0) invert(1);
  transition: all 0.5s ease;
}
.feature-style1 .feature-body:hover {
  background-color: var(--theme-color);
}
.feature-style1 .feature-body:hover .icon-box1 {
  border-color: var(--white-color);
  transform: scaleX(-1) translateY(-50%);
}
.feature-style1 .feature-body:hover .icon-box1 .feature-icon {
  background-color: var(--white-color);
}
.feature-style1 .feature-body:hover .icon-box1 .feature-icon img {
  filter: brightness(1) invert(0);
}
.feature-style1 .feature-body:hover .feature-title {
  color: var(--white-color);
}
.feature-style1 .feature-body:hover .feature-title:hover a {
  color: #dddddd;
}
.feature-style1 .feature-body:hover .feature-text {
  color: var(--white-color);
}
.feature-style1 .feature-img img {
  max-height: 202px;
  object-fit: cover;
  height: revert-layer;
}
.feature-style2 {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.feature-style2 .feature-img img {
  height: 250px;
  object-fit: cover;
  max-height: none;
}
.feature-style2 .feature-body {
  background-color: var(--smoke-color);
  border-radius: 6px;
}
.feature-style2 .feature-body .feature-img img {
  border-radius: 0;
  width: 100%;
}
.feature-style2 .feature-body {
  align-content: center;
}
.feature-style2 .feature-body .feature-title {
  font-size: 24px;
  line-height: 32px;
}
.feature-style2 .feature-body .feature-text {
  font-weight: 700;
}
.feature-style2 .feature-body.reverse-style .feature-img img {
  border-radius: 0;
}
.feature-style2 .feature-body.reverse-style .feature-content {
  padding: 20px 10px 20px 30px;
}

/* Large devices */
@media (max-width: 1199px) {
  .feature-style2 .feature-body .feature-title {
    font-size: 22px;
    line-height: 28px;
  }
  .feature-style2 .feature-body .feature-content {
    padding: 20px 20px 20px 0px;
  }
  .feature-style2 .feature-body.reverse-style .feature-content {
    padding: 20px 0px 20px 10px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .feature-style2 {
    margin-bottom: 0px;
  }
  .feature-style2 .feature-body .feature-content {
    padding: 30px;
  }
  .feature-style2 .feature-body.reverse-style .feature-content {
    padding: 30px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .feature-style1 .feature-img {
    border-radius: 6px;
    overflow: hidden;
  }
  .feature-style1 .feature-img img {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
  }
  .feature-style1 .feature-body .icon-box1 {
    right: unset;
    top: unset;
    left: 50%;
    bottom: -15%;
    transform: translateX(-50%);
  }
  .feature-style1 .feature-body:hover .icon-box1 {
    transform: translateX(-50%);
  }
  .feature-style1 .feature-body .feature-content {
    padding: 10px;
    text-align: center;
  }
}
/*------------------- 4.23. contact -------------------*/
.info-box {
  background-color: #010f30;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: -94px;
}
.info-box .media-icon {
  width: 60px;
  height: 60px;
  line-height: 66px;
  background-color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  margin-right: 20px;
}
.info-box .media-icon i {
  color: var(--theme-color);
  font-size: 25px;
  line-height: 35px;
}
.info-box .info-box-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  line-height: 30px;
  margin-bottom: 0;
}
.info-box .media-info {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 14px;
  line-height: 24px;
}
.info-box .vs-media {
  border: 1px solid #ecf5fb;
  padding: 20px;
  border-radius: 0.5rem;
}

.contact-form {
  background-color: var(--smoke-color);
  padding: 60px;
  border-radius: 6px;
}

/* Small devices */
@media (max-width: 767px) {
  .contact-form {
    padding: 30px;
  }
  .info-box {
    padding: 15px;
  }
  .info-box .vs-media {
    display: block;
  }
  .info-box .media-icon {
    margin-bottom: 20px;
  }
}
/* Smaller devices */
@media (max-width: 565px) {
  .info-box {
    margin-bottom: -10px;
  }
}

/*=================================
      05. Spacing
  ==================================*/
/*-- Padding Left And Right --*/
.pt-30 {
  padding-top: 30px;
}

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

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

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

.e-pb {
  padding-bottom: 195px;
}

/*-- margin Left And Right --*/
.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-20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.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);
}

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

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

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

/* Large devices */
@media (max-width: 1199px) {
  .space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/* 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;
  }
}
/*=================================
      06. Pages
  ==================================*/
.picture-box1 {
  position: relative;
}
.picture-box1 .img-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -75%);
}
.picture-box1 .img-2 .about-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.picture-box1 .img-2 .about-content .shep-title {
  color: var(--white-color);
  margin-bottom: 0;
  line-height: 120%;
}
.picture-box1 .img-2 .about-content .shep-text {
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 0;
}

.testimonial-layout1 {
  padding-bottom: 90px;
}
.testimonial-layout1 .testi_style1 {
  padding: 0;
}
.testimonial-layout1 .sec-line {
  margin: 0;
}
.testimonial-layout1 .sec_title {
  color: var(--white-color);
}
.testimonial-layout1 .testi_text {
  color: var(--white-color);
  font-weight: 300;
  margin-bottom: 32px;
}
.testimonial-layout1 .testi-content {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}
.testimonial-layout1 .testi-content .testi-img img {
  max-width: 200px;
  max-height: 200px;
}
.testimonial-layout1 .testi-content .testi-img .testi_quote {
  position: absolute;
  top: 0;
  right: 26px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 0px 0px 0px 10px;
}
.testimonial-layout1 .testi-content .testi-desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial-layout1 .testi-content .testi-desc .testi_author {
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 0;
}
.testimonial-layout1 .testi-content .testi-desc .testi_degi {
  font-size: 12px;
  color: var(--secondary-color);
}
.testimonial-layout1 .testi-content .testi-rating i {
  color: #ffb800;
}
.testimonial-layout1 .testi-item {
  margin-bottom: 30px;
}

/* Large devices */
@media (max-width: 1199px) {
  .picture-box1 .about-content .shep-title {
    font-size: 28px;
  }
  .picture-box1 .about-content .shep-text {
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .testimonial-layout1 {
    padding-bottom: 50px;
  }
  .testimonial-layout1 .sec-line {
    margin: 0 auto;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .testimonial-layout1 .testi-content {
    display: block;
  }
  .testimonial-layout1 .testi-content .testi-img {
    max-width: 100%;
    width: 100%;
  }
  .testimonial-layout1 .testi-content .testi-img img {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
    width: 100%;
  }
  .picture-box1 .about-content .shep-title {
    font-size: 20px;
  }
  .picture-box1 .about-content .shep-text {
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 0;
  }
}
.testimonial-layout1.style2 .testi-content .testi-img img {
  width: 100%;
  max-height: 100%;
  min-width: 224px;
}
.testimonial-layout1.style2 .testi-content .testi-text p {
  line-height: 20px;
}
.testimonial-layout1.style2 .testi-content .testi_author {
  font-size: 18px;
}
.testimonial-layout1.style2 .testi-content .testi-inner {
  padding: 15px 10px 0px;
}
.testimonial-layout1.style2 .testi-item {
  margin-bottom: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .testimonial-layout1.style2 .testi-item {
    margin-bottom: 0;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Service Details */
.service-img-container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}
.service-img-container .service-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1220/500;
}
.service-img-container .service-img img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
}
@media (min-width: 1600px) {
  .service-img-container {
    max-width: 90%;
  }
}
@media (min-width: 2000px) {
  .service-img-container {
    max-width: 80%;
  }
}
/* Gallery Page */
.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding-top: 65%;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Overlay Styles */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.gallery-overlay.service-folder {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-icon {
  color: white;
  font-size: 2rem;
}

/* Filter Buttons */
.filter-btn {
  border: solid 1px #0f6bac;
  background: white;
  transition: all 0.2s ease;
  outline: none;
}

.filter-btn.active {
  background: #0f6bac;
  color: white;
  border: 1px solid #0f6bac;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Messages */
.no-results,
.no-items {
  text-align: center;
  padding: 2rem;
  display: none;
}

.cursor-pointer {
  cursor: pointer;
}

/* Phone number field -Contact Form */
.iti {
  width: 100%;
}

/* Toast Message */
.toast {
  background-color: var(--theme-color) !important;
  color: var(--white-color) !important;
  border: 1px solid #ddd !important;
}
.toast-success {
  border-color: #d6e9c6 !important;
  background-color: #28a745 !important;
}
.toast-error {
  border-color: #ebccd1 !important;
  background-color: #dc3545 !important;
}

/* Hover theme color */
.theme-hover:hover {
  color: var(--theme-color) !important;
}

/* Aspect ration */
.aspect-ratio-service {
  --aspect-ratio: 65%;
}

.img-1 {
  position: relative;
  display: inline-block;
}

.picture-box1 {
  position: relative;
}
.picture-box1 .media-box1 {
  position: absolute;
  top: 13%;
  right: 0;
  background-color: var(--secondary-color);
  padding: 45px;
  border-radius: 10px;
}

.youtube-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 60px;
  background: #ff0000;
  border-radius: 20%;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
}

.youtube-icon-overlay::before {
  content: "";
  position: absolute;
  left: inherit;
  top: inherit;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 30px;
  border-color: transparent transparent transparent #fff;
}

.service_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #010f304d;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service_img {
  position: relative;
  overflow: hidden;
}

.service_img:hover .service_overlay {
  opacity: 1;
}

.service_overlay a {
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  background-color: var(--black-color);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Gallery video badge */
.video-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(13, 110, 253, 0.8);
  color: white;
  font-size: 0.5rem;
  z-index: 1;
}

.service-gallery-image img {
  height: 250px !important;
  object-fit: cover !important;
}

.service-gallery-image .div-video-tag {
  position: relative;
  overflow: hidden;
  height: 250px !important;
}

@media (max-width: 768px) {
  .service-gallery-image img, .service-gallery-image .div-video-tag  {
    height: 200px !important;
  }
}

@media (min-width: 1800px) {
  .service-gallery-image img, .service-gallery-image .div-video-tag  {
    height: 400px !important;
    max-height: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
