
@use "sass:math";
:root {
  --theme-color: #ffbe5a;
  --title-color: #fff;
  --title-black: #01000F;
  --body-color: #999999;
  --body-bg: #272727;
  --smoke-color: #323232;
  --black-color: #000000;
  --white-color: #ffffff;
  --light-color: #B0B0B0;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: rgba(255, 255, 255, 0.15);
    --dark-border-color: rgba(0, 0, 0, 0.15);
  --title-font: 'Oswald', sans-serif;
  --body-font: 'Oswald', sans-serif;
  --para-font: 'Poppins', sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1410px;
  --container-gutters: 30px;
  --section-space: 130px;
  --section-space-mobile: 100px;
  --section-title-space: 70px;
  --ripple-ani-duration: 5s;
}

html,
body {
  scroll-behavior: auto !important;
  scrollbar-width: thin;
}

html::-webkit-scrollbar-track {

  background-color: transparent;
}

html::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

body {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 25px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-color: var(--body-bg);
}

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;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

li {
  font-size: 14px;
    font-family: var(--para-font);

}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  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 {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  font-family: var(--para-font);
  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);
  font-family: var(--para-font);
  line-height: 1.666;
}

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;
  display: block;
}

.h1,
h1 {
  font-size: 60px;
  line-height: 1.1666;
}

.h2,
h2 {
  font-size: 48px;
  line-height: 1.208;
}

.h3,
h3 {
  font-size: 36px;
  line-height: 1.278;
  font-weight: 500;
}

.h4,
h4 {
  font-size: 30px;
  line-height: 1.333;
  font-weight: 400;
}

.h5,
h5 {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 400;
}

.h6,
h6 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 54px;
  }
  .h2,
  h2 {
    font-size: 44px;
  }
  .h3,
  h3 {
    font-size: 34px;
  }
  .h4,
  h4 {
    font-size: 28px;
  }
  .h5,
  h5 {
    font-size: 24px;
  }
  .h6,
  h6 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .h1,
  h1 {
    font-size: 48px;
  }
  .h2,
  h2 {
    font-size: 40px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 26px;
  }
  .h5,
  h5 {
    font-size: 22px;
  }
}

/* Small devices */
@media (max-width: 767px) {

  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 32px;
  }
}

@media only screen and (min-width: 1440px) {
  .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 (min-width: 1800px) {
  .olc-container {
    --main-container: 1720px;
  }
}



@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;
  }
}


.slick-track > [class*=col] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          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);
}

.variable-width .slick-track > [class*=-auto] {
  width: auto !important;
}

@media (min-width: 1199px) {
  .row:not([class*="gx-"]) {
    --bs-gutter-x: 30px;
  }
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-40 {
  --bs-gutter-y: 40px;
}

.gy-130 {
  --bs-gutter-y: 130px;
}

@media (min-width: 1500px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}




select,
.form-control,
.form-select,
textarea,
input {
  height: 62px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--smoke-color);
  border-radius: 9999px;
  border-radius: 0;
  font-size: 16px;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
  background-color: var(--smoke-color);
  color: var(--body-color);
}

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::-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::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-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::-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-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 23px;
  font-size: 16px;
  color: var(--body-color);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

.form-group > i.fa-comment {
  margin-top: -2px;
}

.form-group > i.fa-chevron-down {
  width: 17px;
  background-color: var(--white-color);
}

.form-group.has-label > i {
  top: 50px;
}
.form-group .u-are {
    display: flex; gap: 20px;
}
[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

[class*="col-"].form-group .style2 ~ i {
  left: calc((var(--bs-gutter-x) / 2) + 25px);
}

.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;
}

option:checked, option:focus, option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -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: 30px;
  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: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  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;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.wth-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(.375em + 0.8875rem) center;
  background-image: none;
}

textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.wth-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(.375em + 0.5875rem) right calc(.375em + .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;
}

.slick-track > [class*=col] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          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);
}

.slick-track {
  min-width: 100%;
}

.slick-slide img {
  display: inline-block;
}

.slick-dots {
  list-style-type: none;
  padding: 0 0;
  margin: 38px 0 30px 0;
  line-height: 0;
  text-align: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots button {
  font-size: 0;
  padding: 0;
  width: 135px;
  height: 1px;
  line-height: 0;
  border: none;
  background-color: var(--dots-bg, rgba(255, 255, 255, 0.3));
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: relative;
}

.slick-dots button::before {
  content: "";
  height: 100%;
  width: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  background-color: var(--white-color);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

.slick-dots .slick-active button::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.slick-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--body-bg);
  color: var(--white-color);
  position: absolute;
  top: 50%;
  border: 1px solid #3B3B3B;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
  left: var(--pos-x, -100px);
  width: var(--icon-size, 65px);
  height: var(--icon-size, 65px);
  font-size: var(--icon-font-size, 20px);
  margin-top: calc(var(--icon-size, 65px) / -2);
  z-index: 2;
  border-radius: 0;
}

.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: var(--theme-color);
}

.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;
}

@media (max-width: 1500px) {
  .slick-arrow {
    --arrow-horizontal: -20px;
    --pos-x: -70px;
  }
}



