/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --pelocis-font: "Saira", sans-serif;
  --pelocis-heading-font: "Solway", serif;
  --pelocis-special-font: "Red Hat Text", sans-serif;
  --pelocis-special-font2: "Bonheur Royale", cursive;
  --pelocis-text: #838184;
  --pelocis-text-rgb: 131, 129, 132;
  --pelocis-text-dark: #636363;
  --pelocis-text-dark-rgb: 99, 99, 99;
  --pelocis-text-gray: #89868d;
  --pelocis-text-gray-rgb: 137, 134, 141;
  --pelocis-base: #757ee2;
  --pelocis-base-rgb: 226, 164, 117;
  --pelocis-gray: #F5F2EF;
  --pelocis-gray-rgb: 245, 242, 239;
  --pelocis-white: #fff;
  --pelocis-white-rgb: 255, 255, 255;
  --pelocis-black: #222222;
  --pelocis-black-rgb: 34, 34, 34;
  --pelocis-black2: #333333;
  --pelocis-black2-rgb: 51, 51, 51;
  --pelocis-black3: #000;
  --pelocis-black3-rgb: 0, 0, 0;
  --pelocis-border-color: #DDDDDD;
  --pelocis-border-color-rgb: 221, 221, 221;
  --pelocis-letter-space: 0.1em;
  --pelocis-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--pelocis-font, "Saira", sans-serif);
  color: var(--pelocis-text, #838184);
  font-size: 16px;
  line-height: 2.125;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--pelocis-base, #757ee2);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  color: var(--pelocis-black, #222222);
}

@media (max-width: 575px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--pelocis-base, #757ee2);
}