@media (max-width: 1199px) {
  .slider-nav-wrap {
    text-align: center;
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .slick-dots {
    margin: 8px 0 38px 0;
  }
}

.icon-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.icon-box.style1 .slick-arrow {
  border-color: var(--body-bg);
}

.icon-box.style1 .slick-arrow:hover {
  border-color: var(--theme-color);
  color: var(--black-color);
}

.icon-box.style2 {
  gap: 20px;
}

.icon-box.style2 .slick-arrow {
  box-shadow: none;
}

.icon-box.style2 .slick-arrow:hover {
  background-color: #3B3B3B;
  border-color: #3B3B3B;
}

.icon-box .slick-arrow {
  margin-right: 0;
}

.olc-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%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.olc-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
}

.olc-menu-wrapper .mobile-logo img {
  max-width: 185px;
}

.olc-menu-wrapper .olc-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -17px;
  top: 17px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--title-black);
  background-color: var(--theme-color);
  border-radius: 50%;
}

.olc-menu-wrapper .olc-menu-toggle:hover {
  background-color: var(--body-bg);
  color: var(--white-color);
}

.olc-menu-wrapper .olc-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--body-bg);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.olc-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.olc-menu-wrapper.th-body-visible .olc-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.olc-mobile-menu {
  overflow-y: scroll;
  scrollbar-width: thin;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.olc-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.olc-mobile-menu ul li {
  border-bottom: 1px solid var(--border-color);
  list-style-type: none;
}

.olc-mobile-menu ul li li:first-child {
  border-top: 1px solid var(--border-color);
}

.olc-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
}

.olc-mobile-menu ul li a:before {
  content: '\f105';
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
}

.olc-mobile-menu ul li.th-active > a {
  color: var(--theme-color);
}

.olc-mobile-menu ul li.th-active > a:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.olc-mobile-menu ul li ul li {
  padding-left: 20px;
}

.olc-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.olc-mobile-menu ul .th-item-has-children > a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 24px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.olc-mobile-menu ul .th-item-has-children > a .th-mean-expand:before {
  content: '\f067';
  font-family: var(--icon-font);
}

.olc-mobile-menu ul .th-item-has-children.th-active > a .th-mean-expand:before {
  content: '\f068';
}

.olc-mobile-menu > ul {
  padding: 0 40px;
}

.olc-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

/* Scrollbar */
.olc-mobile-menu::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}

.olc-mobile-menu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.olc-mobile-menu::-webkit-scrollbar-thumb {
  background-color: var(--body-color);
  outline: none;
}

.olc-menu-toggle {
  width: 50px;
  height: 50px;
  line-height: 1;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 0;
}

.olc-menu-toggle.style-text, .olc-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.olc-menu-toggle.style-text i, .olc-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.olc-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .olc-menu-wrapper .olc-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .olc-mobile-menu > ul {
    padding: 0 20px;
  }
}

.ocl-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--title-black);
  font-family: var(--para-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 22px 30px;
  border-radius: 0;
  border: none;
}

.ocl-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 200%;
  background-color: var(--theme-color);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
          transform: scale(1, 0);
  z-index: -1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.ocl-btn > i {
  margin-left: 5px;
}

.ocl-btn .line {
  height: 2px;
  width: 20px;
  background-color: var(--title-black);
  display: inline-block;
  position: relative;
  top: -4px;
  margin: 0 3px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.ocl-btn .line.left {
  width: 0;
}

.ocl-btn:hover, .ocl-btn.active {
  color: var(--title-black);
}

.ocl-btn:hover .line, .ocl-btn.active .line {
  width: 0;
}

.ocl-btn:hover .line.left, .ocl-btn.active .line.left {
  width: 20px;
}

.ocl-btn:hover::before, .ocl-btn.active::before {
  background-color: #eebd42;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}


.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
      -ms-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.scroll-top:after {
  content: "\f062";
  font-family: var(--icon-font);
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #272727;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  border-radius: 50%;
}

.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: #fff;
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: #272727;
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.sec-title {
  margin-bottom: var(--section-title-space);
  margin-top: -0.20em;
  text-transform: uppercase;
  font-weight: 600;
}

.sub-title {
  font-size: 14px;
  font-family: var(--para-font);
  color: var(--theme-color);
  display: block;
  margin-top: -0.3em;
  margin-bottom: 24px;
}

.big-title {
  font-size: 200px;
  font-weight: 600;
  display: inline-block;
  line-height: 0.93;
  margin-top: -0.099em;
  -webkit-text-stroke: 1px var(--border-color);
  color: transparent;
}

.lt-2 {
  letter-spacing: 0.2em;
}

.text-transparent {
  -webkit-text-stroke: 0.75px var(--border-color);
  color: transparent;
}
.text-transparent-theme {
  -webkit-text-stroke: 0.75px var(--theme-color);
  color: transparent;
}

.title-area {
  margin-bottom: var(--section-title-space);
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
  gap: 30px 15px;
}
.title-area.values {
    display: flex; 
    flex-flow: nowrap;
}
.title-area .sec-title {
  margin-bottom: -0.1em;
}

.title-area.title-wrap {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.title-wrap {
  text-align: right;
  padding-right: 120px;
}

.sec-btn {
  margin-bottom: var(--section-title-space);
}

.text-style1 {
  display: block;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: -0.2em;
}

@media (max-width: 991px) {
  .big-title {
    font-size: 150px;
    line-height: 0.93;
    margin-top: -0.099em;
  }
  .text-style1 {
    font-size: 18px;
  }
  :root {
    --section-title-space: 60px;
  }
}


.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-3 {
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.olc-languages a {
  display: inline-block;
  color: transparent;
  font-size: 24px;
  margin-right: 12px;
  -webkit-text-stroke: 0.6px var(--white-color);
}
.olc-languages a:hover {
  color: var(--theme-color);

}
@media (max-width: 1199px) {
  .olc-languages a {
    font-size: 25px;
    margin-right: 15px;
  }
}

.olc-languages a:last-child {
  margin-right: 0 !important;
}

.olc-languages a:hover {
  -webkit-text-stroke: 0.6px var(--body-color);
}

.slider-shadow .slick-list {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: -30px;
  margin-top: -30px;
}

.btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px;
}


@media (max-width: 991px) {
  p.mb-35 {
    margin-bottom: 30px;
  }
}

.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-thin {
  font-weight: 100;
}

.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-exs {
  font-size: 12px;
}

.fs-xs {
  font-size: 14px;
}

.fs-md {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-lg {
  font-size: 22px;
}

/* Large devices */
@media (max-width: 1199px) {
  .fs-lg {
    font-size: 18px;
  }
  .fs-20 {
    font-size: 17px;
  }
}

.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(--black-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}


.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;
}

.bg-top-center {
  background-size: auto;
  background-position: top center;
}

.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-light {
  color: var(--light-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 {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
  z-index: 1;
}

[data-overlay] [class*="container"] {
  position: relative;
  z-index: 2;
}

[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

[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="body-bg"]:before {
  background-color: var(--body-bg);
}

[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;
}

.ripple-animation, .play-btn:after, .play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
          animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
          animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}

.moving {
  -webkit-animation: moving 8s linear infinite;
          animation: moving 8s linear infinite;
}

@-webkit-keyframes moving {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
          animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

.scalein.th-animated {
  --animation-name: scalein;
}

.slidetopleft.th-animated {
  --animation-name: slidetopleft;
}

.slidebottomright.th-animated {
  --animation-name: slidebottomright;
}

.slideinleft.th-animated {
  --animation-name: slideinleft;
}

.slideinright.th-animated {
  --animation-name: slideinright;
}

.slideinup.th-animated {
  --animation-name: slideinup;
}

.slideindown.th-animated {
  --animation-name: slideindown;
}

.rollinleft.th-animated {
  --animation-name: rollinleft;
}

.rollinright.th-animated {
  --animation-name: rollinright;
}

.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
          animation-name: var(--animation-name);
}

.th-animated {
  opacity: 1;
}

@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
            transform: translateX(100px) translateY(100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
            transform: translateX(100px) translateY(100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes scalein {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scalein {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes rollinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }
  to {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}

@keyframes rollinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }
  to {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}

@-webkit-keyframes rollinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
  to {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}

@keyframes rollinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
  to {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}

.svg-img path {
  fill-opacity: 1;
  stroke: var(--theme-color);
  fill: var(--border-color);
  stroke-width: 1;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
}

@-webkit-keyframes fillAni {
  0% {
    stroke-dashoffset: 2500;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-width: 1;
    fill: var(--border-color);
  }
}

@keyframes fillAni {
  0% {
    stroke-dashoffset: 2500;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-width: 1;
    fill: var(--border-color);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


.widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.widget_nav_menu > ul{
  margin: 0 0 -15px 0;
}

.widget_nav_menu a {
  display: block;
  background-color: var(--smoke-color);
  margin: 0 0 15px 0;
  padding: 17px 45px 17px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--body-color);
  font-family: var(--para-font);
}

.widget_nav_menu a::before{
  content: '\f061';
  position: absolute;
  right: 25px;
  top: 16px;
  font-family: var(--icon-font);
  font-weight: 400;
  color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.widget_nav_menu a:hover{
  color: var(--title-black);
  background-color: var(--theme-color);
}

.widget_nav_menu a:hover:before {
  color: var(--title-black);
}

.widget_nav_menu li {
  display: block;
  position: relative;
}

.widget_nav_menu li:last-child a{
  border-bottom: none;
}

.widget_nav_menu li > span {
  text-align: center;
  position: absolute;
  right: 25px;
  top: 12px;
  font-size: 14px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.widget_nav_menu li:hover > span {
  color: var(--title-black);
}

.widget_nav_menu .children {
  margin-left: 10px;
}

.widget_nav_menu a {
  padding-right: 20px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}



.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: transparent;
  margin-bottom: 40px;
  position: relative;
}

.widget select,
.widget input {
  border-radius: 0;
}

.widget_title {
  position: relative;
  font-size: 30px;
  font-weight: 400;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.07em 0 29px 0;
  color: var(--white-color);
}



.wp-block-calendar thead,
.calendar_wrap thead {
  background-color: #f6f6f6;
}

.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
  margin-bottom: 0;
}

.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
  display: none;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
}

.footer-widget .widget_title {
  position: relative;
  border: none;
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 100;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 1;
  border-bottom: 0;
  padding: 0 0 13px 0;
  margin: -0.14em 0 50px 0;
  max-width: 275px;
}

.footer-widget .widget_title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 1px;
  background-color: var(--body-color);
}




.olc-footer-widget .widget_title {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 400;
  color: var(--white-color);
  padding: 0 0 15px 0;
  margin: -0.14em 0 40px 0;
}

.olc-footer-widget .widget_title:after {
  width: 60px;
  height: 2px;
  background-color: var(--theme-color);
}
.olc-footer-widget {
    padding: 0px;
}
/*------------------- 4.2. Header  -------------------*/
.olc-header {
  position: relative;
  z-index: 41;
}
 .header-logo {
    max-width: 200px;
     padding: 15px 10px;
  }
.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
      border-bottom: 1px solid #696969;
    background-color: #27272745;
    backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: stickyAni 0.4s ease-in-out;
          animation: stickyAni 0.4s ease-in-out;
}
.sticky-wrapper.sticky .menu-area {
    border: 0px solid;
    padding: 5px 0px;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--white-color);
  text-transform: uppercase;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .main-menu a {
    font-size: 16px;
  }
}

.main-menu a:hover {
  color: var(--theme-color);
}

.main-menu > ul > li {
  margin: 0 25px;
}

.main-menu > ul > li > a {
  padding: 27px 0;
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}


.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: var(--white-color);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 20px;
}

.header-links li:last-child {
  margin-right: 0;
}

.header-links li a {
  color: inherit;
}

.header-links li a:hover {
  color: var(--theme-color);
}

.header-links li i {
  margin-right: 8px;
}

.header-top,
.header-links {
  font-family: var(--para-font);
}


@media (max-width: 1199px) {
  .main-menu > ul > li {
    margin: 0 18px;
  }
}

@media (max-width: 991px) {
  .header-logo {
    max-width: 150px;
  }
}

@media (max-width: 767px) {
    .bot-footer {
        justify-content: center !important;
    }
  .header-links li {
    font-size: 14px;
  }
}

.header-main {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
}

.header-main .menu-area {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0 60px;
}

.header-main .menu-top {
  margin-bottom: 55px;
  margin-top: 25px;
}

.header-main .main-menu ul.sub-menu {
  left: 0;
}

.header-main .main-menu ul li:hover > ul.sub-menu {
  margin-top: 1px;
}

.header-main .main-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.header-main .main-menu > ul > li {
  margin: 0 0;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.header-main .main-menu > ul > li:last-child {
  border-right: 0px solid rgba(255, 255, 255, 0.3);
}
.header-main .main-menu > ul > li:first-child {
  border-left: 0px solid rgba(255, 255, 255, 0.3);
}

.header-main .main-menu > ul > li::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--theme-color);
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

.header-main .main-menu > ul > li:hover::before, .header-main .main-menu > ul > li.active::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.header-main .main-menu > ul > li > a {
  padding: 20px 0;
  letter-spacing: 0.2em;
}



/* Large devices */
@media (max-width: 1199px) {
  .header-main .header-logo {
    max-width: 150px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-main .olc-menu-toggle {
    float: right;
    margin-bottom: 20px;
  }
  .header-main .menu-top {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .header-main .olc-menu-toggle {
    margin-bottom: 0;
  }
  .header-main .header-logo {
    padding: 15px 0;
  }
}

@media (max-width: 575px) {
  .header-main {
    top: 12px;
  }
}


.footer-wrapper {
  position: relative;
  z-index: 2;
    background-attachment: fixed;
}



.widget-area {
  padding-top: 100px;
  padding-bottom: 40px;
}
.terms a{
    margin: 0 5px;
}
.copyright-wrap {
  padding: 20px 0;
}

.copyright-text {
  margin: 0;
  font-size: 14px;
  color: var(--white-color);
}

.copyright-text a {
  color: var(--theme-color);
}

.copyright-text a:hover {
  color: var(--white-color);
}

.footer-info {
  position: relative;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: -0.34em;
}

.footer-info.has-icon {
  padding-left: 32px;
}

.footer-info i {
  color: var(--body-color);
  position: absolute;
  top: 7px;
  left: 0;
}

.footer-info .link {
  display: block;
  color: var(--white-color);
}

.footer-info .link:hover {
  color: var(--theme-color);
}

.footer-info-box {
  border: 1px solid var(--border-color);
}

.footer-info-box .footer-info {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.footer-info-box .footer-info > i {
  color: var(--theme-color);
}

.footer-info-box .olc-languages {
  height: 100%;
  text-align: center;
  padding: 15px;
}

.footer-info-box .footer-box {
  padding: 10px;
  border-right: 1px solid var(--border-color);
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1199px) {
  .footer-info i {
    top: 5px;
  }
}

.footer-logo,
.footer-text {
  text-align: center;
  margin-bottom: 40px;
}
.footer-logo img {
    width: 200px;
}

@media (max-width: 991px) {
  .footer-info-box .olc-languages {
    padding: 10px;
  }
  .footer-layout1 .widget-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-info-box .footer-box {
    border-right: none;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .footer-layout1 .olc-languages {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
  
}

.footer-menu {
  margin-bottom: 35px;
}

.footer-menu ul {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}

.footer-menu li {
  display: inline-block;
}

.footer-menu li a {
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-color);
}

.footer-menu li a:hover {
  color: var(--theme-color);
}


@media (max-width: 1199px) {
  .footer-menu ul {
    gap: 15px 28px;
  }
  .footer-menu li a {
    letter-spacing: 0.15em;
  }
}

.info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  max-width: 400px;
}

.info-box:last-child {
  margin-bottom: -5px;
}

.info-box_icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  min-width: 40px;
  font-size: 20px;
  background-color: var(--body-bg);
  color: var(--theme-color);
  text-align: center;
  margin-right: 10px;
}

.info-box_label {
  font-size: 14px;
  line-height: 1;
  display: block;
    color: var(--theme-color);
  margin-bottom: 8px;
}

.info-box_link, .info-box_text {
  line-height: 1;
  display: block;
  color: var(--white-color);
  font-size: 20px;
  font-family: var(--title-font);
  margin-bottom: 0;
}

.info-box_link {
  display: inline-block;
}

.info-box_link:hover {
  color: var(--theme-color);
}



.olc-footer .footer-logo,
.olc-footer .footer-text {
  text-align: left;
}

.olc-footer .footer-logo {
  margin-top: -8px;
  margin-bottom: 33px;
}

.olc-footer .footer-text {
  margin-bottom: 25px;
}

.olc-footer .copyright-wrap {
  border-top: 1px solid var(--border-color);
}

.list-two-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

/* Medium devices */
@media (max-width: 991px) {
  .olc-footer .th-widget-about {
    max-width: 100%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .list-two-column {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 27px;
  }
}

.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 25px 0 -0.4em 0;
  list-style-type: none;
  position: relative;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 5px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: '\f054';
  position: relative;
  margin-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--white-color);
  font-family: var(--icon-font);
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
}

.breadcumb-title {
  color: var(--white-color);
  margin: -0.22em 0 -0.12em 0;
}

.breadcumb-wrapper {
  padding: 200px 0  50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  overflow: hidden;
  margin-top: 50px;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}



@media (max-width: 1199px) {
  .breadcumb-wrapper {
    padding: 190px 0 160px 0;
  }
}

@media (max-width: 991px) {
  .breadcumb-wrapper {
    padding: 150px 0 120px 0;
  }
  .breadcumb-menu {
    margin: 16px 0 -0.5em 0;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}

.olc-hero-wrapper {
  position: relative;
}

.olc-hero-wrapper .container {
  position: relative;
  z-index: 3;
    
}

.olc-hero-wrapper .icon-box {
  z-index: 3;
  gap: 30px;
}

.olc-hero-wrapper .icon-box .slick-arrow {
  --icon-size: 100px;
  --icon-font-size: 22px;
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: none;
}

.olc-hero-wrapper .icon-box .slick-arrow i {
  color: var(--white-color);
  -webkit-transform: scaleX(1.6);
      -ms-transform: scaleX(1.6);
          transform: scaleX(1.6);
}

.olc-hero-wrapper .icon-box .slick-arrow:hover {
  border-color: var(--border-color);
}

.olc-hero-slide {
  position: relative;
}

.olc-hero-bg {
  position: absolute;
  inset: 0;
}

.olc-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-subtitle {
  color: var(--theme-color);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 96px;
  line-height: 1.104;
  font-weight: 600;
    text-shadow: 0px 2px 4px black;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero-title:last-of-type {
  margin-bottom: 50px;
}

.hero-text {
  font-size: 20px;
  font-weight: 300;
  font-family: var(--title-font);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  margin-top: -0.3em;
}

.hero-olc-image-text {
  margin-bottom: -0.4em;
  font-size: 24px;
  color: var(--theme-color);
  font-family: var(--title-font);
}

.scroll-bottom {
  display: inline-block;
  line-height: 1;
  width: 20px;
  height: 32px;
  border: 2px solid #555555;
  border-radius: 50px;
  position: relative;
}

.scroll-bottom:before {
  content: "";
  height: 6px;
  width: 2px;
  border-radius: 50px;
  background-color: var(--white-color);
  position: absolute;
  top: 5px;
  left: 7px;
  -webkit-animation: lineMove 1.5s infinite;
          animation: lineMove 1.5s infinite;
}

.scroll-bottom:hover {
  border-color: var(--theme-color);
}

.slider-nav {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.slider-nav-wrap {
  text-align: center;
  margin-top: 60px;
}

.slider-nav .slick-dots {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider-nav .slick-dots li {
  height: 8px;
}

.slider-nav .nav-btn {
  border: none;
  background-color: transparent;
  color: var(--border-color);
  font-size: 18px;
  -webkit-transform: scaleX(1.6);
      -ms-transform: scaleX(1.6);
          transform: scaleX(1.6);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.slider-nav .nav-btn:hover {
  color: var(--white-color);
}

@-webkit-keyframes lineMove {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes lineMove {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}


/* Large devices */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 64px;
    line-height: 1.18;
  }
  .hero-title:last-of-type {
    margin-bottom: 40px;
  }
  .hero-text {
    margin-bottom: 35px;
  }
  .olc-hero-wrapper .icon-box .slick-arrow {
    --icon-size: 80px;
  }
}

@media (max-width: 991px) {
  .slick-dots button {
    width: 40px;
  }
  .hero-title {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 48px;
    line-height: 1.208;
  }
  .hero-subtitle {
    font-size: 22px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-title {
    font-size: 45px;
  }
  .hero-text {
    letter-spacing: 0;
  }
}

@media (max-width: 400px) {
  .hero-title {
    letter-spacing: 0.1em;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 34px;
  }
}

.hero-main .scroll-bottom {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

.hero-main .slider-nav-wrap {
  position: absolute;
  bottom: 230px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hero-main .curve-shape {
  position: absolute;
  bottom: -24px;
  left: calc(50% - 340px);
  height: 88px;
  width: 680px;
  background-color: var(--body-bg);
  -webkit-clip-path: path("M646.782 65H33.2179C103.636 65 173.285 50.3548 237.739 21.9947C302.899 -6.67547 377.101 -6.67547 442.261 21.9947C506.715 50.3548 576.364 65 646.782 65Z");
          clip-path: path("M646.782 65H33.2179C103.636 65 173.285 50.3548 237.739 21.9947C302.899 -6.67547 377.101 -6.67547 442.261 21.9947C506.715 50.3548 576.364 65 646.782 65Z");
}

.hero-slider-2 .olc-hero-slide {
  padding: 300px 0 300px 0;
}

.hero-slider-2 .slick-dots {
  margin: 0;
}

.hero-main-style {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-main-style .hero-logo {
  margin-bottom: 50px;
}

.hero-main-style .hero-text {
  color: var(--white-color);
    text-shadow: 0px 2px 1px black;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
}



@media (max-width: 1199px) {
  .hero-slider-2 .olc-hero-slide {
    padding: 240px 0 180px 0;
  }
}

@media (max-width: 991px) {
  .hero-main-style .hero-logo {
    margin-bottom: 45px;
  }
  .hero-main-style .hero-logo img {
    max-width: 350px;
  }
  .hero-main-style .hero-text {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .hero-main .curve-shape {
    -webkit-transform: scaleX(0.4);
        -ms-transform: scaleX(0.4);
            transform: scaleX(0.4);
  }
  .hero-slider-2 .olc-hero-slide {
    padding: 220px 0 180px 0;
  }
}

@media (max-width: 575px) {
  .hero-slider-2 .olc-hero-slide {
    padding: 190px 0 180px 0;
  }
  .hero-main-style .hero-logo {
    margin-bottom: 30px;
  }
  .hero-main-style .hero-logo img {
    max-width: 270px;
  }
}



.service-card {
  position: relative;
  padding: 20px 30px 30px 30px;
  border: 1px solid var(--border-color);
        background-image: url(../img/values-bg.png);
  height: 100%;

}
.service-card.alternative {
background: #fff0;
backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
 border: 1px solid var(--dark-border-color);}


.service-card_icon {
  height: 135px;

  margin-bottom: 15px;
  display: grid;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.service-card_num {
  margin-bottom: 10px;
}

.service-card_text {
  margin-bottom: -0.44em;
}

.service-card_title {
  font-size: 30px;
  font-weight: 300;
  margin-top: -0.2em;
  margin-bottom: 0px;
  text-transform: lowercase;
}
.service-card_title::first-letter {
  text-transform: uppercase;
}

.service-card_title a {
  color: inherit;
}

.service-card_title a:hover {
  color: var(--theme-color);
}

.service-card:hover .service-card_icon .value2, .service-card:hover .service-card_icon .value3, .service-card:hover .service-card_icon .value4, .service-card:hover .service-card_icon .value5 {
  -webkit-animation: animate-svg-stroke-1 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
          animation: animate-svg-stroke-1 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
        stroke: var(--theme-color);

}
.service-card .service-card_icon svg {
    width: auto;
}

@-webkit-keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 25268.56640625px;
    stroke-dasharray: 25268.56640625px;
  }

  100% {
    stroke-dashoffset: 50537.1328125px;
    stroke-dasharray: 25268.56640625px;
  }
}

@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 25268.56640625px;
    stroke-dasharray: 25268.56640625px;
  }

  100% {
    stroke-dashoffset: 50537.1328125px;
    stroke-dasharray: 25268.56640625px;
  }
}

.service-card:hover .service-card_icon .value1 {
  -webkit-animation: animate-svg-stroke-10 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both !important;
          animation: animate-svg-stroke-10 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both !important;
            stroke: var(--theme-color);

}


@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 32842.046875px;
    stroke-dasharray: 32842.046875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 32842.046875px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 32842.046875px;
    stroke-dasharray: 32842.046875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 32842.046875px;
  }
}


@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 39041.41796875px;
    stroke-dasharray: 39041.41796875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39041.41796875px;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 39041.41796875px;
    stroke-dasharray: 39041.41796875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39041.41796875px;
  }
}

.img1:hover path {
      -webkit-animation: animate-svg-stroke-2 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
          animation: animate-svg-stroke-2 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
        stroke: var(--theme-color);
}


@-webkit-keyframes animate-svg-stroke-contact {
  0% {
    stroke-dashoffset: 50446.64453125px;
    stroke-dasharray: 50446.64453125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 50446.64453125px;
  }
}

@keyframes animate-svg-stroke-contact {
  0% {
    stroke-dashoffset: 50446.64453125px;
    stroke-dasharray: 50446.64453125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 50446.64453125px;
  }
}

.img1.img-contact:hover path {
  -webkit-animation: animate-svg-stroke-contact 1s ease-in 0s both;
          animation: animate-svg-stroke-contact 1s ease-in 0s both;
       stroke: var(--theme-color);
}


@media (max-width: 1199px) {
  .service-card {
    position: relative;
    padding: 30px;
  }
}

.service-grid-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-list-slide {
  max-width: 450px;
  margin-right: 30px;
    backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--dark-border-color);
  padding: 65px 50px 65px 50px;
  position: relative;
}

.service-list-slide:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 50px;
}

.service-list-slide .slick-list {
  margin-bottom: -44px;
}

.service-list-slide .slick-btn {
  position: absolute;
  left: calc(50% - 30px);
  height: 30px;
  line-height: 27px;
  text-align: center;
  padding: 0;
  width: 60px;
  display: inline-block;
  border: 1px solid var(--dark-border-color);
  background-color: transparent;
  color: var(--dark-color);
  z-index: 3;
}

.service-list-slide .slick-btn.top {
  top: -1px;
}

.service-list-slide .slick-btn.bottom {
  bottom: -1px;
}

.service-list-slide .slick-btn:hover {
  color: var(--theme-color);
}

.service-grid-slide {
  max-width: 560px;
  position: relative;
  z-index: 3;
}
.service-grid-img {
  max-width: 400px;
  margin-left: 20px;
}



.service-card.alternative .service-card_num {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--title-font);
  position: absolute;
  top: 0px;
  right: 20px;
}
.service-card.alternative  .service-card_title {
    font-size: 40px;
      color: var(--black-color);

}
.service-card.alternative .service-card_text {
    margin-bottom: -0.44em;
    font-size: 17px;
    line-height: 1.8;
    margin: 20px 0px 0px;
}



.service-list {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dark-border-color);
}

.service-list_number {
  font-size: 16px;
  font-family: var(--para-font);
}

.service-list_title {
  font-size: 30px;
    color: var(--title-black) !important;
  font-weight: 100;
  margin-bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.slick-current .service-list_title {
  color: var(--theme-color);
}




@media (max-width: 1199px) {
  .service-grid-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .service-list-slide {
    max-width: 100%;
    margin-right: 0;
  }
  .service-grid-slide {
    max-width: 490px;
    padding-right: 40px;
  }
  .service-grid-img {
    max-width: 100%;
    margin-left: 0;
  }
  .service-grid-img .img img {
    width: auto;
    max-height: 350px;
    object-fit: cover;
  }
}



.info-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.info-card_icon {
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color);
  width: 60px;
  height: 60px;
  line-height: 57px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

.info-card_icon:before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background-color: #1B1B1B;
  z-index: -1;
}

.info-card_text {
  font-weight: 14px;
  font-weight: 500;
  color: var(--theme-color);
  display: block;
  margin-bottom: 5px;
}

.info-card_link {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 500;
}

.info-card_link:hover {
  color: var(--theme-color);
}

.img-box5 {
  position: relative;
  margin-right: 50px;
  z-index: 2;
}

.img-box5:after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-color);
  -webkit-transform: translate(-75px, 75px);
      -ms-transform: translate(-75px, 75px);
          transform: translate(-75px, 75px);
  z-index: -1;
}