.background-gray {
  background-color: var(--pelocis-gray, #F5F2EF);
}

.background-black {
  background-color: var(--pelocis-black, #222222);
}

.background-black-2 {
  background-color: var(--pelocis-black2, #333333);
}

.pelocis-text-dark {
  color: var(--pelocis-text-dark, #636363);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

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

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

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

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

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.pelocis-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  padding: 10px 37px;
  transition: 500ms;
  text-transform: uppercase;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pelocis-btn:hover {
  color: var(--pelocis-base, #757ee2);
  background-color: var(--pelocis-white, #fff);
}

.pelocis-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-68%, -50%);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: var(--pelocis-black, #222222);
  transition: all 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

.pelocis-btn:hover::after {
  bottom: -50%;
  width: 150%;
  height: 150%;
  transform: translate(0%, -50%);
  border-radius: 0;
}

.pelocis-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
}

.pelocis-btn i {
  font-size: 12px;
  position: relative;
  top: 1px;
}

.pelocis-btn--black {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.pelocis-btn--black:hover {
  color: var(--pelocis-white, #fff);
}

.pelocis-btn--black::after {
  background-color: var(--pelocis-base, #757ee2);
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--pelocis-base, #757ee2);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-text, #838184);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}

.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}

.block-title p {
  margin: 0;
  color: var(--pelocis-text, #838184);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}

.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--pelocis-black, #222222);
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
}

@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}

@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}

.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--pelocis-black, #222222);
}

@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}

.ul-list-one li::before {
  content: "\e907";
  color: var(--pelocis-base, #757ee2);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--pelocis-black, #222222);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--pelocis-base, #757ee2);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pelocis-black, #222222);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  margin: 30px 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.post-pagination.text-center {
  justify-content: center;
}

.post-pagination.text-end {
  justify-content: flex-end;
}

.post-pagination a {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: var(--pelocis-gray, #F5F2EF);
  align-items: center;
  justify-content: center;
  color: var(--pelocis-base, #757ee2);
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 400ms ease;
}

.post-pagination a.active,
.post-pagination a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.pelocis-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}

.pelocis-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.pelocis-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: var(--pelocis-gray, #F5F2EF);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-text, #838184);
  border-radius: 50%;
  font-size: 14px;
  color: var(--pelocis-text, #838184);
  transition: all 500ms ease;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  line-height: 1;
  margin: 0;
  padding: 0;
  background-color: var(--pelocis-black, #222222);
  border: none;
  outline: none;
  box-shadow: none;
  width: 41px;
  height: 10px;
  border-radius: 10px;
  transition: all 300ms ease;
  margin: 0;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--pelocis-base, #757ee2);
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  width: 66px;
}

.pelocis-owl__carousel--basic-nav.owl-carousel.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}

.pelocis-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.sec-title {
  padding-bottom: 50px;
  position: relative;
}

@media (max-width: 767px) {
  .sec-title {
    padding-bottom: 40px;
  }
}

.sec-title__shape {
  position: relative;
  display: inline-block;
}

.sec-title__shape::before {
  content: "";
  width: 13px;
  height: 13px;
  background-color: var(--pelocis-base, #757ee2);
  display: block;
}

.sec-title__shape::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--pelocis-black, #222222);
  border: 1px solid var(--pelocis-white, #fff);
  display: block;
  position: absolute;
  bottom: -3px;
  right: -3px;
}

.sec-title__img {
  display: inline-flex;
  margin-bottom: 15px;
}

.sec-title__tagline {
  margin: 0;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  color: var(--pelocis-base, #757ee2);
  font-size: 18px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.sec-title__title {
  margin: 0;
  font-size: 35px;
  color: var(--pelocis-black, #222222);
  font-weight: bold;
  line-height: 46px;
  margin-top: 6px;
}

@media (max-width: 767px) {
  .sec-title__title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-font, "Saira", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--pelocis-font, "Saira", sans-serif);
}

.ui-datepicker-calendar td {
  background-color: var(--pelocis-gray, #F5F2EF);
  background-image: none;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  color: var(--pelocis-text, #838184);
}

.ui-datepicker-calendar td a {
  border-color: var(--pelocis-border-color, #DDDDDD);
  background-color: var(--pelocis-gray, #F5F2EF);
  background-image: none;
}

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--pelocis-border-color, #DDDDDD);
  background-color: var(--pelocis-gray, #F5F2EF);
  background-image: none;
  color: var(--pelocis-text, #838184);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--pelocis-white, #fff);
  background-color: var(--pelocis-base, #757ee2);
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--pelocis-white, #fff);
  background-color: var(--pelocis-base, #757ee2);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  background-color: var(--pelocis-black, #222222);
  padding: 100px 0;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--pelocis-black, #222222);
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}

.video-one .container {
  position: relative;
  text-align: center;
}

.video-one__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}

.video-one__btn .video-popup {
  font-size: 24px;
  color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}

.video-one__btn .video-popup:hover {
  color: var(--pelocis-base, #757ee2);
}

.video-one__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}

.video-one__btn .curved-circle--item {
  width: 145px;
}

.video-one__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--pelocis-white, #fff);
  letter-spacing: 0.4em;
}

.video-one__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--pelocis-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .video-one__title {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .video-one__title {
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}

.video-one__link::before {
  background-color: var(--pelocis-base, #757ee2);
}

.video-two {
  position: relative;
  background-color: var(--pelocis-black, #222222);
  padding: 143px 0 320px;
}

@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }

  .video-two .text-end {
    text-align: left !important;
  }
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--pelocis-black, #222222);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}

.video-two .container {
  position: relative;
}

.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}

.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}

.video-two__btn .video-popup:hover {
  color: var(--pelocis-base, #757ee2);
}

.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}

.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}

.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--pelocis-white, #fff);
  letter-spacing: 0.4em;
}

.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--pelocis-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}

.video-two__link::before {
  background-color: var(--pelocis-base, #757ee2);
}

.video-three {
  padding: 0;
  margin-bottom: -272px;
  z-index: 2;
  position: relative;
}

.video-three .container-fluid {
  max-width: 1560px;
  width: 100%;
}

.video-three__card {
  border-radius: 1000px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}

@media (max-width: 991px) {
  .video-three__card {
    border-radius: 100px;
  }
}

@media (max-width: 767px) {
  .video-three__card {
    padding: 80px 20px;
    border-radius: 40px;
  }
}

.video-three__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.88);
}

.video-three__card .video-popup {
  width: 66px;
  height: 66px;
  border: 3px solid var(--pelocis-white, #fff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 26px;
  font-size: 29px;
  color: var(--pelocis-white, #fff);
  position: relative;
  z-index: 2;
  transition: all 500ms ease;
}

.video-three__card .video-popup:hover {
  border-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-base, #757ee2);
}

.video-three__card__v-title {
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--pelocis-white, #fff);
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
}

.video-three__card__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
  color: var(--pelocis-white, #fff);
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.video-three__card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  position: relative;
  z-index: 2;
  margin-bottom: 38px;
}

.video-three__card .pelocis-btn {
  position: relative;
  z-index: 2;
}

.video-three__card .pelocis-btn::after {
  background-color: var(--pelocis-white, #fff);
}

.video-three__card .pelocis-btn:hover {
  color: var(--pelocis-black, #222222);
}

.team-one {
  padding: 110px 0 120px;
  position: relative;
}

@media (max-width: 767px) {
  .team-one {
    padding: 70px 0 80px;
  }
}

.team-one .sec-title {
  text-align: center;
}

.team-card {
  position: relative;
  margin-top: 80px;
}

.team-card__image {
  position: relative;
  padding-left: 20px;
  padding-top: 30px;
}

.team-card__image img {
  position: relative;
  max-width: 100%;
  border-radius: 50%;
  border: 10px solid var(--pelocis-white, #fff);
  display: block;
  margin-top: -108px;
  width: 330px !important;
  height: auto;
  max-height: 330px;
}

.team-card__email {
  background-color: var(--pelocis-base, #757ee2);
  position: relative;
}

.team-card__email>a {
  width: 50px;
  height: 50px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

.team-card__email>a:hover {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.team-card__social {
  background-color: var(--pelocis-black, #222222);
  position: relative;
  cursor: pointer;
  transition: all 500ms ease;
  border-radius: 50%;
}

.team-card__social>i {
  width: 50px;
  height: 50px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

.team-card__social:hover>i::before {
  content: "\f068";
}

.team-card__social__list {
  position: absolute;
  top: -125px;
  left: 16%;
  transform: translateY(-6%) scale(1, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  opacity: 0;
  transition: 500ms ease;
  transform-origin: bottom;
}

.team-card__social__list a {
  font-size: 14px;
  transition: all 500ms ease;
  width: 100%;
  background: var(--pelocis-white, #fff);
  border: 1px solid var(--pelocis-base, #757ee2);
  color: var(--pelocis-base, #757ee2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.team-card__social__list a:hover {
  color: var(--pelocis-white, #fff);
  background-color: var(--pelocis-base, #757ee2);
}

.team-card__social:hover .team-card__social__list {
  opacity: 1;
  transform: translateY(-6%) scale(1, 1);
}

.team-card:hover .team-card__social {
  background-color: var(--pelocis-base, #757ee2);
}

.team-card:hover .team-card__social>i {
  color: var(--pelocis-white, #fff);
}

.team-card__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  transition: 300ms ease;
}

.team-card__content {
  padding: 27px 30px 34px;
}

.team-card__title {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 4px;
}

.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.team-card__title a:hover {
  background-size: 100% 1px;
}

.team-card__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.team-card__designation {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  transition: 300ms ease;
  margin-bottom: 0px;
}

.team-card__desc {
  margin: 15px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  transition: 300ms ease;
  color: var(--pelocis-text-dark, #636363);
}

.team-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: var(--pelocis-gray, #F5F2EF);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0% 100%);
  transition: all 500ms ease-in;
}

.team-card__shape {
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  left: -75px;
  top: -72px;
}

.team-card:hover .team-card__bg {
  background-color: var(--pelocis-black, #222222);
}

.team-card:hover .team-card__title {
  color: var(--pelocis-white, #fff);
}

.team-card:hover .team-card__desc {
  color: var(--pelocis-white, #fff);
}

.team-card:hover .team-card__designation {
  color: var(--pelocis-white, #fff);
}

.team-details {
  padding-top: 120px;
  position: relative;
}

@media (max-width: 767px) {
  .team-details {
    padding: 80px 0 0;
  }
}

.team-details__bottom {
  position: relative;
  padding-bottom: 115px;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.team-details .col-lg-5 {
  width: 37.666667%;
}

@media (max-width: 991px) {
  .team-details .col-lg-5 {
    width: 100%;
  }
}

.team-details__inner {
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 20px;
  border-radius: 50px;
  margin-bottom: 33px;
}

.team-details__image {
  display: inline-block;
  position: relative;
}

@media (max-width: 767px) {
  .team-details__image {
    margin-bottom: 15px;
  }
}

.team-details__image img {
  max-width: 100%;
  border-radius: 50px;
}

.team-details__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 40px;
  padding-right: 20px;
}

@media (max-width: 991px) {
  .team-details__content {
    padding: 30px 0 10px;
  }
}

.team-details__content li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 10px;
}

.team-details__content li:last-child {
  align-items: center;
}

.team-details__content li span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
}

.team-details__icon {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background-color: var(--pelocis-base, #757ee2);
  border: 20px solid var(--pelocis-white, #fff);
  width: 220px;
  padding: 30px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

@media (min-width: 992px) {
  .team-details__icon {
    left: -96px;
  }
}

.team-details__icon i {
  font-size: 60px;
  color: var(--pelocis-white, #fff);
}

.team-details__icon__text {
  margin: 0;
  font-size: 18px;
  color: var(--pelocis-white, #fff);
  text-transform: uppercase;
  max-width: 104px;
  font-weight: bold;
  margin-bottom: -5px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .team-details__icon__text {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .team-details__icon__text {
    font-size: 24px;
  }
}

.team-details__title {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  text-transform: capitalize;
}

.team-details__designation {
  margin: 0;
  font-size: 16px;
  margin-bottom: 20px;
}

.team-details__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin: 0 0 15px;
}

@media (max-width: 1199px) {
  .team-details__text {
    padding: 0;
  }
}

.team-details__text.mr0 {
  margin: 0;
}

.team-details__text+.team-details__text {
  margin-bottom: 28px;
}

.team-details__list {
  margin-bottom: 0;
  padding-right: 10px;
  border-right: 3px solid var(--pelocis-base, #757ee2);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 991px) {
  .team-details__list {
    border: none;
    padding: 0;
    margin-bottom: 15px;
  }
}

.team-details__list li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 46%;
}

.team-details__list li span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.team-details__list li span:hover {
  background-size: 100% 1px;
}

.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-details__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  font-size: 14px;
  color: var(--pelocis-text-gray, #89868d);
  transition: all 500ms ease;
  border-radius: 50%;
}

.team-details__social a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  border-color: var(--pelocis-base, #757ee2);
}

.team-details-member {
  padding-bottom: 140px;
}

.team-skills-one {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .team-skills-one {
    padding: 60px 0;
  }
}

.team-skills-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
  color: var(--pelocis-black, #222222);
  line-height: 1.2em;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

.team-skills-one__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  max-width: 500px;
  width: 100%;
}

.team-skills-one__progress+.team-skills-one__progress {
  margin-top: 17px;
}

.team-skills-one__progress__title {
  text-transform: uppercase;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.team-skills-one__progress__bar {
  width: 100%;
  height: 17px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}

.team-skills-one__progress__inner {
  position: absolute;
  height: calc(100% - 6px);
  left: 4px;
  top: 3px;
  background-color: var(--pelocis-base, #757ee2);
  transition: all 700ms linear;
  width: 0px;
}

.team-skills-one__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  font-size: 14px;
  font-weight: 400;
}

.team-four {
  padding: 100px 0;
}

.team-four .container {
  max-width: 1220px;
  width: 100%;
  padding: 0;
}

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

.team-four__card {
  position: relative;
}

.team-four__card__shape {
  width: 148px;
  height: 140px;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  z-index: 3;
  left: -154px;
  top: -50px;
  transform: rotate(0deg);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transition: all 500ms ease;
}

.team-four__card__image {
  width: 282px;
  height: 282px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--pelocis-white, #fff);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 500ms ease;
}

.team-four__card__image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.5);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.team-four__card:hover .team-four__card__image::after {
  opacity: 1;
  visibility: visible;
}

.team-four__card__content {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 0 20px;
  display: inline-block;
  position: relative;
  margin-top: 120px;
  padding-top: 150px;
  padding-bottom: 0px;
  transition: all 500ms ease;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  width: 100%;
  transition: all 500ms ease;
}

.team-four__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
}

.team-four__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.team-four__card__title a:hover {
  background-size: 100% 1px;
}

.team-four__card__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.team-four__card__designation {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 500ms ease;
  display: block;
}

.team-four__card__texts {
  text-align: center;
  margin-top: 40px;
}

.team-four__card__social {
  background-color: var(--pelocis-black, #222222);
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
  cursor: pointer;
  transition: all 500ms ease;
  border-radius: 50%;
}

.team-four__card__social:hover {
  background-color: var(--pelocis-white, #fff);
}

.team-four__card__social:hover>i {
  color: var(--pelocis-white, #fff);
}

.team-four__card__social:hover>i.fa-plus::before {
  content: "\f068";
}

.team-four__card__social>i {
  width: 50px;
  height: 50px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

.team-four__card__social__list {
  position: absolute;
  top: -20px;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  opacity: 1;
  transition: 500ms ease;
  transform-origin: bottom;
}

.team-four__card__social__list a {
  font-size: 14px;
  transition: all 500ms ease;
  width: 100%;
  background: var(--pelocis-white, #fff);
  color: var(--pelocis-base, #757ee2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.team-four__card__social__list a:first-child {
  left: -22px;
  bottom: -55px;
}

.team-four__card__social__list a:nth-child(2) {
  left: 0;
  bottom: -40px;
}

.team-four__card__social__list a:nth-child(3) {
  left: 18px;
  bottom: -56px;
}

.team-four__card__social:hover .team-four__card__social__list {
  opacity: 1;
}

.team-four__card__social:hover .team-four__card__social__list a {
  opacity: 1;
  visibility: visible;
}

.team-four__card__social:hover .team-four__card__social__list a:first-child {
  bottom: -10px;
  left: 0;
}

.team-four__card__social:hover .team-four__card__social__list a:nth-child(2) {
  left: 42px;
  bottom: -42px;
}

.team-four__card__social:hover .team-four__card__social__list a:nth-child(3) {
  left: -38px;
  bottom: -39px;
}

.team-four__card:hover .team-four__card__social {
  background-color: var(--pelocis-base, #757ee2);
}

.team-four__card:hover .team-four__card__content {
  background-color: var(--pelocis-black, #222222);
}

.team-four__card:hover .team-four__card__content .team-four__card__title {
  color: var(--pelocis-white, #fff);
}

.team-four__card:hover .team-four__card__content .team-four__card__designation {
  color: var(--pelocis-white, #fff);
}

.team-four__card:hover .team-four__card__shape {
  left: -54px;
  top: -17px;
  transform: rotate(14deg);
}

.circle-progress-wrapper {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 550px) {
  .circle-progress-wrapper {
    flex-direction: column;
  }
}

.circle-progress-wrapper li {
  flex-direction: column;
  gap: 10px;
  width: 28%;
}

@media (max-width: 550px) {
  .circle-progress-wrapper li {
    align-items: center;
  }
}

.progress-circle {
  position: relative;
  margin: 10px 0;
  width: 118px;
  height: 118px;
  text-align: center;
}

.progress-circle__title {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
}

.progress-circle strong {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 500;
  color: var(--pelocis-black3, #000);
}

.team-details-member .team-card {
  margin-bottom: 0;
}

.team-form-one {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .team-form-one {
    padding: 80px 0;
  }
}

.team-form-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
}

.team-form-one .container {
  position: relative;
  max-width: 800px;
}

.team-form-one .sec-title {
  text-align: center;
}

.team-form-one .form-one .bootstrap-select>.dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
  background-color: var(--pelocis-white, #fff);
}

.team-form-one .form-one textarea {
  height: 188px;
}

.team-carousel {
  padding-bottom: 120px;
  padding-top: 110px;
}

@media (max-width: 991px) {
  .team-carousel {
    padding: 80px 0;
  }
}

.team-carousel .team-card {
  margin-bottom: 0;
}

.team-two {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 768px) {
  .team-two {
    padding: 80px 0;
  }
}

.team-two__title {
  position: relative;
}

.team-two__title__shape {
  position: absolute;
  top: -20px;
  right: 24.5%;
}

@media (max-width: 768px) {
  .team-two__title__shape {
    position: absolute;
    top: -11px;
    right: 10%;
    width: 40px;
  }
}

.team-two__card {
  position: relative;
}

.team-two__card__img {
  position: relative;
}

.team-two__card__img img {
  width: 100%;
}

.team-two__card__content {
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 10px;
  text-align: center;
  border-top: none;
  transition: all 500ms ease;
}

.team-two__card__name {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--pelocis-black2, #333333);
  margin-bottom: 3px;
  transition: all 500ms ease;
}

.team-two__card__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.team-two__card__name a:hover {
  background-size: 100% 1px;
}

.team-two__card__name a:hover {
  color: inherit;
}

.team-two__card__designation {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
  margin: 0;
  color: var(--pelocis-text-dark, #636363);
  transition: all 500ms ease;
}

.team-two__card__hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.7);
  border: 2px solid var(--pelocis-white, #fff);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease-in;
}

.team-two__card__social {
  display: flex;
  gap: 9px;
}

.team-two__card__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms 0.2s ease;
}

.team-two__card__social a:nth-child(1) {
  transform: translateX(28px);
}

.team-two__card__social a:nth-child(3) {
  transform: translateX(-28px);
}

.team-two__card__social a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.team-two__card:hover .team-two__card__hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.team-two__card:hover .team-two__card__social a:nth-child(1) {
  transform: translateX(0);
}

.team-two__card:hover .team-two__card__social a:nth-child(3) {
  transform: translateX(0);
}

.team-two__card:hover .team-two__card__content {
  background-color: var(--pelocis-base, #757ee2);
}

.team-two__card:hover .team-two__card__name {
  color: var(--pelocis-white, #fff);
}

.team-two__card:hover .team-two__card__designation {
  color: var(--pelocis-white, #fff);
}

.blog-card {
  position: relative;
  margin-bottom: 70px;
  overflow: hidden;
}

.blog-card__grid {
  margin-bottom: 30px;
}

.blog-card__grid:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.blog-card .details-img-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--pelocis-base, #757ee2);
}

.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__image--grid {
  border-radius: 30px 30px 30px 0px;
  margin-right: 24px;
  z-index: 2;
  position: relative;
}

@media (max-width: 768px) {
  .blog-card__image--grid {
    max-width: 100%;
  }
}

.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}

.blog-card__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}

.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card__image__link::before,
.blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--pelocis-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card:hover .blog-card__image>a {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover .blog-card__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.blog-card:hover .blog-card__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-card__date {
  width: 77px;
  height: 77px;
  border-radius: 20px;
  background-color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  transition: all 500ms ease;
  color: var(--pelocis-base, #757ee2);
  padding: 0 20px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.blog-card__date span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3px;
}

.blog-card__date::after {
  content: "";
  border: 1px dotted var(--pelocis-base, #757ee2);
  width: 90%;
  height: 90%;
  border-radius: 20px;
  position: absolute;
  transition: all 500ms ease;
}

.blog-card__content {
  padding: 30px;
  margin-top: -180px;
  padding-top: 206px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 500ms ease;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__content {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.blog-card__title {
  margin: 0;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin: 10px 0 11px;
  text-transform: capitalize;
}

.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card__title a:hover {
  background-size: 100% 1px;
}

.blog-card__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-card__link {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: var(--pelocis-white, #fff);
  margin-top: 25px;
}

.blog-card__link:hover {
  color: var(--pelocis-white, #fff);
}

.blog-card__link--dark {
  color: var(--pelocis-black2, #333333);
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  text-transform: uppercase;
}

.blog-card__link--dark:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-card__link i {
  font-size: 16px;
  margin-left: 9px;
  color: var(--pelocis-base, #757ee2);
}

.blog-card__link span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card__link span:hover {
  background-size: 100% 1px;
}

.blog-card__link-2 {
  padding: 10px 40.5px;
  margin-top: 25px;
}

.blog-card__link-2 i {
  font-size: 16px;
  margin-left: 9px;
}

.blog-card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 6px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  margin-bottom: 10px;
}

.blog-card__meta--tag {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff) !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  padding: 4px 33px;
  border-radius: 40px;
}

.blog-card__meta li {
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  align-items: center;
}

.blog-card__meta li i {
  color: var(--pelocis-black2, #333333);
  margin-right: 8px;
  transition: all 500ms ease;
}

.blog-card__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}

.blog-card__meta li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-card__meta li a:hover i {
  color: var(--pelocis-base, #757ee2);
}

.blog-card__shape {
  width: 82px;
  height: 82px;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 50%;
  position: absolute;
  bottom: -90px;
  right: -80px;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: all 500ms ease;
}

.blog-card:hover .blog-card__content {
  background-color: var(--pelocis-gray, #F5F2EF);
  border-color: var(--pelocis-gray, #F5F2EF);
}

.blog-card:hover .blog-card__shape {
  bottom: -38px;
  right: -31px;
  visibility: visible;
  opacity: 1;
}

.blog-card:hover .blog-card__date {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.blog-card:hover .blog-card__date::after {
  border-color: var(--pelocis-white, #fff);
}

.blog-one {
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0;
  }
}

.blog-one__title {
  position: relative;
}

.blog-one__title__shape {
  position: absolute;
  top: -20px;
  right: 30%;
}

@media (max-width: 991px) {
  .blog-one__title__shape {
    position: absolute;
    right: 20%;
  }
}

@media (max-width: 650px) {
  .blog-one__title__shape {
    position: absolute;
    top: -11px;
    right: 10%;
    width: 40px;
  }
}

.blog-one--page {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 767px) {
  .blog-one--page {
    padding: 80px 0;
  }
}

.blog-one--home {
  padding-top: 0px;
}

.blog-one--home .sec-title {
  text-align: center;
}

@media (min-width: 992px) {
  .blog-one__carousel .owl-nav {
    display: none;
  }
}

.blog-two {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 110px 0 120px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0;
  }
}

.blog-two__card {
  border-radius: 10px;
  background-color: var(--pelocis-white, #fff);
  position: relative;
  overflow: hidden;
}

.blog-two__card__img {
  padding: 10px;
  padding-bottom: 0;
  position: relative;
}

.blog-two__card__img img {
  border-radius: 10px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.blog-two__card__img::after {
  content: "";
  position: absolute;
  background-color: var(--pelocis-base, #757ee2);
  width: 100%;
  height: 48%;
  left: 0;
  bottom: 0px;
  transition: all 500ms ease;
}

.blog-two__card__date {
  width: 77px;
  height: 77px;
  border-radius: 20px;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  transition: all 500ms ease;
  color: var(--pelocis-base, #757ee2);
  padding: 0 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  text-transform: capitalize;
  flex-direction: column;
  letter-spacing: 0;
}

.blog-two__card__date span {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 3px;
}

.blog-two__card__date::after {
  content: "";
  border: 1px dotted var(--pelocis-base, #757ee2);
  width: 90%;
  height: 90%;
  border-radius: 20px;
  position: absolute;
  transition: all 500ms ease;
}

.blog-two__card__list {
  display: flex;
  align-items: center;
  background-color: var(--pelocis-base, #757ee2);
  list-style: none;
  padding: 0 40px;
  gap: 15px;
  margin-bottom: 0;
  transition: all 500ms ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-two__card__list {
    padding: 0 18px;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .blog-two__card__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
    gap: 5px;
  }
}

.blog-two__card__list li {
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  align-items: center;
}

.blog-two__card__list li:last-child {
  margin-left: auto;
}

@media (max-width: 767px) {
  .blog-two__card__list li:last-child {
    margin: 0;
    margin-top: 12px;
  }
}

.blog-two__card__list li i {
  color: var(--pelocis-white, #fff);
  margin-right: 9px;
  transition: all 500ms ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-two__card__list li i {
    margin-right: 5px;
  }
}

.blog-two__card__list li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}

.blog-two__card__btn {
  height: 50px;
  padding: 3px 16px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 0px;
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 21px;
}

.blog-two__card__btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-two__card__btn span i {
  font-size: 12px;
}

.blog-two__card__content {
  padding: 25px 30px 26px 40px;
}

@media (max-width: 767px) {
  .blog-two__card__content {
    padding: 25px 25px;
  }
}

.blog-two__card__content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
}

.blog-two__card__content h3 a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-two__card__content h3 a:hover {
  background-size: 100% 1px;
}

.blog-two__card__content h3 a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-two__card__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.blog-two__card__shape {
  position: absolute;
  right: -80px;
  bottom: -132px;
  transform: rotate(18deg);
  width: 80px;
  height: 153px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: var(--pelocis-base, #757ee2);
  transition: all 500ms ease;
}

.blog-two__card:hover .blog-two__card__shape {
  right: 0px;
  bottom: -72px;
}

.blog-two__card:hover .blog-two__card__list {
  background-color: var(--pelocis-black, #222222);
}

.blog-two__card:hover .blog-two__card__img::after {
  background-color: var(--pelocis-black, #222222);
}

.blog-two__card:hover .blog-two__card__btn {
  background-color: var(--pelocis-base, #757ee2);
}

.blog-two__card:hover .blog-two__card__date {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.blog-two__card:hover .blog-two__card__date::after {
  border-color: var(--pelocis-white, #fff);
}

.blog-card-two {
  position: relative;
  margin: 0 0 10px;
}

.blog-card-two .blog-card__image {
  margin-bottom: 30px;
}

.blog-card-two .blog-card__meta {
  margin-bottom: 18px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .blog-card-two .blog-card__meta {
    gap: 10px 20px;
  }
}

.blog-card-two .blog-card__meta__tag {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  padding: 5px 23px;
  border-radius: 40px;
}

.blog-card-two .blog-card__meta__tag:hover {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.blog-card-two .blog-card__title {
  border: none;
  padding: 0;
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
}

.blog-card-two .blog-card__text {
  margin: 0 0 27px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

@media (min-width: 1200px) {
  .blog-card-two .blog-card__text {
    padding-right: 33px;
  }
}

.blog-card-link,
.blog-card-qoute {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 30px;
}

@media (min-width: 768px) {

  .blog-card-link,
  .blog-card-qoute {
    padding: 60px;
  }
}

.blog-card-link .blog-card__title,
.blog-card-qoute .blog-card__title {
  margin: 0;
  margin-bottom: -10px;
}

.blog-card-qoute__text {
  margin: 0;
  margin-bottom: -5px;
}

.blog-card-qoute__image {
  line-height: 1em;
  margin-bottom: 20px;
}

.blog-card-link__icon {
  font-size: 40px;
  color: var(--pelocis-base, #757ee2);
  line-height: 1em;
  margin-bottom: 22px;
}

.blog-three {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .blog-three {
    padding: 70px 0 80px;
  }
}

.blog-three .blog-card-three {
  position: relative;
  background-color: var(--pelocis-white, #fff);
  overflow: hidden;
}

.blog-three .blog-card-three:hover .blog-card-three__content {
  background-color: var(--pelocis-black, #222222);
  border-color: var(--pelocis-black, #222222);
  padding-bottom: 97px;
}

.blog-three .blog-card-three:hover .blog-card-three__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.blog-three .blog-card-three:hover .blog-card-three__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-three .blog-card-three:hover .blog-card-three__shape {
  bottom: 0px;
  right: 12px;
  visibility: visible;
  opacity: 1;
}

.blog-three .blog-card-three:hover .blog-card-three__date {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.blog-three .blog-card-three:hover .blog-card-three__date::after {
  border: 1px dotted var(--pelocis-gray, #F5F2EF);
  background-color: var(--pelocis-base, #757ee2);
}

.blog-three .blog-card-three:hover .blog-card-three__title {
  color: var(--pelocis-white, #fff);
}

.blog-three .blog-card-three:hover .blog-card-three__text {
  color: var(--pelocis-white, #fff);
}

.blog-three .blog-card-three:hover .blog-card-three__link {
  left: 30px;
}

.blog-three .blog-card-three__image {
  position: relative;
  overflow: hidden;
}

.blog-three .blog-card-three__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  min-height: 294px;
  object-fit: cover;
}

.blog-three .blog-card-three__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-three .blog-card-three__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}

.blog-three .blog-card-three:hover .blog-three .blog-card-three__image>a {
  opacity: 1;
  transform: translateY(0);
}

.blog-three .blog-card-three__date {
  width: 77px;
  height: 77px;
  border-radius: 20px;
  background-color: var(--pelocis-base, #757ee2);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  transition: all 500ms ease;
  color: var(--pelocis-base, #757ee2);
  padding: 0 20px;
  position: absolute;
  top: -22px;
  left: 30px;
  z-index: 10;
}

@media (max-width: 1199px) {
  .blog-three .blog-card-three__date {
    display: none;
  }
}

.blog-three .blog-card-three__date span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3px;
}

.blog-three .blog-card-three__date::after {
  content: "";
  background-color: var(--pelocis-white, #fff);
  width: 90%;
  height: 90%;
  border-radius: 20px;
  position: absolute;
  transition: all 500ms ease;
  z-index: -1;
}

.blog-three .blog-card-three__content {
  background-color: transparent;
  padding: 61px 20px 23px 30px;
  position: relative;
  z-index: 10;
  transition: all 500ms ease;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-top: none;
}

.blog-three .blog-card-three__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin: 10px 0 11px;
  text-transform: capitalize;
}

.blog-three .blog-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-three .blog-card-three__title a:hover {
  background-size: 100% 1px;
}

.blog-three .blog-card-three__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-three .blog-card-three__link {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
  margin-top: 13px;
  position: absolute;
  left: -300px;
}

.blog-three .blog-card-three__link::after {
  background-color: var(--pelocis-base, #757ee2);
}

.blog-three .blog-card-three__link:hover {
  color: var(--pelocis-white, #fff);
}

.blog-three .blog-card-three__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  transition: all 300ms ease;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 4px;
}

.blog-three .blog-card-three__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  transition: all 500ms ease;
  background-color: var(--pelocis-white, #fff);
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 12px 15px 7px 38px;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 85px);
}

@media (max-width: 1199px) {
  .blog-three .blog-card-three__meta {
    width: 100%;
    padding: 12px 30px 7px;
  }
}

.blog-three .blog-card-three__meta li {
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  align-items: center;
}

.blog-three .blog-card-three__meta li i {
  margin-right: 7px;
  transition: all 500ms ease;
}

.blog-three .blog-card-three__meta li i::before {
  color: var(--pelocis-text-dark, #636363);
}

.blog-three .blog-card-three__meta li a {
  color: inherit;
  transition: all 500ms ease;
}

.blog-three .blog-card-three__meta li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-three .blog-card-three__shape {
  border-radius: 0;
  position: absolute;
  bottom: -90px;
  right: -80px;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: all 500ms ease;
}

.blog-four {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .blog-four {
    padding: 70px 0 80px;
  }
}

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

.blog-four__card {
  position: relative;
  z-index: 2;
  padding: 10px;
  background-color: var(--pelocis-gray, #F5F2EF);
}

.blog-four__card::after {
  content: "";
  width: 54px;
  height: 54px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
  z-index: -1;
}

.blog-four__card__content {
  position: relative;
  padding: 25px 20px 23px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-four__card__content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.blog-four__card__cat {
  padding: 13px 29px;
  background-color: var(--pelocis-base, #757ee2);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 19px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  color: var(--pelocis-white, #fff);
  border-radius: 6px;
  transition: all 500ms ease;
}

.blog-four__card:hover .blog-four__card__cat {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.blog-four__card__date {
  width: 77px;
  height: 77px;
  border-radius: 20px;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  transition: all 500ms ease;
  color: var(--pelocis-base, #757ee2);
  padding: 0 20px;
  z-index: 2;
  text-transform: capitalize;
  flex-direction: column;
  position: absolute;
  right: 5px;
  top: 5px;
}

.blog-four__card__date span {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.blog-four__card__date::after {
  content: "";
  border: 1px dotted var(--pelocis-base, #757ee2);
  background-color: var(--pelocis-white, #fff);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 20px;
  position: absolute;
  transition: all 500ms ease;
  z-index: -1;
}

.blog-four__card:hover .blog-four__card__date {
  background-color: var(--pelocis-base, #757ee2);
}

.blog-four__card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  margin: 36px 0 10px;
  padding: 0;
}

.blog-four__card__meta li {
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 300ms ease;
}

.blog-four__card__meta li a {
  color: inherit;
  transition: all 300ms ease;
}

.blog-four__card__meta li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-four__card:hover .blog-four__card__meta li {
  color: var(--pelocis-white, #fff);
}

.blog-four__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin: 10px 0 9px;
  text-transform: capitalize;
}

.blog-four__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-four__card__title a:hover {
  background-size: 100% 1px;
}

.blog-four__card__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-four__card:hover .blog-four__card__title {
  color: var(--pelocis-white, #fff);
}

.blog-four__card__text {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 300ms ease;
}

.blog-four__card:hover .blog-four__card__text {
  color: var(--pelocis-white, #fff);
}

.blog-four__card__image {
  position: relative;
  overflow: hidden;
}

.blog-four__card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  object-fit: cover;
}

.blog-four__card__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-four__card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}

.blog-four__card:hover::after {
  width: 100%;
  height: 100%;
}

.blog-four__card:hover .blog-four__card__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.blog-four__card:hover .blog-four__card__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--pelocis-text, #838184);
  font-size: 14px;
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  border: none;
  outline: none;
  padding: 10px 20px;
  height: 48px;
  border: 0.5px solid #d3d3d3;
  border-radius: 8px;
  color: var(--pelocis-text-dark, #636363);
  background-color: transparent;
}

.form-one textarea {
  height: 195px;
  padding-top: 20px;
}

.form-one .bootstrap-select>.dropdown-toggle {
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--pelocis-base, #757ee2);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--pelocis-base, #757ee2);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--pelocis-base, #757ee2);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  overflow: hidden;
  counter-reset: count;
}

.main-footer--home-two {
  position: relative;
}

.main-footer--home-two .main-footer__top {
  padding-top: 90px;
}

.main-footer__top {
  padding-top: 80px;
  padding-bottom: 50px;
}

.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  mix-blend-mode: color-dodge;
  background-size: cover;
  background-position: center center;
  width: 60%;
}

@media (max-width: 1200px) {
  .main-footer__bg {
    width: 100%;
  }
}

.main-footer .container {
  position: relative;
}

.main-footer__bottom {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 23px 0;
  background-color: var(--pelocis-black2, #333333);
}

.main-footer__copyright {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--pelocis-white, #fff);
  max-width: 2000px!important ;
}

.main-footer__shape-1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.main-footer__shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  animation: zumpBottom 2s linear infinite;
}

@media (max-width: 1200px) {
  .main-footer__shape-2 {
    display: none;
  }
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 40px;
}

.footer-widget__newsletter {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 58px;
  background-color: var(--pelocis-black2, #333333);
  color: var(--pelocis-text-dark, #636363);
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 20px;
  transition: all 500ms ease;
}

.footer-widget__newsletter input[type=text]:focus {
  color: var(--pelocis-white, #fff);
}

.footer-widget__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--pelocis-base, #757ee2);
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit]:hover {
  color: var(--pelocis-white, #fff);
}

.footer-widget__title {
  font-size: 22px;
  font-weight: bold;
  color: var(--pelocis-white, #fff);
  text-transform: capitalize;
  margin: 0;
  margin-top: 16px;
  margin-bottom: 45px;
}

@media (max-width: 1150px) {
  .footer-widget__title {
    margin-bottom: 40px;
  }
}

.footer-widget__title--ml-18 {
  margin-left: -18px;
}

@media (max-width: 1028px) {
  .footer-widget__title--ml-18 {
    margin-left: 0px;
  }
}

.footer-widget__info {
  margin-top: -10px;
  margin-bottom: -13px;
}

.footer-widget__info li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--pelocis-white, #fff);
  font-weight: 400;
  line-height: 30px;
}

.footer-widget__links li {
  margin-bottom: 10px;
}

.footer-widget__links {
  margin-top: -10px;
  margin-bottom: -13px;
}

@media (max-width: 1028px) {
  .footer-widget__links {
    list-style: none;
  }
}

.footer-widget__links li {
  font-size: 16px;
  color: var(--pelocis-white, #fff);
  font-weight: 400;
  line-height: 30px;
}

.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget__links li a:hover {
  background-size: 100% 1px;
}

.footer-widget__links li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.footer-widget--post {
  position: relative;
}

.footer-widget--post ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget--post ul li {
  counter-increment: count;
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-widget--post ul li+li {
  margin-top: 22px;
}

.footer-widget--post__img {
  position: relative;
}

.footer-widget--post__img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}

.footer-widget--post__img__number {
  position: absolute;
  top: 8px;
  right: -7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-widget--post__img__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.footer-widget--post__content {
  position: relative;
}

.footer-widget--post__date {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--pelocis-white, #fff);
  line-height: 22px;
  margin-bottom: 8px;
}

.footer-widget--post__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: var(--pelocis-white, #fff);
  margin: 0;
}

.footer-widget--post__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget--post__title a:hover {
  background-size: 100% 1px;
}

.footer-widget--post__title a:hover {
  color: var(--pelocis-base, #757ee2);
}



.footer-widget__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-widget__gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.footer-widget__gallery a img {
  width: 100%;
  height: 100%;
}

.footer-widget__gallery a::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.8);
  border-radius: 8px;
  transition: all 700ms ease;
  transform: scale(0.2);
  opacity: 0;
  z-index: 1;
}

.footer-widget__gallery a:hover::after {
  transform: scale(1);
  opacity: 1;
}

.footer-widget__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-widget__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 15px;
  color: rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.5);
  transition: all 500ms ease;
  border-radius: 50%;
  border: 1px solid rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.5);
}

.footer-widget__social a:hover {
  background-color: var(--pelocis-base, #757ee2);
  border-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.footer-widget .list-styled {
  padding-left: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0;
  }
}

.contact-one__form {
  position: relative;
  max-width: 770px;
  margin: 0 auto;
}

.contact-one__form .form-one__group {
  margin-top: 18px;
}

.contact-one__form .form-one__control__icon {
  right: 0;
  color: var(--pelocis-white, #fff);
}

.contact-one__form .bootstrap-select>.dropdown-toggle,
.contact-one__form input[type=text],
.contact-one__form input[type=email],
.contact-one__form textarea {
  padding: 10px 20px;
  height: 48px;
  border: 0.5px solid var(--pelocis-border-color, #DDDDDD);
  border-radius: 10px;
  color: var(--pelocis-text-dark, #636363);
  background-color: transparent;
  margin: 0 0 30px;
}

.contact-one__form .bootstrap-select>.dropdown-toggle#datepicker,
.contact-one__form input[type=text]#datepicker,
.contact-one__form input[type=email]#datepicker,
.contact-one__form textarea#datepicker {
  cursor: pointer;
}

.contact-one__form textarea {
  height: 192px;
  margin: 0 0 50px;
}

.contact {
  position: relative;
  background-color: var(--pelocis-black, #222222);
  padding: 120px 0;
}

@media (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}

.contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--pelocis-black, #222222);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.contact__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (max-width: 767px) {
  .contact__shape {
    background-size: cover;
  }
}

.contact .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.contact .sec-title {
  padding-bottom: 34px;
}

.contact__form-box {
  position: relative;
  display: block;
  padding: 0;
}

.contact__form {
  position: relative;
  display: block;
}

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

.contact__input-box {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.contact__input-box i {
  position: absolute;
  right: 0;
  color: var(--pelocis-white, #fff);
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  z-index: -1;
}

.contact__input-box input[type=date],
.contact__input-box input[type=text],
.contact__input-box input[type=email] {
  height: 62px;
  width: 100%;
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  outline: none;
  border-bottom: 2px solid rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.15);
  font-size: 14px;
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  display: block;
  font-weight: 500;
}

.contact__input-box input[type=date]#datepicker,
.contact__input-box input[type=text]#datepicker,
.contact__input-box input[type=email]#datepicker {
  cursor: pointer;
}

.contact__input-box .bootstrap-select .dropdown-menu {
  border: none;
}

.contact__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--pelocis-font, "Saira", sans-serif);
}

.contact__input-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.contact__input-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 62px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 0;
  color: var(--pelocis-white, #fff) !important;
  font-size: 14px;
  line-height: 60px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  border-bottom: 2px solid rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.15);
}

.contact__input-box .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 600;
  font-size: 14px;
  color: var(--pelocis-white, #fff);
}

.contact__input-box .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.contact__input-box .bootstrap-select .dropdown-menu>li>a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--pelocis-text, #838184);
  background-color: var(--pelocis-white, #fff);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact__input-box .bootstrap-select .dropdown-menu>li:hover>a,
.contact__input-box .bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  border-color: var(--pelocis-base, #757ee2);
}

.contact__input-box textarea {
  font-size: 14px;
  font-weight: 500;
  color: var(--pelocis-white, #fff);
  height: 112px;
  width: 100%;
  background-color: transparent;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  padding: 0;
  border: none;
  outline: none;
  margin-bottom: 0px;
  border-bottom: 2px solid rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.15);
}

.contact__input-box.text-message-box {
  height: 112px;
  margin-top: 21px;
  margin-bottom: 18px;
}

.home-contact-one {
  background-color: var(--pelocis-black, #222222);
  padding: 260px 0 112px;
  position: relative;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 969" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 124.777L235.25 40.1068L470.5 101.505L939.5 0L1294 127.252H1607H1920V969H0V124.777Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 969" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 124.777L235.25 40.1068L470.5 101.505L939.5 0L1294 127.252H1607H1920V969H0V124.777Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

@media (max-width: 767px) {
  .home-contact-one {
    padding: 120px 0 80px;
  }
}

.home-contact-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.05;
}

.home-contact-one__shape {
  position: absolute;
  top: 0;
}

.home-contact-one .home-contact__card {
  padding: 32px;
  background-color: var(--pelocis-base, #757ee2);
  margin-right: 45px;
  border-radius: 40px;
  position: relative;
  margin-top: 5px;
}

@media (max-width: 510px) {
  .home-contact-one .home-contact__card {
    padding: 20px;
  }
}

@media (max-width: 1200px) {
  .home-contact-one .home-contact__card {
    margin-bottom: 50px;
    margin-right: 0;
  }
}

.home-contact-one .home-contact__card__content {
  background-color: var(--pelocis-white, #fff);
  border-radius: 40px;
  padding: 70px 80px;
}

@media (max-width: 768px) {
  .home-contact-one .home-contact__card__content {
    padding: 40px 40px;
  }
}

@media (max-width: 510px) {
  .home-contact-one .home-contact__card__content {
    padding: 25px 25px;
  }
}

.home-contact-one .home-contact__card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-contact-one .home-contact__card__list li {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 28px 0px;
  padding-right: 38px;
  padding-left: 55px;
  position: relative;
}

@media (max-width: 768px) {
  .home-contact-one .home-contact__card__list li {
    padding-left: 35px;
  }
}

@media (max-width: 510px) {
  .home-contact-one .home-contact__card__list li {
    padding: 15px 32px;
  }
}

.home-contact-one .home-contact__card__list li:last-child {
  margin-bottom: 0;
}

.home-contact-one .home-contact__card__list li span {
  font-size: 30px;
}

@media (max-width: 510px) {
  .home-contact-one .home-contact__card__list li span {
    font-size: 25px;
  }
}

.home-contact-one .home-contact__card__list li span::before {
  color: #1B1A1A;
  transition: all 500ms ease;
}

.home-contact-one .home-contact__card__list li:hover .home-contact__card__list__shape {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scaleY(100%);
}

.home-contact-one .home-contact__card__list li:hover {
  border-color: var(--pelocis-base, #757ee2);
}

.home-contact-one .home-contact__card__list li:hover span::before {
  color: var(--pelocis-base, #757ee2);
}

.home-contact-one .home-contact__card__list__shape {
  width: 39px;
  height: 55px;
  clip-path: polygon(78% 48%, 0 0, 1% 100%);
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(50%);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.home-contact-one .home-contact__card__list__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  color: #1B1A1A;
  margin-bottom: 4px;
}

.home-contact-one .home-contact__card__list__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.home-contact-one .home-contact__card__list__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.home-contact-one .home-contact__card__list__text a:hover {
  background-size: 100% 1px;
}

.home-contact-one .home-contact__card__list__text a:hover {
  color: var(--pelocis-base, #757ee2);
}

.home-contact-one .home-contact__card__shape-one {
  width: 349px;
  height: 89%;
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--pelocis-white, #fff);
  border-radius: 90px 0px 0px 90px;
  z-index: -1;
}

@media (max-width: 1400px) {
  .home-contact-one .home-contact__card__shape-one {
    display: none;
  }
}

.home-contact-one .home-contact__card__shape-two {
  position: absolute;
  left: -136px;
  bottom: 32px;
}

@media (max-width: 768px) {
  .home-contact-one .home-contact__card__shape-two {
    display: none;
  }
}

.home-contact-one .home-contact__card__shape-three {
  position: absolute;
  left: 50px;
  bottom: 57px;
}

@media (max-width: 1400px) {
  .home-contact-one .home-contact__card__shape-three {
    display: none;
  }
}

.home-contact-one .appointment__form__top .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
}

.home-contact-one .appointment__form__top .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.home-contact-one .appointment__form__title {
  position: relative;
}

.home-contact-one .appointment__form__title__shape {
  position: absolute;
  right: 26px;
  top: -20px;
}

@media (max-width: 768px) {
  .home-contact-one .appointment__form__title__shape {
    position: absolute;
    top: -15px;
    right: 10%;
    width: 40px;
  }
}

.home-contact-one .appointment__form__range__value,
.home-contact-one .appointment__form__lable,
.home-contact-one .appointment__form__range__lable,
.home-contact-one .appointment__form__text {
  color: var(--pelocis-white, #fff);
}

.home-contact-one .appointment__form__range__input {
  background-color: var(--pelocis-base, #757ee2) !important;
}

.home-contact-one .appointment__form input,
.home-contact-one .appointment__form select,
.home-contact-one .appointment__form .bootstrap-select>.dropdown-toggle {
  background-color: var(--pelocis-white, #fff);
}

.home-contact-one .appointment__form .pelocis-btn {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
}

.home-contact-one .appointment__form .pelocis-btn::after {
  background-color: var(--pelocis-base, #757ee2);
}

.home-contact-one .appointment__form .pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

.contact-three {
  position: relative;
  overflow: hidden;
  background-color: var(--pelocis-black, #222222);
  margin-bottom: -2px;
}

.contact-three .appointment__form {
  padding: 105px 0 100px;
}

@media (max-width: 767px) {
  .contact-three .appointment__form {
    padding: 50px 0;
  }
}

.contact-three .appointment__form__top .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
}

.contact-three .appointment__form__top .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.contact-three .appointment__form__title {
  position: relative;
}

.contact-three .appointment__form__title__shape {
  position: absolute;
  right: 26px;
  top: -20px;
}

.contact-three .appointment__form .appointment__form__text {
  color: var(--pelocis-white, #fff);
  margin-bottom: 11px;
}

@media (min-width: 1200px) {
  .contact-three .appointment__form .appointment__form__text {
    padding-right: 70px;
  }
}

.contact-three .appointment__form .appointment__form__range__value,
.contact-three .appointment__form .appointment__form__range__lable {
  color: var(--pelocis-white, #fff);
}

.contact-three .appointment__form .appointment__form__lable {
  color: var(--pelocis-white, #fff);
  margin-bottom: 11px;
}

.contact-three .appointment__form.form-one .bootstrap-select>.dropdown-toggle,
.contact-three .appointment__form.form-one input[type=text],
.contact-three .appointment__form.form-one input[type=email],
.contact-three .appointment__form.form-one textarea {
  height: 46px;
  background-color: var(--pelocis-white, #fff);
  padding-left: 29px;
}

.contact-three .appointment__form .pelocis-btn {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.contact-three .appointment__form .pelocis-btn::after {
  background-color: var(--pelocis-base, #757ee2);
}

.contact-three .appointment__form .pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

.contact-three__image {
  position: relative;
  display: inline-block;
  object-fit: cover;
  max-width: 100%;
}

.contact-three__image img {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 900 813" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H900L783.5 216.5L900 456.5L754.5 698L900 813H0V0Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 900 813" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H900L783.5 216.5L900 456.5L754.5 698L900 813H0V0Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 100%;
  height: 813px;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

@media (max-width: 1199px) {
  .contact-three__image img {
    mask: none;
    height: auto;
  }
}

.contact-three__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  right: -15px;
  background-color: var(--pelocis-white, #fff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 900 813" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H900L783.5 216.5L900 456.5L754.5 698L900 813H0V0Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 900 813" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H900L783.5 216.5L900 456.5L754.5 698L900 813H0V0Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  width: 100%;
  height: 813px;
}

@media (max-width: 1750px) {
  .contact-three__image::after {
    display: none;
  }
}

.contact-three__image::before {
  content: "";
  position: absolute;
  right: -32px;
  top: -80px;
  bottom: 0;
  margin: auto;
  background-color: var(--pelocis-base, #757ee2);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 836 773" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0.776367 14.5L798.276 0.5L786.776 83.5L718.776 204.5L835.776 443.5L693.276 683.5L755.776 772.5H0.776367V14.5Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 836 773" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0.776367 14.5L798.276 0.5L786.776 83.5L718.776 204.5L835.776 443.5L693.276 683.5L755.776 772.5H0.776367V14.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  width: 100%;
  height: 773px;
}

@media (max-width: 1750px) {
  .contact-three__image::before {
    display: none;
  }
}

.contact-three__info {
  padding: 30px 37px 25px 35px;
  border-radius: 50px 0px 0px 0px;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1700px) {
  .contact-three__info {
    display: none;
  }
}

.contact-three__info__icon {
  width: 91px;
  height: 91px;
  font-size: 39px;
  color: var(--pelocis-base, #757ee2);
  border-radius: 50%;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.contact-three__info__content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
  color: var(--pelocis-white, #fff);
  margin: 0 0 9px;
}

.contact-three__info__content h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 15px;
  color: var(--pelocis-white, #fff);
}

.contact-three__info__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 0;
}

.contact-three__info__content p a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-three__info__content p a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  display: none;
  background-color: var(--pelocis-black, #222222);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .topbar-one {
    display: block;
  }
}

.topbar-one .container-fluid {
  max-width: 1550px;
}

.topbar-one__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 11.5px 35px;
}

@media (min-width: 992px) {
  .topbar-one__inner {
    flex-direction: row;
  }
}

@media only screen and (max-width: 992px) and (min-width: 766px) {
  .topbar-one__inner {
    padding: 11.5px 15px;
  }
}

.topbar-one__inner__shape {
  background-color: var(--pelocis-base, #757ee2);
  width: 195px;
  height: 50px;
  position: absolute;
  left: 0;
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
}

@media (max-width: 1790px) {
  .topbar-one__inner__shape {
    display: none;
  }
}

.topbar-one__info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
}

.topbar-one__info__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  gap: 14px;
}

.topbar-one__info__item i {
  color: var(--pelocis-base, #757ee2);
}

.topbar-one__info__item .icon-location {
  font-size: 16px;
}

.topbar-one__info__item a {
  color: var(--pelocis-white, #fff);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}

.topbar-one__info__item__divider {
  height: 20px;
  width: 1px;
  background-color: var(--pelocis-white, #fff);
  opacity: 29%;
}

.topbar-one__info__item+.topbar-one__info__item {
  margin-left: 20px;
}

.topbar-one__info__icon {
  font-size: 14px;
  color: var(--pelocis-base, #757ee2);
  position: relative;
  top: 2px;
  margin-right: 9px;
}

.topbar-one__right {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .topbar-one__right {
    margin-top: 0;
    margin-left: auto;
  }
}

.topbar-one__right__item {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  line-height: 1.2em;
  margin: 0;
}

.topbar-one__right__item li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-one__right__item__divider {
  height: 20px;
  width: 1px;
  background-color: var(--pelocis-white, #fff);
  opacity: 29%;
}

.topbar-one__right__item select {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--pelocis-gray, #F5F2EF);
}

.topbar-one__right__item a {
  color: var(--pelocis-gray, #F5F2EF);
}

.topbar-one__right__item a:hover {
  color: var(--pelocis-base, #757ee2);
}

.topbar-one__right__item .bootstrap-select .dropdown-menu.inner {
  background-color: var(--pelocis-white, #fff);
}

.topbar-one__right__item .bootstrap-select .dropdown-menu li a {
  color: var(--pelocis-black, #222222);
}

.topbar-one__right__item .bootstrap-select .dropdown-item:hover,
.topbar-one__right__item .bootstrap-select .dropdown-item.active {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.topbar-one__right__item .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.topbar-one__right__item .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  color: inherit;
  color: var(--pelocis-base, #757ee2);
}

.topbar-one__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2em;
}

.topbar-one__social {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 3.5px 0;
  padding-left: 30px;
  margin-left: 30px;
  line-height: 1em;
}

.topbar-one__social a {
  font-size: 14px;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
}

.topbar-one__social a:hover {
  color: var(--pelocis-base, #757ee2);
}

.topbar-one__social a+a {
  margin-left: 20px;
}

.topbar-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.topbar-one .bootstrap-select>.dropdown-toggle {
  padding: 0px 4px;
  background: transparent;
  color: var(--pelocis-gray, #F5F2EF);
  border: none;
  outline: none;
  padding-right: 13px;
}

.topbar-one .bootstrap-select>.dropdown-toggle:focus {
  outline: none !important;
}

.topbar-three {
  background-color: var(--pelocis-white, #fff);
  padding-bottom: 56px;
}

@media (max-width: 991px) {
  .topbar-three {
    display: none;
  }
}

.topbar-three .container-fluid {
  max-width: 1820px;
}

.topbar-three__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.topbar-three__info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.topbar-three__info__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  gap: 10px;
}

.topbar-three__info__item i {
  color: var(--pelocis-base, #757ee2);
}

.topbar-three__info__item a {
  color: var(--pelocis-black, #222222);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.topbar-three__info__item a:hover {
  background-size: 100% 1px;
}

.topbar-three__info__item a:hover {
  color: var(--pelocis-base, #757ee2);
}

.topbar-three__info__item__divider {
  height: 20px;
  width: 1px;
  background-color: var(--pelocis-black, #222222);
  opacity: 29%;
}

.topbar-three__info__item+.topbar-three__info__item {
  margin-left: 20px;
}

.topbar-three__info__icon {
  font-size: 14px;
  color: var(--pelocis-base, #757ee2);
  position: relative;
  top: 2px;
  margin-right: 9px;
}

.topbar-three__right {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .topbar-three__right {
    margin-top: 0;
    margin-left: auto;
  }
}

.topbar-three__right__item {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  line-height: 1.2em;
  margin: 0;
}

.topbar-three__right__item--social {
  gap: 0px !important;
  margin-right: 50px;
}

.topbar-three__right__item--social a {
  height: 100%;
  background-color: var(--pelocis-gray, #F5F2EF);
  color: #92918F;
  width: 45px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.topbar-three__right__item--social a:last-child {
  border: none;
}

.topbar-three__right__item--social a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.topbar-three__right__item li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-three__right__item__divider {
  height: 20px;
  width: 1px;
  background-color: var(--pelocis-black, #222222);
  opacity: 29%;
}

.topbar-three__right__item select {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--pelocis-gray, #F5F2EF);
}

.topbar-three__right__item .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.topbar-three__right__item .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  color: inherit;
  color: var(--pelocis-base, #757ee2);
}

.topbar-three__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2em;
}

.topbar-three .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.topbar-three .bootstrap-select>.dropdown-toggle {
  padding: 0px 20px 0 4px;
  background: transparent;
  color: var(--pelocis-black, #222222);
  border: none;
  outline: none;
}

.topbar-three .bootstrap-select>.dropdown-toggle:focus {
  outline: none !important;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  width: 100%;
  top: 50px;
  z-index: 99;
}

@media (max-width: 766px) {
  .main-header {
    top: 15px;
  }
}

.main-header .container-fluid {
  max-width: 1550px;
}

.main-header__inner {
  display: flex;
  align-items: center;
  background-color: var(--pelocis-white, #fff);
  padding: 30px 0;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  background-image: url(../images/shapes/manu-area-shape.png);
  background-position: center;
  background-size: cover;
}

@media (min-width: 992px) {
  .main-header__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .main-header__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 1320px) {
  .main-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .main-header__inner {
    padding: 20px 25px;
  }
}

@media (max-width: 375px) {
  .main-header__inner {
    padding: 20px 10px;
  }
}

.main-header__logo {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 766px) {
  .main-header__logo a img {
    width: 200px;
  }
}

@media (max-width: 425px) {
  .main-header__logo a img {
    width: 154px;
  }
}

@media (min-width: 768px) {
  .main-header__logo {
    width: auto;
  }
}

@media (min-width: 768px) {
  .main-header__logo .mobile-nav__btn {
    margin-left: 30px;
  }
}

.main-header__btn {
  display: none;
  padding: 10px 26px;
  margin-left: 40px;
}

@media (min-width: 768px) {
  .main-header__btn {
    display: inline-flex;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .main-header__btn {
    padding: 10px 18px;
    margin-left: 20px;
  }
}

.main-header__right {
  display: flex;
  align-items: center;
  margin-left: 10px;
  padding: 9.5px 0;
}

@media (min-width: 768px) {
  .main-header__right {
    margin-left: auto;
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .main-header__right {
    margin-left: 9px;
  }
}

.main-header__cart {
  margin-left: 25px;
}

@media (max-width: 1300px) {
  .main-header__cart {
    margin-left: 15px;
  }
}

.main-header__search {
  margin-left: 33px;
}

@media (max-width: 1300px) {
  .main-header__search {
    margin-left: 15px;
  }
}

.main-header__cart,
.main-header__search {
  font-size: 24px;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
  line-height: 1em;
}

.main-header__cart:hover,
.main-header__search:hover {
  color: var(--pelocis-base, #757ee2);
}

.main-header__nav {
  margin-left: auto;
}

.main-header--two {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 9;
  width: 100%;
}

.main-header--two.sticky-header--cloned {
  border: none;
}

.main-header--two .main-header__btn::after,
.main-header--two .main-header__btn {
  background-color: var(--pelocis-white, #fff);
}

.main-header--two .main-header__btn:hover {
  color: var(--pelocis-black, #222222);
}

.main-header--two .container-fluid {
  max-width: 1600px;
}

.main-header--two .main-header__inner {
  background-color: var(--pelocis-white, #fff);
  background-image: none;
  border-radius: 80px;
  padding: 0 11px 0 50px;
}

@media (max-width: 1440px) {
  .main-header--two .main-header__inner {
    padding-left: 15px;
  }
}

@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .main-header--two .main-header__inner {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 18px;
  }
}

.main-header--two .main-menu .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 40px;
}

.main-header--two .main-menu .main-menu__list>li.current>a,
.main-header--two .main-menu .main-menu__list>li:hover>a {
  color: var(--pelocis-base, #757ee2);
}

.main-header--two .main-header__cart,
.main-header--two .main-header__search {
  color: var(--pelocis-black, #222222);
}

.main-header--two .main-header__cart:hover,
.main-header--two .main-header__search:hover {
  color: var(--pelocis-base, #757ee2);
}

.main-header--two .main-header__right {
  border-color: RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.1);
}

.main-header--two .contact-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 28px;
  position: relative;
  margin-left: 28px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .main-header--two .contact-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-header--two .contact-wrapper {
    display: none;
  }
}

.main-header--two .contact-wrapper::before {
  content: "";
  height: 36px;
  width: 1px;
  background-color: var(--pelocis-border-color, #DDDDDD);
  position: absolute;
  left: 0;
}

.main-header--two .contact-wrapper i {
  font-size: 39px;
  color: var(--pelocis-base, #757ee2);
}

.main-header--two .contact-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  color: var(--pelocis-black2, #333333);
  margin-bottom: 4px;
}

.main-header--two .contact-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.main-header--two .contact-content p a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.main-header--two .contact-content p a:hover {
  background-size: 100% 1px;
}

.main-header--two .contact-content p a:hover {
  color: var(--pelocis-base, #757ee2);
}

.main-header--two .main-header__toggler {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 94px;
  height: 94px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 50%;
  margin-left: 30px;
  padding: 0 23px;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler {
    width: 60px;
    height: 60px;
    margin-left: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 500px) {
  .main-header--two .main-header__toggler {
    display: none;
  }
}

.main-header--two .main-header__toggler span {
  background-color: var(--pelocis-base, #757ee2);
  height: 4px;
  width: 46px;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span {
    width: 30px;
  }
}

.main-header--two .main-header__toggler span:nth-child(2) {
  width: 27px;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span:nth-child(2) {
    width: 20px;
  }
}

.main-header--two .main-header__toggler span:nth-child(3) {
  width: 39px;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span:nth-child(3) {
    width: 25px;
  }
}

.main-header--three {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 9;
  width: 100%;
}

@media (max-width: 991px) {
  .main-header--three {
    top: 0px;
  }
}

.main-header--three .container-fluid {
  max-width: 1820px;
}

.main-header--three .mobile-nav__btn span {
  background-color: var(--pelocis-white, #fff);
}

.main-header--three .main-header__logo {
  gap: 20px;
}

.main-header--three .main-header__call {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: 40px;
}

@media (max-width: 767px) {
  .main-header--three .main-header__call {
    display: none;
  }
}

.main-header--three .main-header__call__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: var(--pelocis-white, #fff);
}

.main-header--three .main-header__call span {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-white, #fff);
}

.main-header--three .main-header__call span a {
  color: inherit;
  font-size: inherit;
}

.main-header--three .main-header__call span a:hover {
  color: var(--pelocis-base, #757ee2);
}

.main-header--three .main-header__btn::after {
  background-color: var(--pelocis-white, #fff);
}

.main-header--three .main-header__btn:hover {
  color: var(--pelocis-black, #222222);
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .main-header--three .main-header__btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .main-header--three .main-header__btn {
    display: none;
  }
}

.main-header--three__inner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 50px;
  background-color: var(--pelocis-black, #222222);
}

@media (max-width: 1599px) {
  .main-header--three__inner-top {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {
  .main-header--three__inner-top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.main-header--three__inner-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .main-header--three__inner-bottom {
    display: none;
  }
}

.main-header--three .main-menu .main-menu__list>li>a {
  color: var(--pelocis-white, #fff);
}

.main-header--three .main-header__search {
  color: var(--pelocis-white, #fff);
}

.main-header--four {
  top: 0;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  padding: 0 95px;
}

@media (max-width: 1700px) {
  .main-header--four {
    padding: 0 20px;
  }
}

@media (max-width: 1490px) {
  .main-header--four {
    padding: 0 0px;
  }
}

.main-header--four__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 90px;
  z-index: 99;
}

@media (max-width: 1700px) {
  .main-header--four__inner {
    padding: 0 40px;
  }
}

@media (max-width: 1490px) {
  .main-header--four__inner {
    padding: 0 20px;
  }
}

@media (max-width: 1199px) {
  .main-header--four__inner {
    padding: 15px 20px;
  }
}

.main-header--four__inner__bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pelocis-white, #fff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1714 137" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M8.4109 63.5829C-10.8819 37.1518 7.99621 0 40.7195 0H1673.28C1706 0 1724.88 37.1518 1705.59 63.5829L1663.98 120.583C1656.45 130.9 1644.45 137 1631.67 137H82.3253C69.5523 137 57.5474 130.9 50.0167 120.583L8.4109 63.5829Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1714 137" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M8.4109 63.5829C-10.8819 37.1518 7.99621 0 40.7195 0H1673.28C1706 0 1724.88 37.1518 1705.59 63.5829L1663.98 120.583C1656.45 130.9 1644.45 137 1631.67 137H82.3253C69.5523 137 57.5474 130.9 50.0167 120.583L8.4109 63.5829Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.main-header--four.sticky-header--cloned {
  border: none;
}

.main-header--four .main-header__btn::after,
.main-header--four .main-header__btn {
  background-color: var(--pelocis-white, #fff);
}

.main-header--four .main-header__btn:hover {
  color: var(--pelocis-black, #222222);
}

.main-header--four .container-fluid {
  max-width: 100%;
}

.main-header--four .main-menu .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 40px;
}

.main-header--four .main-menu .main-menu__list>li.current>a,
.main-header--four .main-menu .main-menu__list>li:hover>a {
  color: var(--pelocis-base, #757ee2);
}

.main-header--four .main-header__cart,
.main-header--four .main-header__search {
  color: var(--pelocis-black, #222222);
}

.main-header--four .main-header__cart:hover,
.main-header--four .main-header__search:hover {
  color: var(--pelocis-base, #757ee2);
}

.main-header--four .main-header__right {
  border-color: RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.1);
}

.main-header--four .contact-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 28px;
  position: relative;
  margin-left: 28px;
}

@media (max-width: 1490px) {
  .main-header--four .contact-wrapper {
    margin-left: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .main-header--four .contact-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-header--four .contact-wrapper {
    display: none;
  }
}

.main-header--four .contact-wrapper::before {
  content: "";
  height: 36px;
  width: 1px;
  background-color: var(--pelocis-border-color, #DDDDDD);
  position: absolute;
  left: 0;
}

.main-header--four .contact-wrapper i {
  font-size: 39px;
  color: var(--pelocis-base, #757ee2);
}

.main-header--four .contact-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  color: var(--pelocis-black2, #333333);
  margin-bottom: 4px;
}

.main-header--four .contact-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.main-header--four .contact-content p a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.main-header--four .contact-content p a:hover {
  background-size: 100% 1px;
}

.main-header--four .contact-content p a:hover {
  color: var(--pelocis-base, #757ee2);
}

.main-header--four .main-header__toggler {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 94px;
  height: 94px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 50%;
  margin-left: 30px;
  padding: 0 23px;
}

@media (max-width: 1490px) {
  .main-header--four .main-header__toggler {
    margin-left: 20px;
  }
}

@media (max-width: 1199px) {
  .main-header--four .main-header__toggler {
    width: 60px;
    height: 60px;
    margin-left: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 500px) {
  .main-header--four .main-header__toggler {
    display: none;
  }
}

.main-header--four .main-header__toggler span {
  background-color: var(--pelocis-base, #757ee2);
  height: 4px;
  width: 46px;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .main-header--four .main-header__toggler span {
    width: 30px;
  }
}

.main-header--four .main-header__toggler span:nth-child(2) {
  width: 27px;
}

@media (max-width: 1199px) {
  .main-header--four .main-header__toggler span:nth-child(2) {
    width: 20px;
  }
}

.main-header--four .main-header__toggler span:nth-child(3) {
  width: 39px;
}

@media (max-width: 1199px) {
  .main-header--four .main-header__toggler span:nth-child(3) {
    width: 25px;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--pelocis-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}

.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (max-width: 766px) {
  .mobile-nav__btn {
    margin-right: 0px !important;
  }
}

@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: -50px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: -40px;
    margin-right: 10px;
  }
}

@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--pelocis-black, #222222);
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {
  /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li {
  padding: 41px 0;
  position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
  position: relative;
}

.main-menu .main-menu__list>li.dropdown>a::after {
  position: relative;
  right: 0;
  top: 1px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  color: inherit;
  line-height: 10px;
  margin-left: 3px;
}

.main-menu .main-menu__list>li+li {
  margin-left: 38px;
}

@media (max-width: 1500px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 25px;
  }
}

.main-menu .main-menu__list>li>a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--pelocis-black2, #333333);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
  position: relative;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
  color: var(--pelocis-base, #757ee2);
  text-shadow: 0 0 0.5px currentColor;
}

.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--pelocis-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu {
  position: static;
}

.main-menu .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list .main-menu__list__icons:hover>a {
  color: inherit !important;
}

.main-menu .main-menu__list .main-menu__list__icons a i {
  font-size: 26px;
}

.main-menu .main-menu__list .arrow__bottom {
  font-size: 8px;
}

.main-menu .main-menu__list li ul li>a {
  font-size: 12px;
  line-height: 26px;
  color: var(--pelocis-text, #838184);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  letter-spacing: var(--pelocis-letter-space, 0.1em);
  font-weight: 500;
  display: flex;
  text-transform: uppercase;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}

.main-menu .main-menu__list li ul li>a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--pelocis-base, #757ee2);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
  background-color: var(--pelocis-gray, #F5F2EF);
  color: var(--pelocis-black, #222222);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.main-menu .main-menu__list li ul li>ul {
  top: 0;
  left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {

  .main-menu__list li:nth-last-child(1) ul li>ul,
  .main-menu__list li:nth-last-child(2) ul li>ul {
    left: auto;
    right: calc(100% + 20px);
  }
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--pelocis-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.main-header__cart,
.main-header__search {
  display: block;
}

.mobile-nav__container .main-header__cart,
.mobile-nav__container .main-header__search,
.mobile-nav__container .mobile-nav__toggler {
  display: none;
}

.mobile-nav__container .main-header__btn {
  margin-left: 0;
  margin-top: 10px;
  padding: 15px 25px;
  width: 100%;
}

.mobile-nav__container .main-header__right {
  margin-left: 0;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--pelocis-black, #222222);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--pelocis-base, #757ee2);
}

.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.demo-one .row {
  --bs-gutter-y: 30px;
}

.demo-one__card {
  background-color: var(--pelocis-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--pelocis-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}

.demo-one__card:hover {
  transform: translateY(-10px);
}

.demo-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--pelocis-black, #222222);
  font-weight: 500;
  letter-spacing: var(--pelocis-letter-space, 0.1em);
  font-family: var(--pelocis-font, "Saira", sans-serif);
}

.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.demo-one__title a:hover {
  background-size: 100% 1px;
}

.demo-one__image {
  position: relative;
  overflow: hidden;
}

.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}

.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}

.demo-one__btns {
  background-color: rgba(var(--pelocis-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}

.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.demo-one__btn {
  font-size: 13px;
  padding: 10px 25px;
  display: inline-flex;
}

.demo-one__btn::after {
  background-color: var(--pelocis-white, #fff);
}

.demo-one__btn:hover {
  color: var(--pelocis-black, #222222);
}

.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase {
  margin-top: -20px;
  margin-bottom: -20px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--pelocis-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--pelocis-black3-rgb, 0, 0, 0), 0.07);
}

.home-showcase .demo-one__card {
  box-shadow: none;
}

.home-showcase .demo-one__btns {
  flex-direction: column;
}

.home-showcase .demo-one__btn {
  min-width: 135px;
  text-align: center;
  justify-content: center;
}

.home-showcase .demo-one__title {
  padding: 0;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  padding: 180px 0 105px;
}

@media (max-width: 768px) {
  .why-choose-one {
    padding: 120px 0;
  }
}

.why-choose-one__title {
  position: relative;
}

.why-choose-one__title__shape {
  position: absolute;
  right: 98px;
  top: -25px;
}

@media (max-width: 768px) {
  .why-choose-one__title__shape {
    position: absolute;
    top: -20px;
    right: 10%;
    width: 40px;
  }
}

.why-choose-one .container {
  position: relative;
}

.why-choose-one__content {
  padding-left: 0px;
  padding-right: 0px;
}

@media (min-width: 1200px) {
  .why-choose-one__content {
    padding-left: 0;
    padding-right: 0px;
  }
}

.why-choose-one__content .sec-title {
  padding-bottom: 0px;
}

.why-choose-one__image {
  position: relative;
  display: inline-block;
  margin-top: 11px;
}

.why-choose-one__image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  border-left: 10px solid var(--pelocis-base, #757ee2);
  height: 275px;
}

.why-choose-one__image::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  border-bottom: 10px solid var(--pelocis-base, #757ee2);
  width: 275px;
}

@media (min-width: 1200px) {
  .why-choose-one__image {
    margin-left: 53px;
  }
}

.why-choose-one__image img {
  width: 100%;
}

.why-choose-one__image__content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 24px 30px 11px;
  background-color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  color: var(--pelocis-black3, #000);
  text-align: left;
}

.why-choose-one__image__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  height: 44px;
  width: 5px;
  background-color: var(--pelocis-base, #757ee2);
}

.why-choose-one__image__content::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 40px;
  width: 5px;
  background-color: var(--pelocis-base, #757ee2);
}

.why-choose-one__image__content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  color: var(--pelocis-black3, #000);
  margin-bottom: 2px;
}

.why-choose-one__image__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-black3, #000);
  text-transform: uppercase;
  margin-bottom: 0;
}

.why-choose-one__highlighted {
  margin: 0;
  color: var(--pelocis-base, #757ee2);
  font-size: 18px;
  line-height: 30px;
  margin-top: -20px;
}

@media (min-width: 768px) {
  .why-choose-one__highlighted {
    font-size: 20px;
  }
}

.why-choose-one__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 22px;
  color: #151212;
}

@media (min-width: 1200px) {
  .why-choose-one__text {
    margin-right: 53px;
  }
}

.why-choose-one__list {
  margin-top: 32px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-radius: 5px;
}

.why-choose-one__list__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px 55px 27px 25px;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.why-choose-one__list__item:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .why-choose-one__list__item {
    flex-direction: row;
  }
}

.why-choose-one__list__item:hover .why-choose-one__list__icon {
  background-color: var(--pelocis-base, #757ee2);
}

.why-choose-one__list__item:hover .why-choose-one__list__icon i {
  transform: scale(0.9);
}

.why-choose-one__list__item-one {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
}

@media (min-width: 768px) {
  .why-choose-one__list__item-one {
    flex-direction: row;
    align-items: center;
  }
}

.why-choose-one__list__item-one ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

.why-choose-one__list__item-one ul li span {
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease-in;
  font-size: 18px;
}

.why-choose-one__list__item-one ul li:hover span {
  color: var(--pelocis-base, #757ee2);
}

.why-choose-one__list__item-one ul li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: inherit;
}

.why-choose-one__list__item-one ul li a:hover {
  background-size: 100% 1px;
}

.why-choose-one__list__icon {
  width: 76px;
  height: 76px;
  background-color: var(--pelocis-black, #222222);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--pelocis-white, #fff);
  font-size: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  transition: all 500ms ease;
  margin-bottom: 15px;
}

.why-choose-one__list__icon i {
  transform: scale(1);
  transition: 500ms ease;
}

@media (min-width: 768px) {
  .why-choose-one__list__icon {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.why-choose-one__list__title {
  margin: -3px 0 4px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
}

.why-choose-one__list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.why-choose-one__list__title a:hover {
  background-size: 100% 1px;
}

.why-choose-one__list__text {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  position: relative;
}

.why-choose-two {
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
  counter-reset: count;
}

.why-choose-two .sec-title {
  padding-bottom: 20px;
}

.why-choose-two .container {
  z-index: 2;
  position: relative;
}

.why-choose-two__content {
  padding-top: 110px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .why-choose-two__content {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.why-choose-two__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 25px;
}

.why-choose-two__list {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.why-choose-two__item {
  background-color: var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  padding: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 500ms ease;
  counter-increment: count;
}

.why-choose-two__item:last-child {
  margin-bottom: 0;
}

.why-choose-two__item__content {
  padding-left: 20px;
}

.why-choose-two__item__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26.4px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 6px;
}

.why-choose-two__item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.why-choose-two__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 63px;
  height: 100%;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(100% 0%, 48% 50%, 100% 100%, 0% 100%, 0 48%, 0% 0%);
  transition: all 500ms ease;
}

.why-choose-two__item:hover {
  padding-left: 130px;
  background-color: var(--pelocis-black, #222222);
}

.why-choose-two__item:hover::before {
  opacity: 0;
  visibility: hidden;
  left: -200px;
}

@media (max-width: 767px) {
  .why-choose-two__item:hover {
    padding-left: 0px;
  }
}

.why-choose-two__item:hover .why-choose-two__item__title {
  color: var(--pelocis-white, #fff);
}

.why-choose-two__item:hover .why-choose-two__item__text {
  color: var(--pelocis-white, #fff);
}

.why-choose-two__item:hover .why-choose-two__count {
  left: 0;
}

.why-choose-two__item:hover .why-choose-two__icon {
  transform: translateX(-30px);
  background-color: var(--pelocis-base, #757ee2);
}

@media (max-width: 767px) {
  .why-choose-two__item:hover .why-choose-two__icon {
    transform: translateX(10px);
  }
}

.why-choose-two__item:hover .why-choose-two__item__content {
  padding-left: 0;
}

@media (max-width: 767px) {
  .why-choose-two__item:hover .why-choose-two__item__content {
    padding-left: 20px;
  }
}

.why-choose-two__count {
  transition: all 500ms ease;
  transition-delay: 200ms;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--pelocis-white, #fff);
  background-color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  -webkit-text-stroke: 1px var(--pelocis-black, #222222);
  position: absolute;
  left: -200px;
  height: 100%;
  width: 160px;
  display: flex;
  padding-left: 30px;
  align-items: center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 160 108" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H160L112.298 54L160 108H0V0Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 160 108" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H160L112.298 54L160 108H0V0Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.why-choose-two__count:before {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
  position: relative;
}

@media (max-width: 767px) {
  .why-choose-two__count {
    display: none;
  }
}

.why-choose-two__icon {
  width: 90px;
  height: 88px;
  border: 3px solid var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pelocis-black, #222222);
  border-radius: 10px;
  z-index: 1;
  flex-shrink: 0;
  font-size: 44px;
  color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

.why-choose-two .pelocis-stretch-element-inside-column {
  position: relative;
  height: 100%;
}

.why-choose-two__shape-one {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 957 869" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M118.658 0H959V869H0.0976562C0.0976562 869 181.143 791.001 69.4579 434.5C-42.2272 77.9998 118.658 0 118.658 0Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 957 869" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M118.658 0H959V869H0.0976562C0.0976562 869 181.143 791.001 69.4579 434.5C-42.2272 77.9998 118.658 0 118.658 0Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-size: cover;
  mask-size: cover;
  max-width: 987px;
  position: relative;
  z-index: 11;
}

@media (max-width: 1199px) {
  .why-choose-two__shape-one {
    mask: none;
    text-align: right;
  }
}

.why-choose-two__shape-one img {
  max-width: 100%;
  height: 100%;
  min-height: 869px;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .why-choose-two__shape-one img {
    min-height: auto;
  }
}

.why-choose-two__shape-two {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 985 869" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M272.035 10L987 0V869H0C0 869 164.5 817 83.3927 454.5C2.28532 92.0004 272.035 10 272.035 10Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 985 869" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M272.035 10L987 0V869H0C0 869 164.5 817 83.3927 454.5C2.28532 92.0004 272.035 10 272.035 10Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom left;
  mask-position: bottom left;
  -webkit-mask-size: cover;
  mask-size: cover;
  max-width: 987px;
  height: 100%;
  width: 100%;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  top: 0;
  right: 25px;
}

@media (max-width: 1199px) {
  .why-choose-two__shape-two {
    display: none;
  }
}

.why-choose-two__shape-three {
  position: absolute;
  left: 0;
  bottom: 0;
}

.why-choose-two .pelocis-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin: 0;
}

.why-choose-three {
  position: relative;
  background-color: var(--pelocis-black, #222222);
}

.why-choose-three__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.15;
}

.why-choose-three__content {
  position: relative;
  z-index: 2;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .why-choose-three__content {
    padding: 70px 0 80px;
  }
}

.why-choose-three .sec-title {
  padding-bottom: 20px;
}

.why-choose-three .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.why-choose-three .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
}

.why-choose-three__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin: 0 0 32px;
}

@media (min-width: 1200px) {
  .why-choose-three__text {
    padding-right: 70px;
  }
}

.why-choose-three__item {
  position: relative;
}

.why-choose-three__item__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  color: var(--pelocis-base, #757ee2);
  transition: all 500ms ease;
}

.why-choose-three__item__icon::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 50%;
  height: 50%;
  background-color: var(--pelocis-base, #757ee2);
  transform: rotate(41deg);
  transition: all 500ms ease-in-out;
  z-index: -1;
}

.why-choose-three__item__icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -22px;
  top: -22px;
  width: 50%;
  height: 50%;
  background-color: var(--pelocis-base, #757ee2);
  transform: rotate(41deg);
  transition: all 500ms ease-in-out;
}

.why-choose-three__item__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 14px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}

.why-choose-three__item__title:hover {
  background-size: 100% 1px;
}

.why-choose-three__item__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-white, #fff);
  margin: 0;
}

.why-choose-three__item:hover .why-choose-three__item__icon {
  color: var(--pelocis-white, #fff);
}

.why-choose-three__item:hover .why-choose-three__item__icon::after {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  left: 0;
}

.why-choose-three__item:hover .why-choose-three__item__icon::before {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  right: 0;
}

.why-choose-three__quote {
  padding: 0px;
  border-radius: 50px;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 40px 0 50px;
  padding: 14px 15px 14px 66px;
  position: relative;
}

.why-choose-three__quote__icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 47px;
  height: 49px;
  font-size: 26px;
  border-radius: 50%;
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pelocis-base, #757ee2);
}

.why-choose-three__quote__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: var(--pelocis-black, #222222);
  margin: 0;
}

.why-choose-three .pelocis-btn::after {
  background-color: var(--pelocis-white, #fff);
}

.why-choose-three .pelocis-btn:hover {
  color: var(--pelocis-black, #222222);
}

.why-choose-three__right {
  position: relative;
  margin-left: auto;
  max-width: 901px;
}

@media (max-width: 1199px) {
  .why-choose-three__right {
    margin: 0 auto;
  }
}

.why-choose-three__right>img {
  min-height: 761px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .why-choose-three__right>img {
    min-height: auto;
  }
}

.why-choose-three__right__content {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background-color: var(--pelocis-base, #757ee2);
  padding: 10px 12px;
}

@media (max-width: 499px) {
  .why-choose-three__right__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.why-choose-three__right__content__img {
  width: 222px;
  height: 122px;
  padding: 7px;
  background-color: var(--pelocis-white, #fff);
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-radius: 10px;
  flex-shrink: 0;
}

.why-choose-three__right__content__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.why-choose-three__right__content__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  color: var(--pelocis-white, #fff);
  margin: 0;
}

.why-choose-four {
  position: relative;
  padding: 120px 0 114px;
}

@media (max-width: 767px) {
  .why-choose-four {
    padding: 80px 0;
  }
}

.why-choose-four__list {
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-radius: 5px;
  padding: 0;
  margin: 0;
}

.why-choose-four__item {
  padding: 28.5px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  transition: all 500ms ease;
}

@media (max-width: 574px) {
  .why-choose-four__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.why-choose-four__item:last-child {
  border: none;
}

.why-choose-four__item:hover {
  background-color: var(--pelocis-black, #222222);
  border-color: var(--pelocis-black, #222222);
}

.why-choose-four__item__icon {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  background-color: var(--pelocis-black, #222222);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 400ms ease;
  font-size: 40px;
  color: var(--pelocis-white, #fff);
}

.why-choose-four__item:hover .why-choose-four__item__icon {
  background-color: var(--pelocis-base, #757ee2);
}

.why-choose-four__item__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  text-transform: capitalize;
  margin-bottom: 4px;
  transition: all 500ms ease;
}

.why-choose-four__item:hover .why-choose-four__item__title {
  color: var(--pelocis-white, #fff);
}

.why-choose-four__item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0;
  transition: all 500ms ease;
}

.why-choose-four__item:hover .why-choose-four__item__text {
  color: var(--pelocis-white, #fff);
}

.why-choose-four__content {
  position: relative;
  margin: -8px 0 0;
}

@media (max-width: 991px) {
  .why-choose-four__content {
    margin: 40px 0 0;
  }
}

.why-choose-four__content .sec-title {
  padding-bottom: 20px;
}

.why-choose-four__content__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .why-choose-four__content__text {
    padding-right: 70px;
  }
}

.why-choose-four__content img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  background-color: var(--pelocis-base, #757ee2);
  background-image: url(../images/shapes/funfact-bg-1-1.jpg);
  background-size: cover;
  background-position: center center;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 1200px) {
  .funfact-one {
    padding-top: 73.5px;
    padding-bottom: 73.5px;
  }
}

.funfact-one__list {
  margin: 0;
}

@media (min-width: 768px) {
  .funfact-one__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}

@media (min-width: 1200px) {
  .funfact-one__list {
    justify-content: space-between;
    gap: 0;
  }
}

.funfact-one__item {
  display: flex;
  align-items: center;
  margin-top: -6px;
  position: relative;
}

.funfact-one__item:not(:first-of-type)::before {
  content: "";
  width: 1px;
  height: 67px;
  background-color: var(--pelocis-white, #fff);
  position: absolute;
  top: 50%;
  left: -57px;
  transform: translateY(-50%);
  opacity: 0.3;
  display: none;
}

@media (min-width: 1200px) {
  .funfact-one__item:not(:first-of-type)::before {
    display: block;
  }
}

@media (min-width: 768px) {
  .funfact-one__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .funfact-one__item {
    flex: 0 0 auto;
    max-width: none;
  }
}

.funfact-one__item:hover .funfact-one__icon {
  transform: rotateY(360deg);
}

.funfact-one__item+.funfact-one__item {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .funfact-one__item+.funfact-one__item {
    margin-top: 0;
  }
}

.funfact-one__icon {
  font-size: 60px;
  color: var(--pelocis-white, #fff);
  margin-right: 20px;
  flex-shrink: 0;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.funfact-one__count {
  margin: 0;
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 768px) {
  .funfact-one__count {
    font-size: 40px;
  }
}

.funfact-one__text {
  margin: 0;
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  line-height: 36px;
  margin-top: 7px;
  margin-bottom: -6px;
}

.funfact-two {
  position: relative;
  background-color: var(--pelocis-base, #757ee2);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.funfact-two__shape {
  position: absolute;
  left: -10px;
  top: 0;
}

.funfact-two__shape img {
  animation: shapeMove 3s linear 0s infinite;
}

@media (max-width: 767px) {
  .funfact-two {
    padding: 80px 0;
  }
}

.funfact-two .sec-title {
  padding-bottom: 33px;
}

.funfact-two .sec-title__tagline,
.funfact-two .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.funfact-two__list {
  position: relative;
  background-color: var(--pelocis-white, #fff);
  margin: 0 0 0 -7px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}

@media (max-width: 991px) {
  .funfact-two__list {
    margin: 50px 0 0;
  }
}

.funfact-two__list__icon {
  width: 94px;
  height: 94px;
  background-color: var(--pelocis-base, #757ee2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.funfact-two__list__icon img {
  height: 65px;
  transform: scale(1);
  transition: 500ms ease;
}

@media (max-width: 767px) {
  .funfact-two__list__icon {
    display: none;
  }
}

.funfact-two__list:hover .funfact-two__list__icon img {
  transform: scale(0.9);
}

.funfact-two__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 42px 58px;
}

.funfact-two__item:nth-child(1),
.funfact-two__item:nth-child(3) {
  border-right: 1px solid var(--pelocis-base, #757ee2);
}

.funfact-two__item:nth-child(1),
.funfact-two__item:nth-child(2) {
  border-bottom: 1px solid var(--pelocis-base, #757ee2);
}

@media (max-width: 1199px) {
  .funfact-two__item {
    padding-left: 30px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .funfact-two__item {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .funfact-two__item {
    padding-left: 50px;
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--pelocis-base, #757ee2);
  }
}

.funfact-two__count {
  margin: 0;
  color: var(--pelocis-black, #222222);
  font-size: 40px;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .funfact-two__count {
    font-size: 50px;
  }
}

.funfact-two__text {
  margin: 0;
  font-size: 18px;
  margin: 0;
}

.funfact-three {
  position: relative;
  padding: 100px 0;
}

@media (max-width: 767px) {
  .funfact-three {
    padding: 80px 0 50px;
  }
}

.funfact-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--pelocis-gray, #F5F2EF);
}

@media (min-width: 1400px) {
  .funfact-three__bg {
    width: calc(100% - 240px);
    left: 120px;
  }
}

.funfact-three__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}

@media (max-width: 767px) {
  .funfact-three__list {
    display: block;
  }
}

.funfact-three__item {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
}

@media (max-width: 991px) {
  .funfact-three__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0 30px !important;
  }
}

@media (max-width: 767px) {
  .funfact-three__item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0 30px !important;
    text-align: center;
  }
}

.funfact-three__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--pelocis-border-color, #DDDDDD);
  position: absolute;
  top: 0;
  right: 54px;
}

@media (max-width: 991px) {
  .funfact-three__item:not(:last-of-type)::before {
    right: 50px !important;
  }
}

@media (max-width: 767px) {
  .funfact-three__item:not(:last-of-type)::before {
    display: none;
  }
}

.funfact-three__item:not(:first-of-type) {
  padding-left: 37px;
}

@media (max-width: 1199px) {
  .funfact-three__item:not(:first-of-type) {
    padding-left: 0;
  }
}

.funfact-three__item:nth-child(2)::before {
  right: 16px;
}

@media (max-width: 991px) {
  .funfact-three__item:nth-child(2)::before {
    display: none;
  }
}

.funfact-three__item:nth-child(3)::before {
  right: -20px;
}

.funfact-three__item:nth-child(3) {
  padding-left: 63px;
}

@media (max-width: 1199px) {
  .funfact-three__item:nth-child(3) {
    padding-left: 40px;
  }
}

.funfact-three__item:last-child {
  padding-left: 104px;
}

@media (max-width: 1199px) {
  .funfact-three__item:last-child {
    padding-left: 70px;
  }
}

.funfact-three__item:hover .funfact-three__icon::before {
  transform: scale(0.9);
}

.funfact-three__icon {
  width: 103px;
  height: 104px;
  background-color: var(--pelocis-base, #757ee2);
  font-size: 60px;
  color: var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 13px;
}

@media (max-width: 767px) {
  .funfact-three__icon {
    margin-left: auto;
    margin-right: auto;
  }
}

.funfact-three__icon::before {
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}

.funfact-three__count {
  margin: 0;
  color: var(--pelocis-black, #222222);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 768px) {
  .funfact-three__count {
    font-size: 40px;
  }
}

.funfact-three__text {
  margin: 0;
  color: var(--pelocis-text, #838184);
  font-size: 16px;
  margin-top: 9px;
  margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  background-color: var(--pelocis-base, #757ee2);
}

.testimonials-one__image {
  position: relative;
}

.testimonials-one__image img {
  min-height: 674px;
  object-fit: cover;
  max-width: 100%;
}

.testimonials-one__slider {
  position: relative;
}

.testimonials-one__slider .slick-dotted.slick-slider {
  margin: 0;
}

.testimonials-card {
  transition: all 500ms ease;
  overflow: hidden;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 108px;
  padding-bottom: 120px;
}

@media (min-width: 576px) {
  .testimonials-card {
    padding: 110px 85px;
    padding-top: 110px;
  }
}

.testimonials-card .owl-carousel .owl-item img {
  width: auto;
}

.testimonials-card .pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots {
  gap: 0;
  justify-content: flex-start;
}

.testimonials-card .pelocis-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 23px;
}

.testimonials-card .owl-carousel button.owl-dot {
  width: 180px;
  height: 4px;
  background-color: var(--pelocis-white, #fff);
}

.testimonials-card .owl-carousel button.owl-dot.active {
  background-color: var(--pelocis-black, #222222);
}

.testimonials-card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-card__inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 45px 40px;
}

.testimonials-card__top {
  border-right: 2px solid var(--pelocis-white, #fff);
  padding-right: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonials-card__top__content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 8px;
}

.testimonials-card__top__content span {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 10px;
  display: block;
}

.testimonials-card__image {
  flex-shrink: 0;
  margin-right: 20px;
  border: 1px solid var(--pelocis-white, #fff);
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--pelocis-base, #757ee2);
  transition: all 500ms ease;
  width: 117px;
  height: 117px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .testimonials-card__image {
    margin-bottom: 0;
  }
}

.testimonials-card__image img {
  width: 105px;
  height: 105px;
  border-radius: 8px;
}

.testimonials-card__rating {
  display: flex;
  align-items: center;
  color: var(--pelocis-black, #222222);
  font-size: 16px;
  letter-spacing: 6px;
}

.testimonials-card__name {
  margin: 0;
  text-transform: uppercase;
  color: var(--pelocis-black, #222222);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-top: 13px;
  margin-bottom: 5px;
}

.testimonials-card__designation {
  margin: 0 0 2px;
  line-height: 1;
  font-size: 16px;
}

.testimonials-card__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-white, #fff);
  position: relative;
  padding-right: 0px;
  margin-top: 2px;
  padding-right: 100px;
}

@media (max-width: 1600px) {
  .testimonials-card__desc {
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .testimonials-card__desc {
    padding-right: 0;
  }
}

@media (min-width: 576px) {
  .testimonials-card__desc {
    font-size: 20px;
    line-height: 32px;
  }
}

.testimonials-card__desc p {
  position: relative;
}



.testimonials-card__content {
  background-color: var(--pelocis-base, #757ee2);
  height: 100%;
}

@media (max-width: 1199px) {
  .testimonials-card__content {
    padding: 100px 30px;
  }
}

@media (max-width: 767px) {
  .testimonials-card__content {
    padding: 70px 0px;
  }
}

.testimonials-card__content .sec-title {
  padding-bottom: 35px;
}

.testimonials-card__content .sec-title__title,
.testimonials-card__content .sec-title__tagline {
  color: var(--pelocis-white, #fff);
}

@media (max-width: 1300px) {

  .testimonials-card__content .sec-title__title br,
  .testimonials-card__content .sec-title__tagline br {
    display: none;
  }
}

.testimonials-card__content .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
}

.testimonials-card__content .sec-title__shape::before {
  background-color: var(--pelocis-black, #222222);
}

.testimonials-card__title {
  position: relative;
  display: inline-block;
}

.testimonials-card__title__shape {
  position: absolute;
  right: 50px;
  top: -12px;
}

@media (max-width: 768px) {
  .testimonials-card__title__shape {
    position: absolute;
    top: -11px;
    right: 10%;
    width: 40px;
  }
}

.testimonials-two {
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
}

.testimonials-two .container-fluid {
  max-width: 1620px;
  width: 100%;
  margin: 0 0 0 auto;
}

.testimonials-two .sec-title {
  padding-bottom: 15px;
}

.testimonials-two .pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots {
  justify-content: flex-start;
}

.testimonials-two__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 32px;
  position: relative;
}

.testimonials-two__text::before {
  content: "\e933";
  font-family: "icomoon" !important;
  color: var(--pelocis-black, #222222);
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.testimonials-two__content {
  padding-right: 55px;
  padding-top: 110px;
  padding-bottom: 120px;
  overflow: hidden;
}

@media (max-width: 1300px) {
  .testimonials-two__content {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .testimonials-two__content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.testimonials-two__card {
  position: relative;
}

.testimonials-two__card__image {
  width: 117px;
  height: 117px;
  border: 1px solid var(--pelocis-base, #757ee2);
  padding: 5px;
  border-radius: 50%;
}

.testimonials-two__card__image img {
  border-radius: 50%;
}

.testimonials-two__card .d-flex.align-items-center.gap-3 {
  font-weight: 400;
  margin-top: 11px;
}

.testimonials-two__card__content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 3px;
}

.testimonials-two__card__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.testimonials-two__card__shape {
  position: absolute;
  right: 100px;
  bottom: -25px;
  width: auto !important;
}

@media (max-width: 650px) {
  .testimonials-two__card__shape {
    right: 0px;
  }
}

.testimonials-two__card__rating i {
  color: var(--pelocis-base, #757ee2);
}

.testimonials-two__card__count {
  color: var(--pelocis-base, #757ee2);
}

.testimonials-two__clients {
  padding-left: 30px;
  padding-right: 20px;
  background-color: var(--pelocis-white, #fff);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 26px;
  display: inline-block;
}

.testimonials-two__clients::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 100%;
  clip-path: polygon(100% 0%, 48% 50%, 100% 100%, 0% 100%, 0 48%, 0% 0%);
  background-color: var(--pelocis-base, #757ee2);
}

.testimonials-two__clients h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 46px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .testimonials-two__clients h3 {
    line-height: 32px;
  }
}

.testimonials-two__image__wrapper {
  position: relative;
  height: 100%;
}

.testimonials-two__image__wrapper .col-sm-6 {
  padding: 0;
}

.testimonials-two__image__wrapper--shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 142px;
  height: 142px;
  background-color: var(--pelocis-white, #fff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media (max-width: 579px) {
  .testimonials-two__image__wrapper--shape {
    display: none;
  }
}

.testimonials-two__image__wrapper--shape::after {
  content: "";
  position: absolute;
  top: 57%;
  left: 50%;
  width: 116px;
  background: var(--pelocis-base, #757ee2);
  height: 138px;
  transform: translate(-50%, -50%);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 118 138" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M45.2486 115.575L57.2761 136.402C57.4502 136.706 57.7016 136.959 58.0047 137.135C58.3079 137.311 58.6522 137.403 59.0026 137.403C59.3531 137.403 59.6973 137.311 60.0005 137.135C60.3037 136.959 60.5551 136.706 60.7292 136.402L72.7567 115.575C86.6243 112.21 98.7773 103.879 106.916 92.1571C115.054 80.4355 118.613 66.1371 116.919 51.9682C115.225 37.7992 108.395 24.743 97.7224 15.2706C87.0499 5.79817 73.2751 0.566895 59.0053 0.566895C44.7354 0.566895 30.9607 5.79817 20.2882 15.2706C9.61569 24.743 2.78603 37.7992 1.09186 51.9682C-0.60231 66.1371 2.95657 80.4355 11.0949 92.1571C19.2332 103.879 31.3863 112.21 45.2539 115.575H45.2486ZM59 4.58577C72.3735 4.56638 85.2841 9.48108 95.2594 18.3887C105.235 27.2962 111.573 39.5706 113.062 52.861C114.55 66.1515 111.083 79.5238 103.325 90.4172C95.5672 101.311 84.0634 108.959 71.0168 111.898C70.7489 111.959 70.4964 112.074 70.2752 112.237C70.0539 112.399 69.8688 112.606 69.7312 112.844L59 131.422L48.2687 112.828C48.1312 112.59 47.946 112.384 47.7247 112.221C47.5035 112.058 47.251 111.943 46.9831 111.882C33.9525 108.929 22.4677 101.276 14.7243 90.3873C6.98084 79.4988 3.52205 66.1383 5.00916 52.8602C6.49627 39.582 12.825 27.3177 22.7853 18.412C32.7456 9.50623 45.6388 4.5838 59 4.58577Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 118 138" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M45.2486 115.575L57.2761 136.402C57.4502 136.706 57.7016 136.959 58.0047 137.135C58.3079 137.311 58.6522 137.403 59.0026 137.403C59.3531 137.403 59.6973 137.311 60.0005 137.135C60.3037 136.959 60.5551 136.706 60.7292 136.402L72.7567 115.575C86.6243 112.21 98.7773 103.879 106.916 92.1571C115.054 80.4355 118.613 66.1371 116.919 51.9682C115.225 37.7992 108.395 24.743 97.7224 15.2706C87.0499 5.79817 73.2751 0.566895 59.0053 0.566895C44.7354 0.566895 30.9607 5.79817 20.2882 15.2706C9.61569 24.743 2.78603 37.7992 1.09186 51.9682C-0.60231 66.1371 2.95657 80.4355 11.0949 92.1571C19.2332 103.879 31.3863 112.21 45.2539 115.575H45.2486ZM59 4.58577C72.3735 4.56638 85.2841 9.48108 95.2594 18.3887C105.235 27.2962 111.573 39.5706 113.062 52.861C114.55 66.1515 111.083 79.5238 103.325 90.4172C95.5672 101.311 84.0634 108.959 71.0168 111.898C70.7489 111.959 70.4964 112.074 70.2752 112.237C70.0539 112.399 69.8688 112.606 69.7312 112.844L59 131.422L48.2687 112.828C48.1312 112.59 47.946 112.384 47.7247 112.221C47.5035 112.058 47.251 111.943 46.9831 111.882C33.9525 108.929 22.4677 101.276 14.7243 90.3873C6.98084 79.4988 3.52205 66.1383 5.00916 52.8602C6.49627 39.582 12.825 27.3177 22.7853 18.412C32.7456 9.50623 45.6388 4.5838 59 4.58577Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.testimonials-two__image__wrapper--shape::before {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(53% 100%, 0 0, 100% 0);
  background-color: var(--pelocis-white, #fff);
}

.testimonials-two__image__wrapper--shape span {
  font-size: 55px;
  color: var(--pelocis-base, #757ee2);
}

.testimonials-two__image {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.testimonials-two__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-two__image__hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 95%;
  height: 95%;
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.55);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.testimonials-two__image__hover--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background-color: var(--pelocis-base, #757ee2);
  transform: scale(0.5) rotate(180deg);
  transition: all 500ms ease;
  transition-delay: 300ms;
  opacity: 0;
  visibility: hidden;
}

.testimonials-two__image__hover--btn span {
  font-size: 24px;
  color: var(--pelocis-white, #fff);
}

.testimonials-two__image:hover .testimonials-two__image__hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.testimonials-two__image:hover .testimonials-two__image__hover--btn {
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotate(0deg);
}

.testimonials-two .pelocis-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 33px;
}

.testimonials-two .pelocis-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  box-shadow: none;
}

.testimonials-two__shape-one {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1200px) {
  .testimonials-two__shape-one {
    display: none;
  }
}

.testimonials-two__shape-two {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 1200px) {
  .testimonials-two__shape-two {
    display: none;
  }
}

.testimonials-three {
  position: relative;
  padding: 350px 0 112px;
}

@media (max-width: 767px) {
  .testimonials-three {
    padding: 330px 0 75px;
  }
}

.testimonials-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
}

.testimonials-three__title {
  width: 58%;
}

@media (max-width: 991px) {
  .testimonials-three__title {
    width: 100%;
  }
}

.testimonials-three__content {
  position: relative;
  display: flex;
}

@media (max-width: 991px) {
  .testimonials-three__content {
    flex-direction: column;
  }
}

.testimonials-three__content__text {
  font-size: 16px;
  line-height: 28px;
  margin: 27px 0 0;
  width: 42%;
}

@media (max-width: 991px) {
  .testimonials-three__content__text {
    width: 100%;
    margin: -20px 0 50px;
  }
}

.testimonials-three__item {
  position: relative;
}

.testimonials-three__item__content {
  position: relative;
  z-index: 2;
  background-color: var(--pelocis-white, #fff);
  padding: 33px 30px 50px 53px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  position: relative;
  transition: all 500ms ease;
}

.testimonials-three__item__content::after {
  content: "";
  width: 68px;
  height: 42px;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(50% 80%, 0 0, 100% 0);
  position: absolute;
  bottom: -42px;
  left: 50px;
}

.testimonials-three__item__content:hover {
  background-color: var(--pelocis-black, #222222);
  padding-left: 32px;
  padding-right: 50px;
}

.testimonials-three__item__content:hover .testimonials-three__qutation {
  color: transparent;
  -webkit-text-stroke: 3px var(--pelocis-white, #fff);
}

.testimonials-three__item__content:hover .testimonials-three__quote,
.testimonials-three__item__content:hover .testimonials-three__meta__title,
.testimonials-three__item__content:hover .testimonials-three__meta__designation {
  color: var(--pelocis-white, #fff);
}

.testimonials-three__item__content:hover .testimonials-three__hover-shape {
  right: 46px;
  opacity: 1;
  visibility: visible;
}

.testimonials-three__item__img {
  width: 117px;
  height: 117px;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid var(--pelocis-base, #757ee2);
  overflow: hidden;
  margin-top: 50px;
  margin-left: 25px;
}

.testimonials-three__item__img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-three__shape {
  width: 86px;
  height: 86px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  right: 0;
  top: 0;
}

.testimonials-three__hover-shape {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 0px;
  bottom: 40px;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  font-size: 68px;
  color: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.2);
}

.testimonials-three__meta {
  padding: 33px 0 0;
  transition: all 500ms ease;
}

.testimonials-three__meta__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 6px;
  transition: all 500ms ease;
}

.testimonials-three__meta__designation {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.33px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 16px;
  display: block;
  transition: all 500ms ease;
}

.testimonials-three__ratings {
  display: flex;
  align-items: center;
  color: var(--pelocis-base, #757ee2);
  font-size: 16px;
  letter-spacing: 6px;
}

.testimonials-three__qutation {
  margin: 0 0 3px;
  transition: all 500ms ease;
  color: var(--pelocis-base, #757ee2);
  font-size: 34px;
}

.testimonials-three__quote {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-black3, #000);
  margin: 0 0 0;
  transition: all 500ms ease;
}

.testimonials-gallery {
  width: 100%;
}

.slider-gallery-thumbs {
  width: 375px;
  margin: auto;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 7px;
  left: 400px;
}

@media (max-width: 767px) {
  .slider-gallery-thumbs {
    display: none;
  }
}

.slider-gallery-thumbs .item {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 0 0;
}

.slider-gallery-thumbs .testimonials-thumbs__img {
  position: relative;
  width: 105px !important;
  height: 105px;
  cursor: pointer;
  transition: all 500ms ease;
}

.slider-gallery-thumbs .testimonials-thumbs__img img {
  border-radius: 10px;
  width: 100%;
}

.slider-gallery-thumbs .testimonials-thumbs__img__hover {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.55);
  border: 2px solid var(--pelocis-base, #757ee2);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-white, #fff);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.slider-gallery-thumbs .slick-current.slick-center .testimonials-thumbs__img__hover {
  opacity: 1;
  visibility: visible;
}

.testimonials-gallery .slick-dots {
  text-align: left;
  position: relative;
  margin: 5px 0 0;
  padding: 0;
  bottom: 0;
  max-width: 570px;
  width: 100%;
}

.testimonials-gallery .slick-dots li {
  width: 25%;
  flex-shrink: 0;
  height: 4px;
  margin: 0;
  background-color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

.testimonials-gallery .slick-dots li:hover,
.testimonials-gallery .slick-dots li.slick-active {
  background-color: var(--pelocis-black, #222222);
}

.testimonials-gallery .slick-dots li button {
  display: none !important;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  padding-bottom: 120px;
  position: relative;
}

.cta-one .container-fluid {
  max-width: 1380px;
}

.cta-one__inner {
  position: relative;
  padding: 20px;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-one__title {
  margin: 0;
  text-transform: uppercase;
  max-width: 513px;
  width: 100%;
  font-size: 35px;
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-one__title span {
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-weight: 400;
}

@media (min-width: 992px) {
  .cta-one__title {
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: -10px;
  }
}

.cta-one__content {
  position: relative;
  border: 1px solid var(--pelocis-white, #fff);
  padding: 50px 20px;
}

@media (min-width: 768px) {
  .cta-one__content {
    padding: 60px;
  }
}

@media (min-width: 1200px) {
  .cta-one__content {
    padding: 100px;
  }
}

.cta-one__link:hover {
  color: var(--pelocis-white, #fff);
}

.cta-one__link::after {
  background-color: var(--pelocis-black, #222222);
}

.cta-one__link::before {
  background-color: var(--pelocis-base, #757ee2);
}

.cta-two {
  position: relative;
  background-color: var(--pelocis-base, #757ee2);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-two__shape {
  position: absolute;
  left: -10px;
  top: 0;
}

.cta-two__shape img {
  animation: shapeMove 3s linear 0s infinite;
}

.cta-two__content {
  position: relative;
  padding: 85px 0 90px;
}

.cta-two__sub-title {
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  color: var(--pelocis-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin: 0 0 2px;
}

.cta-two__title {
  color: var(--pelocis-white, #fff);
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 37px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cta-two__title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .cta-two__title {
    font-size: 35px;
  }
}

.cta-two__thumb {
  position: relative;
}

.cta-two__thumb__one {
  position: relative;
  right: 35px;
  margin-top: -28px;
}

@media (max-width: 991px) {
  .cta-two__thumb__one {
    right: 0;
  }
}

.cta-two__thumb__one__shape {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 545px;
  height: 408px;
}

.cta-two__thumb__one__thumb {
  width: 482px;
  height: auto;
  border: 20px solid var(--pelocis-white, #fff);
  position: relative;
  z-index: 2;
  transform: rotate(5deg);
}

@media (max-width: 767px) {
  .cta-two__thumb__one__thumb {
    width: 100%;
  }
}

.cta-two__thumb__one__thumb img {
  width: 100%;
  height: 282px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .cta-two__thumb__one__thumb img {
    height: auto;
  }
}

.cta-two__thumb__two {
  position: absolute;
  right: -48px;
  top: 195px;
  z-index: 3;
}

@media (max-width: 991px) {
  .cta-two__thumb__two {
    top: 45px;
    right: 0;
  }
}

@media (max-width: 767px) {
  .cta-two__thumb__two {
    position: relative;
    top: 0;
    right: 0;
  }
}

.cta-two__thumb__two__flower {
  position: absolute;
  right: -10px;
  top: -121px;
  z-index: 4;
}

@media (max-width: 767px) {
  .cta-two__thumb__two__flower {
    display: none;
  }
}

.cta-two__thumb__two__flower img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.cta-two__thumb__two__shape {
  position: absolute;
  left: -45px;
  top: -60px;
  width: 446px;
  height: 421px;
}

.cta-two__thumb__two__thumb {
  width: 360px;
  height: auto;
  border: 20px solid var(--pelocis-white, #fff);
  position: relative;
  z-index: 2;
  transform: rotate(-17.2deg);
}

@media (max-width: 767px) {
  .cta-two__thumb__two__thumb {
    width: 100%;
  }
}

.cta-two__thumb__two__thumb img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .cta-two__thumb__two__thumb img {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 767px) {
  .gallery-one {
    padding: 80px 0;
  }
}

.gallery-one .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

@media (min-width: 992px) {
  .gallery-one__carousel .owl-nav {
    display: none;
  }
}

.gallery-one__filter__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.gallery-one__filter__list li {
  cursor: pointer;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  position: relative;
  display: block;
  background-color: transparent;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
  text-transform: capitalize;
  padding: 12.5px 22.5px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.gallery-one__filter__list li.active,
.gallery-one__filter__list li:hover {
  background-color: var(--pelocis-base, #757ee2);
  border-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.gallery-one__filter__list li+li {
  margin-right: -1px;
}

.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--pelocis-black, #222222);
}

.gallery-one__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
  height: auto;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery-one__card img {
    min-height: 400px;
    object-fit: cover;
  }
}

.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.gallery-one__card__hover .img-popup {
  position: relative;
}

.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.gallery-one__card__icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}

.gallery-one__card__icon::after,
.gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--pelocis-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}

.gallery-two .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .gallery-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

.gallery-two__col-one {
  width: 65%;
}

@media (max-width: 1199px) {
  .gallery-two__col-one {
    width: 100%;
  }
}

.gallery-two__col-two {
  width: 35%;
}

@media (max-width: 1199px) {
  .gallery-two__col-two {
    width: 100%;
  }
}

.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--pelocis-black, #222222);
}

.gallery-two__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.gallery-two__card__hover .img-popup {
  position: relative;
}

.gallery-two__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.gallery-two__card a {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--pelocis-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-two__card a:hover .gallery-two__card__icon::after,
.gallery-two__card a:hover .gallery-two__card__icon::before {
  background-color: var(--pelocis-base, #757ee2);
}

.gallery-two__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}

.gallery-two__card__icon::after,
.gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--pelocis-black, #222222);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}

.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-two__info {
  position: relative;
  background-color: var(--pelocis-base, #757ee2);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 50px 0 100px;
  height: 100%;
}

@media (min-width: 1200px) {
  .gallery-two__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 1500px) {
  .gallery-two__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .gallery-two__info {
    padding: 80px 50px;
  }
}

@media (max-width: 767px) {
  .gallery-two__info {
    padding: 50px 30px;
  }
}

.gallery-two__info__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.gallery-two__info__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-two__info__title {
  color: var(--pelocis-white, #fff);
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 45px;
  }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
}

.sidebar__single {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 32px 30px 40px;
  border-radius: 10px;
}

@media (min-width: 991px) and (max-width: 1199px) {
  .sidebar__single {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  text-transform: capitalize;
  margin: 0;
  margin-top: -4px;
  margin-bottom: 30px;
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  display: inline-block;
}

.sidebar__title::after {
  content: "";
  width: 50%;
  height: 3px;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  bottom: 0;
  left: 0;
}

.sidebar__search {
  position: relative;
  margin: -2px 0 -10px;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--pelocis-white, #fff);
  font-size: 16px;
  line-height: 25px;
  color: var(--pelocis-text-dark-rgb, 99, 99, 99);
  border: none;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
}

.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}

.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}

.sidebar__search button[type=submit]:hover {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.sidebar__posts {
  margin-bottom: 0;
}

.sidebar__posts__item {
  display: flex;
  align-items: center;
}

.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}

.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 20px;
}

.sidebar__posts__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--pelocis-black, #222222);
  font-size: 17px;
  font-weight: bold;
  line-height: 22px;
}

.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}

.sidebar__posts__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.sidebar__posts__meta {
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 500ms ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 13px;
}

.sidebar__posts__meta i {
  color: var(--pelocis-black, #222222);
}

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

.sidebar__categories li {
  font-size: 17px;
  font-weight: 400;
  color: var(--pelocis-text-dark, #636363);
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-left: 26px;
  transition: all 500ms ease;
  position: relative;
}

.sidebar__categories li::before {
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  transition: all 500ms ease;
  font-size: 15px;
  color: currentColor;
  position: absolute;
  left: 0;
}

.sidebar__categories li a {
  color: inherit;
  transition: all 500ms ease;
}

.sidebar__categories li:hover {
  color: var(--pelocis-base, #757ee2);
}

.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.sidebar__tags a {
  background-color: var(--pelocis-white, #fff);
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 1px 20px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.sidebar__tags a:hover {
  color: var(--pelocis-white, #fff);
  background-color: var(--pelocis-base, #757ee2);
  border-color: var(--pelocis-base, #757ee2);
}

.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}

.sidebar__comments__item {
  display: flex;
  align-items: center;
}

.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 26px;
}

.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pelocis-black, #222222);
  font-size: 16px;
  color: var(--pelocis-white, #fff);
  margin-right: 20px;
  border-radius: 50%;
  transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.sidebar__comments__title {
  margin: 0;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: var(--pelocis-text, #838184);
}

.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}

.sidebar__comments__title a:hover {
  color: var(--pelocis-black, #222222);
}

.service-sidebar {
  position: relative;
}

.service-sidebar__single+.service-sidebar__single {
  margin-top: 30px;
}

.service-sidebar__title {
  margin: 0;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 22px;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 25px 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-sidebar__title {
    padding: 25px 20px;
  }
}

.service-sidebar__nav {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 0 30px 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-sidebar__nav {
    padding: 0 20px 30px;
  }
}

.service-sidebar__nav li {
  position: relative;
}

.service-sidebar__nav li a {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: var(--pelocis-black, #222222);
  display: block;
  margin: 0;
  padding: 16px 20px;
  background-color: var(--pelocis-white, #fff);
  border-radius: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-left: 70px;
}

.service-sidebar__nav li a::after {
  content: "\e93d";
  font-family: "icomoon" !important;
  transition: all 500ms ease;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.service-sidebar__nav li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--pelocis-black, #222222);
  z-index: -1;
  transform: scale(0, 1);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}

.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
  color: var(--pelocis-white, #fff);
}

.service-sidebar__nav li.current a::after,
.service-sidebar__nav li:hover a::after {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-base, #757ee2);
}

.service-sidebar__nav li.current a::before,
.service-sidebar__nav li:hover a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: left;
}

.service-sidebar__nav li+li {
  margin-top: 20px;
}

.service-sidebar__contact {
  background-color: var(--pelocis-black, #222222);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding-left: 50px;
  padding-bottom: 0;
  padding-right: 38px;
  padding-top: 70px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-sidebar__contact {
    padding-right: 18px;
    padding-left: 20px;
  }
}

.service-sidebar__contact ul {
  margin: 0;
}

.service-sidebar__contact ul li {
  position: relative;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 15px;
}

.service-sidebar__contact ul li:first-child {
  margin-bottom: 46px;
}

.service-sidebar__contact ul li:last-child {
  margin-bottom: 8px;
}

.service-sidebar__contact ul li .phone-call {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-base, #757ee2);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.service-sidebar__contact ul li span {
  padding: 10px;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  border-radius: 40px;
  padding: 15px 30px;
  padding-left: 120px;
}

.service-sidebar__contact ul li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-weight: 500;
}

.service-sidebar__contact ul li a:hover {
  background-size: 100% 1px;
}

.service-sidebar__contact ul li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.service-sidebar__contact .shape-1 {
  position: absolute;
  top: 16%;
  transform: translateY(-50%);
  left: -22px;
  animation: flowerRotate 2s linear infinite;
}

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/
.sidebar-one {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--pelocis-black3, #000);
  opacity: 0.8;
  cursor: url(../images/close.png), auto;
}

.sidebar-one__close {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 16px;
  color: var(--pelocis-white, #fff);
  transition: all 0.4s ease;
  cursor: pointer;
}

.sidebar-one__close:hover {
  color: var(--pelocis-base, #757ee2);
}

.sidebar-one__content {
  width: 350px;
  background-color: var(--pelocis-black3, #000);
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  scrollbar-width: none;
}

.sidebar-one__text {
  color: var(--pelocis-gray, #F5F2EF);
  margin: 35px 0 30px;
  line-height: 28px;
}

.sidebar-one__title {
  color: var(--pelocis-white, #fff);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
}

.sidebar-one__info {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-one__info li {
  position: relative;
  padding: 0 0 0 28px;
  line-height: 26px;
  margin-bottom: 12px;
  color: var(--pelocis-gray, #F5F2EF);
}

.sidebar-one__info li span {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 15px;
  color: var(--pelocis-base, #757ee2);
  line-height: inherit;
}

.sidebar-one__info li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: inherit;
}

.sidebar-one__info li a:hover {
  background-size: 100% 1px;
}

.sidebar-one__info li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.sidebar-one__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 40px;
}

.sidebar-one__social a {
  width: 37px;
  height: 37px;
  background-color: RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--pelocis-white, #fff);
}

.sidebar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sidebar-one__social a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.sidebar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

.sidebar-one__newsletter {
  position: relative;
}

.sidebar-one__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.08);
  color: var(--pelocis-gray, #F5F2EF);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 50px;
  transition: all 500ms ease;
  border-radius: 5px;
}

.sidebar-one__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}

.sidebar-one__newsletter button[type=submit]:hover {
  color: var(--pelocis-base, #757ee2);
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}

.blog-details__image {
  position: relative;
  margin: 0 0 40px;
}

.blog-details__image img {
  max-width: 100%;
  height: auto;
}

.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.blog-details__meta li {
  font-size: 16px;
  font-weight: 400;
  color: var(--pelocis-text-dark, #636363);
}

.blog-details__meta li i {
  color: var(--pelocis-base, #757ee2);
  margin-right: 10px;
}

.blog-details__meta li a {
  color: inherit;
}

.blog-details__meta li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.blog-details__meta li img {
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--pelocis-base, #757ee2);
}

.blog-details__meta .blog-details__meta__tag {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  padding: 5px 23px;
  border-radius: 40px;
}

.blog-details__meta .blog-details__meta__tag:hover {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.blog-details__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.blog-details__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 15px;
}

@media (min-width: 1200px) {
  .blog-details__text {
    padding-right: 50px;
  }
}

.blog-details__bottom-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  border-top: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 29px 0;
  margin: 63px 0;
}

@media (max-width: 767px) {
  .blog-details__bottom-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-details__bottom-meta__categories,
.blog-details__bottom-meta__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details__bottom-meta__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--pelocis-black2, #333333);
  margin-bottom: 0;
  margin-right: 10px;
}

.blog-details__bottom-meta a {
  padding: 4px 19px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  background-color: var(--pelocis-gray, #F5F2EF);
  color: var(--pelocis-text-dark, #636363);
}

.blog-details__bottom-meta a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.blog-details__paginations {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .blog-details__paginations {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-details__paginations .sidebar__posts__item:not(:last-of-type) {
  border-bottom: 0px solid var(--pelocis-border-color, #e8e3da);
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.blog-details__paginations .sidebar__posts__item {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 20px !important;
}

@media (min-width: 1200px) {
  .blog-details__paginations .sidebar__posts__item {
    padding: 30px;
  }
}

.blog-details__paginations .sidebar__posts__item:nth-of-type(2) {
  flex-direction: row-reverse;
  text-align: right;
}

.blog-details__paginations .sidebar__posts__item:nth-of-type(2) .sidebar__posts__image {
  margin-right: 0;
  margin-left: 20px;
}

.blog-details__paginations .sidebar__posts__item:nth-of-type(2) .sidebar__posts__meta {
  flex-direction: row-reverse;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 55px;
}

.comments-one__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.comments-one__list {
  margin: 0;
  margin-top: 35px;
}

.comments-one__card {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  position: relative;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .comments-one__card {
    flex-direction: column;
    gap: 25px;
  }
}

.comments-one__card__image {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 30px;
}

.comments-one__card__image img {
  border-radius: 50%;
}

.comments-one__card__title {
  margin: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.comments-one__card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 20px;
  max-width: 560px;
  margin-bottom: 30px;
}

.comments-one__card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  color: var(--pelocis-base, #757ee2);
  text-transform: none;
  margin-left: 20px;
}

.comments-one__card .pelocis-btn {
  padding: 4px 20px;
  font-size: 14px;
}

.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 68px;
}

.comments-form__title {
  margin: 0;
  margin-top: -4px;
  margin-bottom: -4px;
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
}

.comments-form__form {
  margin-top: 30px;
}

.comments-form__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 30px;
}

.comments-form__input-box textarea,
.comments-form__input-box input[type=text],
.comments-form__input-box input[type=email],
.comments-form__input-box input[type=tel] {
  height: 60px;
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--pelocis-text-dark, #636363);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  display: block;
  font-weight: 400;
}

.comments-form__input-box textarea {
  height: 190px;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
}

.product__sidebar {
  position: relative;
}

.product__sidebar--title {
  position: relative;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: -5px;
}

.product__search {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.product__search form {
  border-radius: 0;
  position: relative;
}

.product__search form input[type=text] {
  width: 100%;
  height: 50px;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 30px;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-size: 16px;
  color: var(--pelocis-text, #838184);
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  outline: none;
  font-weight: 500;
  border-radius: 0;
}

.product__price-ranger {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 30px;
  margin-bottom: 30px;
}

.product__price-ranger #slider-range {
  margin: 22px 0 0 0px;
  background: var(--pelocis-white, #fff);
  border: none;
  height: 5px;
  border-radius: 0;
  position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--pelocis-base, #757ee2);
}

.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--pelocis-base, #757ee2);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 18px 0 0 0px;
}

.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--pelocis-text, #838184);
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--pelocis-text, #838184);
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  left: -2px;
}

.product__price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  background-color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  float: right;
  text-align: center;
  border: none;
  color: var(--pelocis-black, #222222);
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  margin: 0;
  cursor: pointer;
  padding: 0 20px;
  height: 38px;
  border-radius: 0;
  box-shadow: 0px 10px 30px 0px rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.07);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.product__categories {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 30px;
}

.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -20px;
}

.product__categories ul li {
  position: relative;
  margin: 0 0 4px;
}

.product__categories ul li a {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--pelocis-text, #838184);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 9px 15px 11px;
}

.product__categories ul li a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: var(--pelocis-black, #222222);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.product__categories ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--pelocis-white, #fff);
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}

.product__categories ul li:hover a,
.product__categories ul li.active a {
  color: var(--pelocis-black, #222222);
  padding-left: 27px;
}

.product__categories ul li:hover a::before,
.product__categories ul li.active a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}

.product__categories ul li:hover a span,
.product__categories ul li.active a span {
  color: var(--pelocis-base, #757ee2);
}

.product__categories ul li.active a {
  font-weight: 600;
}

.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .product__info-top {
    display: block;
  }
}

.product__showing-text {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
  color: var(--pelocis-text-dark, #636363);
}

@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 20px;
  }
}

.product__showing-sort {
  margin: 0;
  font-size: 18px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 210px;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 50px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--pelocis-gray, #F5F2EF);
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  line-height: 50px;
  font-weight: 500;
  box-shadow: none;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  font-family: var(--pelocis-heading-font, "Solway", serif);
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "icomoon" !important;
  content: "\e91c";
  font-weight: normal;
  font-size: 12px;
  transform: rotate(90deg);
  color: var(--pelocis-base, #757ee2);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  color: var(--pelocis-text, #838184);
  text-transform: capitalize;
  background-color: var(--pelocis-gray, #F5F2EF);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product__showing-sort .bootstrap-select .dropdown-menu>li:hover>a,
.product__showing-sort .bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  border-color: var(--pelocis-base, #757ee2);
}

.product__item {
  position: relative;
  background-color: var(--pelocis-white, #fff);
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  transition: all 500ms ease;
  padding: 9px;
}

.product__item:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.product__item__img {
  background-color: var(--pelocis-gray, #F5F2EF);
  position: relative;
  overflow: hidden;
}

.product__item__img img {
  width: 100%;
  height: auto;
  transition: all 500ms ease;
  transform: scale(1);
}

.product__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}

.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--pelocis-gray, #F5F2EF);
  border-radius: 50%;
  color: var(--pelocis-black, #222222);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}

.product__item__btn a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.product__item__btn a:nth-child(1) {
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}

.product__item__btn a:nth-child(2) {
  transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}

.product__item__btn a+a {
  margin-top: 10px;
}

.product__item:hover .product__item__img img {
  transform: scale(1.05);
}

.product__item:hover .product__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.product__item__content {
  position: relative;
  text-align: center;
  padding: 24px 15px 20px;
}

.product__item__category {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 6px;
  display: block;
}

.product__item__category a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.product__item__category a:hover {
  background-size: 100% 1px;
}

.product__item__category a:hover {
  color: var(--pelocis-base, #757ee2);
}

.product__item__title {
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 8px;
}

.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.product__item__title a:hover {
  background-size: 100% 1px;
}

.product__item__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--pelocis-text-dark, #636363);
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 15px;
}

.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--pelocis-base, #757ee2);
  letter-spacing: 8px;
  margin-bottom: 22px;
}

.product__item__link {
  font-size: 14px;
  height: 40px;
  padding: 6px 27px;
}

.product-one {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .product-one {
    padding: 80px 0;
  }
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0 90px;
}

@media (max-width: 767px) {
  .product-details {
    padding: 80px 0 50px;
  }
}

.product-details__gallery {
  position: relative;
  padding-left: 135px;
}

@media (max-width: 991px) {
  .product-details__gallery {
    max-width: 570px;
  }
}

@media (max-width: 767px) {
  .product-details__gallery {
    padding-left: 0;
  }
}

.product-details__gallery .product-details__gallery__navs {
  position: absolute;
  left: 0;
  top: 0;
  width: 113px;
  height: 100%;
  margin: 0;
  display: block;
}

@media (max-width: 767px) {
  .product-details__gallery .product-details__gallery__navs {
    position: relative;
    width: 100%;
    height: 113px;
    margin: 0 0 20px;
  }
}

.product-details__gallery .product-details__gallery__navs span {
  display: block;
  width: 113px;
  height: 113px;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .product-details__gallery .product-details__gallery__navs span {
    width: 100%;
  }
}

.product-details__gallery .product-details__gallery__navs span::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "+";
  background-color: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.75);
  color: var(--pelocis-white, #fff);
  font-size: 35px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-weight: normal;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 500ms ease;
  transform: scale(0.2);
  opacity: 0;
  z-index: 1;
}

.product-details__gallery .product-details__gallery__navs span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details__gallery .product-details__gallery__navs .slick-slide:hover span::after,
.product-details__gallery .product-details__gallery__navs .slick-current span::after {
  transform: scale(1);
  opacity: 1;
}

.product-details__gallery .product-details__gallery__image {
  position: relative;
}

.product-details__gallery .product-details__gallery__image img {
  width: 100%;
  height: 100%;
  min-height: 491px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .product-details__gallery .product-details__gallery__image img {
    height: auto;
    min-height: auto;
  }
}

.product-details__content {
  position: relative;
  margin: -10px 0 0 0;
}

@media (max-width: 991px) {
  .product-details__content {
    margin: 50px 0 0;
  }
}

.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  margin-bottom: 17px;
}

.product-details__title {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin: 0;
}

.product-details__price {
  font-size: 25px;
  line-height: 26px;
  color: var(--pelocis-base, #757ee2);
  font-weight: 400;
  margin-right: 28px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
}

.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 16px;
  color: var(--pelocis-base, #757ee2);
}

@media (max-width: 767px) {
  .product-details__review {
    display: block;
  }
}

.product-details__review a {
  display: inline-block;
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  margin-left: 10px;
  font-weight: 400;
  transition: all 500ms ease;
}

.product-details__review a span {
  color: var(--pelocis-base, #757ee2);
}

.product-details__review a:hover {
  color: var(--pelocis-base, #757ee2);
}

.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--pelocis-border-color, #DDDDDD);
  margin: 20px 0 17px;
}

.product-details__excerpt {
  margin: 0;
}

.product-details__excerpt-text1 {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

.product-details__colors-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #788284;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  margin-bottom: 2px;
}

.product-details__colors ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  margin-bottom: 25px;
}

.product-details__colors ul li a {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.product-details__colors-black {
  background-color: #151212;
  border: 2px solid rgba(205, 168, 141, 0.7215686275);
}

.product-details__colors-red {
  background-color: #EE2761;
  border: 2px solid rgba(143, 142, 142, 0.7215686275);
}

.product-details__colors-purple {
  background-color: #9033E6;
  border: 2px solid rgba(231, 173, 190, 0.7215686275);
}

.product-details__colors-green {
  background-color: #33B387;
}

.product-details__colors-Orange {
  background-color: #FF9601;
  border: 2px solid rgba(231, 173, 190, 0.7215686275);
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0 30px;
}

.product-details__quantity-title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-right: 35px;
  font-weight: bold;
}

.product-details__quantity .quantity-box {
  position: relative;
  height: 45px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.product-details__quantity .quantity-box input {
  width: 68px;
  height: 100%;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-top: none;
  border-bottom: none;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  color: var(--pelocis-text-dark, #636363);
  text-align: center;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  background-color: transparent;
}

.product-details__quantity .quantity-box button {
  width: 60px;
  color: var(--pelocis-text, #838184);
  font-size: 30px;
  color: var(--pelocis-black, #222222);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-weight: normal;
  line-height: 30px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}

.product-details__quantity .quantity-box button:hover {
  color: var(--pelocis-base, #757ee2);
}

.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-details__socials__title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 400;
  margin-right: 10px;
  flex: 0 0 100%;
  font-family: var(--pelocis-font, "Saira", sans-serif);
}

@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}

.product-details__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pelocis-gray, #F5F2EF);
  font-size: 14px;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
  border-radius: 0%;
}

.product-details__socials a:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.product-details .divider {
  margin: 60px 0;
  height: 1px;
  background-color: var(--pelocis-border-color, #DDDDDD);
}

.product-details__tabs {
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.product-details__tabs li {
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
  border-radius: 5px;
  color: var(--pelocis-black, #222222);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 500ms ease;
  padding: 7px 38px;
}

.product-details__tabs li:hover,
.product-details__tabs li.active-btn {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.product-details__description {
  position: relative;
  margin: 0px 0 0;
}

.product-details__description__title {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: bold;
}

.product-details__description__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--pelocis-text-dark, #636363);
}

.product-details__description__lists {
  margin: 28px 0 25px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
}

.product-details__description__lists li {
  display: block;
  position: relative;
  padding: 0 0 0 36px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--pelocis-text-dark, #636363);
  width: 35%;
  cursor: pointer;
}

@media (max-width: 991px) {
  .product-details__description__lists li {
    width: 100%;
  }
}

.product-details__description__lists li span {
  position: absolute;
  left: 0;
  top: 7px;
  transition: all 0.3s ease-in;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
}

.product-details__description__lists li:hover span {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.product-details__comment {
  position: relative;
}

.product-details__review-title {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 44px;
}

.product-details__comment-box {
  position: relative;
  padding: 5px 0 64px 125px;
  margin-bottom: 50px;
  min-height: 96px;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
}

@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
  }
}

.product-details__comment-box__thumb {
  width: 96px;
  height: 96px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  margin: 0;
  border: none;
}

@media (max-width: 767px) {
  .product-details__comment-box__thumb {
    position: relative;
    margin: 0 0 20px;
  }
}

.product-details__comment-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.product-details__comment-box__meta {
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0 0 7px;
  font-weight: 500;
  color: var(--pelocis-black, #222222);
  font-family: var(--pelocis-font, "Saira", sans-serif);
}

.product-details__comment-box__date {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  text-transform: inherit;
  color: var(--pelocis-base, #757ee2);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 0 10px;
}

.product-details__comment-box__text {
  line-height: 26px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 7px;
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 16px;
  color: var(--pelocis-base, #757ee2);
}

@media (max-width: 767px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 0 0 22px;
  }
}

.product-details__form {
  position: relative;
  margin: 51px 0 0;
}

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

.product-details__form-title {
  font-size: 35px;
  text-transform: capitalize;
  margin-bottom: 2px;
  font-weight: bold;
}

.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 14px;
  color: var(--pelocis-base, #757ee2);
  margin: 0 0 25px;
}

.product-details__form-ratings__label {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--pelocis-text, #838184);
  margin: 0 17px 0 0;
}

.product-details__form__form {
  margin-top: 0;
}

.product-details__form__form .form-one__control {
  margin-bottom: 20px;
}

.product-details__form__form textarea,
.product-details__form__form input[type=text],
.product-details__form__form input[type=email],
.product-details__form__form input[type=tel] {
  height: 60px;
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--pelocis-text-dark, #636363);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  display: block;
  font-weight: 400;
}

.product-details__form__form textarea {
  height: 190px;
}

.related__products {
  position: relative;
  padding: 0 0 120px;
}

@media (max-width: 767px) {
  .related__products {
    padding: 0 0 80px;
  }
}

.related__products__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 44px;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
  }
}

.cart-page .quantity-box {
  width: 172px;
  margin: 0 auto;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}

.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 60px;
}

@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}

.cart-page__table thead tr th {
  color: var(--pelocis-black, #222222);
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  padding: 0 0 10px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD) !important;
  box-shadow: none;
}

.cart-page__table tbody tr td {
  font-size: 22px;
  font-weight: 500;
  color: var(--pelocis-black2, #333333);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-left: none;
  padding: 30px 20px;
  letter-spacing: 0;
  text-align: center;
}

.cart-page__table tbody tr td:first-child {
  padding-left: 0;
}

.cart-page__table tbody tr td:last-child {
  border-right: none;
}

.cart-page__table__meta {
  display: flex;
  align-items: center;
}

.cart-page__table__meta-img {
  width: 119px;
  height: 119px;
  background-color: var(--pelocis-white, #fff);
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  margin-right: 34px;
}

.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.cart-page__table__meta-title {
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  font-weight: bold;
  color: var(--pelocis-black, #222222);
}

.cart-page__table__meta-title a {
  color: inherit;
}

.cart-page__table__meta-title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.cart-page__table__remove {
  display: block;
  color: var(--pelocis-black, #222222);
  font-size: 16px;
}

.cart-page__table__remove:hover {
  color: var(--pelocis-base, #757ee2);
}

.cart-page__coupone-form {
  position: relative;
  display: flex;
}

@media (max-width: 767px) {
  .cart-page__coupone-form {
    display: block;
  }
}

.cart-page__coupone-form input[type=text] {
  height: 50px;
  width: 270px;
  border: none;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-text, #838184);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  display: block;
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .cart-page__coupone-form input[type=text] {
    width: 290px;
  }
}

@media (max-width: 767px) {
  .cart-page__coupone-form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}

.cart-page__coupone-form .pelocis-btn {
  padding: 10px 41px;
}

.cart-page__coupone-form .pelocis-btn span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-page .checkout-page__order-table {
  width: 50%;
  margin: 0 0 0 auto;
}

@media (max-width: 1186px) {
  .cart-page .checkout-page__order-table {
    width: 100%;
    margin-top: 30px;
  }
}

.cart-page__cart-total {
  position: relative;
  text-align: right;
  margin: -8px 0 24px;
  padding: 0;
}

@media (max-width: 991px) {
  .cart-page__cart-total {
    text-align: left;
    margin-top: 45px;
  }
}

.cart-page__cart-total li {
  display: block;
  font-size: 20px;
  color: var(--pelocis-black, #222222);
  text-transform: uppercase;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-weight: 700;
  margin: 0 0 0px;
}

@media (max-width: 991px) {
  .cart-page__cart-total li span {
    display: inline-block;
    min-width: 172px;
  }
}

.cart-page__cart-total-amount {
  font-size: 18px;
  color: var(--pelocis-text, #838184);
  font-weight: 500;
  text-transform: inherit;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  display: inline-block;
  min-width: 172px;
}

.cart-page__buttons {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}

.cart-page__buttons .pelocis-btn {
  padding: 10px 38px;
}

.cart-page__buttons .pelocis-btn span {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1186px) {
  .cart-page__buttons {
    justify-content: flex-start;
    margin-left: 0px;
    gap: 40px;
  }
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
  }
}

.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.checkout-page__notice {
  line-height: 26px;
  margin: 0 0 16px;
}

.checkout-page__notice a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.checkout-page__notice a:hover {
  background-size: 100% 1px;
}

.checkout-page__notice a:hover {
  color: var(--pelocis-base, #757ee2);
}

.checkout-page .divider {
  width: 100%;
  height: 2px;
  background-color: #dddddd;
  margin-top: 70px;
  margin-bottom: 95px;
}

.checkout-page__billing-address {
  position: relative;
}

.checkout-page__billing-address__title {
  font-size: 22px;
  text-transform: capitalize;
  margin: 0 0 34px;
  font-weight: 400;
}

.checkout-page__shipping-address {
  position: relative;
}

@media (max-width: 991px) {
  .checkout-page__shipping-address {
    margin: 50px 0 0;
  }
}

.checkout-page__shipping-address__title {
  font-size: 22px;
  text-transform: capitalize;
  margin: 0 0 34px;
  font-weight: 400;
}

.checkout-page__shipping-address__title input[type=checkbox] {
  display: none;
}

.checkout-page__shipping-address__title label {
  position: relative;
  display: inline-block;
  padding-right: 29px;
  cursor: pointer;
}

.checkout-page__shipping-address__title label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--pelocis-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.checkout-page__shipping-address__title input[type=checkbox]+label span {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 19px;
  height: 19px;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checkout-page__shipping-address__title input[type=checkbox]:checked+label span:before {
  opacity: 1;
}

.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 30px;
}

.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--pelocis-text-dark, #636363);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  display: block;
  font-weight: 400;
}

.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--pelocis-font, "Saira", sans-serif);
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 50px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--pelocis-gray, #F5F2EF) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  line-height: 50px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 12px;
  color: var(--pelocis-text, #838184);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li>a {
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
  color: var(--pelocis-text, #838184);
  background-color: var(--pelocis-gray, #F5F2EF);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li:hover>a,
.checkout-page__input-box .bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  border-color: var(--pelocis-base, #757ee2);
}

.checkout-page__input-box textarea {
  font-size: 14px;
  font-weight: 500;
  color: var(--pelocis-text, #838184);
  height: 123px;
  width: 100%;
  background-color: var(--pelocis-gray, #F5F2EF);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}

.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}

.checkout-page__check-box input[type=checkbox] {
  display: none;
}

.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--pelocis-text, #838184);
  font-size: 15px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}

.checkout-page__check-box label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--pelocis-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.checkout-page__check-box input[type=checkbox]+label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checkout-page__check-box input[type=checkbox]:checked+label span:before {
  opacity: 1;
}

.checkout-page__your-order {
  position: relative;
}

.checkout-page__your-order__title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 25px;
  line-height: 26px;
  font-weight: 400;
  color: var(--pelocis-black3, #000);
}

.checkout-page__your-order .pelocis-btn {
  padding: 10px 38.5px 10px;
}

.checkout-page__your-order .pelocis-btn span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}

.checkout-page__order-table thead tr th {
  font-size: 22px;
  color: var(--pelocis-black3, #000);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 17px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  margin: 0;
  border: none;
}

.checkout-page__order-table tbody tr td {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 26px;
  border: none;
}

.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}

.checkout-page__order-table tbody tr:first-child td {
  padding-top: 0px;
}

.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
}

.checkout-page__payment {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 23px 30px;
}

@media (max-width: 991px) {
  .checkout-page__payment {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.checkout-page__payment__item {
  position: relative;
}

.checkout-page__payment__title {
  display: flex;
  font-size: 16px;
  text-transform: capitalize;
  padding-left: 32px;
  margin: 0;
  align-items: center;
  margin-bottom: 18px;
  cursor: pointer;
  font-weight: 400;
  color: var(--pelocis-text-dark, #636363);
}

.checkout-page__payment__title::before {
  content: "";
  width: 11px;
  height: 11px;
  background-color: var(--pelocis-white, #fff);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: absolute;
  top: 6px;
  left: 5px;
  z-index: 1;
  transition: all 500ms ease;
}

.checkout-page__payment__title::after {
  content: "";
  width: 21px;
  height: 21px;
  background-color: var(--pelocis-white, #fff);
  border: 1px solid var(--pelocis-base, #757ee2);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: absolute;
  top: 1px;
  left: 0;
  transition: all 500ms ease;
}

.checkout-page__payment__title img {
  margin-left: 15px;
}

.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background-color: var(--pelocis-base, #757ee2);
  border-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.checkout-page__payment__content {
  margin-left: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--pelocis-text-dark, #636363);
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .login-page {
    padding: 80px 0;
  }
}

.login-page__wrap {
  position: relative;
}

.login-page__wrap__title {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 30px;
  color: var(--pelocis-black2, #333333);
}

.login-page__form {
  position: relative;
  display: block;
  padding: 45px 42px 50px;
  background-color: var(--pelocis-gray, #F5F2EF);
}

@media (max-width: 767px) {
  .login-page__form {
    padding: 30px 22px;
  }
}

.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
  height: 55px;
  width: 100%;
  background-color: var(--pelocis-white, #fff);
  display: block;
  border: none;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-radius: 4px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
}

.login-page__checked-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -8px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .login-page__checked-box {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
  }
}

.login-page__checked-box label {
  position: relative;
  display: flex;
  padding-left: 50px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
}

.login-page__checked-box label span:before {
  position: absolute;
  top: 6px;
  left: 7px;
  display: block;
  border-bottom: 2px solid var(--pelocis-white, #fff);
  border-right: 2px solid var(--pelocis-white, #fff);
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.login-page__checked-box input[type=checkbox] {
  display: none;
}

.login-page__checked-box input[type=checkbox]+label span {
  position: absolute;
  top: 0px;
  left: 0;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.login-page__checked-box input[type=checkbox]:checked+label span {
  background-color: var(--pelocis-base, #757ee2);
  border-color: var(--pelocis-base, #757ee2);
}

.login-page__checked-box input[type=checkbox]:checked+label span:before {
  opacity: 1;
}

.login-page__form-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.login-page__form-forgot-password {
  position: relative;
  display: block;
  margin-left: 0px;
  flex: 0 0 100%;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .login-page__form-forgot-password {
    margin-left: 20px;
    flex: 0 0 auto;
    margin-top: 0;
  }
}

.login-page__form-forgot-password a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--pelocis-base, #757ee2);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.login-page__form-forgot-password a:hover {
  background-size: 100% 1px;
}

.login-page__form-forgot-password a:hover {
  color: var(--pelocis-base, #757ee2);
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .error-404 {
    padding: 80px 0;
  }
}

.error-404__image {
  position: relative;
  text-align: center;
}

.error-404__image img {
  animation: flowerRotate 5s linear 0s infinite;
  max-width: 100%;
}

.error-404__title {
  font-size: 150px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  line-height: 1;
  font-weight: bold;
  margin: 27px 0 11px;
  position: relative;
  display: inline-block;
  color: var(--pelocis-black, #222222);
}

@media (max-width: 767px) {
  .error-404__title {
    font-size: 80px;
  }
}

.error-404__sub-title {
  font-size: 35px;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.2em;
  margin-bottom: 16px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .error-404__sub-title {
    font-size: 24px;
  }
}

.error-404__text {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 31px;
  color: var(--pelocis-text-dark, #636363);
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page-search {
  padding-top: 100px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .faq-page-search {
    padding-top: 60px;
  }
}

.faq-page-search__shape-1,
.faq-page-search__shape-2,
.faq-page-search__shape-3 {
  position: absolute;
}

.faq-page-search__shape-1 {
  top: 0;
  right: 0;
  animation: leafMove 6s linear 0s infinite;
  z-index: 10;
}

.faq-page-search__shape-2 {
  bottom: 0;
  right: 0;
  animation: messageMove 6s linear 0s infinite;
}

.faq-page-search__shape-3 {
  left: 0;
  bottom: 0;
  animation: leafMove 4s linear 0s infinite;
}

.faq-page-search__inner {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 40px 30px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .faq-page-search__inner {
    padding: 40px 60px;
  }
}

@media (min-width: 1200px) {
  .faq-page-search__inner {
    padding: 100px 100px;
  }
}

.faq-page-search__title {
  text-transform: uppercase;
  margin: 0;
  font-weight: bold;
  color: var(--pelocis-black, #222222);
  font-size: 25px;
  line-height: 1.2em;
  margin-bottom: 10px;
  margin-top: -7px;
}

@media (min-width: 992px) {
  .faq-page-search__title {
    font-size: 34px;
  }
}

.faq-page-search__text {
  margin: 0;
  font-size: 14px;
  line-height: 30px;
  max-width: 479px;
  width: 100%;
}

.faq-page-search__form {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  max-width: 550px;
  margin-top: 25px;
}

.faq-page-search__form input[type=text] {
  border: none;
  outline: none;
  display: block;
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-text, #838184);
  font-size: 14px;
  width: 100%;
  padding-left: 30px;
  height: 58px;
}

.faq-page-search__form__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 20px;
}

@media (min-width: 768px) {
  .faq-page-search__form__btn {
    font-size: 22px;
  }
}

.faq-page {
  padding-top: 110px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .faq-page {
    padding-bottom: 60px;
  }
}

.faq-page .row {
  margin-top: 3px;
}

@media (max-width: 993px) {
  .faq-page .row {
    gap: 20px;
  }
}

.faq-page__contact {
  padding: 30px;
}

@media (min-width: 1200px) {
  .faq-page__contact {
    padding: 50px;
  }
}

.faq-page__contact__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--pelocis-white, #fff);
  font-size: 20px;
  line-height: 1.2em;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: 21px;
}

@media (min-width: 768px) {
  .faq-page__contact__title {
    font-size: 24px;
  }
}

.faq-page__contact__text {
  display: flex;
  align-items: center;
  margin-bottom: -6px;
}

.faq-page__contact__text br {
  display: inherit;
}

.faq-page__contact__text>i {
  width: 40px;
  height: 40px;
  background-color: var(--pelocis-black, #222222);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-white, #fff);
  font-size: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 16px;
}

.faq-page__contact__number {
  color: var(--pelocis-white, #fff);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.faq-page__contact__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__contact__number a:hover {
  background-size: 100% 1px;
}

.faq-page__contact__number a:hover {
  color: var(--pelocis-black, #222222);
}

.faq-one {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .faq-one {
    padding: 80px 0;
  }
}

.faq-one .sec-title {
  padding-bottom: 22px;
}

.faq-one__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 30px;
}

@media (min-width: 1200px) {
  .faq-one__text {
    padding-right: 70px;
  }
}

.faq-one__card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 26px;
}

@media (max-width: 767px) {
  .faq-one__card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.faq-one__img {
  width: fit-content;
}

.faq-one__img img {
  border-radius: 8px;
}

.faq-one__content {
  flex: 1;
}

.faq-one__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-one__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-text-gray, #89868d);
}

.faq-one__list li span {
  font-size: 17px;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
}

.faq-one__list li:hover span {
  color: var(--pelocis-base, #757ee2);
}

.faq-one__list li+li {
  margin-top: 12px;
}

.faq-one__quote {
  background-color: var(--pelocis-gray, #F5F2EF);
  border-radius: 15px;
  border-left: 4px solid var(--pelocis-base, #757ee2);
  padding: 14px 30px 15px;
  font-size: 18px;
  line-height: 28px;
  font-style: italic;
  color: var(--pelocis-text-dark, #636363);
  font-weight: 400;
}

.faq-one__quote a {
  color: var(--pelocis-base, #757ee2);
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.faq-one__quote a:hover {
  background-size: 100% 1px;
}

.faq-one__accordion {
  position: relative;
  margin: 10px 0 0;
}

@media (max-width: 991px) {
  .faq-one__accordion {
    margin: 45px 0 0;
  }
}

.faq-one__accordion .accrodion {
  margin-bottom: 25px;
  border-radius: 70px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  overflow: hidden;
  transition: all 400ms ease;
}

.faq-one__accordion .accrodion:last-child {
  margin-bottom: 0;
}

.faq-one__accordion .accrodion-title {
  padding: 12.5px 30px;
  padding-left: 55px;
  cursor: pointer;
  position: relative;
  transition: all 400ms ease;
}

.faq-one__accordion .accrodion-title__shape {
  width: 47px;
  height: 100%;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(75% 0%, 48% 50%, 75% 100%, 0% 100%, 0 48%, 0% 0%);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 400ms ease;
}

.faq-one__accordion .accrodion-title h4 {
  font-weight: 500;
  color: var(--pelocis-black, #222222);
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-size: 16px;
  line-height: 25px;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.faq-one__accordion .accrodion-title h4 i {
  font-size: 12px;
  transform: rotate(90deg);
  transition: all 400ms ease;
}

.faq-one__accordion .accrodion-title__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 22px;
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
  font-size: 10px;
  transition: all 400ms ease;
}

.faq-one__accordion .active {
  border-radius: 10px;
}

.faq-one__accordion .active .accrodion-title__shape {
  opacity: 0;
  visibility: hidden;
}

.faq-one__accordion .active .accrodion-title {
  background-color: var(--pelocis-black, #222222);
}

.faq-one__accordion .active .accrodion-title__icon {
  background-color: var(--pelocis-base, #757ee2);
}

.faq-one__accordion .active .accrodion-title h4 {
  color: var(--pelocis-white, #fff);
}

.faq-one__accordion .accrodion-content .inner {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .faq-one__accordion .accrodion-content .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.faq-one__accordion .accrodion-content__icon {
  width: 77px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  flex-shrink: 0;
  font-size: 40px;
}

.faq-one__accordion .accrodion-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
}

.faq-four {
  padding: 0 0;
  position: relative;
}

.faq-four::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--pelocis-border-color, #DDDDDD);
  z-index: -1;
}

@media (max-width: 1199px) {
  .faq-four::after {
    display: none;
  }
}

.faq-four__content {
  position: relative;
  padding: 109px 0 120px;
}

@media (max-width: 767px) {
  .faq-four__content {
    padding: 70px 0 80px;
  }
}

.faq-four__content .sec-title {
  padding-bottom: 21px;
}

.faq-four__content__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 25px;
}

@media (min-width: 1200px) {
  .faq-four__content__text {
    padding-right: 70px;
  }
}

.faq-four .pelocis-stretch-element-inside-column {
  position: relative;
  height: 100%;
}

.faq-four__image {
  position: relative;
  height: 100%;
}

@media (max-width: 1199px) {
  .faq-four__image {
    text-align: center;
  }
}

.faq-four__image img {
  min-height: 892px;
  object-fit: cover;
  max-width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12% 50%);
}

@media (max-width: 991px) {
  .faq-four__image img {
    min-height: inherit;
  }
}

@media (max-width: 767px) {
  .faq-four__image img {
    clip-path: none;
  }
}

.faq-four__image__icon {
  width: 175px;
  height: 175px;
  background-color: var(--pelocis-base, #757ee2);
  border: 10px solid var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 2;
  font-size: 70px;
  color: var(--pelocis-white, #fff);
}

@media (max-width: 767px) {
  .faq-four__image__icon {
    display: none;
  }
}

.faq-four__image__icon::after {
  content: "";
  width: calc(100% - 29px);
  height: calc(100% - 29px);
  border: 1px dashed var(--pelocis-white, #fff);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  z-index: -1;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-card {
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-top: none;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: all 400ms ease;
  padding: 0 0 40px;
}

.package-card__top {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  transition: all 500ms ease;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 0 15px 16px;
}

.package-card__top__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.7;
  transition: all 300ms ease;
  z-index: -1;
}

.package-card:hover .package-card__top {
  background-color: var(--pelocis-black3, #000);
}

.package-card:hover .package-card__top .package-card__top__shape {
  opacity: 0.3;
}

.package-card__title {
  padding: 7.5px 32px;
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 26px;
  text-align: center;
  display: inline-block;
  border-radius: 0 0 20px 20px;
  z-index: 2;
  position: relative;
  margin: -1px 0 0;
  transition: all 300ms ease;
}

.package-card:hover .package-card__title {
  background-color: var(--pelocis-base, #757ee2);
}

.package-card__price {
  color: var(--pelocis-black3, #000);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
  margin-top: 19px;
  margin-bottom: 11px;
  z-index: 2;
  position: relative;
  transition: all 300ms ease;
}

.package-card:hover .package-card__price {
  color: var(--pelocis-white, #fff);
}

.package-card__time {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0;
  transition: all 300ms ease;
  z-index: 2;
  position: relative;
}

.package-card:hover .package-card__time {
  color: var(--pelocis-white, #fff);
}

.package-card__list {
  list-style: none;
  margin: 0;
  padding: 68px 20px 28px 50px;
  position: relative;
}

@media (max-width: 991px) {
  .package-card__list {
    padding-left: 25px;
  }
}

.package-card__list::before {
  content: "";
  width: 59px;
  height: 34px;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(53% 100%, 0 0, 100% 0);
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.package-card__list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 500ms ease;
}

.package-card__list li span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.package-card__list li:hover {
  color: var(--pelocis-base, #757ee2);
}

.package-card__list li:hover span {
  background-size: 100% 1px;
}

.package-card .pelocis-btn {
  background-color: var(--pelocis-black, #222222);
}

.package-card .pelocis-btn::after {
  background-color: var(--pelocis-base, #757ee2);
}

.package-page {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .package-page {
    padding: 80px 0;
  }
}

/*--------------------------------------------------------------
# Offer
--------------------------------------------------------------*/
.offer-one {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .offer-one {
    padding-bottom: 80px;
  }
}

.offer-one--home {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .offer-one--home {
    padding: 80px 0;
  }
}

.offer-one .container-fluid {
  max-width: 1604px;
}

.offer-one__card {
  padding: 20px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.offer-one__card::before {
  background: linear-gradient(90deg, rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.13) 0px, rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.13) 77%, rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.5) 92%, rgba(var(--pelocis-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}

.offer-one__card:hover::before {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}

.offer-one__card__inner {
  position: relative;
  border: 1px solid var(--pelocis-white, #fff);
  padding: 40px;
}

@media (min-width: 992px) {
  .offer-one__card__inner {
    padding: 50px;
  }
}

.offer-one__card__shape {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

@media (min-width: 992px) {
  .offer-one__card__shape {
    display: block;
  }
}

.offer-one__card__value {
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--pelocis-base, #757ee2);
  line-height: 1;
  margin: 0;
}

@media (min-width: 992px) {
  .offer-one__card__value {
    font-size: 40px;
  }
}

.offer-one__card__title {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  font-size: 30px;
  line-height: 1.2em;
  margin-bottom: 17px;
}

@media (min-width: 992px) {
  .offer-one__card__title {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes treeMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

@keyframes leafMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    transform: rotate(-2deg) translateX(5px);
  }

  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}

@keyframes messageMove {

  0%,
  100% {
    transform: translateX(0);
  }

  25%,
  75% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes flowerRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25%,
  75% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-15px);
  }
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(15px);
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--pelocis-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--pelocis-black, #222222);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--pelocis-black2, #333333);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--pelocis-white, #fff);
  cursor: pointer;
}

.mobile-nav__close:hover {
  color: var(--pelocis-base, #757ee2);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--pelocis-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--pelocis-white, #fff);
  font-size: 12px;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--pelocis-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--pelocis-base, #757ee2);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--pelocis-base, #757ee2);
  border: none;
  outline: none;
  color: var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--pelocis-white, #fff);
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 20px;
}

.mobile-nav__social a:hover {
  color: var(--pelocis-base, #757ee2);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--pelocis-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--pelocis-base, #757ee2);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--pelocis-base, #757ee2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--pelocis-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--pelocis-white, #fff);
  font-size: 15px;
  color: var(--pelocis-text, #838184);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__form .pelocis-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}

.search-popup__form .pelocis-btn span {
  display: flex;
  align-items: center;
}

.search-popup__form .pelocis-btn i {
  margin: 0;
  font-size: 16px;
}

.search-popup__form .pelocis-btn::after {
  background-color: var(--pelocis-black, #222222);
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--pelocis-black, #222222);
  position: relative;
  padding-top: 295px;
  padding-bottom: 175px;
  display: flex;
  overflow: hidden;
}

@media (max-width: 767px) {
  .page-header {
    padding-top: 180px;
    padding-bottom: 80px;
  }
}

.page-header__shape {
  position: absolute;
  left: 20px;
  bottom: 20px;
  animation: zumpBottom 2s linear infinite;
}

.page-header__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
}

@media (max-width: 768px) {
  .page-header__bg {
    display: none;
  }
}

.page-header__bg__img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 19% 100%);
}

.page-header__bg__shape-1 {
  position: absolute;
  left: -26px;
  bottom: -1px;
  background-color: var(--pelocis-white, #fff);
  height: 326px;
  width: 337px;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
  animation: moveRight 2s ease-in-out infinite alternate;
}

.page-header__bg__shape-2 {
  position: absolute;
  left: -8px;
  bottom: 0px;
  background-color: var(--pelocis-base, #757ee2);
  height: 326px;
  width: 337px;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
  animation: moveLeft 2s ease-in-out infinite alternate;
}

.page-header .container {
  position: relative;
  z-index: 10;
}

.page-header__title {
  font-size: 40px;
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 9px;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 60px;
  }
}

.page-header__shape {
  display: inline-flex;
  margin-bottom: 13px;
}

@media (max-width: 768px) {
  .page-header__shape {
    width: 30%;
  }
}

.pelocis-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 !important;
  margin-bottom: 13px;
}

@media (min-width: 768px) {
  .pelocis-breadcrumb {
    margin-bottom: 7px;
  }
}

.pelocis-breadcrumb li {
  font-size: 18px;
  color: var(--pelocis-white, #fff);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.pelocis-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: -1px;
  margin-left: 10px;
  margin-right: 10px;
  color: var(--pelocis-base, #757ee2);
}

.pelocis-breadcrumb li:last-of-type {
  color: var(--pelocis-base, #757ee2);
}

.pelocis-breadcrumb li span,
.pelocis-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 28px;
}

.pelocis-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.pelocis-breadcrumb li a:hover {
  background-size: 100% 1px;
}

.pelocis-breadcrumb li a:hover {
  color: var(--pelocis-base, #757ee2);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}

.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 440px;
  width: 100%;
  mix-blend-mode: luminosity;
}

.google-map__contact {
  overflow: hidden;
  background-color: var(--pelocis-gray, #F5F2EF);
}

.contact-map {
  position: relative;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  background-color: var(--pelocis-base, #757ee2);
  background-image: url(../images/shapes/client-carousel-bg-1-1.jpg);
  background-size: cover;
  padding: 80px 0;
}

@media (min-width: 992px) {
  .client-carousel {
    padding: 102px 0;
  }
}

.client-carousel__one__item img {
  opacity: 0.2;
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
}

.client-carousel__one__item:hover img {
  opacity: 0.6;
}

.client-carousel-one {
  position: relative;
  background: var(--pelocis-white, #fff);
  padding: 0 0 60px;
}

.client-carousel-one .client-carousel__one {
  padding: 74px 0 0;
}

.client-carousel-one .owl-theme .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  line-height: 0.8;
}

.client-carousel-one .owl-theme .owl-nav button {
  width: 26px;
  height: 27px;
  background-color: var(--pelocis-gray, #F5F2EF);
  margin: 0 2.5px;
  padding: 0;
  transition: all 500ms ease;
  font-size: 12px;
  color: var(--pelocis-black, #222222);
  text-align: center;
  font-size: 12px;
  line-height: 27px;
  border-radius: 0;
}

.client-carousel-one .owl-theme .owl-nav button:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.client-carousel-one .owl-theme .owl-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: var(--pelocis-border-color, #DDDDDD);
  z-index: -1;
}

.client-carousel-one .owl-theme .owl-nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 110px;
  content: "";
  height: 1px;
  background-color: var(--pelocis-white, #fff);
}

.client-carousel-one .client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 103px;
  transition: all 500ms ease;
}

.client-carousel-one .client-carousel__one__item img {
  transition: all 500ms ease;
  opacity: 0.2;
  max-width: 100%;
  width: auto;
}

.client-carousel-one .client-carousel__one__item:hover {
  background-color: #f8f5f0;
}

.client-carousel-one .client-carousel__one__item:hover img {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
}

@media (max-width: 776px) {
  .main-slider-one .container {
    max-width: 100%;
  }
}

.main-slider-one__carousel {
  position: relative;
  width: 100%;
}

@media (max-width: 1300px) {
  .main-slider-one__carousel.owl-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    margin: 0 auto;
    gap: 15px;
  }
}

.main-slider-one__carousel.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 50px;
  top: 54%;
  transform: translateY(-50%);
}

@media (max-width: 1500px) {
  .main-slider-one__carousel.owl-carousel .owl-nav .owl-prev {
    left: 20px;
  }
}

@media (max-width: 1300px) {
  .main-slider-one__carousel.owl-carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    transform: none;
    left: 0;
  }
}

.main-slider-one__carousel.owl-carousel .owl-nav .owl-next {
  right: 50px;
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
}

@media (max-width: 1500px) {
  .main-slider-one__carousel.owl-carousel .owl-nav .owl-next {
    right: 20px;
  }
}

@media (max-width: 1300px) {
  .main-slider-one__carousel.owl-carousel .owl-nav .owl-next {
    position: relative;
    top: auto;
    transform: none;
    right: 0;
  }
}

.main-slider-one__carousel.owl-carousel .owl-nav button {
  transition: all 400ms ease;
  width: 73px;
  height: 73px;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--pelocis-white, #fff);
  background-color: transparent;
  border-radius: 50%;
  display: block;
  color: var(--pelocis-white, #fff);
  line-height: 1.5;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-slider-one__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--pelocis-base, #757ee2);
  border-color: var(--pelocis-base, #757ee2);
}

@media (max-width: 1500px) {
  .main-slider-one__carousel.owl-carousel .owl-nav button {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

.main-slider-one__carousel .owl-dots {
  right: 118px;
  margin: auto 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
}

@media (max-width: 1400px) {
  .main-slider-one__carousel .owl-dots {
    width: 60px;
  }
}

@media (max-width: 1199px) {
  .main-slider-one__carousel .owl-dots {
    width: 40px;
  }
}

@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
    left: 0;
    top: 68%;
  }
}

.main-slider-one__carousel .owl-dots .owl-dot {
  display: block;
  margin: 6px 0;
}

@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots .owl-dot {
    margin: 0 6px;
  }
}

.main-slider-one__carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--pelocis-white, #fff);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
  background-color: var(--pelocis-white, #fff);
}

.main-slider-one__item {
  background-color: var(--pelocis-black, #222222);
  position: relative;
  z-index: 3;
  position: relative;
  padding-top: 304px;
  padding-bottom: 211px;
}

@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

.main-slider-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

.main-slider-one__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0.911), rgba(0, 0, 0, 0));
}

.main-slider-one__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}

@media (max-width: 1490px) {
  .main-slider-one__content {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .main-slider-one__content {
    padding-left: 0px;
  }
}

.main-slider-one__sub-title {
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
  font-size: 16px;
  font-weight: 500;
  color: var(--pelocis-base, #757ee2);
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  line-height: 21px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 21px;
}

@media (max-width: 668px) {
  .main-slider-one__sub-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

.main-slider-one__sub-title img {
  width: 226px !important;
  height: 69px;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
}

.main-slider-one__title {
  color: var(--pelocis-white, #fff);
  display: inline-block;
  margin: 0 0 15px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  position: relative;
}

.main-slider-one__title--thin {
  font-weight: 300;
  text-decoration: underline;
  text-decoration-color: var(--pelocis-base, #757ee2);
  text-decoration-thickness: 4px;
}

.main-slider-one__title--base {
  color: var(--pelocis-base, #757ee2);
  font-weight: 300;
}

.main-slider-one__title--shape {
  position: absolute;
  right: -5px;
  top: -44px;
  width: auto !important;
}

.main-slider-one__title::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}

@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 40px;
    line-height: 52px;
  }
}

.main-slider-one__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-white, #fff);
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-200px);
  opacity: 0;
  margin: 0 0 27px;
}

.main-slider-one__btn {
  position: relative;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

.main-slider-one__btn .pelocis-btn {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.main-slider-one__btn .pelocis-btn::after {
  background-color: var(--pelocis-base, #757ee2);
}

.main-slider-one__btn .pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

.main-slider-one svg {
  width: 100%;
  height: 770px;
  position: absolute;
  top: 0;
}

.main-slider-one circle {
  stroke: var(--pelocis-black, #222222);
  fill: none;
  transition: 0.5s;
}

.main-slider-one .steap {
  stroke-width: 0;
}

.main-slider-one #svg2 circle {
  transition-timing-function: linear;
}

.main-slider-one .circle1 {
  transition-delay: 0.05s;
}

.main-slider-one .circle2 {
  transition-delay: 0.1s;
}

.main-slider-one .circle3 {
  transition-delay: 0.15s;
}

.main-slider-one .circle4 {
  transition-delay: 0.2s;
}

.main-slider-one .circle5 {
  transition-delay: 0.25s;
}

.main-slider-one .circle6 {
  transition-delay: 0.3s;
}

.main-slider-one .circle7 {
  transition-delay: 0.35s;
}

.main-slider-one .circle8 {
  transition-delay: 0.4s;
}

.main-slider-one .circle9 {
  transition-delay: 0.45s;
}

.main-slider-one .active .steap {
  animation: dash 0.5s linear;
}

@keyframes dash {
  0% {
    stroke-width: 0;
  }

  100% {
    stroke-width: 200px;
  }
}

.main-slider-one .active .main-slider-one__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}

.main-slider-one .active .main-slider-one__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.main-slider-one .active .main-slider-one__title::after {
  transform: translateX(1%);
  transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}

.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

.main-slider-two {
  position: relative;
}

@media (max-width: 576px) {

  .main-slider-two .container,
  .main-slider-two .container-sm {
    max-width: 100%;
  }
}

.main-slider-two__carousel {
  position: relative;
  width: 100%;
}

.main-slider-two__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 60px;
  z-index: 99;
  width: 1170px;
  gap: 10px;
  transform: none;
  text-align: left;
}

@media (max-width: 1199px) {
  .main-slider-two__carousel .owl-dots {
    justify-content: center;
    text-align: center;
    width: 100%;
    bottom: 30px;
  }
}

.main-slider-two__carousel .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 4px;
  background-color: transparent;
  border: 1.5px solid var(--pelocis-base, #757ee2);
  margin: 0;
  transition: all 300ms ease;
  position: relative;
}

.main-slider-two__carousel .owl-dots .owl-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1.2px solid rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.2);
  border-radius: 1px;
  transition: all 300ms ease;
}

.main-slider-two__carousel .owl-dots .owl-dot span {
  display: none;
}

.main-slider-two__carousel .owl-dots .owl-dot:hover,
.main-slider-two__carousel .owl-dots .owl-dot.active {
  background-color: var(--pelocis-base, #757ee2);
}

.main-slider-two__carousel .owl-dots .owl-dot:hover::after,
.main-slider-two__carousel .owl-dots .owl-dot.active::after {
  border-color: var(--pelocis-base, #757ee2);
}

.main-slider-two__item {
  background-color: var(--pelocis-gray, #F5F2EF);
  position: relative;
  z-index: 3;
  padding-top: 335px;
  padding-bottom: 204px;
}

@media (max-width: 1199px) {
  .main-slider-two__item {
    padding-top: 250px;
    padding-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .main-slider-two__item {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}

.main-slider-two__shape-1 {
  position: absolute;
  left: -200px;
  top: -200px;
  width: auto !important;
  z-index: 2;
  transition: all 1500ms ease;
  animation: shapeMove 2s linear 0s infinite;
}

@media (max-width: 1199px) {
  .main-slider-two__shape-1 {
    display: none !important;
  }
}

.main-slider-two__shape-2 {
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: auto !important;
  z-index: 2;
  transition: all 1600ms ease;
  animation: shapeMove 2s linear 0s infinite;
}

@media (max-width: 1199px) {
  .main-slider-two__shape-2 {
    display: none !important;
  }
}

.main-slider-two__shape-3 {
  position: absolute;
  right: -1214px;
  top: -188px;
  width: 1227px;
  height: 190px;
  border-radius: 50%;
  z-index: 2;
  transition: all 1600ms ease;
  background-color: var(--pelocis-base, #757ee2);
  transform: rotate(-18deg);
  transition: all 1600ms ease;
}

@media (max-width: 1199px) {
  .main-slider-two__shape-3 {
    display: none !important;
  }
}

.main-slider-two__shape-4 {
  position: absolute;
  right: -200px;
  bottom: -400px;
  width: 1227px;
  height: 190px;
  border-radius: 50%;
  z-index: 2;
  transition: all 1600ms ease;
  background-color: var(--pelocis-base, #757ee2);
  transform: rotate(-24deg);
  transition: all 1600ms ease;
}

@media (max-width: 1199px) {
  .main-slider-two__shape-4 {
    display: none !important;
  }
}

.main-slider-two__shape-5 {
  position: absolute;
  width: 113px !important;
  right: 30%;
  top: 300px;
  z-index: 2;
  opacity: 0;
  transition: all 1200ms ease;
  animation: zumpBottom 2.5s linear 0s infinite;
}

@media (max-width: 1199px) {
  .main-slider-two__shape-5 {
    display: none !important;
  }
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  overflow: hidden;
}

.main-slider-two__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  background-size: cover;
}

.main-slider-two__bg img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.main-slider-two__bg img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}

.main-slider-two__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.9);
  z-index: 1;
}

.main-slider-two__content {
  position: relative;
  z-index: 3;
}

.main-slider-two__sub-title {
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 29px;
  margin: 0 -30px 20px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
  opacity: 0;
  background-color: var(--pelocis-base, #757ee2);
  display: inline-block;
  text-transform: uppercase;
  padding: 10.5px 31px;
}

.main-slider-two__sub-title::before {
  content: "";
  width: 30px;
  height: 30px;
  clip-path: polygon(100% 0, 30% 100%, 100% 100%);
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  top: -28px;
  right: 0;
  z-index: 999999999;
  display: block;
}

.main-slider-two__sub-title::after {
  content: "";
  width: 30px;
  height: 30px;
  clip-path: polygon(0 100%, 70% 0, 0 0);
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  bottom: -28px;
  left: 0;
  z-index: 999999999;
  display: block;
}

@media (max-width: 767px) {
  .main-slider-two__sub-title {
    font-size: 16px;
    margin-left: 0;
  }
}

.main-slider-two__title {
  color: var(--pelocis-black, #222222);
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 4px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
  filter: blur(10px);
}

@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 42px;
    line-height: 55px;
  }
}

.main-slider-two__title .text-shape {
  position: relative;
}

.main-slider-two__title .text-shape img {
  width: 0% !important;
  position: absolute;
  left: 0px;
  bottom: -10px;
  opacity: 0;
  transition: width 1800ms ease, opacity 1800ms ease;
  transition-delay: 2s;
  transform-origin: left;
}

.main-slider-two__title::after {
  content: "";
  width: 101%;
  height: 95%;
  position: absolute;
  top: 6px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}

.main-slider-two__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
  margin: 0 0 29px;
}

.main-slider-two__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

@media (max-width: 767px) {
  .main-slider-two__btn {
    flex-direction: column;
    align-items: flex-start;
  }
}

.main-slider-two__img {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 1111;
  width: 45% !important;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
  opacity: 0;
  filter: blur(10px);
  display: none !important;
}

@media (min-width: 1200px) {
  .main-slider-two__img {
    display: block !important;
  }
}

@media (min-width: 1600px) {
  .main-slider-two__img {
    right: 100px;
    width: auto !important;
  }
}

.main-slider-two .active .main-slider-two__bg img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.main-slider-two .active .main-slider-two__bg img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.main-slider-two .active .main-slider-two__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}

.main-slider-two .active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
  filter: blur(0px);
}

.main-slider-two .active .main-slider-two__title .text-shape img {
  opacity: 1;
  width: 100% !important;
  transition-delay: 2s;
}

.main-slider-two .active .main-slider-two__text {
  opacity: 1;
  transform: translatex(0);
  transition-delay: 1500ms;
}

.main-slider-two .active .main-slider-two__title::after {
  transform: translateY(1%);
  transition-delay: 1600ms;
}

.main-slider-two .active .main-slider-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1800ms;
}

.main-slider-two .active .main-slider-two__shape-1 {
  left: 0px;
  top: 0px;
}

.main-slider-two .active .main-slider-two__shape-2 {
  left: 0px;
  bottom: 0px;
}

.main-slider-two .active .main-slider-two__shape-3 {
  right: -910px;
  top: -166px;
}

.main-slider-two .active .main-slider-two__shape-4 {
  right: -200px;
  bottom: 0px;
}

.main-slider-two .active .main-slider-two__shape-5 {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition-delay: 1200ms;
}

.main-slider-two .active .main-slider-two__img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1200ms;
  filter: blur(0px);
}

.main-slider-three {
  position: relative;
  overflow: hidden;
}

.main-slider-three .container-fluid {
  z-index: 11;
  position: relative;
}

.main-slider-three__carousel.owl-carousel {
  position: relative;
  width: 100%;
}

.main-slider-three__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 34px 31px;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  gap: 10px;
}

@media (max-width: 1199px) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    padding: 20px 30px;
  }
}

.main-slider-three__carousel.owl-carousel .owl-nav .owl-prev,
.main-slider-three__carousel.owl-carousel .owl-nav .owl-next {
  width: 73px;
  height: 73px;
  font-size: 18px;
  border: 1px solid var(--pelocis-base, #757ee2);
  border-radius: 50%;
  color: var(--pelocis-base, #757ee2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}

.main-slider-three__carousel.owl-carousel .owl-nav .owl-prev:hover,
.main-slider-three__carousel.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

@media (max-width: 1199px) {

  .main-slider-three__carousel.owl-carousel .owl-nav .owl-prev,
  .main-slider-three__carousel.owl-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }
}

.main-slider-three__item {
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
  overflow: hidden;
  padding-top: 270px;
  padding-bottom: 230px;
}

@media (max-width: 1199px) {
  .main-slider-three__item {
    padding-top: 170px;
    padding-bottom: 130px;
  }
}

.main-slider-three__item--shape-1 {
  position: absolute;
  right: 50px;
  top: 110px;
  width: auto !important;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(200px);
  animation: messageMove 2s linear 0s infinite;
}

@media (max-width: 1199px) {
  .main-slider-three__item--shape-1 {
    display: none !important;
  }
}

.main-slider-three__item--shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto !important;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
  animation: zumpBottom 2.5s linear 0s infinite;
}

@media (max-width: 1199px) {
  .main-slider-three__item--shape-2 {
    display: none !important;
  }
}

.main-slider-three__image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 49.4%;
  padding-right: 18px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
}

@media (max-width: 1199px) {
  .main-slider-three__image {
    display: none;
  }
}

.main-slider-three__image__one {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 11;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 949 855" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M836.753 0.0168457H0V854.155H857.161L949 640.62L826.548 427.086L949 213.551L836.753 0.0168457Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 949 855" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M836.753 0.0168457H0V854.155H857.161L949 640.62L826.548 427.086L949 213.551L836.753 0.0168457Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.main-slider-three__image__one img {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.main-slider-three__image__shape {
  height: 100%;
  width: 100%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 949 855" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M836.753 0.0168457H0V854.155H857.161L949 640.62L826.548 427.086L949 213.551L836.753 0.0168457Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 949 855" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M836.753 0.0168457H0V854.155H857.161L949 640.62L826.548 427.086L949 213.551L836.753 0.0168457Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--pelocis-white, #fff);
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100%;
}

.main-slider-three__image__shape::before {
  content: "";
  position: absolute;
  top: 214px;
  right: 0;
  width: 226px;
  height: 80px;
  background-color: var(--pelocis-base, #757ee2);
}

.main-slider-three__image__shape::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 226px;
  height: 98px;
  background-color: var(--pelocis-base, #757ee2);
  transform: rotate(26deg);
}

.main-slider-three__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 0 2px;
}

@media (max-width: 1199px) {
  .main-slider-three__content {
    padding: 0px 50px;
  }
}

@media (max-width: 767px) {
  .main-slider-three__content {
    padding: 0px 0px;
  }
}

.main-slider-three__sub-title {
  color: var(--pelocis-base, #757ee2);
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-transform: uppercase;
  opacity: 0;
  margin: 0 0 22px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-200px);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--pelocis-white, #fff);
  padding: 9px 30px;
  border-radius: 50px;
}

.main-slider-three__sub-title::after {
  content: "";
  width: 11.5px;
  height: 11.5px;
  background-color: var(--pelocis-black, #222222);
  border: 1px solid var(--pelocis-white, #fff);
  display: block;
  position: absolute;
  left: 34px;
  top: 16px;
}

.main-slider-three__sub-title::before {
  content: "";
  width: 13px;
  height: 13px;
  background-color: var(--pelocis-base, #757ee2);
  display: block;
}

.main-slider-three__title {
  color: var(--pelocis-black, #222222);
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  margin: 0 0 15px;
  padding-left: 20px;
  display: inline-block;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
  position: relative;
}

@media (max-width: 1499px) {
  .main-slider-three__title {
    font-size: 50px;
    line-height: 55px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .main-slider-three__title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 30px;
    line-height: 40px;
  }
}

.main-slider-three__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 81%;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 10px;
}

.main-slider-three__title--shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto !important;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
}

@media (max-width: 1400px) {
  .main-slider-three__title--shape {
    display: none !important;
  }
}

.main-slider-three__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 24px;
  color: var(--pelocis-text-dark, #636363);
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-200px);
}

.main-slider-three__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

@media (max-width: 767px) {
  .main-slider-three__btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.main-slider-three__btn .pelocis-btn {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.main-slider-three__btn .pelocis-btn::after {
  background-color: var(--pelocis-base, #757ee2);
}

.main-slider-three__btn .pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

.main-slider-three__btn .video-popup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  color: var(--pelocis-black, #222222);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-transform: uppercase;
}

.main-slider-three__btn .video-popup i {
  width: 52px;
  height: 52px;
  border: 3px solid var(--pelocis-base, #757ee2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 22px;
  color: var(--pelocis-base, #757ee2);
}

.main-slider-three__btn .video-popup:hover {
  color: var(--pelocis-base, #757ee2);
}

@media (max-width: 991px) {
  .main-slider-three .text-end {
    text-align: center !important;
  }
}

.main-slider-three .active .main-slider-three__image {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition-delay: 1500ms;
}

.main-slider-three .active .main-slider-three__sub-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}

.main-slider-three .active .main-slider-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.main-slider-three .active .main-slider-three__title--shape {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1400ms;
}

.main-slider-three .active .main-slider-three__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}

.main-slider-three .active .main-slider-three__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1600ms;
}

.main-slider-three .active .main-slider-three__item--shape-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1000ms;
}

.main-slider-three .active .main-slider-three__item--shape-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}

.main-slider-four {
  position: relative;
  overflow: hidden;
  background-color: var(--pelocis-base, #757ee2);
}

.main-slider-four__bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 83%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  transform: scale(1);
}

@media (max-width: 1199px) {
  .main-slider-four__bg {
    clip-path: none;
    width: 100%;
  }
}

.main-slider-four__bg::after {
  content: "";
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.94);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.main-slider-four__carousel {
  position: relative;
  width: 100%;
}

.main-slider-four__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 60px;
  z-index: 99;
  width: 1170px;
  gap: 10px;
  transform: none;
  text-align: left;
}

@media (max-width: 1199px) {
  .main-slider-four__carousel .owl-dots {
    justify-content: center;
    text-align: center;
    width: 100%;
    bottom: 30px;
  }
}

.main-slider-four__carousel .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 4px;
  background-color: transparent;
  border: 1.5px solid var(--pelocis-base, #757ee2);
  margin: 0;
  transition: all 300ms ease;
  position: relative;
}

.main-slider-four__carousel .owl-dots .owl-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1.2px solid rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.2);
  border-radius: 1px;
  transition: all 300ms ease;
}

.main-slider-four__carousel .owl-dots .owl-dot span {
  display: none;
}

.main-slider-four__carousel .owl-dots .owl-dot:hover,
.main-slider-four__carousel .owl-dots .owl-dot.active {
  background-color: var(--pelocis-base, #757ee2);
}

.main-slider-four__carousel .owl-dots .owl-dot:hover::after,
.main-slider-four__carousel .owl-dots .owl-dot.active::after {
  border-color: var(--pelocis-base, #757ee2);
}

.main-slider-four__item {
  position: relative;
  background-color: var(--pelocis-base, #757ee2);
  padding: 339px 0 204px;
}

@media (max-width: 1199px) {
  .main-slider-four__item {
    padding: 250px 0 150px;
  }
}

@media (max-width: 767px) {
  .main-slider-four__item {
    padding: 170px 0 120px;
  }
}

.main-slider-four__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: var(--pelocis-white, #fff);
  text-transform: uppercase;
  background-color: transparent;
  margin-bottom: 9px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}

@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 42px;
    line-height: 50px;
  }
}

.main-slider-four__title span {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  -webkit-text-stroke: 2px var(--pelocis-base, #757ee2);
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
}

@media (max-width: 767px) {
  .main-slider-four__title span {
    font-size: 42px;
    line-height: 50px;
  }
}

.main-slider-four__title span::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 198px;
  height: 4px;
  background-color: var(--pelocis-white, #fff);
}

@media (max-width: 767px) {
  .main-slider-four__title span::after {
    content: none;
  }
}

.main-slider-four__title span::before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 4px;
  height: 68px;
  background-color: var(--pelocis-white, #fff);
}

@media (max-width: 1499px) {
  .main-slider-four__title span::before {
    height: 50px;
  }
}

@media (max-width: 767px) {
  .main-slider-four__title span::before {
    content: none;
  }
}

.main-slider-four__content {
  position: relative;
  z-index: 2;
}

.main-slider-four__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 30px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-200px);
}

.main-slider-four__btns {
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

.main-slider-four__btns .pelocis-btn::after {
  background-color: var(--pelocis-white, #fff);
}

.main-slider-four__btns .pelocis-btn:hover {
  color: var(--pelocis-black, #222222);
}

.main-slider-four__images {
  border-radius: 40px;
  position: absolute;
  max-width: 820px;
  width: 100%;
  bottom: 70px;
  right: 4%;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
  z-index: 2;
}

@media (max-width: 1862px) {
  .main-slider-four__images {
    max-width: 750px;
  }
}

@media (max-width: 1710px) {
  .main-slider-four__images {
    max-width: 650px;
    right: 2%;
  }
}

@media (max-width: 1440px) {
  .main-slider-four__images {
    max-width: 580px;
    bottom: 200px;
  }
}

@media (max-width: 1299px) {
  .main-slider-four__images {
    max-width: 550px;
  }
}

@media (max-width: 1199px) {
  .main-slider-four__images {
    display: none;
  }
}

.main-slider-four__images img {
  border-radius: 40px;
  border: 10px solid var(--pelocis-white, #fff);
}

.main-slider-four__images__shape-one {
  position: absolute;
  top: -41px;
  left: -47px;
  z-index: -1;
  width: auto !important;
  opacity: 0;
  border: none !important;
  border-radius: 0 !important;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(-200px);
}

@media (max-width: 1500px) {
  .main-slider-four__images__shape-one {
    display: none;
  }
}

.main-slider-four__images__shape-two {
  position: absolute;
  bottom: -76px;
  right: -88px;
  width: auto !important;
  z-index: -1;
  opacity: 0;
  border: none !important;
  border-radius: 0 !important;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}

@media (max-width: 1500px) {
  .main-slider-four__images__shape-two {
    display: none;
  }
}

.main-slider-four .active .main-slider-four__bg {
  transform: scale(1.1);
  transition: transform 7000ms linear;
}

.main-slider-four .active .main-slider-four__title {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 1100ms;
}

.main-slider-four .active .main-slider-four__title span {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 1200ms;
}

.main-slider-four .active .main-slider-four__text {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 1300ms;
}

.main-slider-four .active .main-slider-four__btns {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1400ms;
}

.main-slider-four .active .main-slider-four__images {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1500ms;
}

.main-slider-four .active .main-slider-four__images__shape-one {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1600ms;
}

.main-slider-four .active .main-slider-four__images__shape-two {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1600ms;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  margin-top: -30px;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  z-index: 11;
}

.feature-one__wrapper {
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
}

@media (max-width: 991px) {
  .feature-one__wrapper {
    padding: 50px 50px;
  }
}

@media (max-width: 575px) {
  .feature-one__wrapper {
    padding: 50px 20px;
  }
}

.feature-one .feature-card {
  position: relative;
  transition: all 500ms ease-in-out;
  text-align: center;
  margin: 0 15px;
  padding: 20px 0 50px;
}

@media (max-width: 991px) {
  .feature-one .feature-card {
    padding: 0 0;
    margin: 0;
  }
}

.feature-one .feature-card::after {
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  bottom: -5px;
  margin: auto;
  height: 5px;
  background-color: var(--pelocis-base, #757ee2);
  content: "";
  transition: all 500ms ease-in-out;
}

.feature-one .feature-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  margin-bottom: 17px;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  border-radius: 10px;
  position: relative;
  color: var(--pelocis-base, #757ee2);
  overflow: hidden;
  transition: all 400ms ease;
  z-index: 2;
  position: relative;
}

.feature-one .feature-card__icon::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 50%;
  height: 50%;
  background-color: var(--pelocis-base, #757ee2);
  transform: rotate(41deg);
  transition: all 500ms ease-in-out;
  z-index: -1;
}

.feature-one .feature-card__icon::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 50%;
  height: 50%;
  background-color: var(--pelocis-base, #757ee2);
  transform: rotate(41deg);
  transition: all 500ms ease-in-out;
  z-index: -1;
}

.feature-one .feature-card__title {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 14px;
}

.feature-one .feature-card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 12px;
}

@media (min-width: 1200px) {
  .feature-one .feature-card__text {
    padding: 0 9px;
  }
}

.feature-one .feature-card__link {
  color: var(--pelocis-black2, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1;
  position: relative;
}

.feature-one .feature-card__link span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 19px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.feature-one .feature-card__link span:hover {
  background-size: 100% 1px;
}

.feature-one .feature-card__link i {
  font-size: 12px;
  line-height: 19px;
}

.feature-one .feature-card__link:hover {
  color: var(--pelocis-base, #757ee2);
}

.feature-one .feature-card:hover .feature-card__icon {
  color: var(--pelocis-white, #fff);
}

.feature-one .feature-card:hover .feature-card__icon::after {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  left: 0;
}

.feature-one .feature-card:hover .feature-card__icon::before {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  right: 0;
}

.feature-one .feature-card:hover::after {
  width: 100%;
}

.feature-three {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .feature-three {
    padding: 70px 0 80px;
  }
}

.feature-three__card {
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 60px 20px 24px;
  text-align: center;
  margin-top: 38px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: all 500ms ease;
}

.feature-three__card__hover {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  overflow: hidden;
  transition: all 500ms ease;
}

.feature-three__card__hover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.85);
}

.feature-three__card__icon {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  font-size: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: -38px;
  transition: all 400ms ease;
}

.feature-three__card__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  background-color: var(--pelocis-white, #fff);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  z-index: -1;
}

.feature-three__card__icon::after {
  content: "";
  position: absolute;
  bottom: -30px;
  height: 50%;
  width: 100%;
  background-color: var(--pelocis-white, #fff);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  z-index: -1;
}

.feature-three__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  transition: all 300ms ease;
  margin-bottom: 11px;
  z-index: 2;
  position: relative;
}

.feature-three__card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 8px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 300ms ease;
  z-index: 2;
  position: relative;
}

.feature-three__card__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--pelocis-black2, #333333);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  z-index: 2;
  position: relative;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 300ms ease;
}

.feature-three__card__btn:hover {
  background-size: 100% 1px;
}

.feature-three__card__btn i {
  font-size: 12px;
}

.feature-three__card:hover {
  transform: translateY(-20px);
}

.feature-three__card:hover .feature-three__card__hover {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.feature-three__card:hover .feature-three__card__title {
  color: var(--pelocis-white, #fff);
}

.feature-three__card:hover .feature-three__card__text {
  color: var(--pelocis-white, #fff);
}

.feature-three__card:hover .feature-three__card__btn {
  color: var(--pelocis-base, #757ee2);
}

.feature-three__card:hover .feature-three__card__icon {
  color: var(--pelocis-base, #757ee2);
}

.feature-three__card:hover .feature-three__card__icon::before {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.feature-three__card:hover .feature-three__card__icon::after {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.feature-four {
  padding: 110px 0 120px;
  background-color: var(--pelocis-black, #222222);
  position: relative;
}

@media (max-width: 767px) {
  .feature-four {
    padding: 70px 0 80px;
  }
}

.feature-four__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-four .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.feature-four .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
}

.feature-four__card {
  position: relative;
  background-color: var(--pelocis-white, #fff);
  border-radius: 50px 10px 50px 10px;
  overflow: hidden;
  transition: all 300ms ease;
}

.feature-four__card__image {
  position: relative;
}

.feature-four__card__image img {
  border-radius: 50px 10px 50px 10px;
  width: 100%;
}

.feature-four__card__title {
  background-color: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.3);
  padding: 31px 100px 30px 30px;
  transition: all 500ms ease;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin: 0;
}

.feature-four__card:hover .feature-four__card__title {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.feature-four__card__icon {
  width: 90px;
  height: 87px;
  font-size: 44px;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 400ms ease;
}

.feature-four__card:hover .feature-four__card__icon {
  background-color: var(--pelocis-black, #222222);
  width: 81px;
  height: 75px;
  border-radius: 5px;
  top: 6px;
  right: 6px;
}

.feature-four__card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding: 24px 30px 25px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0;
}

.feature-four__card__link {
  position: absolute;
  right: 45px;
  top: -20px;
  transform: scale(0.8);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.feature-four__card__link a {
  width: 42px;
  height: 42px;
  font-size: 15px;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-white, #fff);
}

.feature-four__card__link a:hover {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.feature-four__card:hover .feature-four__card__link {
  right: 15px;
  top: -20px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.feature-four__card:hover {
  border-top-right-radius: 0px;
}

.feature-four__button {
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.feature-four__button .pelocis-btn::after {
  background-color: var(--pelocis-white, #fff);
}

.feature-four__button .pelocis-btn:hover {
  color: var(--pelocis-black, #222222);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 991px) {
  .about-one {
    padding: 80px 0;
  }
}

.about-one .sec-title {
  padding-bottom: 21px;
}

.about-one__title {
  position: relative;
}

.about-one__title__shape {
  position: absolute;
  right: 68px;
  top: -25px;
}

@media (max-width: 768px) {
  .about-one__title__shape {
    position: absolute;
    top: -20px;
    right: 10%;
    width: 40px;
  }
}

.about-one .service-details__card__list {
  margin-top: 26px;
  margin-bottom: 27px;
}

.about-one .service-details__card__list li {
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding-left: 32px;
  position: relative;
}

.about-one .service-details__card__list li span {
  color: var(--pelocis-black3, #000);
  margin: 0;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}

.about-one__image {
  position: relative;
  display: inline-block;
}

.about-one__image img {
  max-width: none;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .about-one__image img {
    max-width: 100%;
  }
}

.about-one__image__two {
  position: absolute;
  bottom: -50px;
  left: 0px;
  z-index: 10;
}

@media (min-width: 992px) {
  .about-one__image__two {
    bottom: 0;
    left: -120px;
  }
}

.about-one__image__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 11;
  animation: shapeMove 4s linear 0s infinite;
}

@media (min-width: 992px) {
  .about-one__image__shape {
    bottom: auto;
    top: 200px;
    right: auto;
    left: -100px;
  }
}

.about-one__shape--one {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 78 326" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M2.5 321.178V4.67129L37.6133 28.0801L39 29.0046L40.3867 28.0801L75.5 4.67129V321.178L40.4407 296.457L39 295.441L37.5593 296.457L2.5 321.178Z"  stroke="white" stroke-width="5"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 78 326" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M2.5 321.178V4.67129L37.6133 28.0801L39 29.0046L40.3867 28.0801L75.5 4.67129V321.178L40.4407 296.457L39 295.441L37.5593 296.457L2.5 321.178Z"  stroke="white" stroke-width="5"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -36px;
  width: 78px;
  height: 326px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-one__experiance {
  transform: rotate(-90deg);
  font-size: 29px;
  font-weight: 500;
  line-height: 47px;
  text-wrap: nowrap;
}

.about-one__content {
  position: relative;
  padding-top: 0;
}

@media (max-width: 991px) {
  .about-one__content {
    padding-top: 40px;
  }
}

@media (min-width: 1200px) {
  .about-one__content {
    padding-left: 75px;
  }
}

.about-one__content__box {
  display: flex;
  flex-direction: column;
  margin-left: 0px;
  z-index: 1;
  position: relative;
  border: 3px solid var(--pelocis-white, #fff);
  background-color: var(--pelocis-gray, #F5F2EF);
  border-radius: 20px 0px 0px 20px;
}

.about-one__content__box::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 25px;
  height: 30px;
  background-color: var(--pelocis-base, #757ee2);
}

@media (min-width: 992px) {
  .about-one__content__box {
    margin-left: -166px;
  }
}

@media (min-width: 768px) {
  .about-one__content__box {
    flex-direction: row;
  }
}

.about-one__content__box-left {
  position: relative;
  flex-shrink: 0;
}

.about-one__content__box-left img {
  max-width: 100%;
  border-radius: 20px 0px 0px 20px;
}

.about-one__content__box-right {
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .about-one__content__box-right {
    padding: 10px 40px;
  }
}

.about-one__content__box-right ul li {
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.about-one__content__box-right ul li:last-child {
  margin-bottom: 0;
}

.about-one__content__box-right ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  background-color: var(--pelocis-black3, #000);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  font-size: 10px;
  color: var(--pelocis-white, #fff);
}

.about-one__text {
  margin: 0;
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 22px;
}

.about-two {
  position: relative;
  padding: 120px 0;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
}

@media (max-width: 767px) {
  .about-two {
    padding: 80px 0;
  }
}

.about-two__shape {
  width: 35%;
  height: 100%;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1199px) {
  .about-two__shape {
    display: none;
  }
}

.about-two__shape__two {
  position: absolute;
  left: 0px;
  bottom: 30px;
  animation: messageMove 2s linear 0s infinite;
}

@media (max-width: 1500px) {
  .about-two__shape__two {
    display: none;
  }
}

.about-two__shape__three {
  position: absolute;
  right: 0;
  bottom: 70px;
  animation: zumpBottom 2s linear 0s infinite;
}

@media (max-width: 1500px) {
  .about-two__shape__three {
    display: none;
  }
}

.about-two__img {
  position: relative;
  display: inline-block;
  border: 15px solid var(--pelocis-white, #fff);
  border-radius: 50%;
  float: right;
}

@media (max-width: 1199px) {
  .about-two__img {
    float: none;
    margin: 0 0 40px;
  }
}

.about-two__img img {
  max-width: inherit;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .about-two__img img {
    max-width: 100%;
  }
}

.about-two .sec-title {
  padding-bottom: 20px;
}

.about-two__content {
  position: relative;
}

.about-two__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 20px;
}

.about-two__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-two__list li {
  display: flex;
  align-items: center;
  gap: 26px;
  border-left: 2px solid var(--pelocis-black, #222222);
  padding-left: 23px;
  margin-bottom: 30px;
  position: relative;
  transition: all 500ms ease;
}

@media (min-width: 1200px) {
  .about-two__list li {
    padding-right: 10px;
  }
}

.about-two__list li span {
  font-size: 45px;
  color: var(--pelocis-black, #222222);
  transition: all 300ms ease;
}

.about-two__list li::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--pelocis-base, #757ee2);
  transition: width 500ms ease;
}

.about-two__list li::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--pelocis-base, #757ee2);
  transition: width 500ms ease;
}

.about-two__list li:hover {
  border-color: var(--pelocis-base, #757ee2);
}

.about-two__list li:hover::after {
  width: 47px;
}

.about-two__list li:hover::before {
  width: 47px;
}

.about-two__list li:hover span::before {
  color: var(--pelocis-base, #757ee2);
}

.about-two__list__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 5px;
}

.about-two__list__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.about-two__author {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

@media (max-width: 767px) {
  .about-two__author {
    display: block;
  }
}

.about-two__author li {
  width: 50%;
  border-top: 1px solid var(--pelocis-border-color, #DDDDDD);
  height: inherit;
  padding-top: 31px;
}

@media (max-width: 767px) {
  .about-two__author li {
    width: 100%;
    border: none;
  }
}

.about-two__author li:last-child {
  border-left: 1px solid var(--pelocis-border-color, #DDDDDD);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .about-two__author li:last-child {
    align-items: flex-start;
    justify-content: flex-start;
    border: none;
  }
}

.about-two__author__img {
  width: 75px;
  height: 75px;
  border: 1px solid var(--pelocis-base, #757ee2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__author__img img {
  width: 70px;
  height: 70px;
  border-radius: 4px;
}

.about-two__author__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 2px;
}

.about-two__author__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0;
}

.about-two__author__signature {
  display: block;
  font-family: var(--pelocis-special-font2, "Bonheur Royale", cursive);
  font-size: 44px;
  font-weight: 400;
  line-height: 51.04px;
  text-align: center;
  color: var(--pelocis-black, #222222);
}

.about-three {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .about-three {
    padding: 70px 0;
  }
}

.about-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, rgba(var(--pelocis-base-rgb, 226, 164, 117)) 45%, rgba(var(--pelocis-black2-rgb, 51, 51, 51), 0.95) 100%);
}

.about-three__shape-one {
  position: absolute;
  left: -10px;
  bottom: 0;
}

.about-three__shape-one img {
  animation: leafMove 2s linear 0s infinite;
}

.about-three__shape-two {
  position: absolute;
  right: 11%;
  top: 85px;
}

.about-three__shape-two img {
  animation: leafMove 2s linear 0s infinite;
}

.about-three .container {
  position: relative;
}

.about-three__content {
  position: relative;
  width: 100%;
}

.about-three__content .sec-title {
  padding-bottom: 21px;
}

.about-three__content .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
}

.about-three__content .sec-title__shape::before {
  background-color: var(--pelocis-black, #222222);
}

.about-three__content .sec-title__title,
.about-three__content .sec-title__tagline {
  color: var(--pelocis-white, #fff);
}

.about-three__content__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 37px;
}

.about-three__content__text span {
  color: var(--pelocis-base, #757ee2);
  font-weight: 600;
}

@media (min-width: 1200px) {
  .about-three__content__text {
    margin-right: 0;
  }
}

.about-three__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin: 0 0 59px;
}

@media (min-width: 1200px) {
  .about-three__text {
    padding-right: 70px;
  }
}

.about-three__card {
  display: flex;
  margin-bottom: 26px;
}

@media (min-width: 1200px) {
  .about-three__card {
    margin-right: -42px;
  }
}

@media (max-width: 767px) {
  .about-three__card {
    flex-direction: column;
  }
}

.about-three__card__list {
  width: 65.5%;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-three__card__list {
    width: 100%;
  }
}

.about-three__card__list li span {
  color: var(--pelocis-black, #222222);
  font-size: 20px;
  margin-right: 8px;
}

.about-three__card__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  margin-bottom: 26px;
}

.about-three__card__item h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin: 0;
}

.about-three__card__item:hover .about-three__card__icon {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.about-three__card__icon {
  width: 87px;
  height: 87px;
  background-color: var(--pelocis-gray, #F5F2EF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pelocis-base, #757ee2);
  font-size: 45px;
  transition: all 400ms ease;
}

.about-three__card__exp {
  width: 34.5%;
  padding: 52px 20px 34px;
  background-color: var(--pelocis-black, #222222);
  position: relative;
  z-index: 2;
  text-align: center;
  max-height: 213px;
  margin-left: 16px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .about-three__card__exp {
    width: 250px;
    margin-top: 30px;
  }
}

.about-three__card__exp::after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: -14px;
  width: 108%;
  height: 107%;
  border-left: 6px solid var(--pelocis-base, #757ee2);
  border-bottom: 6px solid var(--pelocis-base, #757ee2);
}

.about-three__card__exp__number {
  font-size: 70px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
}

@media (max-width: 767px) {
  .about-three__card__exp__number {
    font-size: 44px;
  }
}

.about-three__card__exp__text {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: var(--pelocis-white, #fff);
  margin-bottom: 0;
}

.about-three__img {
  position: relative;
  border: 12px solid var(--pelocis-white, #fff);
  border-radius: 10px;
  display: inline-block;
  margin-top: 11px;
}

@media (max-width: 1199px) {
  .about-three__img {
    margin: 45px 0 0 20px;
  }
}

@media (max-width: 767px) {
  .about-three__img {
    margin: 45px 0 0 0;
  }
}

.about-three__img img {
  border-radius: 10px;
  width: 100%;
}

.about-four {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 120px 0 0;
}

@media (max-width: 767px) {
  .about-four {
    padding: 80px 0 0;
  }
}

.about-four::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background-color: var(--pelocis-gray, #F5F2EF);
  width: 66%;
  height: 382px;
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
  z-index: -1;
}

.about-four__image {
  position: relative;
  z-index: 2;
}

@media (min-width: 1300px) {
  .about-four__image {
    margin-left: -30px;
    margin-right: 30px;
  }
}

@media (max-width: 1199px) {
  .about-four__image {
    margin-left: 140px;
    margin-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .about-four__image {
    margin-left: 0;
  }
}

.about-four__image>img {
  width: 100%;
}

.about-four__image__two {
  position: absolute;
  left: -148px;
  bottom: 116px;
  border: 10px solid var(--pelocis-white, #fff);
  z-index: 11;
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .about-four__image__two {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-four__image__two {
    display: none;
  }
}

.about-four__image__shape {
  position: absolute;
  top: -30px;
  left: -35px;
  z-index: -1;
  animation: messageMove 2s linear 0s infinite;
}

@media (max-width: 1299px) {
  .about-four__image__shape {
    display: none;
  }
}

.about-four__image__video {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.about-four__image__video__text {
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: var(--pelocis-white, #fff);
  text-transform: uppercase;
}

.about-four__image__video .video-popup {
  width: 85px;
  height: 85px;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-four__image__video .video-popup i {
  font-size: 22px;
  width: 52px;
  height: 52px;
  border: 2px solid var(--pelocis-white, #fff);
  color: var(--pelocis-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  transform: scale(1);
}

.about-four__image__video .video-popup:hover i {
  transform: scale(1.05);
}

.about-four__content {
  position: relative;
  margin: -10px 0 0;
}

.about-four__content .sec-title {
  padding-bottom: 20px;
}

.about-four__content__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 32px;
}

.about-four__box {
  position: relative;
}

.about-four__box__icon {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--pelocis-black3, #000);
  font-size: 44px;
  margin-bottom: 24px;
  transition: all 500ms ease;
}

.about-four__box__icon i:last-child {
  font-size: 13px;
  color: var(--pelocis-border-color, #DDDDDD);
  transition: all 500ms ease;
  position: relative;
  top: 4px;
}

.about-four__box:hover .about-four__box__icon {
  color: var(--pelocis-base, #757ee2);
}

.about-four__box:hover .about-four__box__icon i:last-child {
  color: var(--pelocis-base, #757ee2);
}

.about-four__box__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin: 0 0 13px;
}

.about-four__box__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0;
}

.about-four__feature {
  display: flex;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-left: none;
  margin: 45px 0 0;
}

.about-four__feature__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 75%;
  border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 33px 0 23px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-four__feature__list {
    flex-direction: column;
  }
}

.about-four__feature__list li {
  width: 50%;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black2, #333333);
  display: inline-flex;
  align-items: center;
  margin-bottom: 11px;
  gap: 10px;
  transition: all 500ms ease;
}

.about-four__feature__list li span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.about-four__feature__list li span:hover {
  background-size: 100% 1px;
}

.about-four__feature__list li:hover {
  color: var(--pelocis-base, #757ee2);
}

@media (max-width: 767px) {
  .about-four__feature__list li {
    width: 100%;
  }
}

.about-four__feature__image {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .about-four__feature__image {
    width: 35%;
  }
}

.about-four__feature__image__item {
  padding: 3px;
  border-radius: 4px;
  border: 1px solid var(--pelocis-base, #757ee2);
}

.about-four__feature__image__item img {
  border-radius: 4px;
}

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

@media (max-width: 767px) {
  .about-four__btns {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.about-four__signature {
  padding: 30px 0;
  border-left: 1px solid var(--pelocis-border-color, #DDDDDD);
  width: 50%;
  font-family: var(--pelocis-special-font2, "Bonheur Royale", cursive);
  font-size: 44px;
  font-weight: 400;
  line-height: 51px;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .about-four__signature {
    border: none;
  }
}

.awards {
  padding: 49px 0;
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
}

@media (max-width: 767px) {
  .awards {
    padding: 40px 0;
  }
}

.awards__left-bg {
  width: 44.6%;
  height: 100%;
  clip-path: polygon(0% 0%, 73% 0, 100% 50%, 73% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1199px) {
  .awards__left-bg {
    display: none;
  }
}

.awards__left-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 6, 0.7);
  position: absolute;
  left: 0;
  top: 0;
}

.awards__review {
  position: relative;
  z-index: 2;
  background-color: var(--pelocis-white, #fff);
  height: 552px;
  width: 552px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .awards__review {
    height: 335px;
    width: 335px;
    padding: 50px;
  }
}

.awards__review img {
  max-width: 100%;
  height: auto;
}

.awards__review__content {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  border: 10px solid var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  right: -22px;
  top: 47px;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-heading-font, "Solway", serif);
}

@media (max-width: 767px) {
  .awards__review__content {
    width: 128px;
    height: 128px;
    font-size: 20px;
  }
}

.awards__review__content__rate {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: block;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  margin-top: 9px;
}

@media (max-width: 767px) {
  .awards__review__content__rate {
    font-size: 15px;
  }
}

.awards__content {
  position: relative;
}

@media (min-width: 1200px) {
  .awards__content {
    padding-left: 50px;
  }
}

@media (max-width: 1199px) {
  .awards__content {
    margin-top: 45px;
  }
}

.awards__content .sec-title {
  padding-bottom: 21px;
}

.awards__content__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 26px;
}

.awards__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 430px;
}

.awards__item {
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.awards__item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.awards__item__content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.awards__item__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--pelocis-black, #222222);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
}

.awards__item__icon span {
  transition: all 500ms ease;
  font-size: 10px;
  color: var(--pelocis-white, #fff);
}

.awards__item__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black2, #333333);
  margin-bottom: 0;
}

.awards__item__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0;
}

.awards__item:hover .awards__item__icon {
  background-color: var(--pelocis-base, #757ee2);
}

.awards__item:hover .awards__item__icon span {
  transform: rotate(-45deg);
}

.awards__shape--right {
  position: absolute;
  right: 50px;
  bottom: 50px;
  animation: leafMove 2s linear 0s infinite;
}

@media (max-width: 1700px) {
  .awards__shape--right {
    display: none;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .service-one {
    padding: 70px 0 80px;
  }
}

.service-one .service-card {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  position: relative;
  transition: all 500ms ease-in-out;
  text-align: center;
}

.service-one .service-card:first-child,
.service-one .service-card:nth-child(2) {
  border-bottom: none;
  border-right: none;
}

@media (max-width: 991px) {
  .service-one .service-card:nth-child(2) {
    border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
  }
}

.service-one .service-card:nth-child(3) {
  border-bottom: none;
}

@media (max-width: 991px) {
  .service-one .service-card:nth-child(3) {
    border-right: none;
  }
}

.service-one .service-card:nth-child(4),
.service-one .service-card:nth-child(5) {
  border-right: none;
}

@media (max-width: 991px) {
  .service-one .service-card:nth-child(4) {
    border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
    border-bottom: none;
  }
}

@media (max-width: 767px) {

  .service-one .service-card:first-child,
  .service-one .service-card:nth-child(3),
  .service-one .service-card:nth-child(5) {
    border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
  }
}

.service-one .service-card__inner {
  padding: 40px 30px;
  transition: all 0.5s ease-in-out;
  position: relative;
  background-size: cover;
  background-position: center;
}

.service-one .service-card__hover {
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--pelocis-base, #757ee2);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.service-one .service-card__hover::after {
  background-color: rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.service-one .service-card:hover .service-card__hover {
  opacity: 1;
  visibility: visible;
}

.service-one .service-card__shape {
  width: 218px;
  height: 80px;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(36% 100%, 65% 100%, 100% 0, 0 0);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(60%);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-in-out;
  z-index: 1;
}

.service-one .service-card:hover .service-card__shape {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scaleY(100%);
}

.service-one .service-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  margin-bottom: 18px;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-one .service-card__icon::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 50%;
  height: 50%;
  background-color: var(--pelocis-black, #222222);
  transform: rotate(41deg);
  transition: all 500ms ease-in-out;
  z-index: -1;
}

.service-one .service-card__icon::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 50%;
  height: 50%;
  background-color: var(--pelocis-black, #222222);
  transform: rotate(41deg);
  transition: all 500ms ease-in-out;
  z-index: -1;
}

.service-one .service-card:hover .service-card__icon::after {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  left: 0;
}

.service-one .service-card:hover .service-card__icon::before {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  right: 0;
}

.service-one .service-card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
}

.service-one .service-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-one .service-card__title a:hover {
  background-size: 100% 1px;
}

.service-one .service-card__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.service-one .service-card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
}

.service-one .service-card__link {
  color: var(--pelocis-black2, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1;
  position: relative;
}

.service-one .service-card__link span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 19px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-one .service-card__link span:hover {
  background-size: 100% 1px;
}

.service-one .service-card__link i {
  font-size: 12px;
  line-height: 19px;
}

.service-one .service-card__link:hover {
  color: var(--pelocis-base, #757ee2);
}

.service-card-two {
  background-repeat: no-repeat;
  background-position: top left;
  text-align: center;
  padding: 50px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  background-color: var(--pelocis-white, #fff);
}

@media (max-width: 1199px) {
  .service-card-two {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 992px) {
  .service-card-two__carousel .owl-nav {
    display: none;
  }
}

.service-card-two__image {
  width: 210px;
  height: 210px;
  border: 6px solid var(--pelocis-white, #fff);
  box-shadow: 0 0 0 1px var(--pelocis-base, #757ee2);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 30px;
  background-color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
}

.service-card-two__image img {
  width: 100%;
  border-radius: 50%;
}

.service-card-two__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  transition: all 500ms linear;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}

.service-card-two:hover .service-card-two__image {
  border-color: var(--pelocis-base, #757ee2);
}

.service-card-two:hover .service-card-two__image::after {
  animation: zoom-hover 0.95s;
}

.service-card-two__content__shape {
  display: block;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}

.service-card-two__icon {
  width: 106px;
  height: 106px;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pelocis-white, #fff);
  font-size: 60px;
  position: absolute;
  left: 0px;
  top: 0;
  line-height: 1;
  transform: translateX(calc(-50% + 30px));
}

.service-card-two__icon i {
  display: block;
  transform: scale(1);
  transition: transform 500ms ease;
}

.service-card-two__icon:hover i {
  transform: scale(0.9);
}

.service-card-two__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--pelocis-black, #222222);
  font-size: 22px;
  line-height: 1.2em;
  margin-top: -5px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .service-card-two__title {
    font-size: 24px;
  }
}

.service-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-card-two__title a:hover {
  background-size: 100% 1px;
}

.service-card-two__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.service-card-two__text {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
  margin-top: 10px;
  padding-bottom: 21px;
  margin-bottom: 5px;
}

.service-card-two__link {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--pelocis-letter-space, 0.1em);
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
  line-height: 1em;
  position: relative;
  text-shadow: 0 0 0.5px currentColor;
  justify-content: center;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 11.5px 0;
}

.service-card-two__link:hover {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.service-card-two__link i {
  font-size: 16px;
  margin-left: 9px;
}

.service-one-home {
  padding: 120px 0;
  padding-top: 110px;
  background-color: var(--pelocis-gray, #F5F2EF);
  position: relative;
  overflow: hidden;
  counter-reset: count;
}

@media (max-width: 991px) {
  .service-one-home {
    padding: 80px 0;
  }
}

.service-one-home--service-carousel {
  position: relative;
  margin-bottom: -90px;
  padding-bottom: 210px;
}

@media (max-width: 991px) {
  .service-one-home--service-carousel {
    margin-bottom: -150px;
    padding-bottom: 240px;
  }
}

@media (max-width: 767px) {
  .service-one-home--service-carousel {
    margin-bottom: -220px;
    padding-bottom: 290px;
  }
}

.service-one-home .container {
  z-index: 1;
  position: relative;
}

.service-one-home__shape-one {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1100px) {
  .service-one-home__shape-one {
    display: none;
  }
}

.service-one-home__shape-two {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1100px) {
  .service-one-home__shape-two {
    display: none;
  }
}

.service-one-home__shape-three {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1100px) {
  .service-one-home__shape-three {
    display: none;
  }
}

.service-one-home__title {
  width: 52%;
  position: relative;
}

@media (max-width: 991px) {
  .service-one-home__title {
    width: 100%;
  }
}

.service-one-home__title__shape {
  position: absolute;
  right: 68px;
  top: -25px;
}

@media (max-width: 768px) {
  .service-one-home__title__shape {
    position: absolute;
    top: -15px;
    right: 10%;
    width: 40px;
  }
}

.service-one-home__text {
  width: 44%;
}

@media (max-width: 991px) {
  .service-one-home__text {
    width: 100%;
    margin-bottom: 20px;
  }
}

.service-one-home__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

.service-one-home .home-services__card {
  background-color: var(--pelocis-white, #fff);
  position: relative;
  overflow: hidden;
  counter-increment: count;
}

.service-one-home .home-services__card__shape--one {
  width: 180px;
  height: 137px;
  border-radius: 50%;
  position: absolute;
  right: 19px;
  top: -80px;
  background-color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
}

.service-one-home .home-services__card__shape--two {
  width: 180px;
  height: 137px;
  border-radius: 50%;
  position: absolute;
  right: -133px;
  top: -50px;
  background-color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
}

.service-one-home .home-services__card__content {
  padding: 11px 30px;
  padding-top: 66px;
}

.service-one-home .home-services__card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  margin-bottom: 18px;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  position: absolute;
  right: 30px;
  top: 30px;
  transition: all 500ms ease;
}

.service-one-home .home-services__card__count {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  color: rgba(var(--pelocis-black3-rgb, 0, 0, 0), 0.1);
  transition: all 500ms ease;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-one-home .home-services__card__count::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}

.service-one-home .home-services__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 12px;
}

.service-one-home .home-services__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-one-home .home-services__card__title a:hover {
  background-size: 100% 1px;
}

.service-one-home .home-services__card__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.service-one-home .home-services__card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 16px;
}

.service-one-home .home-services__card__image {
  position: relative;
}

.service-one-home .home-services__card__image img {
  width: 100%;
}

.service-one-home .home-services__card__link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: all 500ms ease;
}

.service-one-home .home-services__card__link i {
  display: inline-block;
  font-weight: normal;
  transform: rotate(-45deg);
}

.service-one-home .home-services__card__hover {
  width: 100%;
  height: 100%;
  background: rgba(var(--pelocis-black2-rgb, 51, 51, 51), 0.7);
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.service-one-home .home-services__card__hover-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 24px;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-100px);
  transition: all 500ms ease;
}

.service-one-home .home-services__card:hover .home-services__card__icon {
  background-color: var(--pelocis-black, #222222);
}

.service-one-home .home-services__card:hover .home-services__card__shape--two {
  background-color: var(--pelocis-base, #757ee2);
}

.service-one-home .home-services__card:hover .home-services__card__shape--one {
  background-color: var(--pelocis-base, #757ee2);
}

.service-one-home .home-services__card:hover .home-services__card__count {
  color: var(--pelocis-base, #757ee2);
}

.service-one-home .home-services__card:hover .home-services__card__link {
  right: -100px;
  bottom: 100px;
}

.service-one-home .home-services__card:hover .home-services__card__hover {
  opacity: 1;
  visibility: visible;
}

.service-one-home .home-services__card:hover .home-services__card__hover-link {
  transform: translateX(0);
}

.service-one-home__carousel.owl-carousel {
  position: relative;
}

.service-one-home__carousel.owl-carousel .owl-dots {
  position: relative;
  margin: 50px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  height: 4px;
  background-color: var(--pelocis-white, #fff);
  cursor: pointer;
}

.service-one-home__carousel.owl-carousel .owl-dots button {
  flex-grow: 1;
  height: 100%;
  background-color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

.service-one-home__carousel.owl-carousel .owl-dots button:hover,
.service-one-home__carousel.owl-carousel .owl-dots button.active {
  background-color: var(--pelocis-base, #757ee2);
}

.service-three {
  background-color: var(--pelocis-black, #222222);
  position: relative;
  padding: 260px 0 120px;
  overflow: hidden;
  counter-reset: count;
}

@media (max-width: 767px) {
  .service-three {
    padding: 220px 0 80px;
  }
}

.service-three--about-page {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .service-three--about-page {
    padding: 70px 0 80px;
  }
}

.service-three .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.service-three .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
  border-color: var(--pelocis-white, #fff);
}

.service-three__shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
}

.service-three__shape-two {
  position: absolute;
  bottom: 0;
  right: 0;
}

.service-three__card {
  background-color: var(--pelocis-white, #fff);
  padding: 10px;
  border-radius: 10px;
  position: relative;
  counter-increment: count;
  overflow: hidden;
}

.service-three__card__image {
  margin-bottom: 15px;
}

.service-three__card__image img {
  width: 100%;
  border-radius: 10px;
}

.service-three__card__content {
  padding: 20px 20px 25px;
  position: relative;
}

.service-three__card__icon {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  background-color: var(--pelocis-base, #757ee2);
  border: 4px solid var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  top: -57px;
  transition: all 0.4s ease;
  color: var(--pelocis-white, #fff);
  font-size: 42px;
}

.service-three__card__count {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(var(--pelocis-black3-rgb, 0, 0, 0), 0.1);
  transition: all 0.4s ease;
  margin: 0 0 14px;
}

.service-three__card__count::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}

.service-three__card__count i {
  font-size: 12px;
  position: relative;
  top: 1px;
}

.service-three__card:hover .service-three__card__count {
  color: var(--pelocis-base, #757ee2);
}

.service-three__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 12px;
}

.service-three__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-three__card__title a:hover {
  background-size: 100% 1px;
}

.service-three__card__title a:hover {
  color: var(--pelocis-base, #757ee2);
}

.service-three__card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 17px;
}

.service-three__card__link {
  color: var(--pelocis-black2, #333333);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  z-index: 1;
  position: relative;
}

.service-three__card__link span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 19px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-three__card__link span:hover {
  background-size: 100% 1px;
}

.service-three__card__link i {
  font-size: 12px;
  line-height: 19px;
}

.service-three__card__link:hover {
  color: var(--pelocis-base, #757ee2);
}

.service-three__card__shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  transition: all 0.6s ease;
}

.service-three__card:hover .service-three__card__icon {
  background-color: var(--pelocis-black, #222222);
}

.service-three__card:hover .service-three__card__shape {
  bottom: -20px;
  right: -40px;
}

.services-four {
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
  padding: 110px 0 120px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
  counter-reset: count;
}

@media (max-width: 767px) {
  .services-four {
    padding: 70px 0 80px;
  }
}

.services-four__bottom-bg {
  background-color: var(--pelocis-black, #222222);
  height: 468px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
}

.services-four__text {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin: 35px 0 0;
}

@media (max-width: 991px) {
  .services-four__text {
    margin: -20px 0 45px;
  }
}

.services-four__card {
  border-bottom-right-radius: 50px;
  transition: all 500ms ease;
  background-color: var(--pelocis-white, #fff);
  position: relative;
  counter-increment: count;
  margin-top: 40px;
}

.services-four__card:hover {
  background-color: var(--pelocis-base, #757ee2);
}

.services-four__card__image {
  position: relative;
}

.services-four__card__image img {
  width: 100%;
}

.services-four__card__icon {
  width: 84px;
  height: 84px;
  background-color: var(--pelocis-base, #757ee2);
  border: 4px solid var(--pelocis-white, #fff);
  position: absolute;
  top: -40px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
  font-size: 44px;
  color: var(--pelocis-white, #fff);
}

.services-four__card:hover .services-four__card__icon {
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
}

.services-four__card__count {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  color: rgba(var(--pelocis-black3-rgb, 0, 0, 0), 0.2);
  position: absolute;
  top: -30px;
  right: 35px;
  z-index: -1;
  transition: all 300ms ease;
}

.services-four__card__count::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}

.services-four__card:hover .services-four__card__count {
  color: var(--pelocis-base, #757ee2);
}

.services-four__card__content {
  padding: 34px 30px 37px;
  position: relative;
}

.services-four__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin: 0 0 12px;
}

.services-four__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.services-four__card__title a:hover {
  background-size: 100% 1px;
}

.services-four__card:hover .services-four__card__title {
  color: var(--pelocis-white, #fff);
}

.services-four__card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 23px;
  transition: all 300ms ease;
}

.services-four__card:hover .services-four__card__text {
  color: var(--pelocis-white, #fff);
}

.services-four__card__link {
  color: var(--pelocis-black2, #333333);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  z-index: 1;
  position: relative;
}

.services-four__card__link span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 19px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.services-four__card__link span:hover {
  background-size: 100% 1px;
}

.services-four__card__link i {
  font-size: 12px;
  line-height: 19px;
}

.services-four__card:hover .services-four__card__link {
  color: var(--pelocis-white, #fff);
}

.services-four__bottom {
  margin-top: 55px;
  position: relative;
  z-index: 1;
}

.services-four__bottom__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .services-four__bottom__right {
    margin-bottom: 30px;
  }
}

.services-four__bottom__right__text {
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin: 0;
}

.services-four__bottom .pelocis-btn::after {
  background-color: var(--pelocis-white, #fff);
}

.services-four__bottom .pelocis-btn:hover {
  color: var(--pelocis-black, #222222);
}

@media (max-width: 991px) {
  .services-four__bottom .justify-content-end {
    justify-content: flex-start !important;
  }
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
  padding: 120px 0 90px;
}

@media (max-width: 767px) {
  .service-details {
    padding: 80px 0 60px;
  }
}

.service-details__content {
  position: relative;
}

.service-details__content img {
  max-width: 100%;
}

.service-details__thumbnail {
  margin-bottom: 25px;
  position: relative;
}

.service-details__thumbnail img {
  width: 100%;
}

.service-details__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-details__text {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 25px;
}

.service-details__text span {
  font-weight: 600;
  color: var(--pelocis-base, #757ee2);
}

.service-details__list {
  padding: 0;
  margin: 0;
}

@media (min-width: 1200px) {
  .service-details__list {
    margin-left: -42px;
  }
}

.service-details__list li {
  color: var(--pelocis-text-dark, #636363);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
  padding-left: 25px;
}

.service-details__list li span {
  position: absolute;
  left: 0;
  top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 10px;
  transition: all ease 300ms;
  color: var(--pelocis-white, #fff);
}

.service-details__list li:hover span {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.service-details__list li+li {
  margin-top: 11px;
}

.service-details .mb20 {
  margin-bottom: 24px;
}

.service-details__list-two {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 0 18px;
  padding: 0;
}

@media (max-width: 767px) {
  .service-details__list-two {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.service-details__list-two li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--pelocis-text-dark, #636363);
}

.service-details__list-two li i {
  display: inline-block;
  color: var(--pelocis-black, #222222);
  font-size: 20px;
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
.instagram-one {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .instagram-one {
    padding: 80px 0;
  }
}

@media (min-width: 1400px) {
  .instagram-one .container {
    max-width: 1380px;
  }
}

.instagram-one__title {
  display: block;
  text-align: center;
  position: relative;
  font-size: 14px;
  color: var(--pelocis-text, #838184);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  letter-spacing: 2.8px;
  margin: 0 auto 39px;
}

.instagram-one__title span {
  display: inline-block;
  background-color: var(--pelocis-white, #fff);
  position: relative;
  z-index: 2;
  padding: 0 28px;
}

@media (max-width: 550px) {
  .instagram-one__title span {
    padding: 0 18px;
  }
}

.instagram-one__title::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 9px;
  width: 518px;
  height: 1px;
  content: "";
  background-color: var(--pelocis-border-color, #DDDDDD);
}

@media (max-width: 550px) {
  .instagram-one__title::after {
    width: 100%;
  }
}

.instagram-one a {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.instagram-one a::before {
  position: absolute;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--pelocis-white, #fff);
  font-size: 30px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transition-delay: 0s;
}

.instagram-one a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.5);
  visibility: hidden;
  transition: all ease 0.4s;
}

.instagram-one a:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.instagram-one a:hover::before {
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}

.instagram-one a img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}

.instagram-one a:hover img {
  transform: scale(1.1) rotate(1.5deg);
  -moz-transform: scale(1.1) rotate(1.5deg);
  -webkit-transform: scale(1.1) rotate(1.5deg);
  -ms-transform: scale(1.1) rotate(1.5deg);
  -o-transform: scale(1.1) rotate(1.5deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.instagram-two {
  position: relative;
  z-index: 2;
  padding: 0 0;
  margin-bottom: -120px;
}

.instagram-two .container {
  max-width: 1670px;
}

.instagram-two a {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.instagram-two a::before {
  position: absolute;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--pelocis-white, #fff);
  font-size: 40px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transition-delay: 0s;
}

.instagram-two a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.9);
  visibility: hidden;
  transition: all ease 0.4s;
}

.instagram-two a:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.instagram-two a:hover::before {
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}

.instagram-two a img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}

.instagram-two a:hover img {
  transform: scale(1.1) rotate(1.5deg);
  -moz-transform: scale(1.1) rotate(1.5deg);
  -webkit-transform: scale(1.1) rotate(1.5deg);
  -ms-transform: scale(1.1) rotate(1.5deg);
  -o-transform: scale(1.1) rotate(1.5deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*--------------------------------------------------------------
# Opening Time
--------------------------------------------------------------*/
.opening {
  position: relative;
  margin-bottom: -85px;
}

@media (max-width: 1199px) {
  .opening {
    margin-bottom: 0;
  }
}

.opening--home-three {
  margin-bottom: 0;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .opening--home-three {
    padding-bottom: 80px;
  }
}

.opening__wrapper {
  background-color: var(--pelocis-base, #757ee2);
  position: relative;
  z-index: 2;
  padding: 39px 0;
}

@media (max-width: 767px) {
  .opening__wrapper {
    padding: 30px 20px;
    text-align: center;
  }
}

.opening__wrapper::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 100%;
  content: "";
  opacity: 0.102;
  background-image: linear-gradient(90deg, rgba(var(--pelocis-black-rgb, 34, 34, 34), 0) 0%, rgba(var(--pelocis-black-rgb, 34, 34, 34), 1) 100%);
}

@media (max-width: 991px) {
  .opening__wrapper::after {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .opening__wrapper::after {
    width: 155px;
  }
}

.opening__icon {
  font-size: 65px;
  color: var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0 0;
  margin-right: -10px;
  position: relative;
  z-index: 2;
}

.opening__title {
  color: var(--pelocis-white, #fff);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  margin: 27px -30px 0 33px;
  position: relative;
}

@media (max-width: 767px) {
  .opening__title {
    margin: 20px 0 0;
  }
}

.opening__info {
  font-size: 12px;
  line-height: 30px;
  color: var(--pelocis-white, #fff);
  text-transform: uppercase;
  padding: 12px 0 20px;
  margin: 0 0 0 -14px;
}

@media (max-width: 991px) {
  .opening__info {
    margin: 0 0 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .opening__info {
    margin: 0 0 0;
  }
}

.opening__info--last {
  margin-left: -45px;
  padding-left: 60px;
  border-left: 1px solid rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.2);
}

@media (max-width: 991px) {
  .opening__info--last {
    margin: 0 0 0;
    padding: 0;
    border: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .opening__info--last {
    margin-left: -30px;
    padding-left: 20px;
  }
}

.opening__info__text {
  display: block;
  font-size: 20px;
  text-transform: none;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}

body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--pelocis-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.08);
}

body.boxed-wrapper .topbar-one__inner__shape {
  display: none;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  position: relative;
  counter-reset: count;
  padding: 120px 0 90px;
}

@media (max-width: 767px) {
  .work-process-one {
    padding: 80px 0 50px;
  }
}

.work-process-one .sec-title {
  text-align: center;
}

.work-process-one__border {
  width: 100%;
  height: 2px;
  background-color: var(--pelocis-base, #757ee2);
  top: 103px;
  position: relative;
}

@media (max-width: 767px) {
  .work-process-one__border {
    display: none;
  }
}

.work-process-one__border::after {
  position: absolute;
  left: 0;
  top: -5px;
  width: 11px;
  height: 11px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 50%;
  content: "";
}

.work-process-one__border::before {
  position: absolute;
  right: 0;
  top: -5px;
  width: 11px;
  height: 11px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 50%;
  content: "";
}

.work-process-one__gradiant-left {
  height: 100%;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 5%;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(-45deg, rgba(var(--pelocis-base-rgb, 226, 164, 117), 1) 0%, rgba(var(--pelocis-black-rgb, 34, 34, 34), 1) 100%) 1;
}

.work-process-one__gradiant-right {
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 5%;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(-45deg, rgba(var(--pelocis-black-rgb, 34, 34, 34), 1) 0%, rgba(var(--pelocis-base-rgb, 226, 164, 117), 1) 100%) 1;
}

.work-process-one__item {
  position: relative;
  counter-increment: count;
  margin-bottom: 30px;
}

.work-process-one__item__thumb {
  display: inline-block;
  width: 202px;
  height: 202px;
  border: 2px solid var(--pelocis-base, #757ee2);
  background-color: var(--pelocis-white, #fff);
  border-radius: 50%;
  padding: 5px;
  position: relative;
  margin-bottom: 30px;
}

.work-process-one__item__thumb-wrap {
  background-color: var(--pelocis-black, #222222);
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.work-process-one__item__thumb-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(var(--pelocis-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  transition: all 500ms linear;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}

.work-process-one__item__thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.3;
}

.work-process-one__item__thumb__number {
  width: 67px;
  height: 67px;
  background-color: var(--pelocis-base, #757ee2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--pelocis-white, #fff);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: -9px;
  top: 5px;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}

.work-process-one__item__thumb__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: -6px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-process-one__item__thumb__icon {
  width: 60px;
  height: 60px;
  font-size: 60px;
  color: var(--pelocis-base, #757ee2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.work-process-one__item:hover .work-process-one__item__thumb-wrap::after {
  -webkit-animation: zoom-hover 0.95s;
  animation: zoom-hover 0.95s;
}

.work-process-one__item:hover .work-process-one__item__thumb__number {
  transform: scale(0.95);
}

.work-process-one__item__content {
  position: relative;
  box-shadow: 0px 0px 60px 0px rgba(var(--pelocis-black3-rgb, 0, 0, 0), 0.07);
  background-color: var(--pelocis-white, #fff);
  border-radius: 100px;
  padding: 24px 20px 26px;
}

.work-process-one__item__content::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  content: "";
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 10px 25px;
  border-color: transparent transparent var(--pelocis-white, #fff) transparent;
}

.work-process-one__item__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 5px;
}

.work-process-one__item__text {
  font-size: 15px;
  line-height: 26px;
  margin: 0;
}

.work-process-three {
  position: relative;
  padding: 110px 0 120px;
  counter-reset: count;
}

@media (max-width: 767px) {
  .work-process-three {
    padding: 70px 0 80px;
  }
}

.work-process-three__card {
  position: relative;
  transition: all 500ms ease;
  z-index: 2;
  counter-increment: count;
  max-width: 270px;
  margin: 0 auto;
}

.work-process-three__card__img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 50%;
  position: relative;
}

.work-process-three__card__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.work-process-three__card__img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 0;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 50%;
  z-index: -1;
}

.work-process-three__card__content {
  padding: 82px 20px 27px;
  position: relative;
  transition: all 500ms ease;
  background-color: var(--pelocis-gray, #F5F2EF);
  margin-top: -122px;
  text-align: center;
}

.work-process-three__card__count {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 25px;
  font-weight: 500;
  z-index: 2;
  position: relative;
  transition: all 500ms ease;
}

.work-process-three__card__count::before {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
  position: relative;
}

.work-process-three__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  transition: all 300ms ease;
  margin: 19px 0 15px;
}

.work-process-three__card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0;
  transition: all 300ms ease;
}

.work-process-three__card__shape-one {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.work-process-three__card__link {
  position: absolute;
  bottom: -20px;
  left: 4%;
  transform: translateX(-50%);
  width: 39px;
  height: 39px;
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  font-size: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.work-process-three__card:hover {
  transform: translateY(-20px);
}

.work-process-three__card:hover .work-process-three__card__content {
  background: var(--pelocis-black, #222222);
}

.work-process-three__card:hover .work-process-three__card__count {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.work-process-three__card:hover .work-process-three__card__title {
  color: var(--pelocis-white, #fff);
}

.work-process-three__card:hover .work-process-three__card__text {
  color: var(--pelocis-white, #fff);
}

.work-process-three__card:hover .work-process-three__card__shape-one {
  opacity: 0.2;
  visibility: visible;
}

.work-process-three__card:hover .work-process-three__card__link {
  opacity: 1;
  visibility: visible;
  left: 50%;
}

.work-process-three__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 1199px) {
  .work-process-three__shape {
    display: none;
  }
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter {
  padding: 40px 0;
  position: relative;
}

.newsletter__inner {
  background-color: var(--pelocis-base, #757ee2);
  position: relative;
  padding: 50px 40px;
  margin-bottom: -138px;
  z-index: 9;
  border-radius: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: 1431px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media (max-width: 1028px) {
  .newsletter__inner {
    max-width: 90%;
  }
}

@media (max-width: 1028px) {
  .newsletter__inner {
    border-radius: 20px;
    padding: 50px 5px;
  }
}

.newsletter__shape--one {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1028px) {
  .newsletter__shape--one {
    left: -63px;
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .newsletter__shape--one {
    display: none;
  }
}

.newsletter__shape--two {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1028px) {
  .newsletter__shape--two {
    right: -83px;
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .newsletter__shape--two {
    display: none;
  }
}

.newsletter__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 11;
  position: relative;
}

@media (max-width: 1028px) {
  .newsletter__box {
    flex-direction: column;
    align-items: normal;
  }
}

.newsletter__chat_microphone {
  font-size: 69px;
  color: var(--pelocis-white, #fff);
}

@media (max-width: 1028px) {
  .newsletter__chat_microphone {
    font-size: 35px;
  }
}

.newsletter__content {
  display: flex;
  align-items: center;
  gap: 39px;
}

@media (max-width: 1028px) {
  .newsletter__content {
    gap: 20px;
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  .newsletter__content {
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.newsletter__title-box {
  padding-top: 15px;
}

.newsletter__title {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 6px;
}

@media (max-width: 1028px) {
  .newsletter__title {
    font-size: 20px;
  }
}

.newsletter__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--pelocis-white, #fff);
}

@media (max-width: 1028px) {
  .newsletter__text {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.newsletter__form {
  flex-basis: 41%;
}

@media (max-width: 500px) {
  .newsletter__form {
    margin-top: 10px;
  }
}

.newsletter__form__item {
  background-color: var(--pelocis-white, #fff);
  padding: 0 20px;
  position: relative;
  border-radius: 40px;
}

.newsletter__input {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border: none;
  outline: none;
  padding-right: 170px;
  padding-left: 5px;
  font-size: 16px;
  line-height: 25px;
  color: var(--pelocis-text-dark, #636363);
}

@media (max-width: 500px) {
  .newsletter__input {
    padding-right: 0px;
  }
}

.newsletter__button {
  padding: 9.5px 43px;
  background: linear-gradient(90deg, var(--pelocis-base, #757ee2) 50%, var(--pelocis-black, #222222) 0);
  background-position: 100% 100%;
  background-size: 200% 100%;
  transition: all 800ms ease-in;
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  border-radius: 40px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  outline: none;
  transition: all 0.3s ease-in;
}

.newsletter__button:hover {
  background-position: 0 100%;
}

@media (max-width: 500px) {
  .newsletter__button {
    padding: 10px 20px;
  }
}

.newsletter--home-two {
  position: relative;
  padding: 0;
}

.newsletter--home-two .newsletter__inner {
  margin: 0;
  padding: 30px 0;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
}

.newsletter--home-two .newsletter__content {
  gap: 28px;
}

.newsletter--home-two .newsletter__chat_microphone {
  width: 125px;
  height: 125px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 69px;
  color: var(--pelocis-white, #fff);
}

/*--------------------------------------------------------------
# Make Appointment
--------------------------------------------------------------*/
.appointment {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .appointment {
    padding: 80px 0;
  }
}

.appointment__image {
  position: relative;
}

@media (max-width: 991px) {
  .appointment__image {
    margin-bottom: 30px;
  }
}

.appointment__image img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.appointment__image__shape {
  position: absolute;
  top: 104px;
  left: -130px;
  background-color: transparent;
  border: 40px solid var(--pelocis-base, #757ee2);
  border-radius: 50%;
  width: 325px;
  height: 325px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: zumpBottom 2s linear infinite;
}

@media (max-width: 767px) {
  .appointment__image__shape {
    display: none;
  }
}

.appointment__form {
  position: relative;
}

@media (max-width: 767px) {
  .appointment__form {
    padding: 0 10px;
  }
}

.appointment__form .sec-title {
  padding-bottom: 21px;
}

.appointment__form .form-one__control {
  margin-bottom: 15px;
}

.appointment__form__lable {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 11px;
  display: block;
  cursor: pointer;
}

.appointment__form__range {
  line-height: 0;
}

.appointment__form__range__lable {
  margin-bottom: -4px;
  color: var(--pelocis-black2, #333333);
}

.appointment__form__range__value {
  color: var(--pelocis-black2, #333333);
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.appointment__form__range__input {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--pelocis-base, #757ee2);
  outline: none;
  border-radius: 50px;
  margin-bottom: 5px;
}

.appointment__form__range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pelocis-black, #222222);
  cursor: pointer;
  border: 2px solid var(--pelocis-white, #fff);
}

.appointment__form__range__input::-moz-range-thumb {
  width: 18x;
  height: 18px;
  background: var(--pelocis-black, #222222);
  cursor: pointer;
  border: 2px solid var(--pelocis-white, #fff);
  border-radius: 50%;
}

.appointment__form__text {
  font-size: 16px;
  color: var(--pelocis-text-dark, #636363);
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 13px;
}

@media (min-width: 1200px) {
  .appointment__form__text {
    padding-right: 50px;
  }
}

.appointment__form .mt-30 {
  margin-top: 26px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.projects-one {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  counter-reset: count;
  background-color: var(--pelocis-gray, #F5F2EF);
}

@media (max-width: 767px) {
  .projects-one {
    padding: 80px 0;
  }
}

.projects-one--page {
  background-color: transparent;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .projects-one--page {
    padding: 80px 0;
  }
}

.projects-one__title {
  position: relative;
}

.projects-one__title__shape {
  position: absolute;
  right: 25%;
  top: -25px;
}

@media (max-width: 768px) {
  .projects-one__title__shape {
    position: absolute;
    top: -15px;
    right: 10%;
    width: 40px;
  }
}

.projects-one .sec-title {
  padding-bottom: 30px;
}

.projects-one .filter-item {
  margin-top: 30px;
}

.projects-one__filter__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.projects-one__filter__list li {
  cursor: pointer;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  position: relative;
  display: block;
  background-color: transparent;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease;
  text-transform: capitalize;
  padding: 12.5px 22.5px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.projects-one__filter__list li.active,
.projects-one__filter__list li:hover {
  background-color: var(--pelocis-base, #757ee2);
  border-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.projects-one__filter__list li+li {
  margin-right: -1px;
}

.projects-one__card {
  position: relative;
  overflow: hidden;
  counter-increment: count;
}

.projects-one__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  width: 100%;
}

@media (max-width: 767px) {
  .projects-one__card img {
    min-height: 300px;
    object-fit: cover;
  }
}

.projects-one__card__hover-lg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 69%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

@media (max-width: 767px) {
  .projects-one__card__hover-lg {
    width: 90%;
  }
}

.projects-one__card__hover-lg .img-popup {
  position: relative;
}

.projects-one__card__hover-lg-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  clip-path: polygon(87% 0, 100% 50%, 87% 100%, 0 100%, 0 0);
  background-color: var(--pelocis-base, #757ee2);
}

.projects-one__card__hover-lg-item {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -53px;
  left: 55px;
  padding: 10px 11.5px;
  display: flex;
  align-items: center;
  border-radius: 15px 15px 0px 0px;
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  border: 1px solid var(--pelocis-base, #757ee2);
  border-bottom: none;
}

.projects-one__card__hover-lg-item::before {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
  position: relative;
}

.projects-one__card__hover-lg-text {
  padding: 30px 40px 11px 30px;
  text-align: left;
  z-index: 10;
}

@media (max-width: 767px) {
  .projects-one__card__hover-lg-text {
    padding: 20px 30px 5px 20px;
  }
}

.projects-one__card__hover-lg-text h3 {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
}

.projects-one__card__hover-lg-text h3 a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.projects-one__card__hover-lg-text h3 a:hover {
  background-size: 100% 1px;
}

.projects-one__card__hover-lg-text p {
  color: var(--pelocis-white, #fff);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

@media (max-width: 767px) {
  .projects-one__card__hover-lg-text p {
    font-size: 16px;
    line-height: 26px;
  }
}

.projects-one__card__hover-lg-link {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-base, #757ee2);
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
}

.projects-one__card__hover-lg-link:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.projects-one__card__hover-sm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: scale(1, 0.5);
  opacity: 0;
  transition: all 500ms ease;
  transform-origin: bottom center;
}

.projects-one__card__hover-sm .img-popup {
  position: relative;
}

.projects-one__card__hover-sm-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  clip-path: polygon(87% 0, 100% 50%, 87% 100%, 0 100%, 0 0);
  background-color: var(--pelocis-base, #757ee2);
}

.projects-one__card__hover-sm img {
  height: 100%;
}

.projects-one__card__hover-sm-item {
  position: absolute;
  width: 46px;
  height: 46px;
  top: -45px;
  left: 55px;
  padding: 10px 11.5px;
  display: flex;
  align-items: center;
  border-radius: 15px 15px 0px 0px;
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  border: 1px solid var(--pelocis-base, #757ee2);
  border-bottom: none;
}

.projects-one__card__hover-sm-item::before {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
  position: relative;
}

.projects-one__card__hover-sm-text {
  padding: 22px 30px 10px 20px;
  text-align: left;
  z-index: 10;
}

.projects-one__card__hover-sm-text h3 {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  color: var(--pelocis-white, #fff);
}

.projects-one__card__hover-sm-text h3 a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.projects-one__card__hover-sm-text h3 a:hover {
  background-size: 100% 1px;
}

.projects-one__card__hover-sm-text p {
  color: var(--pelocis-white, #fff);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 5px;
}

.projects-one__card__hover-sm-link {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-base, #757ee2);
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
}

.projects-one__card__hover-sm-link:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.projects-one__card__shape-1 {
  position: absolute;
  left: 0;
  height: auto;
  width: auto !important;
}

.projects-one__card__shape-2 {
  position: absolute;
  right: 0;
  height: auto;
  width: auto !important;
}

.projects-one__card:hover img {
  opacity: 0.9;
}

.projects-one__card:hover .projects-one__card__hover-lg {
  transform: scale(1, 1);
}

.projects-one__card:hover .projects-one__card__hover-sm {
  transform: scale(1, 1);
  opacity: 1;
}

.projects-one__card__icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}

.projects-one__card__icon::after,
.projects-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--pelocis-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.projects-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.projects-three {
  padding: 110px 0 120px;
  counter-reset: count;
  position: relative;
}

@media (max-width: 767px) {
  .projects-three {
    padding: 70px 0 80px;
  }
}

.projects-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 572px;
  background-color: var(--pelocis-gray, #F5F2EF);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

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

.projects-three__card {
  position: relative;
  overflow: hidden;
  counter-increment: count;
}

.projects-three__card img {
  width: 100%;
  height: auto;
}

.projects-three__card__hover {
  width: 521px;
  height: 412px;
  border-radius: 50%;
  border: 10px solid var(--pelocis-white, #fff);
  background-color: var(--pelocis-base, #757ee2);
  padding-left: 152px;
  padding-right: 40px;
  padding-top: 45px;
  text-align: left;
  position: absolute;
  left: -350px;
  bottom: -400px;
  transition: all 500ms ease;
}

@media (max-width: 1440px) {
  .projects-three__card__hover {
    padding-left: 160px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .projects-three__card__hover {
    padding-left: 220px;
    padding-right: 20px;
    padding-top: 30px;
  }
}

.projects-three__card:hover .projects-three__card__hover {
  left: -115px;
  bottom: -98px;
}

@media (max-width: 1440px) {
  .projects-three__card:hover .projects-three__card__hover {
    left: -150px;
  }
}

@media (max-width: 991px) {
  .projects-three__card:hover .projects-three__card__hover {
    left: -210px;
  }
}

.projects-three__card__number {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  color: var(--pelocis-white, #fff);
}

.projects-three__card__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}

.projects-three__card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin: 8px 0 13px;
}

.projects-three__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.projects-three__card__title a:hover {
  background-size: 100% 1px;
}

.projects-three__card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-white, #fff);
  margin: 0 0 9px;
}

.projects-three__card__rm {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: var(--pelocis-white, #fff);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.projects-three__card__rm:hover {
  background-size: 100% 1px;
}

.projects-three__card__rm span {
  font-size: 12px;
}

.projects-three__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1120px) {
  .projects-three__shape-1 {
    display: none;
  }
}

.projects-three__carousel {
  position: relative;
  padding: 0 42px;
}

@media (max-width: 1300px) {
  .projects-three__carousel {
    padding: 0 20px;
  }
}

.projects-four {
  padding: 110px 0 90px;
  position: relative;
  background-color: var(--pelocis-gray, #F5F2EF);
}

@media (max-width: 767px) {
  .projects-four {
    padding: 70px 0 50px;
  }
}

.projects-four .container-fluid {
  max-width: 1600px;
  width: 100%;
}

.projects-four__card {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  transition: all 0.4s ease;
}

.projects-four__card:hover {
  transform: translateY(-15px);
}

.projects-four__card__image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.projects-four__card__image::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  content: "";
  background-image: url(../images/shapes/project-4-overlay.png);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: cover;
  transition: all 0.4s ease;
}

.projects-four__card__image img {
  width: 100%;
  height: 100%;
  transition: all 500ms ease;
  min-height: 444px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .projects-four__card__image img {
    object-position: left;
  }
}

.projects-four__card:hover .projects-four__card__image::after {
  opacity: 1;
  visibility: visible;
}

.projects-four__card:hover .projects-four__card__image img {
  transform: scale(1.05);
}

.projects-four__card__content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 50px 0 30px;
  transition: all 0.3s ease;
  text-align: left;
}

.projects-four__card__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0;
  opacity: 0;
  text-transform: capitalize;
  color: var(--pelocis-white, #fff);
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
}

.projects-four__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 0.4s ease;
}

.projects-four__card__title a:hover {
  background-size: 100% 1px;
}

.projects-four__card:hover .projects-four__card__title {
  transform: translate3d(0, -63px, 0);
  opacity: 1;
}

.projects-four__card__text {
  margin: 0;
  color: var(--pelocis-white, #fff);
  line-height: 26px;
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
  opacity: 0;
}

.projects-four__card:hover .projects-four__card__text {
  opacity: 1;
  transform: translate3d(0, -53px, 0);
}

.projects-four__card__rm {
  width: 50px;
  height: 50px;
  background-color: var(--pelocis-black, #222222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--pelocis-white, #fff);
  border-radius: 50%;
  position: absolute;
  right: 30px;
  bottom: 5px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, -100px, 0);
}

.projects-four__card__rm:hover {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
}

.projects-four__card__rm span {
  display: inline-block;
  backface-visibility: hidden;
}

.projects-four__card:hover .projects-four__card__rm {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.projects-four .post-filter {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 37px;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .projects-four .post-filter {
    gap: 20px;
    margin: 0 0 30px;
  }
}

.projects-four .post-filter li {
  padding: 16px 15px;
  width: 100%;
  font-family: var(--pelocis-heading-font, "Solway", serif);
  color: var(--pelocis-black, #222222);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: capitalize;
  text-align: center;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  cursor: pointer;
  transition: all 0.5s ease;
}

.projects-four .post-filter li:hover,
.projects-four .post-filter li.active {
  background-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-white, #fff);
  border-color: var(--pelocis-base, #757ee2);
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  padding: 120px 0 0;
}

@media (max-width: 767px) {
  .project-details {
    padding-top: 80px;
  }
}

.project-details__image {
  position: relative;
}

.project-details__image img {
  width: 100%;
}

.project-details__content {
  position: relative;
}

.project-details__summary {
  padding: 38px 30px 20px;
  background-color: var(--pelocis-base, #757ee2);
  position: absolute;
  top: -124px;
  right: 0;
  width: 400px;
  margin: 0;
}

@media (max-width: 767px) {
  .project-details__summary {
    padding: 30px 20px;
  }
}

@media (max-width: 1199px) {
  .project-details__summary {
    position: relative;
    width: 100%;
    margin: 30px 0 0;
    top: 0;
  }
}

.project-details__summary li {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

@media (max-width: 400px) {
  .project-details__summary li {
    font-size: 20px;
  }
}

.project-details__summary li span::before {
  color: var(--pelocis-white, #fff);
}

.project-details__info {
  margin-top: 48px;
  width: 65%;
}

@media (min-width: 1200px) {
  .project-details__info {
    padding-right: 18px;
  }
}

@media (max-width: 1199px) {
  .project-details__info {
    width: 100%;
  }
}

.project-details__title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 15px;
}

.project-details__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 18px;
}

.project-details__title-two {
  font-size: 35px;
  font-weight: 700;
  line-height: 46px;
  margin: 32px 0 27px;
}

@media (min-width: 1200px) {
  .project-details__title-two+.project-details__text {
    padding-right: 50px;
  }
}

@media (min-width: 1200px) {
  .project-details__title-two+.project-details__text+.project-details__text {
    padding-right: 100px;
  }
}

.project-details__lists {
  margin: 23px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 50px;
}

.project-details__lists li {
  display: block;
  position: relative;
  padding: 0 0 0 26px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--pelocis-text-dark, #636363);
  width: 38%;
}

@media (max-width: 1199px) {
  .project-details__lists li {
    width: 46%;
  }
}

@media (max-width: 767px) {
  .project-details__lists li {
    width: 100%;
  }
}

.project-details__lists li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  background-color: var(--pelocis-black, #222222);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--pelocis-white, #fff);
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 300ms ease;
}

.project-details__lists li:hover span {
  background-color: var(--pelocis-base, #757ee2);
}

/*--------------------------------------------------------------
# Achievement
--------------------------------------------------------------*/
.achievement-one {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .achievement-one {
    padding: 80px 0;
  }
}

.achievement-one--about-page {
  padding-top: 0;
}

.achievement-one__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-right: none;
}

@media (max-width: 991px) {
  .achievement-one__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: none;
  }
}

@media (max-width: 574px) {
  .achievement-one__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.achievement-one__card {
  flex: 1;
  padding: 32px 30px 25px;
  position: relative;
  z-index: 2;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
}

@media (max-width: 991px) {
  .achievement-one__card {
    border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  }
}

.achievement-one__card__hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pelocis-black, #222222);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 300ms ease-in-out;
  transform: scale(0.9);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.achievement-one__card:hover .achievement-one__card__hover {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.achievement-one__card__icon {
  margin-bottom: 8px;
  font-size: 44px;
  line-height: 1;
  color: var(--pelocis-base, #757ee2);
  display: block;
  transition: all 200ms ease-in-out;
}

.achievement-one__card:hover .achievement-one__card__icon {
  color: var(--pelocis-white, #fff);
}

.achievement-one__card__count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 10px;
  transition: all 200ms ease-in-out;
}

.achievement-one__card:hover .achievement-one__card__count {
  color: var(--pelocis-white, #fff);
}

.achievement-one__card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 200ms ease-in-out;
  margin: 0;
}

.achievement-one__card:hover .achievement-one__card__text {
  color: var(--pelocis-white, #fff);
}

.achievement-cards {
  border-top: none;
  border-bottom: none;
  padding: 27px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  position: relative;
  transition: all 500ms ease-in-out;
  cursor: pointer;
}

@media (max-width: 991px) {
  .achievement-cards {
    margin-bottom: 10px;
  }
}

.achievement-cards__icon {
  margin-bottom: 8px;
  z-index: 1;
  font-size: 50px;
  line-height: 1;
}

.achievement-cards__count {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 0px;
  transition: all 500ms ease-in-out;
  z-index: 1;
}

.achievement-cards .count-box {
  margin-bottom: 3px;
}

.achievement-cards .count-box span {
  font-family: var(--pelocis-heading-font, "Solway", serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
}

.achievement-cards__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.achievement-cards__br-0 {
  border-right: none;
}

@media (max-width: 991px) {
  .achievement-cards__br-0 {
    border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
  }
}

.achievement-cards__shape-1 {
  position: absolute;
  left: 0;
  top: 0;
}

.achievement-cards__shape-2 {
  position: absolute;
  right: 0;
  top: 0;
}

.achievement-cards:hover {
  background-color: var(--pelocis-black, #222222);
}

.achievement-cards:hover .achievement-cards__count {
  color: var(--pelocis-white, #fff);
}

.achievement-cards:hover .achievement-cards__text {
  color: var(--pelocis-white, #fff);
}

.achievement-two {
  padding-bottom: 0px;
}

.achievement-two__title {
  position: relative;
  text-align: center;
}

.achievement-two__title .sec-title {
  padding-bottom: 54px;
}

.achievement-two__title .sec-title__shape::after {
  background-color: var(--pelocis-white, #fff);
}

.achievement-two__title .sec-title__title {
  color: var(--pelocis-white, #fff);
}

.achievement-two__title__shape {
  position: absolute;
  top: -20px;
  right: 24.5%;
}

@media (max-width: 650px) {
  .achievement-two__title__shape {
    position: absolute;
    top: -11px;
    right: 10%;
    width: 40px;
  }
}

.achievement-two__shape-one {
  width: 334px;
  height: 329px;
  border-radius: 50%;
  background-color: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.5);
  position: absolute;
  top: -176px;
  left: -168px;
  z-index: 1;
}

@media (max-width: 1400px) {
  .achievement-two__shape-one {
    display: none;
  }
}

.achievement-two__shape-one::after {
  content: "";
  width: 270px;
  height: 270px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--pelocis-base, #757ee2);
}

.achievement-two__shape-two {
  width: 334px;
  height: 329px;
  border-radius: 50%;
  background-color: rgba(var(--pelocis-base-rgb, 226, 164, 117), 0.5);
  position: absolute;
  top: -176px;
  right: -168px;
  z-index: 1;
}

@media (max-width: 1400px) {
  .achievement-two__shape-two {
    display: none;
  }
}

.achievement-two__shape-two::after {
  content: "";
  width: 270px;
  height: 270px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--pelocis-base, #757ee2);
}

.achievement-two .container-fluid {
  max-width: 1370px;
  margin: 0 auto;
}

@media (max-width: 1368px) {
  .achievement-two .container-fluid {
    padding: 0;
  }
}

.achievement-two .achievement-wrapper {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 1370 588" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M0 0H1370L1277.08 546.383C1272.99 570.417 1252.16 588 1227.79 588H142.215C117.835 588 97.0098 570.417 92.9223 546.383L0 0Z" fill="currentColor" fill-opacity="0.94"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 1370 588" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path d="M0 0H1370L1277.08 546.383C1272.99 570.417 1252.16 588 1227.79 588H142.215C117.835 588 97.0098 570.417 92.9223 546.383L0 0Z" fill="currentColor" fill-opacity="0.94"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  padding-top: 106px;
  padding-bottom: 120px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1368px) {
  .achievement-two .achievement-wrapper {
    mask: none;
  }
}

@media (max-width: 1199px) {
  .achievement-two .achievement-wrapper {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .achievement-two .achievement-wrapper {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}

.achievement-two .achievement-wrapper__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.92);
}

.achievement-two__list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}

@media (max-width: 1199px) {
  .achievement-two__list {
    flex-wrap: wrap;
  }
}

.achievement-two__item {
  width: 300px;
  position: relative;
  border-radius: 10px;
  transition: all 500ms ease;
  border: 1px solid transparent;
}

@media (max-width: 1199px) {
  .achievement-two__item {
    width: 245px;
  }
}

.achievement-two__item:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  height: 118px;
  border-right: 1px solid var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

@media (max-width: 599px) {
  .achievement-two__item:nth-child(2)::after {
    border: none;
  }
}

.achievement-two__item:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: 118px;
  border-left: 1px solid var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

@media (max-width: 599px) {
  .achievement-two__item:nth-child(2)::before {
    border: none;
  }
}

.achievement-two__item:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  height: 118px;
  border-right: 1px solid var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

@media (max-width: 599px) {
  .achievement-two__item:nth-child(3)::after {
    border: none;
  }
}

.achievement-two__item:hover {
  border-color: var(--pelocis-base, #757ee2);
}

.achievement-two__item:hover .achievement-cards__shape-1 {
  opacity: 1;
}

.achievement-two__item:hover .achievement-cards__shape-2 {
  opacity: 1;
}

.achievement-two__item:hover::after {
  border-color: var(--pelocis-black, #222222);
}

.achievement-two__item:hover::before {
  border-color: var(--pelocis-black, #222222);
}

.achievement-two__item:hover .achievement-cards__icon {
  color: var(--pelocis-base, #757ee2);
}

.achievement-two .achievement-two__item:nth-child(2):hover .achievement-two__item:nth-child(1) {
  display: none;
}

.achievement-two .achievement-cards {
  border-color: transparent;
  background: none;
  border-radius: 10px;
  transition: all 500ms ease;
  padding: 30px 30px;
}

.achievement-two .achievement-cards__shape-1 {
  opacity: 0;
  transition: all 500ms ease;
}

.achievement-two .achievement-cards__shape-2 {
  opacity: 0;
  transition: all 500ms ease;
}

.achievement-two .achievement-cards__icon {
  font-size: 45px;
  color: var(--pelocis-white, #fff);
  transition: all 500ms ease;
}

.achievement-two .achievement-cards__count {
  color: var(--pelocis-white, #fff);
  margin-bottom: 5px;
}

.achievement-two .achievement-cards__text {
  color: var(--pelocis-white, #fff);
}

/*--------------------------------------------------------------
# Business-solutions
--------------------------------------------------------------*/
.business-solutions {
  position: relative;
  padding-top: 120px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .business-solutions {
    padding: 80px 0;
  }
}

.business-solutions__title {
  position: relative;
}

.business-solutions__title__shape {
  position: absolute;
  right: 36px;
  top: -25px;
}

@media (max-width: 768px) {
  .business-solutions__title__shape {
    position: absolute;
    top: -15px;
    right: 10%;
    width: 40px;
  }
}

.business-solutions .sec-title {
  padding-bottom: 21px;
}

.business-solutions .business-solutions__card {
  position: relative;
  padding: 148px 0 0;
}

@media (max-width: 1199px) {
  .business-solutions .business-solutions__card {
    padding: 85px 0 0;
  }
}

@media (max-width: 991px) {
  .business-solutions .business-solutions__card {
    padding: 0 0;
  }
}

.business-solutions .business-solutions__card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0 0 20px;
}

.business-solutions .business-solutions__card__text a {
  color: var(--pelocis-base, #757ee2);
  font-weight: 500;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.business-solutions .business-solutions__card__text a:hover {
  background-size: 100% 1px;
}

.business-solutions .business-solutions__card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 19px;
}

.business-solutions .business-solutions__card__list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  padding-left: 32px;
  position: relative;
}

.business-solutions .business-solutions__card__list li span {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--pelocis-base, #757ee2);
}

.business-solutions .business-solutions__card__btns {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 39px;
}

@media (max-width: 767px) {
  .business-solutions .business-solutions__card__btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.business-solutions .business-solutions__card .video-popup {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-black, #222222);
  transition: all 500ms ease-in-out;
}

.business-solutions .business-solutions__card .video-popup i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--pelocis-black, #222222);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease-in-out;
  font-size: 22px;
  color: var(--pelocis-black, #222222);
}

.business-solutions .business-solutions__card .video-popup:hover {
  color: var(--pelocis-base, #757ee2);
}

.business-solutions .business-solutions__card .video-popup:hover i {
  border-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-base, #757ee2);
}

.business-solutions__image {
  position: relative;
  text-align: right;
}

@media (max-width: 991px) {
  .business-solutions__image {
    margin: 40px 0 0;
    text-align: left;
  }
}

.business-solutions__image img {
  max-width: 100%;
}

.counselling-solutions {
  position: relative;
  padding: 110px 0 120px;
}

@media (max-width: 767px) {
  .counselling-solutions {
    padding: 80px 0;
  }
}

.counselling-solutions .sec-title {
  padding-bottom: 20px;
}

.counselling-solutions__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

.counselling-solutions__text b {
  color: var(--pelocis-base, #757ee2);
}

.counselling-solutions__list {
  list-style: none;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--pelocis-border-color, #DDDDDD);
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  padding: 0;
  margin: 30px 0 0;
}

@media (max-width: 767px) {
  .counselling-solutions__list {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
  }
}

.counselling-solutions__item {
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 50%;
}

@media (max-width: 767px) {
  .counselling-solutions__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 20px 0;
  }
}

.counselling-solutions__item:first-child {
  border-right: 1px solid var(--pelocis-border-color, #DDDDDD);
}

@media (max-width: 767px) {
  .counselling-solutions__item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
  }
}

.counselling-solutions__item:last-child {
  justify-content: center;
}

.counselling-solutions__item__img {
  padding: 3px;
  width: 75px;
  height: 75px;
  border-radius: 4px;
  border: 1px solid var(--pelocis-base, #757ee2);
}

.counselling-solutions__item__img img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.counselling-solutions__item__content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 0px;
}

.counselling-solutions__item__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 0px;
}

.counselling-solutions__item__signature {
  text-align: center;
  font-family: var(--pelocis-special-font2, "Bonheur Royale", cursive);
  font-size: 44px;
  font-weight: 400;
  line-height: 51px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 0px;
}

.counselling-solutions__list--two {
  list-style: none;
  padding: 0;
  margin: 26px 0 33px;
}

.counselling-solutions__list--two li {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

.counselling-solutions__list--two li span {
  color: var(--pelocis-base, #757ee2);
}

.counselling-solutions__image {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .counselling-solutions__image {
    margin-top: 40px;
    max-width: 570px;
  }
}

.counselling-solutions__image::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 13px;
  height: 155px;
  border-radius: 20px;
  background-color: var(--pelocis-black, #222222);
}

@media (max-width: 1200px) {
  .counselling-solutions__image::after {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .counselling-solutions__image::after {
    height: 120px;
  }
}

.counselling-solutions__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 13px;
  height: 295px;
  border-radius: 20px;
  background-color: var(--pelocis-base, #757ee2);
}

@media (max-width: 1199px) {
  .counselling-solutions__image::before {
    height: 245px;
  }
}

@media (max-width: 1199px) {
  .counselling-solutions__image::before {
    height: 195px;
  }
}

.counselling-solutions__image__one {
  border-radius: 0px 50px 50px 0px;
}

@media (max-width: 1199px) {
  .counselling-solutions__image__one {
    width: 80%;
  }
}

.counselling-solutions__image__two {
  position: absolute;
  bottom: -10px;
  left: 0;
  border: 10px solid var(--pelocis-white, #fff);
  border-radius: 50px 0px 0px 50px;
  max-width: 294px;
}

@media (max-width: 1199px) {
  .counselling-solutions__image__two {
    width: 40%;
  }
}

.counselling-solutions__image__watch-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
  border-right: 1px solid var(--pelocis-base, #757ee2);
  border-bottom: 1px solid var(--pelocis-base, #757ee2);
  gap: 10px;
  padding-right: 48px;
  padding-top: 62px;
  padding-bottom: 22px;
  margin-top: -40px;
}

@media (max-width: 767px) {
  .counselling-solutions__image__watch-btn {
    padding-right: 10px;
  }
}

.counselling-solutions__image__watch-btn span {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--pelocis-black2, #333333);
  text-transform: uppercase;
}

.counselling-solutions__image__watch-btn a {
  border: 1px solid var(--pelocis-black2, #333333);
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 50%;
  font-size: 22px;
  color: var(--pelocis-black2, #333333);
}

@media (max-width: 767px) {
  .counselling-solutions__image__watch-btn a {
    width: 42px;
    height: 42px;
  }
}

.counselling-solutions__image__watch-btn a:hover {
  border-color: var(--pelocis-base, #757ee2);
  color: var(--pelocis-base, #757ee2);
}

/*--------------------------------------------------------------
# Counter-area
--------------------------------------------------------------*/
.counter-area-two {
  position: relative;
  margin-top: -163px;
}

.counter-area-two__list {
  background-color: var(--pelocis-white, #fff);
  padding: 0;
  margin: 0;
  border-radius: 50px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  list-style: none;
  display: flex;
  overflow: hidden;
  z-index: 11;
  position: relative;
}

@media (max-width: 991px) {
  .counter-area-two__list {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .counter-area-two__list {
    flex-direction: column;
    padding: 30px 0;
  }
}

.counter-area-two__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: all 500ms ease;
  margin: 0;
  padding: 79px 0 75px;
  flex-grow: 1;
  overflow: hidden;
}

@media (max-width: 767px) {
  .counter-area-two__item {
    padding: 20px 0 20px;
  }
}

.counter-area-two__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 131px;
  background-color: var(--pelocis-border-color, #DDDDDD);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 767px) {
  .counter-area-two__item:not(:last-of-type)::before {
    display: none;
  }
}

.counter-area-two__item::after {
  content: "";
  position: absolute;
  bottom: -32px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pelocis-base, #757ee2);
  height: 32px;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.counter-area-two__item:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: -26px;
}

.counter-area-two__item:hover .counter-area-two__icon {
  border-color: var(--pelocis-black, #222222);
  color: var(--pelocis-black, #222222);
}

.counter-area-two__item:hover .counter-area-two__icon::after {
  background-color: var(--pelocis-black, #222222);
}

.counter-area-two__item:hover .counter-area-two__icon::before {
  background-color: var(--pelocis-black, #222222);
}

.counter-area-two__icon {
  border: 3px solid var(--pelocis-base, #757ee2);
  border-bottom: none;
  width: 89px;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 40px;
  color: var(--pelocis-base, #757ee2);
  transition: all 500ms ease;
}

.counter-area-two__icon::after {
  content: "";
  position: absolute;
  left: -35px;
  bottom: 0;
  width: 32px;
  height: 18px;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  transition: all 500ms ease;
}

.counter-area-two__icon::before {
  content: "";
  position: absolute;
  right: -35px;
  bottom: 0;
  width: 32px;
  height: 18px;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(0 0%, 0% 100%, 100% 100%);
  transition: all 500ms ease;
}

.counter-area-two__count {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin: 8px 0 5px;
}

.counter-area-two__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin: 0;
}

.counter-area-two--home-three {
  position: relative;
  margin: 0 0 -152px;
}

.counter-area-three {
  position: relative;
  padding: 172px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.counter-area-three__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.8), rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.8));
}

.counter-area-three .container {
  z-index: 11;
  position: relative;
}

.counter-area-three__title {
  text-align: center;
}

.counter-area-three__title h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  color: var(--pelocis-white, #fff);
}

.counter-area-three__title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  color: var(--pelocis-white, #fff);
  margin-bottom: 40px;
}

.counter-area-three__title a {
  padding: 10px 38px;
}

.counter-area-three__title a span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-area-three__title a::before {
  background-color: var(--pelocis-base, #757ee2);
}

.counter-area-three__title a::after {
  background-color: var(--pelocis-white, #fff);
}

.counter-area-three__title a:hover {
  color: var(--pelocis-black, #222222);
}

.counter-area-three__title a:hover i::before {
  color: var(--pelocis-black, #222222);
}

.counter-area-three__list {
  background-color: var(--pelocis-white, #fff);
  padding: 80px 0px;
  padding-bottom: 0;
  border-radius: 60px;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  list-style: none;
  display: flex;
  margin-top: 120px;
  margin-bottom: -325px;
  overflow: hidden;
  z-index: 11;
  position: relative;
}

@media (max-width: 1200px) {
  .counter-area-three__list {
    flex-wrap: wrap;
    border-radius: 40px;
  }
}

.counter-area-three__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: all 500ms ease;
  margin-bottom: 62px;
  width: 286px;
  flex-shrink: 0;
}

.counter-area-three__item:nth-child(2) {
  width: 300px;
}

@media (max-width: 1200px) {
  .counter-area-three__item:nth-child(2) {
    width: 50%;
  }
}

@media (max-width: 520px) {
  .counter-area-three__item:nth-child(2) {
    width: 100%;
  }
}

.counter-area-three__item:nth-child(3) {
  width: 300px;
}

@media (max-width: 1200px) {
  .counter-area-three__item:nth-child(3) {
    width: 50%;
  }
}

@media (max-width: 520px) {
  .counter-area-three__item:nth-child(3) {
    width: 100%;
  }
}

.counter-area-three__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 90%;
  background-color: var(--pelocis-border-color, #DDDDDD);
  position: absolute;
  top: 0;
  right: 0;
}

.counter-area-three__item::after {
  content: "";
  position: absolute;
  top: -82px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pelocis-base, #757ee2);
  height: 9px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.counter-area-three__item:hover::after {
  opacity: 1;
  visibility: visible;
  top: -80px;
}

.counter-area-three__item:hover .counter-area-three__icon {
  border-color: var(--pelocis-black, #222222);
}

.counter-area-three__item:hover .counter-area-three__icon span::before {
  color: var(--pelocis-black, #222222);
}

.counter-area-three__item:hover .counter-area-three__icon::after {
  background-color: var(--pelocis-black, #222222);
}

.counter-area-three__item:hover .counter-area-three__icon::before {
  background-color: var(--pelocis-black, #222222);
}

@media (max-width: 1200px) {
  .counter-area-three__item {
    width: 50%;
  }
}

@media (max-width: 520px) {
  .counter-area-three__item {
    width: 100%;
  }
}

.counter-area-three__icon {
  border: 3px solid var(--pelocis-base, #757ee2);
  border-bottom: none;
  width: 89px;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 500ms ease;
}

.counter-area-three__icon span {
  font-size: 40px;
}

.counter-area-three__icon span::before {
  color: var(--pelocis-base, #757ee2);
  transition: all 500ms ease;
}

.counter-area-three__icon::after {
  content: "";
  position: absolute;
  left: -35px;
  bottom: 0;
  width: 32px;
  height: 18px;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  transition: all 500ms ease;
}

.counter-area-three__icon::before {
  content: "";
  position: absolute;
  right: -35px;
  bottom: 0;
  width: 32px;
  height: 18px;
  background-color: var(--pelocis-base, #757ee2);
  clip-path: polygon(0 0%, 0% 100%, 100% 100%);
  transition: all 500ms ease;
}

.counter-area-three__count {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
}

.counter-area-three__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

/*--------------------------------------------------------------
# History
--------------------------------------------------------------*/
.history-two {
  position: relative;
  padding: 110px 0 120px;
  counter-reset: count;
}

@media (max-width: 767px) {
  .history-two {
    padding: 80px 0;
  }
}

.history-two .container {
  max-width: 988px;
}

@media (max-width: 1199px) {
  .history-two .container {
    max-width: 95%;
  }
}

.history-two__wrapper {
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
  position: relative;
  padding-bottom: 50px;
  border-radius: 10px;
  background-color: var(--pelocis-white, #fff);
}

.history-two__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--pelocis-border-color, #DDDDDD);
}

@media (max-width: 991px) {
  .history-two__wrapper::after {
    display: none;
  }
}

.history-two__wrapper .col-lg-6 {
  padding: 0;
}

@media (max-width: 991px) {
  .history-two__wrapper .col-lg-6:nth-child(1) {
    order: 0;
  }

  .history-two__wrapper .col-lg-6:nth-child(2) {
    order: 1;
  }

  .history-two__wrapper .col-lg-6:nth-child(3) {
    order: 3;
  }

  .history-two__wrapper .col-lg-6:nth-child(4) {
    order: 2;
  }

  .history-two__wrapper .col-lg-6:nth-child(5) {
    order: 4;
  }

  .history-two__wrapper .col-lg-6:nth-child(6) {
    order: 5;
  }
}

.history-two__border {
  position: relative;
  background: linear-gradient(to top, var(--pelocis-base, #757ee2) 50%, var(--pelocis-black, #222222) 50%) border-box;
  background-origin: border-box;
  background-clip: content-box, border-box;
  margin-left: 70px;
  margin-right: 88px;
  margin-bottom: 0px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 59.5px;
}

@media (max-width: 730px) {
  .history-two__border {
    margin: 50px 20px 20px;
  }
}

.history-two__content {
  position: relative;
  padding-top: 50px;
  padding-bottom: 20px;
  padding-right: 10px;
  padding-left: 30px;
  background-color: var(--pelocis-white, #fff);
  margin: 6px;
  border-radius: 10px;
  counter-increment: count;
}

.history-two__content__count {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  background-color: var(--pelocis-black, #222222);
  color: var(--pelocis-white, #fff);
  font-size: 28px;
  font-weight: 700;
  line-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-family: var(--pelocis-special-font, "Red Hat Text", sans-serif);
  top: -35px;
  left: 30px;
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.15));
}

.history-two__content__count::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}

.history-two__content__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 14px;
}

.history-two__content__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-bottom: 2px;
}

.history-two__content__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

.history-two__content::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 56.6%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  width: 40px;
  height: 35px;
  background-color: var(--pelocis-base, #757ee2);
}

@media (max-width: 991px) {
  .history-two__content::after {
    display: none;
  }
}

.history-two__content::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 43%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  width: 40px;
  height: 35px;
  background-color: var(--pelocis-black, #222222);
}

@media (max-width: 991px) {
  .history-two__content::before {
    display: none;
  }
}

.history-two__content--left::before {
  right: auto;
  left: -40px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media (max-width: 991px) {
  .history-two__content--left::before {
    display: none;
  }
}

.history-two__content--left::after {
  left: -40px;
  right: auto;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

@media (max-width: 991px) {
  .history-two__content--left::after {
    display: none;
  }
}

.history-two__images {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  height: 100%;
  padding: 45px;
  padding-top: 29.5px;
  padding-left: 40px;
  padding-bottom: 0;
}

@media (max-width: 730px) {
  .history-two__images {
    padding: 20px;
    flex-direction: column;
  }
}

.history-two__images::after {
  content: "";
  position: absolute;
  top: 58%;
  left: -8px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--pelocis-base, #757ee2);
  z-index: 11;
}

@media (max-width: 991px) {
  .history-two__images::after {
    display: none;
  }
}

.history-two__images--right {
  padding-left: 69px;
  padding-right: 0;
}

@media (max-width: 730px) {
  .history-two__images--right {
    padding-left: 0px;
  }
}

.history-two__images--right::after {
  left: auto;
  right: -8px;
}

@media (max-width: 991px) {
  .history-two__images--right::after {
    display: none;
  }
}

.history-two__images img {
  border-radius: 12px;
}

.history-two__images__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-black, #222222);
  margin-top: 20px;
}

@media (max-width: 767px) {
  .history-two__images__date {
    margin-top: 0;
  }
}

.history-two__btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.history-two .pelocis-btn::after {
  background-color: var(--pelocis-white, #fff);
}

.history-two .pelocis-btn:hover {
  color: var(--pelocis-black, #222222);
}

.history-two__bg {
  width: 100%;
  height: 737px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1199px) {
  .history-two__bg {
    height: 700px;
  }
}

.history-two__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--pelocis-black-rgb, 34, 34, 34), 0.94);
}

.history-two__wrapper .col-lg-6:first-child .history-two__border {
  margin-top: 79.5px;
}

@media (max-width: 730px) {
  .history-two__wrapper .col-lg-6:first-child .history-two__border {
    margin-top: 0px;
  }
}

.history-two__wrapper .col-lg-6:first-child+.col-lg-6 .history-two__images {
  padding-top: 49.5px;
}

@media (max-width: 730px) {
  .history-two__wrapper .col-lg-6:first-child+.col-lg-6 .history-two__images {
    padding-top: 0;
  }
}

.history-two__wrapper .col-lg-6:first-child+.col-lg-6 .history-two__images::after {
  top: 62%;
}

/*--------------------------------------------------------------
# Skils
--------------------------------------------------------------*/
.skills-three {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .skills-three {
    padding: 80px 0;
  }
}

.skills-three__images {
  position: relative;
  padding-bottom: 89px;
  padding-right: 140px;
  float: right;
}

@media (max-width: 1199px) {
  .skills-three__images {
    float: none;
    max-width: 690px;
  }
}

@media (max-width: 767px) {
  .skills-three__images {
    padding: 0;
    text-align: left;
  }
}

.skills-three__images__one {
  z-index: 1;
  position: relative;
  border-radius: 12px;
  max-width: none;
}

@media (max-width: 767px) {
  .skills-three__images__one {
    max-width: 100%;
  }
}

.skills-three__images__two {
  position: absolute;
  bottom: 0;
  right: 15px;
  border: 10px solid var(--pelocis-white, #fff);
  border-radius: 10px;
  z-index: 2;
}

@media (max-width: 767px) {
  .skills-three__images__two {
    position: relative;
    right: 0;
    max-width: 100%;
  }
}

.skills-three__images__shape-one {
  position: absolute;
  top: -30px;
  left: -35px;
  animation: messageMove 2s linear 0s infinite;
}

@media (max-width: 1399px) {
  .skills-three__images__shape-one {
    display: none;
  }
}

.skills-three__images__shape-two {
  width: 225px;
  height: 225px;
  background-color: var(--pelocis-base, #757ee2);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 177 196" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M20.2536 86.1196L164.924 17.2776L152.208 176.987L20.2536 86.1196Z" stroke="currentColor" stroke-width="20"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 177 196" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M20.2536 86.1196L164.924 17.2776L152.208 176.987L20.2536 86.1196Z" stroke="currentColor" stroke-width="20"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: auto;
  mask-size: auto;
  position: absolute;
  left: -122px;
  bottom: 0;
  animation: messageMove 2s linear 0s infinite;
}

@media (max-width: 1399px) {
  .skills-three__images__shape-two {
    display: none;
  }
}

.skills-three__images__shape-two::after {
  content: "";
  width: 150px;
  height: 150px;
  background-color: var(--pelocis-white, #fff);
  position: absolute;
  top: 49%;
  left: 53%;
  transform: translate(-50%, -50%);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 177 196" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M20.2536 86.1196L164.924 17.2776L152.208 176.987L20.2536 86.1196Z" stroke="currentColor" stroke-width="20"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 177 196" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M20.2536 86.1196L164.924 17.2776L152.208 176.987L20.2536 86.1196Z" stroke="currentColor" stroke-width="20"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.skills-three__images__shape-three {
  position: absolute;
  top: 230px;
  right: 20px;
  background-color: var(--pelocis-black, #222222);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 86 82" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M84.3549 36.7251L72.0168 33.1917C66.4606 31.6218 61.3994 28.6493 57.3174 24.5585C53.2354 20.4677 50.2693 15.3955 48.7029 9.82729L45.1771 -2.53755C44.9997 -2.97016 44.6981 -3.34017 44.3104 -3.60057C43.9228 -3.86097 43.4667 -4 43 -4C42.5333 -4 42.0772 -3.86097 41.6896 -3.60057C41.3019 -3.34017 41.0003 -2.97016 40.823 -2.53755L37.2971 9.82729C35.7307 15.3955 32.7646 20.4677 28.6826 24.5585C24.6006 28.6493 19.5394 31.6218 13.9832 33.1917L1.64512 36.7251C1.17138 36.8599 0.754426 37.1458 0.45753 37.5396C0.160634 37.9333 0 38.4134 0 38.9069C0 39.4004 0.160634 39.8805 0.45753 40.2742C0.754426 40.6679 1.17138 40.9539 1.64512 41.0886L13.9832 44.6221C19.5394 46.1919 24.6006 49.1645 28.6826 53.2553C32.7646 57.3461 35.7307 62.4183 37.2971 67.9865L40.823 80.3513C40.9574 80.8261 41.2427 81.2439 41.6356 81.5415C42.0285 81.839 42.5075 82 43 82C43.4925 82 43.9715 81.839 44.3644 81.5415C44.7573 81.2439 45.0426 80.8261 45.1771 80.3513L48.7029 67.9865C50.2693 62.4183 53.2354 57.3461 57.3174 53.2553C61.3994 49.1645 66.4606 46.1919 72.0168 44.6221L84.3549 41.0886C84.8286 40.9539 85.2456 40.6679 85.5425 40.2742C85.8394 39.8805 86 39.4004 86 38.9069C86 38.4134 85.8394 37.9333 85.5425 37.5396C85.2456 37.1458 84.8286 36.8599 84.3549 36.7251Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 86 82" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M84.3549 36.7251L72.0168 33.1917C66.4606 31.6218 61.3994 28.6493 57.3174 24.5585C53.2354 20.4677 50.2693 15.3955 48.7029 9.82729L45.1771 -2.53755C44.9997 -2.97016 44.6981 -3.34017 44.3104 -3.60057C43.9228 -3.86097 43.4667 -4 43 -4C42.5333 -4 42.0772 -3.86097 41.6896 -3.60057C41.3019 -3.34017 41.0003 -2.97016 40.823 -2.53755L37.2971 9.82729C35.7307 15.3955 32.7646 20.4677 28.6826 24.5585C24.6006 28.6493 19.5394 31.6218 13.9832 33.1917L1.64512 36.7251C1.17138 36.8599 0.754426 37.1458 0.45753 37.5396C0.160634 37.9333 0 38.4134 0 38.9069C0 39.4004 0.160634 39.8805 0.45753 40.2742C0.754426 40.6679 1.17138 40.9539 1.64512 41.0886L13.9832 44.6221C19.5394 46.1919 24.6006 49.1645 28.6826 53.2553C32.7646 57.3461 35.7307 62.4183 37.2971 67.9865L40.823 80.3513C40.9574 80.8261 41.2427 81.2439 41.6356 81.5415C42.0285 81.839 42.5075 82 43 82C43.4925 82 43.9715 81.839 44.3644 81.5415C44.7573 81.2439 45.0426 80.8261 45.1771 80.3513L48.7029 67.9865C50.2693 62.4183 53.2354 57.3461 57.3174 53.2553C61.3994 49.1645 66.4606 46.1919 72.0168 44.6221L84.3549 41.0886C84.8286 40.9539 85.2456 40.6679 85.5425 40.2742C85.8394 39.8805 86 39.4004 86 38.9069C86 38.4134 85.8394 37.9333 85.5425 37.5396C85.2456 37.1458 84.8286 36.8599 84.3549 36.7251Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 86px;
  height: 86px;
  animation: leafMove 2s linear 0s infinite;
}

.skills-three__images__shape-three::after {
  content: "";
  background-color: var(--pelocis-base, #757ee2);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 36 36" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M35.3113 17.0477L30.1465 15.5686C27.8207 14.9115 25.7021 13.6671 23.9933 11.9547C22.2846 10.2423 21.043 8.11905 20.3872 5.78817L18.9113 0.612188C18.8371 0.431098 18.7108 0.276209 18.5486 0.167205C18.3863 0.0581999 18.1954 0 18 0C17.8046 0 17.6137 0.0581999 17.4514 0.167205C17.2892 0.276209 17.1629 0.431098 17.0887 0.612188L15.6128 5.78817C14.957 8.11905 13.7154 10.2423 12.0067 11.9547C10.2979 13.6671 8.17929 14.9115 5.85345 15.5686L0.688655 17.0477C0.490344 17.1041 0.315806 17.2238 0.191524 17.3887C0.0672422 17.5535 0 17.7544 0 17.961C0 18.1676 0.0672422 18.3686 0.191524 18.5334C0.315806 18.6982 0.490344 18.8179 0.688655 18.8743L5.85345 20.3534C8.17929 21.0106 10.2979 22.2549 12.0067 23.9673C13.7154 25.6798 14.957 27.803 15.6128 30.1339L17.0887 35.3099C17.145 35.5086 17.2644 35.6835 17.4289 35.8081C17.5933 35.9326 17.7939 36 18 36C18.2061 36 18.4067 35.9326 18.5711 35.8081C18.7356 35.6835 18.855 35.5086 18.9113 35.3099L20.3872 30.1339C21.043 27.803 22.2846 25.6798 23.9933 23.9673C25.7021 22.2549 27.8207 21.0106 30.1465 20.3534L35.3113 18.8743C35.5097 18.8179 35.6842 18.6982 35.8085 18.5334C35.9328 18.3686 36 18.1676 36 17.961C36 17.7544 35.9328 17.5535 35.8085 17.3887C35.6842 17.2238 35.5097 17.1041 35.3113 17.0477Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 36 36" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M35.3113 17.0477L30.1465 15.5686C27.8207 14.9115 25.7021 13.6671 23.9933 11.9547C22.2846 10.2423 21.043 8.11905 20.3872 5.78817L18.9113 0.612188C18.8371 0.431098 18.7108 0.276209 18.5486 0.167205C18.3863 0.0581999 18.1954 0 18 0C17.8046 0 17.6137 0.0581999 17.4514 0.167205C17.2892 0.276209 17.1629 0.431098 17.0887 0.612188L15.6128 5.78817C14.957 8.11905 13.7154 10.2423 12.0067 11.9547C10.2979 13.6671 8.17929 14.9115 5.85345 15.5686L0.688655 17.0477C0.490344 17.1041 0.315806 17.2238 0.191524 17.3887C0.0672422 17.5535 0 17.7544 0 17.961C0 18.1676 0.0672422 18.3686 0.191524 18.5334C0.315806 18.6982 0.490344 18.8179 0.688655 18.8743L5.85345 20.3534C8.17929 21.0106 10.2979 22.2549 12.0067 23.9673C13.7154 25.6798 14.957 27.803 15.6128 30.1339L17.0887 35.3099C17.145 35.5086 17.2644 35.6835 17.4289 35.8081C17.5933 35.9326 17.7939 36 18 36C18.2061 36 18.4067 35.9326 18.5711 35.8081C18.7356 35.6835 18.855 35.5086 18.9113 35.3099L20.3872 30.1339C21.043 27.803 22.2846 25.6798 23.9933 23.9673C25.7021 22.2549 27.8207 21.0106 30.1465 20.3534L35.3113 18.8743C35.5097 18.8179 35.6842 18.6982 35.8085 18.5334C35.9328 18.3686 36 18.1676 36 17.961C36 17.7544 35.9328 17.5535 35.8085 17.3887C35.6842 17.2238 35.5097 17.1041 35.3113 17.0477Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.skills-three__content {
  padding-top: 30px;
}

@media (max-width: 1199px) {
  .skills-three__content {
    padding-top: 40px;
    margin: 0;
  }
}

.skills-three__content .sec-title {
  padding-bottom: 22px;
}

.skills-three__content__list {
  padding: 0;
  margin-bottom: 37px;
  margin-top: 27px;
}

.skills-three__content__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
}

.skills-three__content__list li span {
  font-size: 20px;
}

.skills-three__content__list li span::before {
  color: var(--pelocis-black, #222222);
}

.skills-three__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-text-dark, #636363);
  margin-bottom: 28px;
}

@media (min-width: 1200px) {
  .skills-three__text {
    padding-right: 70px;
  }
}

.skills-three .circle-progress-wrapper {
  padding: 25.5px 35px;
  border-radius: 20px;
  list-style: none;
  border: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.skills-three .circle-progress-wrapper li {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Call area
--------------------------------------------------------------*/
.call-area-one {
  padding: 90.5px 0;
  background-color: var(--pelocis-black, #222222);
  position: relative;
  overflow: hidden;
}

.call-area-one__content {
  border-left: 3px solid var(--pelocis-base, #757ee2);
  padding: 0 18px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .call-area-one__content {
    margin-bottom: 0px;
  }
}

.call-area-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 11px;
}

.call-area-one__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin: 0;
}

.call-area-one__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .call-area-one__btn {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

.call-area-one__btn .pelocis-btn {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.call-area-one__btn .pelocis-btn::after {
  background-color: var(--pelocis-base, #757ee2);
}

.call-area-one__btn .pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

.call-area-one .container {
  position: relative;
  z-index: 2;
}

.call-area-one__right-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 26.5%;
  height: 100%;
  background-color: var(--pelocis-base, #757ee2);
  display: none;
}

@media (min-width: 992px) {
  .call-area-one__right-shape {
    display: block;
  }
}

.call-area-one__right-shape img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.call-area-one__left-shape {
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  height: 100%;
}

.call-area-one__left-shape img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.call-area-one--home-four {
  position: relative;
}

.call-area-one--home-four__left {
  position: absolute;
  left: 0;
  top: 0;
  border-right: 2px solid var(--pelocis-white, #fff);
  width: 19%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1700px) {
  .call-area-one--home-four__left {
    width: 10%;
  }
}

@media (max-width: 1400px) {
  .call-area-one--home-four__left {
    display: none;
  }
}

.call-area-one--home-four .call-area-one__content {
  margin-left: 40px;
  padding-left: 16px;
}

@media (max-width: 1199px) {
  .call-area-one--home-four .call-area-one__content {
    margin-left: 0;
  }
}

.call-area-two {
  padding-top: 71px;
  padding-bottom: 77px;
  position: relative;
  background-color: var(--pelocis-black, #222222);
}

.call-area-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.call-area-two__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.call-area-two__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .call-area-two__list {
    flex-wrap: wrap;
    gap: 10px 30px;
  }
}

.call-area-two__list li {
  color: var(--pelocis-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-area-two__list li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 50%;
  font-size: 10px;
  color: var(--pelocis-black, #222222);
  line-height: 17px;
  flex-shrink: 0;
}

.call-area-two .pelocis-btn {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

@media (max-width: 1199px) {
  .call-area-two .pelocis-btn {
    padding: 10px 32px;
  }
}

.call-area-two .pelocis-btn::after {
  background-color: var(--pelocis-base, #757ee2);
}

.call-area-two .pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

@media (max-width: 991px) {
  .call-area-two .text-end {
    text-align: left !important;
    margin-top: 40px;
  }
}

.call-area-three {
  position: relative;
  background-color: var(--pelocis-black, #222222);
  padding: 112px 0 283px;
}

@media (max-width: 767px) {
  .call-area-three {
    padding: 75px 0 243px;
  }
}

.call-area-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.12;
}

.call-area-three__content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.call-area-three__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
  color: var(--pelocis-white, #fff);
  margin: 0 0 10px;
}

.call-area-three__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 38px;
}

.call-area-three .pelocis-btn::after {
  background-color: var(--pelocis-white, #fff);
}

.call-area-three .pelocis-btn:hover {
  color: var(--pelocis-black, #222222);
}

.call-area-four {
  padding: 0 0 120px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .call-area-four {
    padding: 0 0 80px;
  }
}

.call-area-four .container {
  max-width: 1490px;
}

.call-area-four__wrapper {
  position: relative;
  background-color: var(--pelocis-base, #757ee2);
  border-radius: 200px;
  padding: 46px 145px 42px;
}

@media (max-width: 1440px) {
  .call-area-four__wrapper {
    padding: 46px 90px 42px;
  }
}

@media (max-width: 1199px) {
  .call-area-four__wrapper {
    border-radius: 100px;
  }
}

@media (max-width: 767px) {
  .call-area-four__wrapper {
    border-radius: 20px;
    padding: 46px 20px 42px;
  }
}

.call-area-four__content {
  border-left: 3px solid var(--pelocis-black, #222222);
  padding: 0 24px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .call-area-four__content {
    margin-bottom: 0px;
  }
}

.call-area-four__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  color: var(--pelocis-white, #fff);
  margin-bottom: 11px;
}

.call-area-four__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--pelocis-white, #fff);
  margin: 0;
}

.call-area-four__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .call-area-four__btn {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

.call-area-four__btn .pelocis-btn {
  background-color: var(--pelocis-white, #fff);
  color: var(--pelocis-black, #222222);
}

.call-area-four__btn .pelocis-btn::after {
  background-color: var(--pelocis-black, #222222);
}

.call-area-four__btn .pelocis-btn:hover {
  color: var(--pelocis-white, #fff);
}

.call-area-four .container {
  position: relative;
  z-index: 2;
}

.call-area-four__right-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 26.5%;
  height: 100%;
  background-color: var(--pelocis-base, #757ee2);
  display: none;
}

@media (min-width: 992px) {
  .call-area-four__right-shape {
    display: block;
  }
}

.call-area-four__right-shape img {
  position: absolute;
  bottom: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/
.brand-one {
  position: relative;
}

.brand-one__divider {
  flex: 1;
  height: 2px;
  top: 13px;
  background-color: var(--pelocis-border-color, #DDDDDD);
}

.brand-one__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-one__title h4 {
  width: fit-content;
  text-align: center;
  font-family: var(--pelocis-font, "Saira", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--pelocis-base, #757ee2);
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0;
}

.brand-one__carousel {
  position: relative;
  padding: 80px 0 90px;
}

@media (max-width: 767px) {
  .brand-one__carousel {
    padding: 50px 0 60px;
  }
}

.brand-one__card {
  text-align: center;
  border: 1px solid transparent;
  padding: 16px 0px;
  border-radius: 50px;
  margin: 2px;
  transition: all 0.3s ease;
}

.brand-one__card img {
  filter: grayscale(1);
  transition: all 0.3s ease;
  width: auto !important;
  margin: 0 auto;
}

.brand-one__card:hover {
  border-color: var(--pelocis-base, #757ee2);
}

.brand-one__card:hover img {
  filter: grayscale(0);
}

.brand-one--home-two {
  position: relative;
  border-bottom: 1px solid var(--pelocis-border-color, #DDDDDD);
}

.brand-one--home-two .brand-one__carousel {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .brand-one--home-two .brand-one__carousel {
    padding: 60px 0;
  }
}

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

.txt-wh {
  color: white;
}
.page-cus {
    margin-top: 120px;
    margin-bottom: 100px;
}