.img-box5 .img1 {
  margin-bottom: 75px;
}

.img-box5 .img1 img {
  width: 100%;
}

.img-box5 .info-card-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: -webkit-linear-gradient(357.99deg, rgba(22, 22, 22, 0.4) 0%, rgba(22, 22, 22, 0.4) 100%);
  background-image: linear-gradient(92.01deg, rgba(22, 22, 22, 0.4) 0%, rgba(22, 22, 22, 0.4) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.img-box5 .info-card-wrap:after {
  content: '';
  height: 100%;
  width: 3px;
  background-color: #01000F;
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px);
}

.img-box5 .info-card {
  padding: 25px 30px;
}


@media (max-width: 1199px) {
  .img-box5 .img1 {
    margin-bottom: 30px;
  }
  .img-box5:after {
    -webkit-transform: translate(-30px, 30px);
        -ms-transform: translate(-30px, 30px);
            transform: translate(-30px, 30px);
  }
  .img-box5 .info-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .img-box5 .info-card {
    padding: 14px;
  }
  .img-box5 .info-card_link {
    font-size: 20px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .img-box5 .info-card-wrap {
    grid-template-columns: auto;
  }
  .img-box5 .info-card-wrap:after {
    display: none;
  }
  .img-box5 .info-card {
    padding: 10px 20px;
  }
}


.img-box1 {
  position: relative;
  margin-right: 50px;
  padding-bottom: 140px;
}

.img-box1 .img1 {
  -webkit-transform: translate(20px, 50px);
      -ms-transform: translate(20px, 50px);
          transform: translate(20px, 50px);
}

.img-box1 .img1 img {
  width: 100%;
}

.img-box1 .big-text {
  position: absolute;
  bottom: 40px;
  right: -80px;
}

/* Small devices */
@media (max-width: 767px) {
    .title-area.values {
        display: block;
    }
  .img-box1 {
      max-width: 100%;
      text-align: center;
    margin-right: 0px;
    padding-bottom: 40px;
  }
  .img-box1 .img1 {
    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  .img-box1 .big-text {
    position: absolute;
    bottom: 20px;
    right: -40px;
  }
}


.img-box2 {
  position: relative;
}

.title-image-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}

.title-image-text .olc-image-text {
    text-transform: uppercase;
  font-size: 120px;
    padding-bottom: 30px;
  font-weight: 600;
  line-height: 1;
  display: block;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.title-image-text .title {
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
}

.title-image-text .title2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color);
}

.text-big {
  font-size: 96px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-color);
}


/* Large devices */
@media (max-width: 1199px) {
     .title-area.values {
        display: block;
    }
  .text-big {
    font-size: 64px;
  }
  .title-image-text .olc-image-text {
    font-size: 120px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .title-image-text .olc-image-text {
    font-size: 100px;
  }
  .title-image-text .title {
    font-size: 100px;
  }
  .text-big {
    font-size: 58px;
  }
}

/* Small devices */
@media (max-width: 767px) {
        .service-grid-slide {
    max-width: 100%;
    padding-right: 0px;
}
    .service-list_title {
        font-size: 23px;
    }
  .text-big {
    font-size: 52px;
    letter-spacing: 0.1em;
  }
  .title-image-text {
    gap: 20px;
  }
  .title-image-text .olc-image-text {
    font-size: 240px;
      margin-bottom: 
  }
    .title-image-text .olc-image-text.p-0 {
      margin-bottom: 20px;
  }
  .title-image-text .title {
    font-size: 70px;
  }
  .title-image-text .title2 {
    font-size: 40px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 575px) {
  .text-big {
    font-size: 40px;
  }
  .title-image-text .olc-image-text {
    font-size: 50px;
    letter-spacing: -0.05em;
  }
  .title-image-text .title {
    font-size: 40px;
    margin-bottom: 5px;
  }

}

.big-text {
  font-size: 200px;
  margin-bottom: 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .big-text {
    font-size: 150px;
  }
}


.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;
}

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- 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;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- 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;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

/*-- 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;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

/*-- 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;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

/*-- 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;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

/*-- 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;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- 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;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- 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;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

/*-- 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;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

/*-- 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;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- 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;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-n1 {
  margin-top: -.25rem;
}

.mt-n2 {
  margin-top: -.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -.25rem;
}

.mb-n2 {
  margin-bottom: -.5rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.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) {
    .footer-wrapper {
   
    background-attachment: inherit;
}
.header-main .menu-area {
padding: 0 10px;
    }
  .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;
  }
}
  .cls-1 {
      fill: none;
        stroke: #fff;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 8px;
      }
/*# sourceMappingURL=style.css.map */

/*ANUMATION*/


/***************************************************
 * Generated by SVG Artista on 11/28/2023, 4:28:52 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/



.service-card:hover span {
  position: absolute;
  border-radius: 100vmax;
}

.service-card:hover .beauty.top {
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 50%,
       rgb(255, 203, 123),
    rgba(255, 203, 123, 0.5)
  );
}

.service-card:hover .beauty.bottom {
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
      rgb(255, 203, 123),
    rgba(255, 203, 123, 0.5),
    transparent 50%
  );
}

.service-card:hover .beauty.right {
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
        rgb(255, 203, 123),
    rgba(255, 203, 123, 0.5)
  );
}

.service-card:hover .beauty.left {
  left: 0;
  bottom: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(
    180deg,
       rgb(255, 203, 123),
    rgba(255, 203, 123, 0.5),
    transparent 70%
  );
}

.beauty.top {
  animation: animateTop 3s ease-in-out infinite;
}

.beauty.bottom {
  animation: animateBottom 3s ease-in-out infinite;
}

.beauty.right {
  animation: animateRight 3s ease-in-out infinite;
}

.beauty.left {
  animation: animateLeft 3s ease-in-out infinite;
}

@keyframes animateTop {
  25% {
    width: 100%;
    opacity: 1;
  }

  30%,
  100% {
    opacity: 0;
  }
}

@keyframes animateBottom {
  0%,
  50% {
    opacity: 0;
    width: 0;
  }

  75% {
    opacity: 1;
    width: 100%;
  }

  76%,
  100% {
    opacity: 0;
  }
}

@keyframes animateRight {
  0%,
  25% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 100%;
  }

  55%,
  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes animateLeft {
  0%,
  75% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}
