/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --getizy-font: "Plus Jakarta Sans", sans-serif;
  --getizy-text: #7F7D86;
  --getizy-text-rgb: 127, 125, 134;
  --getizy-base: #1A237E;
  --getizy-base-two: #787ebd;
  --getizy-base-rgb: 211, 61, 53;
  --getizy-base-rgb-two: 251, 132, 89;
  --getizy-secondary: #222230;
  --getizy-gray: #F4F5F8;
  --getizy-secondary-rgb: 34, 34, 48;
  --getizy-white: #FFFFFF;
  --getizy-white-rgb: 255, 255, 255;
  --getizy-netural: #FFEEEA;
  --getizy-netural-rgb: 255, 238, 234;
  --getizy-black: #10101C;
  --getizy-black-rgb: 16, 16, 28;
  --getizy-black2: #000000;
  --getizy-black2-rgb: 0, 0, 0;
  --getizy-border-color: #EBE3D9;
  --getizy-border-color-rgb: 235, 227, 217;
  --section-space: 120px;
  --getizy-letter-space: -1px;
  --getizy-letter-space-xl: -1.1px;
}

/*--------------------------------------------------------------
# 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-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;
}

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

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--getizy-font, "Plus Jakarta Sans", serif);
  font-size: 15px;
  color: var(--getizy-text, #7F7D86);
  font-weight: 500;
  line-height: 2;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--getizy-text, #7F7D86);
  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(--getizy-font, "Plus Jakarta Sans", serif);
  color: var(--getizy-secondary, #222230);
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-text, #7F7D86);
  line-height: 30px;
}

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

@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(--getizy-base, #1A237E);
}

.background-gray {
  background-color: #f5f5f5;
}

.background-black {
  background-color: var(--getizy-black, #10101C);
}

.background-black-2 {
  background-color: var(--getizy-secondary, #222230);
}

.getizy-text {
  color: var(--getizy-text, #7F7D86);
}

button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}

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

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

@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-two {
  padding-top: 117px;
  padding-bottom: var(--section-space, 120px);
}

@media (max-width: 767px) {
  .section-space-two {
    padding-top: 97px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .section-space-two {
    padding-top: 77px;
    padding-bottom: 80px;
  }
}

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

@media (max-width: 767px) {
  .section-space-top {
    padding-top: 100px;
  }
}

@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

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

@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gutter-y-80 {
  --bs-gutter-y: 180px;
}


.sec-title {
  margin-bottom: 20px;
}

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

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

.sec-title__tagline {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 5px;
  position: relative;
}

.sec-title__tagline span {
  padding-right: 5px;
  color: var(--getizy-secondary, #222230);
}

.sec-title__title {
  margin: 0;
  font-size: 50px;
  color: var(--getizy-secondary, #222230);
  font-weight: 700;
  line-height: 60px;
}

@media (max-width: 1199px) {
  .sec-title__title {
    font-size: 40px;
    line-height: 50px;

  }
}

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

@media (max-width: 575px) {
  .sec-title__title {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 425px) {
  .sec-title__title {
    font-size: 33px;
  }
}



.body-shape-one {
  width: 684px;
  height: 684px;
  border-radius: 50%;
  background-image: linear-gradient(130deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  opacity: 20%;
  filter: blur(150px);
  -webkit-filter: blur(150px);
}

.body-shape-two {
  float: right;
  width: 684px;
  height: 684px;
  border-radius: 50%;
  background-image: linear-gradient(130deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  opacity: 20%;
  filter: blur(150px);
  -webkit-filter: blur(150px);
}

.body-shape-three {
  float: right;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background-image: linear-gradient(130deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  opacity: 20%;
  filter: blur(150px);
  -webkit-filter: blur(150px);
}



.multiple-section {
  position: relative;
}

.mutiple-section__bg {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -1;
}

.trasted-one {
  background-color: #f5f5f5;
}

.trasted-one__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}

.trasted-one__desc {
  font-size: 20px;
  line-height: 31px;
  color: var(--getizy-secondary, #222230);
}

@media (max-width: 767px) {
  .trasted-one__wrap {
    display: inherit;
  }

  .trasted-one__desc {
    padding-bottom: 20px;
  }
}

.icon-thm-btn {
  position: relative;
  display: inline-block;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}



.icon-thm-btn:before {
  position: absolute;
  content: "";
  background-color: var(--getizy-secondary, #222230);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}

.icon-thm-btn:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.icon-thm-btn:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--getizy-secondary, #222230);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}

.icon-thm-btn:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}




.getizy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  transition: all 0.5s;
  font-weight: 600;
  color: var(--getizy-white, #ffffff);
  padding: 20px 40px;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  cursor: pointer;
}

@media (max-width: 1919px) {
  .getizy-btn {
    padding: 16px 25px;
  }
}

@media (max-width: 767px) {
  .getizy-btn {
    border-width: 1px;
  }
}

.getizy-btn:hover {
  background: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}


.btn-hover-cropping {
  overflow: hidden;
  position: relative;
  transition: all 1s;
  z-index: 1;
}

.btn-hover-cropping::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--getizy-secondary, #222230);
  transform: translateX(-50%) translateY(-50%) rotate(150deg);
  transition: all 1s;
  opacity: 0.5;
  z-index: -1;
}

.btn-hover-cropping:hover::after {
  height: 400%;
  opacity: 1;
}

.getizy-btn--black {
  background: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.getizy-btn--black:hover {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
}

.getizy-btn--black::after {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.getizy-btn--black::after {
  background-color: var(--getizy-secondary, #222230);
}

.getizy-btn--base:hover {
  color: var(--getizy-white, #FFFFFF);
}

.getizy-btn--base::after {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.getizy-btn--base::after {
  background-color: var(--getizy-secondary, #222230);
}


@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(--getizy-black, #10101C);
}

@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: 15px;
  font-weight: 500;
  color: var(--getizy-black, #10101C);
}

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

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

.preloader {
  position: fixed;
  background-color: var(--getizy-black, #10101C);
  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: 150%;
  height: 150%;
}

/* 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(--getizy-base, #1A237E);
  position: relative;
  overflow: hidden;
}

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

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


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

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

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

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

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

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

.getizy-owl__carousel--basic-nav .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
}

.getizy-owl__carousel--basic-nav .owl-nav .owl-prev,
.getizy-owl__carousel--basic-nav .owl-nav .owl-next {
  border-radius: 50%;
  overflow: hidden;
}

.getizy-owl__carousel--basic-nav .owl-nav button i {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: var(--getizy-gray, #6D7076);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--getizy-white, #fff);
  border-radius: 50%;
  font-size: 14px;
  transition: all 500ms ease;
}

.getizy-owl__carousel--basic-nav .owl-nav button i:hover {
  background-color: var(--getizy-black2, #111117);
  color: var(--getizy-white, #fff);
}

.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.getizy-owl__carousel--basic-nav .owl-dots .owl-dot span {
  background-color: var(--getizy-black2, #111117);
  border: 2px solid var(--getizy-white, #fff);
  box-shadow: 0 0 1px rgba(var(--getizy-black-rgb, 0, 0, 0), 1);
  margin: 0;
}



.getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 0;
}


.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: none;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  transition: all 400ms ease;

}

.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
  border: 1px solid var(--getizy-secondary);

}

.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--getizy-base);
  border: none;
}

.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--getizy-base);
  border: none;
}

.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover::after,
.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1.43px solid var(--getizy-netural);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  background-color: var(--getizy-secondary, #222230);
  transition: all 400ms ease;
}




/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--getizy-base);
  border-image-slice: 1;
  -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(--getizy-base);
  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(--getizy-base);
  opacity: 0.4;
}

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









/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/

.topbar {
  background-color: var(--getizy-secondary, #222230);
  padding-left: 35px;
}

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

.topbar .container-fluid {
  padding-right: 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__info {
  display: flex;
  align-items: center;
  margin: 0;
}

.topbar__info:nth-child(2) {
  margin-left: auto;
}

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

.topbar__info li+li {
  margin-left: 30px;
}

.topbar__info li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--getizy-text, #7F7D86);
  font-weight: 600;
  line-height: 1.5;
}

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

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

.topbar__info li i {
  font-size: 14px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 90%);
  color: transparent;
  background-clip: text;
  position: relative;
  top: 1px;
  margin-right: 5px;
}

.topbar__right {
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .topbar__right {
    width: 100%;
    justify-content: space-between;
  }
}

.topbar__social {
  background-color: var(--getizy-white, #FFFFFF);
  padding: 6px 50px;
  margin: 0;
  display: flex;
  align-items: center;
  margin-left: 35px;
}

@media (max-width: 1199px) {
  .topbar__social {
    margin-left: 0;
  }
}

.topbar__social a {
  font-size: 14px;
  color: var(--getizy-secondary, #222230);
}

.topbar__social a:hover {
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: transparent;
  background-clip: text;
}

.topbar__social a+a {
  margin-left: 26px;
}


.topbar--two {
  background-color: #f5f5f5;
}

.topbar--two .topbar__social {
  background-color: var(--getizy-text);

}

.topbar--two .topbar__social a {
  color: var(--getizy-white, #FFFFFF);
}

.topbar--two .topbar__social a:hover {
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: transparent;
  background-clip: text;
}

.topbar--three {
  background-color: transparent;
  padding-left: 0;
  margin-right: 308px;
  z-index: 11;
  display: flex;
  align-items: center;
}

.topbar--three .container-fluid {
  padding: 0;
}

.topbar--three .topbar__inner {
  height: 40px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  padding-left: 180px;
  padding-right: 65px;
}

.topbar--three .topbar__social {
  position: absolute;
  top: 0;
  right: 75px;
  z-index: 222;
  background-color: var(--getizy-secondary, #222230);
  margin: 0;
}

.topbar--three .topbar__social a {
  color: var(--getizy-white, #FFFFFF);
}

.topbar--three .topbar__social a:hover {
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: transparent;
  background-clip: text;
}




/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  z-index: 99;
  background-color: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 8%);
}

.main-header__container-fluid {
  padding: 0;
}

.main-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.main-header__logo {
  margin-right: 99px;
  padding: 30px 78px 30px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dbdbdb;
}

.main-header__logo img {
  width: 132px;
  height: 55px;

}

@media (max-width: 1500px) {
  .main-header__logo {
    margin-right: 50px;
  }
}

@media (max-width: 1439px) {
  .main-header__logo {
    margin-right: 35px;
    padding: 30px 30px 30px 30px;
  }
}

@media (max-width: 767px) {
  .main-header__logo {
    margin-right: 0px;
    padding: 0;
    background-color: transparent;
    padding-left: 20px;
  }
}

.main-header__right {
  flex-grow: 1;
  position: relative;

}

@media (max-width: 1199px) {
  .main-header__right {
    flex-grow: 0;
    position: relative;
    align-items: center;
    display: flex;
    padding-right: 20px;
  }
}

.main-header__right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 490px;
  height: 100%;
  z-index: -1;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.main-header__right__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.main-header__right__right {
  display: flex;
  align-items: center;
  padding: 27.21px 50px 27.21px 121px;
  position: relative;
  gap: 20px;
}

@media (max-width: 1350px) {
  .main-header__right__right {
    padding: 27.21px 35px 27.21px 90px;
    gap: 15px;
  }

  .main-header__right::after {
    width: 415px;

  }
}

.main-header__btn {
  position: absolute;
  left: -60px;
  background-image: none;
  background-color: #000;
  color: #fff;
  padding: 15px 20px;
}

@media (max-width: 1290px) {
  .main-header__right__right {
    gap: 15px;
    padding: 27.21px 35px 27.21px 30px;
  }

  .main-header__btn {
    display: none;
  }

  .main-header__right::after {
    width: 375px;
  }
}

@media (max-width: 1199px) {
  .main-header__right__right {
    padding: 27.21px 0 27.21px 30px;
    gap: 15px;
    height: 100px;
  }

  .main-header__right::after {
    width: 430px;
  }


}


.main-header__right__right .info-item .icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  transition: 0.5s;
}

.main-header__right__right .info-item:hover .icon {
  background-color: #f5f5f5;
  color: var(--getizy-secondary, #222230);
  rotate: -30deg;
}

.main-header__right__right .info-item .icon span {
  font-size: 20px;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;
}

.main-header__right__right .info-item:hover .icon span {
  color: var(--getizy-secondary, #222230);
}

.main-header__right__right .info-item .content {
  margin-top: -6px;
  padding-right: 30px;
  border-right: 1px solid RGBA(var(--getizy-netural-rgb, 255, 238, 234), 0.2);
  margin-right: 10px;
}

.main-header__right__right .info-item .content__text {
  font-size: 13px;
  font-weight: 500;
  color: #f5f5f5;
}

.main-header__right__right .info-item:hover .content__text {
  color: #f5f5f5;
}

.main-header__right__right .info-item .content__call {
  font-size: 18px;
  font-weight: 800;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;
}

.main-header__right__right .info-item:hover .content__call {
  color: var(--getizy-secondary, #222230);
}

.main-header__right__right .info-item span {
  font-size: 20px;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;

}

.main-header__right__right .info-item:hover span {
  color: var(--getizy-secondary, #222230);

}

@media (max-width: 767px) {
  .main-header__right__right {
    padding: 0;
    gap: 20px;
    height: 100px;
  }

  .main-header__right::after {
    width: 100%;
  }

  .main-header__right__right .info-item:nth-child(2) {
    display: none;
  }


  .main-header__right {
    padding-right: 45px;
    padding-left: 30px;
  }
}

/* main-header--two */

.main-header--two {
  background-color: transparent;
  box-shadow: none;
}


.main-header--two .main-header__logo img {
  width: 129px;
  height: 35px;
}


.main-header--two .main-header__logo {
  margin-right: 0;
  margin-left: 134px;
  padding: 27.50px 23px 27.50px 25px;
  background-color: var(--getizy-secondary, #222230);
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
}


.main-header--two .main-header__right {
  background-color: var(--getizy-white, #FFFFFF);
}

.main-header--two .main-header__right__left {
  padding-left: 50px;
}

.main-header--two .main-header__right__inner {
  position: relative;

}

.main-header--two .main-header__right__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
  left: 0;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  z-index: 222;
}

.main-header--two .main-header__right__right {
  background: var(--getizy-white, #FFFFFF);
  padding: 27px 0;
  gap: 20px;
}


.main-header--two .main-header__right__right .info-item span {
  color: var(--getizy-secondary, #222230);
}

.main-header--two .main-header__right__right .info-item .icon {
  background: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  position: relative;
  margin-left: 40px;
}

.main-header--two .main-header__right__right .info-item .icon::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 44px;
  background-color: #f5f5f5;
  left: -30px;
}



.main-header--two .main-header__right__right .info-item .icon span {
  color: var(--getizy-white, #FFFFFF);
}

.main-header--two .main-header__right__right .info-item:hover .content__text {
  color: var(--getizy-secondary, #222230);
}

.main-header--two .main-header__right__right .info-item .content__call {
  font-size: 18px;
  font-weight: 800;
  color: var(--getizy-secondary, #222230);
}

.main-header--two .main-header__right__right .info-item:hover .content__call {
  color: var(--getizy-base);
}


.main-header--two__btn {
  padding: 28px 50.5px;
  background-color: var(--getizy-secondary, #222230);
}


.main-header--two__btn .getizy-btn {
  padding: 15px 20px;
  font-size: 14px;

}

.main-header--two__btn .getizy-btn:hover {
  background-color: #f5f5f5;
  color: var(--getizy-secondary, #222230);

}

.main-header--two__btn .btn-hover-cropping::after {
  background-color: #f5f5f5;

}

@media (max-width: 1525px) {
  .main-header--two .main-header__right__right .info-item {
    display: none;
  }
}

@media (max-width: 1199px) {
  .main-header--two .main-header__right {
    flex-grow: 1;

  }

  .main-header--two .main-header__right::after {
    content: none;
  }

  .main-header--two .main-header__right__inner::after {
    content: none;

  }

  .main-header--two .main-header__logo {
    margin-left: 0;

  }
}

@media (max-width: 590px) {
  .main-header--two .main-header__right {
    justify-content: space-between;
  }

  .main-header--two__btn {
    display: none;
  }
}


.main-header--two .mobile-nav__btn span {
  background-color: var(--getizy-secondary, #222230);
}





/* main-header--three */


.main-header--three .main-header__logo {
  margin-left: 180px;
  margin-right: 64px;
  padding: 30px 0px 30px 0;
  background-color: var(--getizy-white, #FFFFFF);
}


.main-header--three .main-header__logo img {
  width: 129px;
  height: 35px;
}

.main-header--three .main-header__right__right {
  background: none;
  padding: 27.21px 127px 27.21px 0;
  position: relative;
}

.main-header--three .main-header__right::after {
  content: none;

}

.main-header--three .main-header__right__right .info-item .content {
  padding-right: 0;
  border: 0;
}

.main-header--three .main-header__right__right .info-item:hover .content__call {
  color: var(--getizy-base);
}

.main-header--three .main-header__right__right .info-item .icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.main-header--three .main-header__right__right .info-item .icon span {
  color: var(--getizy-white, #FFFFFF);
}

.main-header--three__shape {
  position: absolute;
  top: -40px;
  right: 60px;
  z-index: -9;
}

.main-header--three .getizy-btn {
  padding: 15px 20px;
  margin-left: 10px;
}

.main-header--three .main-header__right__right .info-item span {
  font-size: 20px;
  color: var(--getizy-secondary, #222230);

}

.main-header--three .main-header__right__right .info-item:nth-child(3) {
  position: relative;
  padding-right: 30px;
}

.main-header--three .main-header__right__right .info-item:nth-child(3)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 44px;
  top: -11px;
  left: 50px;
  background-color: rgba(var(--getizy-secondary-rgb, 34, 34, 48), 20%);
}

.main-header--three .main-header__right__right .info-item .content__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--getizy-white, #FFFFFF);
}


@media (max-width: 1590px) {
  .main-header--three .main-header__logo {
    margin-left: 50px;
    margin-right: 45px;
  }

  .topbar--three .topbar__inner {
    padding-left: 50px;
  }

  .main-header--three .getizy-btn {
    margin-left: 0px;
  }
}

@media (max-width: 1440px) {
  .main-header--three .main-header__logo {
    margin-left: 50px;
    margin-right: 22px;
  }

  .main-header--three .main-header__right__right .info-item {
    display: none;
  }

  .main-header--three__shape {
    right: 40px;

  }
}

@media (max-width: 1199px) {
  .main-header--three__shape {
    right: -5px;
  }

}

@media (max-width: 991px) {
  .main-header--three__shape {
    display: none;
  }

  .main-header--three .main-header__right::after {
    content: "";
    background: var(--getizy-secondary, #222230);

  }
}

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

  .main-header--three .main-header__right__right {
    padding-right: 0;
  }

  .main-header--three .getizy-btn {
    display: none;
  }
}






.main-header--four {
  background-color: var(--getizy-secondary, #222230);
}

.main-header--four .main-header__logo {
  margin-left: 180px;
  margin-right: 64px;
  background-color: transparent;
  padding-right: 0;
}


.main-header--four .main-header__right__right {
  background: none;
  padding: 0;
}

.main-header--four .main-header__right::after {
  content: none;
}

.main-header--four .main-header__right__right .info-item span {
  color: var(--getizy-white, #FFFFFF);
}

.main-header--four .main-header__right__right .info-item .icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}

.main-header--four .main-header__right__right .info-item:hover .content__call {
  color: var(--getizy-base);
}


.main-header--four__btn {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  padding: 27px 73px;
  margin-left: 75px;
}

.main-header--four__btn .getizy-btn {
  padding: 15px 20px;
  background: var(--getizy-secondary, #222230);
}

.main-header--four .main-menu .main-menu__list>li.current>a,
.main-header--four .main-menu .main-menu__list>li:hover>a {
  color: transparent;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
  text-shadow: 0 0 0.5px currentColor;
}

.main-header--four__btn .getizy-btn:hover {
  background: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}

.main-header--four__btn .btn-hover-cropping::after {
  background: #f5f5f5;
}

@media (max-width: 1790px) {
  .main-header--four .main-header__logo {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 1550px) {
  .main-header--four__btn {
    margin-left: 0;
  }
}

@media (max-width: 1380px) {
  .main-header--four .main-header__right__right .info-item {
    display: none;
  }
}



@media (max-width: 1199px) {
  .main-header--four .main-header__right__right .info-item {
    display: block;
  }

  .main-header--four .main-header__right__right .info-item:nth-child(1) {
    display: none;
  }

  .main-header--four .main-header__right__right {
    gap: 20px;
  }

  .main-header--four__btn {
    display: none;
  }
}






.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--getizy-white, #FFFFFF);
  transform: translateY(-100%);
  box-shadow: 0px 4px 30px rgba(0.0, 0, 8%);
  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;
}

.sticky-header--cloned.main-header .topbar {
  display: none;
}

.sticky-header--cloned.main-header--two {
  background-color: transparent;
}

@media (max-width: 1399px) {
  .sticky-header--cloned.main-header--two .main-header__call::before {
    left: -20px;
  }
}

.sticky-header--cloned.main-header--three {
  background-color: var(--getizy-white, #FFFFFF);
}

.sticky-header--cloned.main-header--four {
  background-color: var(--getizy-secondary, #222230);
}

.sticky-header--cloned.main-header--three .main-header__bg {
  display: none;
}

.sticky-header--cloned.main-header--three .main-header__top {
  display: none;
}

@media (max-width: 575px) {
  .sticky-header--cloned.main-header--three .main-header__inner__right {
    padding-right: 0px;
  }
}

.mobile-nav__btn {
  min-width: 24px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media screen and (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  display: block;
  background-color: var(--getizy-white, #FFFFFF);
}

.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-top: 39.5px;
  padding-bottom: 39.5px;
  position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
  position: relative;
}

.main-menu .main-menu__list>li+li {
  margin-left: 38px;
}

@media (max-width: 1599px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 35px;
  }
}

.main-menu .main-menu__list>li>a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--getizy-text, #7F7D86);
  font-weight: 600;
  text-transform: capitalize;
  line-height: normal;
  position: relative;
  transition: all 500ms ease;
}


.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
  color: var(--getizy-secondary, #222230);
  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: #f5f5f5;
  padding: 15px 20px 11px;
}

.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: -20px !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 li ul li>a {
  font-size: 14px;
  line-height: 25px;
  color: var(--getizy-text, #7F7D86);
  font-weight: 600;
  display: flex;
  text-transform: capitalize;
  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: 14px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  color: var(--getizy-white, #FFFFFF);
  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(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.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(--getizy-white, #FFFFFF);
  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;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--getizy-secondary, #222230);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--getizy-text, #7F7D86);
}

.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: #f5f5f5;
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}

.demo-one__card:hover {
  transform: translateY(-10px);
}

.demo-one__title {
  margin: 0;
  font-size: 20px;
  color: #212226;
  font-weight: 700;
}

.demo-one__title:hover {
  color: var(--getizy-base);
}

.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(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: 12px;
  padding: 13px 29px 12px;
}

.demo-one__btn::before {
  background-color: var(--getizy-base);
}

.demo-one__btn::after {
  background-color: var(--getizy-secondary, #222230);
}

.demo-one__btn:hover {
  color: var(--getizy-white, #FFFFFF);
}

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

.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase .container {
  max-width: 1350px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: #f5f5f5;
}

.home-showcase .demo-one__card {
  box-shadow: none;
}

.home-showcase .demo-one__btns {
  flex-direction: column;
}

.home-showcase .demo-one__btn {
  min-width: 130px;
  text-align: center;
  justify-content: center;
}

.home-showcase .demo-one__title {
  padding: 0;
  font-size: 16px;
  margin-top: 15px;
  padding-bottom: 15px;
}


/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}

@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}

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

.form-one__control__full {
  grid-column-start: 1;
  grid-column-end: -1;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 58px;
  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(--getizy-secondary, #222230);
  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%;
  height: 60px;
  background-color: #f5f5f5;
  color: var(--getizy-secondary, #222230);
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}

.form-one .bootstrap-select>.dropdown-toggle::placeholder,
.form-one input[type=text]::placeholder,
.form-one input[type=email]::placeholder,
.form-one textarea::placeholder {
  color: var(--getizy-secondary, #222230);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

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

.form-one textarea::placeholder {
  text-transform: none;
}


/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

.hero-slider-one {
  position: relative;
  z-index: 11;
}

.hero-slider-one__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}


.hero-slider-one__shape__one {
  width: 100%;
  max-width: 500px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transform: translateX(10%);
  transition: transform 1000ms ease, opacity 1000ms ease;

}

.hero-slider-one__shape__two {
  width: 100%;
  max-width: 500px;
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 0;
  opacity: 0;
  transform: translateX(30%);
  transition: transform 2000ms ease, opacity 2000ms ease;
}


.hero-slider-one__carousel.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots {
  gap: 35px;
  position: absolute;
  right: 145px;
  top: 115px;
  rotate: 90deg;
}

@media (max-width: 1439px) {
  .hero-slider-one__carousel.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots {
    right: 20px;
  }

}

@media (max-width: 767px) {
  .hero-slider-one__carousel.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: none;
  }

  .hero-slider-one__title__anim__image {
    display: none;
  }

}

.hero-slider-one__carousel.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;
}


.hero-slider-one__carousel.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: var(--getizy-text);
  border: none;
}

.hero-slider-one__carousel.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--getizy-base);
  border: none;
}

.hero-slider-one .container {
  padding-top: 195px;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}

.hero-video {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease, transform 0.5s ease;

}


.hero-video.icon-thm-btn::before,
.hero-video.icon-thm-btn::after {
  background: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.hero-video:hover.icon-thm-btn::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.hero-video:hover.icon-thm-btn::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.hero-video span {
  color: var(--getizy-white, #FFFFFF);
  font-size: 14px;
  padding-left: 4px;
}



.hero-slider-one__content {
  overflow: hidden;
}

.hero-slider-one__sub-title {
  font-size: 16px;
  color: transparent;
  background: linear-gradient(-183deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 14px;
  opacity: 0;
  transition: transform 1500ms ease, opacity 1500ms ease;
  transform: translateY(-200px);
}

.hero-slider-one__title {
  position: relative;
  font-size: 60px;
  font-weight: 800;
  max-width: 600px;
  line-height: normal;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 5px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}

@media (max-width: 520px) {
  .hero-slider-one__title {
    font-size: 45px;
  }
}

.hero-slider-one__title:after {
  content: "";
  width: 100%;
  height: 110%;
  position: absolute;
  top: 12px;
  left: -100%;
  background: currentColor;
  -webkit-transition: 1500ms cubic-bezier(0.858, 0.01, 0.068, 0.99);
  -o-transition: 1500ms cubic-bezier(0.858, 0.01, 0.068, 0.99);
  transition: 1500ms cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}



.hero-slider-one__title__anim:nth-child(3) .tion {
  font-size: 80px;
  line-height: 75px;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-slider-one__title__anim .solu {
  font-size: 80px;
  line-height: 75px;
  color: transparent;
  -webkit-text-stroke: 2px #C0A265 ;
  text-transform: capitalize;
  font-weight: 800;
}

@media (max-width: 390px) {

  .hero-slider-one__title {
    font-size: 35px;
  }

  .hero-slider-one__title__anim:nth-child(3) .tion {
    font-size: 60px;

  }

  .hero-slider-one__title__anim .solu {
    font-size: 60px;

  }

}

.hero-slider-one__title__anim__image {
  position: absolute;
  bottom: 42%;
  left: 450px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1200ms ease, opacity 1200ms ease;
  padding-bottom: 30px;
}

.hero-slider-one__title__anim__image img {
  animation: rotateOne 2s linear infinite;
}

.hero-slider-one__text {
  position: relative;
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1200ms ease, opacity 1200ms ease;
  padding-bottom: 30px;
}

.hero-slider-one__btn {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}




.hero-slider-one__images__one {
  position: relative;
  position: absolute;
  right: 105px;
  top: 115px;
  width: 100%;
  max-width: 484px;
  height: 594px;
  opacity: 0;
  transform: translateY(250px);
  transition: transform 1700ms ease, opacity 1700ms ease;
}

.hero-slider-one__images__one img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

@media (max-width: 1350px) {
  .hero-slider-one__images__one {
    max-width: 400px;

  }

}

.hero-slider-one__images__one::after {
  content: "";
  position: absolute;
  top: -30px;
  bottom: 0;
  left: -30px;
  width: 50%;
  height: 85%;
  border-left: 4px solid var(--getizy-white);
  border-top: 4px solid var(--getizy-white);
  background-color: transparent;
}

.hero-slider-one__images__one .border-shape {
  width: 4px;
  height: 101px;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  position: absolute;
  bottom: 230px;
  left: -30px;
  z-index: 2;
  animation: topToBottomBig 15s linear infinite;
}

.hero-slider-one__images__one__shape__one {
  position: absolute;
  top: 46px;
  left: -86px;
  z-index: 2;
  animation: topToBottom 2s linear infinite;

}

.hero-slider-one__images__one__shape__two {
  position: absolute;
  bottom: 0px;
  left: -85px;
  z-index: 11;
  animation: zoomBig 2s linear infinite;
}

.hero-slider-one__images__one__shape__three {
  position: absolute;
  background-color: var(--getizy-white, #FFFFFF);
  padding: 30px 33px;
  bottom: -54px;
  z-index: 11;
  left: 70px;
}

.hero-slider-one__images__one__shape__three h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  text-align: center;
  line-height: 24px;
  padding-top: 10px;
}


.hero-slider-one__images__two {
  position: absolute;
  right: -131px;
  bottom: 0;
  display: inline-block !important;
  width: 236px !important;
  height: 467px;
  z-index: -1;
  opacity: 0;
  transform: translateX(200px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}

@media (max-width: 1350px) {
  .hero-slider-one__images__two {
    height: 300px;
    right: -70px;
  }
}

@media (max-width: 1199px) {
  .hero-slider-one__images__two {
    display: none !important;

  }

  .hero-slider-one .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 390px) {
  .hero-slider-one .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hero-slider-one__images__two img {
  height: 100%;
  object-fit: cover;
}

.hero-slider-one__images__two__btn {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -65px;
  left: 30%;
  transform: translate(-50%);
  transition: all 400ms ease;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: leftToRight;
}

.hero-slider-one__images__two__btn span {
  font-size: 37px;
  color: var(--getizy-white, #FFFFFF);
}



.hero-slider-one__img__two__bg {
  position: relative;
  position: absolute;
  z-index: -1;
  right: -32px;
  bottom: 0;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  background-color: var(--getizy-white, #ffffff);
}


.hero-slider-one .active .hero-slider-one__shape__one {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition-delay: 1000ms;
}

.hero-slider-one .active .hero-slider-one__shape__two {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition-delay: 1500ms;
}


@media (max-width: 1439px) {
  .hero-slider-one .active .hero-slider-one__shape__one {
    display: none;

  }

  .hero-slider-one .active .hero-slider-one__shape__two {
    display: none;
  }
}

.hero-slider-one .active .hero-slider-one__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}

.hero-slider-one .active .hero-slider-one__title::after {
  transform: translateX(-1%);
  transition-delay: 1200ms;
}

.hero-slider-one .active .hero-slider-one__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}

.hero-slider-one .active .hero-slider-one__btn {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1700ms;
}

.hero-slider-one .active .hero-slider-one__title__anim__image {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1900ms;
}

.hero-slider-one .active .hero-slider-one__text {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1900ms;
}

.hero-slider-one .active .hero-slider-one__images__one {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider-one .active .hero-slider-one__images__two {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1199px) {
  .hero-slider-one .active .hero-slider-one__images__one {
    display: none;

  }

  .hero-slider-one .active .hero-slider-one__images__two {
    display: none;
  }
}

/* hero-slider-two */

.hero-slider-two {
  position: relative;
  z-index: 2;
}

.hero-slider-two__bg {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: 0;
  mix-blend-mode: saturation;
  filter: grayscale(100%);

}

.hero-slider-two__overlay {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: -100px;
  opacity: 80%;
  z-index: 1;
  width: 100%;
  height: 114.4%;
}

.hero-slider-two .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
  display: none;
}

.hero-slider-two__content {
  padding: 140px 0 105px 0;
  position: relative;
  z-index: 1;
}

.hero-slider-two__title {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: transform 1000ms ease-in-out, opacity 1000ms ease;

}



.hero-slider-two__title__one {
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  width: 619px;
  height: 114.33px;
  position: relative;
  rotate: 0.68deg;
  z-index: 3;
}


.hero-slider-two__title__one::after {
  content: "";
  position: absolute;
  top: -114px;
  width: 259px;
  height: 100%;
  background-color: var(--getizy-white, #FFFFFF);
  clip-path: polygon(0 99%, 100% 70%, 100% 100%, 0 100%);

}


.hero-slider-two__title__one .hero-slider-two__title__text-one {
  font-size: 96px;
  font-weight: bold;
  color: var(--getizy-white, #FFFFFF);
  position: absolute;
  bottom: 10px;
  left: 48px;
}

.hero-slider-two__title__two {
  background: var(--getizy-white, #FFFFFF);
  width: 825px;
  height: 135px;
  position: relative;
  rotate: -2.21deg;
  margin-left: -37px;
}

.hero-slider-two__title__two::after {
  content: "";
  position: absolute;
  bottom: -135px;
  right: 10px;
  width: 259px;
  height: 100%;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 28%);
}

.hero-slider-two__title__two .hero-slider-two__title__text-two {
  font-size: 96px;
  font-weight: bold;
  color: var(--getizy-secondary, #222230);
  position: absolute;
  bottom: 18px;
  left: 35px;
}

.hero-slider-two__title__three .hero-slider-two__title__text-three {
  font-size: 96px;
  font-weight: bold;
  color: var(--getizy-white, #FFFFFF);
}

.hero-slider-two__btn {
  margin-top: 35px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}

.hero-slider-two__btn .getizy-btn:hover {
  background: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}

.hero-slider-two__btn .btn-hover-cropping::after {

  background-color: #f5f5f5;

}



.hero-slider-two__image {
  width: 724px;
  height: 801px;
  position: relative;
  z-index: 3;
  right: 0;
  position: absolute;
  top: -100px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transform-style: preserve-3d;
  transition: transform 1500ms ease-in-out, opacity 1500ms ease;
}

.hero-slider-two .active .hero-slider-two__image {
  opacity: 1;
  transform: scaleX(1);
}

.hero-slider-two__image img {

  height: 100%;
  object-fit: cover;
}


@media (max-width: 1870px) {
  .hero-slider-two__title__two {
    width: 100%;

  }

  .hero-slider-two__title__two .hero-slider-two__title__text-two {
    font-size: 86px;
    bottom: 20px;
  }
}

@media (max-width: 1750px) {
  .hero-slider-two__image {
    width: 624px;
    height: 793px;
  }
}

@media (max-width: 1550px) {
  .hero-slider-two__title__two {
    width: 90%;
  }

  .hero-slider-two__title__two .hero-slider-two__title__text-two {
    font-size: 70px;
    bottom: 30px;
  }
}

@media (max-width: 1439px) {
  .hero-slider-two__title__one .hero-slider-two__title__text-one {
    font-size: 70px;
  }

  .hero-slider-two__title__one {
    width: 480px;
  }

  .hero-slider-two__title__two {
    width: 75%;
  }

  .hero-slider-two__title__two .hero-slider-two__title__text-two {
    font-size: 65px;
  }
}

@media (max-width: 1199px) {
  .hero-slider-two__image {
    display: none;
  }


  .hero-slider-two__title__one {
    width: 80%;
  }

  .hero-slider-two__title__one .hero-slider-two__title__text-one {
    font-size: 96px;
  }

  .hero-slider-two__title__two {
    width: 100%;
  }

  .hero-slider-two__title__two .hero-slider-two__title__text-two {
    font-size: 96px;
  }
}

@media (max-width: 991px) {
  .hero-slider-two__title__one .hero-slider-two__title__text-one {
    font-size: 80px;
  }

  .hero-slider-two__title__two .hero-slider-two__title__text-two {
    font-size: 80px;
  }

}

@media (max-width: 767px) {
  .hero-slider-two__title__one .hero-slider-two__title__text-one {
    font-size: 60px;
    bottom: 25px;
    left: 40px;
  }

  .hero-slider-two__title__two .hero-slider-two__title__text-two {
    font-size: 60px;
    left: 20px;
  }
}

@media (max-width: 540px) {
  .hero-slider-two__title__one {
    width: 100%;
    rotate: 0deg;
  }

  .hero-slider-two__title__one .hero-slider-two__title__text-one {
    font-size: 45px;
    bottom: 25px;
    left: 40px;

  }

  .hero-slider-two__title__one::after {
    content: none;

  }

  .hero-slider-two__title__two {
    width: 100%;
    height: 110px;
    position: relative;
    rotate: 0deg;
    margin-left: 0;
  }

  .hero-slider-two__title__two .hero-slider-two__title__text-two {
    font-size: 40px;
    left: 20px;
  }

  .hero-slider-two__title__two::after {
    content: none;

  }

  .hero-slider-two__title__three .hero-slider-two__title__text-three {
    font-size: 70px;
  }
}

.hero-slider-two .active .hero-slider-two__title {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 300ms;

}

.hero-slider-two .active .hero-slider-two__btn {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1700ms;
}

/* hero-slider-three */

.hero-slider-three {
  position: relative;
  z-index: 2;
}

.hero-slider-three__bg {
  background-color: var(--getizy-white, #FFFFFF);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: 1;

}

.hero-slider-three .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {

  display: none;
}

.hero-slider-three__wrapper {
  position: relative;
  z-index: 11;
  overflow: hidden;
}

.hero-slider-three__image__one {
  width: 395px;
  height: 485px;
  position: absolute;
  right: 114px;
  top: 130px;
  rotate: 10deg;
  opacity: 0;
  transform: translateY(250px);
  transition: transform 1500ms ease, opacity 1500ms ease;

}

@keyframes treeMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(2deg) translateX(5px);
    transform: rotate(2deg) translateX(5px);
  }

  50% {
    -webkit-transform: rotate(4deg) translateX(10px);
    transform: rotate(4deg) translateX(10px);
  }
}



.hero-slider-three__image__one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: treeMove 4s linear 0s infinite;
}

.hero-slider-three__image__two {
  width: 229px;
  height: 294px;
  position: relative;
  position: absolute;
  right: 320px;
  top: 325px;
  z-index: 1;
  rotate: -15deg;
  opacity: 0;
  transform: translateY(-250px);
  transition: transform 1500ms ease, opacity 1500ms ease;


}

.hero-slider-three__image__two::after {
  content: "";
  position: absolute;
  width: calc(100% + 45px);
  height: calc(100% + 40px);
  background-color: var(--getizy-white, #FFFFFF);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;

}

.hero-slider-three__image__two img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.hero-slider-three__image__three {
  width: 369px;
  height: 474px;
  position: relative;
  position: absolute;
  left: 170px;
  top: 130px;
  rotate: -17.66deg;
  opacity: 0;
  transform: translateX(-250px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}

.hero-slider-three__image__three::after {
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 55px);
  position: absolute;
  top: -20px;
  right: 50px;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  z-index: -1;
  animation: treeMove 4s linear 0s infinite;

}

.hero-slider-three__image__three img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: treeMove 4s linear 0s infinite;

}

.hero-slider__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
  margin-bottom: 60px;
  overflow: hidden;
}

.hero-slider-three__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: transform 1400ms ease, opacity 1400ms ease;
  transform: translateY(-200px);
}

.hero-slider-three__title__anim {
  font-size: 70px;
  font-weight: 800;
  color: var(--getizy-secondary, #222230);
  line-height: 80px;

}


.hero-slider-three__title__anim:nth-child(1) {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}


.hero-slider-three__title__overlay {
  display: block;
  background-color: var(--getizy-secondary, #222230);
  height: calc(100% + 20px);
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 800ms ease;
  transition: transform 800ms ease;
  width: 25%;
  z-index: 1;
}

.hero-slider-three__title__overlay--1 {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hero-slider-three__title__overlay--2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hero-slider-three__title__overlay--3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hero-slider-three__title__overlay--4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.hero-slider-three__desc {
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(150px);
  transition: transform 1400ms ease, opacity 1400ms ease;
}



.hero-slider-three__line {
  position: relative;
  padding: 30px 0;
  opacity: 0;
  transform: translateY(150px);
  transition: transform 1600ms ease, opacity 1600ms ease;
}

.hero-slider-three__line::after {
  content: "";
  width: 2px;
  height: 60px;
  background-color: var(--getizy-secondary, #222230);
  position: absolute;

}

.hero-slider-three__btn__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--getizy-secondary, #222230);
  margin-top: 60px;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: topToBottom;


}

.hero-slider-three__btn__icon span {
  font-size: 26px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  rotate: 90deg;
}

.hero-slider-three__btn {
  opacity: 0;
  transform: translateY(150px);
  transition: transform 1600ms ease, opacity 1600ms ease;
}



@media (max-width: 1860px) {
  .hero-slider-three__image__three {
    width: 330px;
    height: 390px;
    left: 86px;
    top: 180px;
  }

  .hero-slider-three__image__one {
    width: 350px;
    height: 430px;
    right: 60px;
  }

  .hero-slider-three__image__two {
    width: 200px;
    top: 390px;

  }
}

@media (max-width: 1630px) {
  .hero-slider-three__image__three {
    width: 260px;
    height: 320px;
    left: 75px;
  }

  .hero-slider-three__image__one {
    width: 300px;
    height: 400px;
    right: 30px;
  }

  .hero-slider-three__image__two {
    width: 200px;
    top: 370px;
    right: 270px;
  }
}

@media (max-width: 1530px) {
  .hero-slider-three__title__anim {
    font-size: 60px;
    line-height: 65px;
  }
}

@media (max-width: 1350px) {
  .hero-slider-three__image__three {
    display: none;
  }

  .hero-slider-three__image__one {
    display: none;
  }

  .hero-slider-three__image__two {
    display: none;
  }

  .hero-slider-three__title__anim {
    font-size: 80px;
    line-height: 80px;
  }
}

@media (max-width: 1199px) {
  .hero-slider-three__title__anim {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-slider-three__title__anim {
    font-size: 60px;
    line-height: 70px;
    text-align: center;
  }

}

@media (max-width: 767px) {
  .hero-slider-three__title__anim {
    font-size: 48px;
    line-height: 60px;
  }

}

.hero-slider-three .active .hero-slider-three__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}

.hero-slider-three .active .hero-slider-three__title__overlay {
  opacity: 1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition-delay: 2500ms;
}


.hero-slider-three .active .hero-slider-three__desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1400ms;
}


.hero-slider-three .active .hero-slider-three__line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1600ms;
}

.hero-slider-three .active .hero-slider-three__btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1600ms;
}

.hero-slider-three .active .hero-slider-three__image__one {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}

.hero-slider-three .active .hero-slider-three__image__two {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}

.hero-slider-three .active .hero-slider-three__image__three {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}

/* hero-slider-four */

.hero-slider-four {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-slider-four__bg {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: saturation;
  filter: grayscale(100%);

}

.hero-slider-four__overlay {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 0;
  opacity: 80%;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-slider-four__shape__one {
  max-width: 1000px;
  position: absolute;
  top: 0px;
  right: -10px;
  z-index: 1;
  opacity: 0;
  transform: translateX(10%);
  transition: transform 1000ms ease, opacity 1000ms ease;
}

.hero-slider-four__shape__one img {
  -webkit-animation: leftToRightFive 3s infinite linear;
  animation: leftToRightFive 3s infinite linear;
}


.hero-slider-four__shape__two {
  max-width: 300px;
  position: absolute;
  top: 0;
  z-index: 11;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 1000ms ease, opacity 1000ms ease;

}

.hero-slider-four__shape__two img {
  -webkit-animation: leftToRightTwo 3s infinite linear;
  animation: leftToRightTwo 3s infinite linear;
}

.hero-slider-four__image {
  width: 575px;
  height: 756px;
  opacity: 0;
  transform: translateY(30%);
  transition: transform 1000ms ease, opacity 1000ms ease;
}

.hero-slider-four__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slider-four__shape__three {
  max-width: 650px;
  position: absolute;
  top: 115px;
  right: 240px;
  z-index: 3;
  opacity: 0;
  transform: translateY(-10%);
  transition: transform 1000ms ease, opacity 1000ms ease;
}

.hero-slider-four__shape__three img {
  -webkit-animation: bottomToTop 3s infinite linear;
  animation: bottomToTop 3s infinite linear;
}


.hero-slider-four__shape__four {
  max-width: 180px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 1000ms ease, opacity 1000ms ease;
}

.hero-slider-four__shape__four img {
  -webkit-animation: topToBottomTwo 2s infinite linear;
  animation: topToBottomTwo 2s infinite linear;
}

.hero-slider-four .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  display: none;
  margin-top: 0;
}

.hero-slider-four__wrapper {
  position: relative;
  z-index: 11;
  padding-top: 240px;
  padding-bottom: 195px;
}

.hero-slider-four__content {
  overflow: hidden;
}

.hero-slider-four__title {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 1000ms ease, opacity 1000ms ease;
}

.hero-slider-four__title__anim {
  font-size: 80px;
  color: var(--getizy-white, #FFFFFF);
  line-height: 90px;
  font-weight: 800;
}

.hero-slider-four__image__wrapper {
  position: absolute;
  bottom: 0;
}

.hero-slider-four__video__wrap {
  width: 230px;
  height: 153px;
  position: relative;
  position: absolute;
  z-index: 11;
  bottom: 165px;
  left: -70px;
  opacity: 0;
  transform: translateY(30%);
  transition: transform 1000ms ease, opacity 1000ms ease;
}

.hero-slider-four__video__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.hero-slider-four__video {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--getizy-secondary-rgb, 34, 34, 48), 85%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}

.hero-slider-four__video:hover {
  background: rgba(var(--getizy-secondary-rgb, 34, 34, 48), 100%);
}

.hero-slider-four__video span {
  font-size: 15px;
  margin-left: 5px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slider-three__images__one__shape__four {
  position: absolute;
  background-color: var(--getizy-white, #FFFFFF);
  padding: 30px 33px;
  bottom: 77px;
  z-index: 11;
  right: 0px;
  opacity: 0;
  transform: translateY(-10%);
  transition: transform 1000ms ease, opacity 1000ms ease;
}

.hero-slider-three__images__one__shape__four h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  text-align: center;
  line-height: 24px;
  padding-top: 10px;
}



.hero-slider-four .active .hero-slider-four__shape__three {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-four__shape__one {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-four__image {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-four__video__wrap {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-three__images__one__shape__four {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-four__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-four__btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-four__shape__two {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1000ms;
}

.hero-slider-four .active .hero-slider-four__shape__four {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1000ms;
}

.hero-slider-four__btn {
  opacity: 0;
  transform: translateY(200px);
  transition: transform 1000ms ease, opacity 1000ms ease;
}


@media (max-width: 1730px) {
  .hero-slider-four__shape__three {
    right: 60px;
  }
}

@media (max-width: 1400px) {
  .hero-slider-four__title__anim {
    font-size: 70px;

  }
}

@media (max-width: 1199px) {
  .hero-slider-four__image {
    display: none;
  }

  .hero-slider-four__shapes {
    display: none;
  }

  .hero-slider-three__images__one__shape__four {
    display: none;
  }

  .hero-slider-four__video__wrap {
    bottom: 95px;
    left: 260px;
  }
}

@media (max-width: 767px) {
  .hero-slider-four__title__anim {
    font-size: 60px;
    line-height: 70px;
  }

  .hero-slider-four__video__wrap {
    left: 190px;
  }
}

@media (max-width: 540px) {
  .hero-slider-four__title__anim {
    font-size: 50px;
    line-height: 60px;
  }

  .hero-slider-four__video__wrap {
    display: none;
  }
}

@media (max-width: 425px) {
  .hero-slider-four__title__anim {
    font-size: 42px;
    line-height: 50px;
  }
}









/*--------------------------------------------------------------
# features-one
--------------------------------------------------------------*/
.features-one {
  padding-top: 250px;
  position: relative;
  overflow: hidden;
  padding-bottom: 170px;
}

.features-one__shapes .body-shape-one {
  width: 620px;
  height: 620px;
  position: absolute;
  top: 143px;
  left: -394px;
}

.features-one__shapes .body-shape-two {
  position: absolute;
  top: 0;
  right: -379px;
}

.features-one__item {
  position: relative;
}

.features-one__card {
  position: relative;
}


.features-one__card__top__wrap {
  display: flex;
  flex-direction: column;
  background-color: var(--getizy-secondary, #222230);
  padding: 30px 40px 30px 40px;
  transition: all ease-in 0.5s;

}

.features-one__card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: var(--getizy-white, #FFFFFF);
  padding-bottom: 34px;
}

.features-one__card__btn {
  width: 80px;
  height: 90px;
  background-color: rgba(var(--getizy-white-rgb), 8%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;

}

.features-one__card__btn span {
  font-size: 24px;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.features-one__card__desc {
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-text, #7F7D86);
  line-height: 30px;
}

.features-one__card__bottom__wrap {
  background-color: var(--getizy-white, #FFFFFF);
  padding: 20px;
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
  transition: 0.5s;
}

.features-one__card__image {
  width: 100%;
  height: 123px;

}

.features-one__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.features-one__card__icon {
  position: absolute;
  bottom: -50px;
  width: 100px;
  left: 20px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
}

.features-one__card__icon span {
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);

}


.features-one__item:hover .features-one__card__icon {
  transform: rotateY(180deg);
}

.features-one__card__hover {
  position: relative;
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);

}

.features-one__card__hover__title {
  padding: 40px;
  padding-top: 75px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: var(--getizy-white, #FFFFFF);
  padding-bottom: 40px;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.features-one__card__hover__btn {
  width: 58px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  bottom: 0;
  right: 0;
}

.features-one__card__hover__btn span {
  font-size: 18px;
  color: var(--getizy-white, #FFFFFF);
}

.features-one__card__hover__icon {
  position: absolute;
  top: -50px;
  left: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.features-one__card__hover__icon span {
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);
  transition: all 0.5s ease;
  transform: scale(1);
}

.features-one__card__hover__icon:hover span {
  transform: scale(0.9);
  color: var(--getizy-secondary, #222230);
}

.features-one__item:hover .features-one__card__hover,
.features-one__card__hover__active .features-one__card__hover {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.features-one__item:hover .features-one__card__top__wrap,
.features-one__card__hover__active .features-one__card__top__wrap {
  border-left: 2px solid var(--getizy-secondary);
  border-right: 2px solid var(--getizy-secondary);
  border-bottom: none;
}

.features-one__item:hover .features-one__card__title,
.features-one__card__hover__active .features-one__card__title {
  opacity: 0;
}

.features-one__item:hover .features-one__card__icon,
.features-one__card__hover__active .features-one__card__icon {
  opacity: 0;
}

.features-one__item:hover .features-one__card__bottom__wrap,
.features-one__card__hover__active .features-one__card__bottom__wrap {
  border-top: none;
  border-image: none;
  border-color: var(--getizy-secondary);
  padding: 0px 40px 42px 40px;
}

.features-one__item:hover .features-one__card__top__wrap,
.features-one__card__hover__active .features-one__card__top__wrap {
  background-color: var(--getizy-white, #FFFFFF);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .features-one__card__title {
    padding-bottom: 15px;
    font-size: 20px;
  }

  .features-one__card__top__wrap {
    padding: 30px 20px 15px 20px;
  }

  .features-one__item:hover .features-one__card__bottom__wrap,
  .features-one__card__hover__active .features-one__card__bottom__wrap {
    padding: 0px 20px 10px 20px;
  }

  .features-one__card__hover__title {
    padding: 20px;
    padding-bottom: 40px;
    padding-top: 75px;
  }

  .features-one__card__btn {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  .features-one__item:hover .features-one__card__bottom__wrap,
  .features-one__card__hover__active .features-one__card__bottom__wrap {
    padding: 0px 40px 10px 40px;
  }
}

@media (max-width: 767px) {

  .features-one__card__title {
    font-size: 20px;
  }

  .features-one__card__btn {
    width: 60px;
    height: 60px;

  }
}

.features-home-three .row .col-lg-4 {
  padding: 0;
}

.features-home-three {
  position: relative;
  z-index: 2;

}

.features-home-three__bg {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: 1;
  mix-blend-mode: saturation;
  filter: grayscale(100%);

}

.features-home-three__bg__ovarlay {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 0;
  opacity: 90%;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.features-shape-home-three {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 10px;
}

.features-home-three__wrapper {
  position: relative;
  z-index: 11;
}

.features-home-three__card {
  padding-top: 40px;
  padding-bottom: 20px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  position: relative;
}

.features-home-three__card__icon {
  display: inline-flex;
  transition: 0.5s;
}

.features-home-three__card__icon span {
  color: var(--getizy-white, #FFFFFF);
  font-size: 70px;
  padding: 0 50px;
  transition: 0.5s;
}

.features-home-three__card:hover .features-home-three__card__icon {
  transform: rotateY(180deg);
}

.features-home-three__card__icon__trans {
  position: absolute;
  top: 50px;
  right: 33px;
}

.features-home-three__card:hover .features-home-three__card__icon__trans {
  animation: zoomBig 2s linear infinite;
}

.features-home-three__card__icon__trans span {
  font-size: 100px;
  color: var(--getizy-white, #FFFFFF);
  opacity: 20%;
}

.features-home-three__card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  line-height: 30px;
  padding: 10px 50px 24px 50px;
  border-bottom: 1px solid rgba(var(--getizy-white-rgb, 255, 255, 255), 43%);
}

.features-home-three__card__desc {
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
  padding: 0 50px;
  padding-top: 18px;
}



.feautres-two-home-three {
  background-color: #f5f5f5;
}

.features-two-home-three__wrap {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  padding: 30px 0;
  rotate: 2deg;
  margin-top: 30px;
  margin-left: -4px;

}

.features-two-home-three__wrap__box {
  position: relative;
  display: block;
  animation: aspro-scroller 27s linear infinite;
  will-change: transform;
  white-space: nowrap;
}

.features-two-home-three__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  min-width: 100vw;
  gap: 70px;
}

.features-two-home-three__list li h2 {
  color: var(--getizy-white, #FFFFFF);
  font-size: 40px;
  font-weight: 700;
  will-change: transform;
  white-space: nowrap;
}

@media (max-width: 1199px) {

  .features-home-three__card__title {
    padding: 10px 45px 24px 45px;
  }
}

@media (max-width: 575px) {
  .features-home-three__wrapper {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-one {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  padding-bottom: 160px;
  z-index: 1;
  overflow: hidden;
}

.about-one__bg {
  background-image: url(../images/backgrounds/about-1-dark.png);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 6%;
}

.about-one__shapes .body-shape-one {
  width: 576px;
  height: 576px;
  position: absolute;
  top: 115px;
  left: 165px;
}

.about-one__shapes .body-shape-two {
  width: 576px;
  height: 576px;
  position: absolute;
  right: 30px;
  bottom: 39px;
}



.about-one__images {
  position: relative;
  z-index: 2;
}

.about-one__img__one {
  width: 440px;
  height: 695px;
  position: relative;
}

.about-one__img__one img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.about-one__img__one::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 136px;
  height: 18px;
  background-image: linear-gradient(90deg, #1A237E, transparent);
  z-index: 11;
}

.about-one__img__two {
  width: 490px;
  height: 471px;
  position: absolute;
  bottom: -55px;
  right: 40px;
}

.about-one__img__two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-one__logo__icon {
  position: absolute;
  top: 145px;
  right: 120px;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background-color: var(--getizy-secondary, #222230);
  display: flex;
  align-items: center;
  justify-content: center;
  /* -webkit-animation: rotated2 4s infinite linear; */
  /* animation: rotated2 4s infinite linear; */
}

.about-one__logo__icon img {
  width: 104px;
  /* margin-left: 13px; */
}

.about-one__wrapper {
  position: relative;
  z-index: 1;
}

.about-one__wrapper__bg__overlay {
  position: absolute;
  left: -240px;
  top: -65px;
  width: 894px;
  height: 894px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.about-one__wrapper__bg__overlay::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 47px;
  width: 862px;
  height: 862px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--getizy-secondary);
  -webkit-animation: leftToRightThree 3s infinite linear;
  animation: leftToRightThree 3s infinite linear;
}

@keyframes dashs {
  to {
    stroke-dashoffset: -1000;
  }
}

.about-one__content {
  position: relative;
  z-index: 11;
  padding-top: 50px;
}

.about-one__content .sec-title {
  margin-bottom: 10px;
}

.about-one__content .sec-title__tagline {
  background-image: none;
  color: #f5f5f5;
}

.about-one__content .sec-title__tagline::after {
  left: -26px;
}

.about-one__content .sec-title__title {
  color: var(--getizy-white, #FFFFFF);
}

.about-one__content__desc {
  font-size: 16px;
  line-height: 30px;
  color: #f5f5f5;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--getizy-secondary);
}

.about-one__content__eliment {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 40px;
}

.about-one__content__eliment__img {
  width: 132px;
  height: 132px;
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  position: absolute;
  z-index: 11;
  overflow: hidden;
}

.about-one__content__eliment__img img {
  object-fit: cover;
  border-radius: 50%;
}

.about-one__content__eliment__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 128px;
  gap: 10px;
  justify-content: center;
  background-color: var(--getizy-secondary, #222230);
  padding-left: 80px;
  padding-right: 26px;
  margin-left: 76px;
}

.about-one__content__eliment__title {
  color: var(--getizy-white, #FFFFFF);
  font-size: 30px;
  font-weight: 600;
}

.about-one__content__eliment__desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--getizy-text, #7F7D86);
}

.about-one__content__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 35px;
}

.about-one__content__list li {
  color: var(--getizy-white, #FFFFFF);
  padding-bottom: 5px;

}

.about-one__content__list li i {
  color: var(--getizy-white, #FFFFFF);
  padding-right: 20px;
}

.about-one__content .getizy-btn {
  background: var(--getizy-secondary, #222230);
  margin-top: 30px;
}

.about-one__content .getizy-btn:hover {
  background: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}

.about-one__content .btn-hover-cropping::after {
  background-color: #f5f5f5;

}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__content__eliment__content {
    gap: 0px;
    padding-right: 0px;
  }

  .about-one__content__eliment__title {
    color: var(--getizy-white, #FFFFFF);
    font-size: 20px;
  }

  .about-one__content__eliment__desc {
    font-size: 14px;

  }

  .about-one__img__two {
    width: 350px;
    height: 360px;
  }

  .about-one__logo__icon {
    top: 265px;
    right: 20px;

  }
}

@media (max-width: 991px) {
  .about-one__content {
    padding-top: 110px;
  }

  .about-one__content__eliment__content {
    margin-right: 140px;
    padding-left: 80px;
    padding-right: 90px;
  }

  .about-one__content__desc {
    padding-right: 100px;
  }

  .about-one__img__two {
    width: 350px;
    height: 360px;
  }

  .about-one__logo__icon {
    top: 250px;

  }
}


@media (max-width: 767px) {
  .about-one__content__eliment__content {
    margin-right: 0;
    padding-left: 80px;
    padding-right: 12px;
  }

  .about-one__content__eliment {
    padding-top: 20px;
  }

  .about-one__content__desc {
    padding-bottom: 20px;
    padding-right: 10px;

  }
}

@media (max-width: 540px) {
  .about-one__img__one {
    width: 100%;
  }

  .about-one__img__two {
    width: 100%;
    right: 0;
  }

  .about-one__content__eliment__title {
    font-size: 20px;

  }

  .about-one__content__eliment__desc {
    font-size: 14px;

  }

  .about-one__content__list {
    padding-top: 15px;
  }
}


.about-two {
  position: relative;
}

.about-two__shapes .body-shape-one {
  width: 650px;
  height: 650px;
  position: absolute;
  right: -325px;
  bottom: -304px;
}



.about-two__wrapper .sec-title__tagline::after {
  left: -26px;
}

.about-two__desc {
  padding-right: 45px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}


.about-two__features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 10px;
  border-bottom: 2px solid var(--getizy-text);
}

.about-two__item__eliment {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 15px;
}

.about-two__item__eliment__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;

}

.about-two__item__eliment__icon span {
  font-size: 21px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-two__item:hover .about-two__item__eliment__icon {
  transform: rotateY(180deg);
}

.about-two__item__eliment__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
}


.about-two__line {
  position: relative;
}


.about-two__line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 119px;
  bottom: -55px;
  left: -30px;
  background-color: #DBDBDB;
}

.about-two__list__image {
  display: flex;
  justify-content: space-between;
}


.about-two__list {
  padding-top: 20px;
}

.about-two__list ul li {
  color: var(--getizy-text, #7F7D86);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}

.about-two__list ul li i {
  color: var(--getizy-secondary, #222230);
  font-size: 18px;
}

.about-two .getizy-btn {
  position: relative;
  top: -30px;
}

.about-two__list__img {
  padding-top: 30px;
  width: 207px;
  height: 200px;
}

.about-two__list__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-two__image__wrap {
  position: relative;
}

.about-two__image {
  width: 528px;
  height: 635px;
  position: relative;
  padding-left: 34px;
  padding-right: 8px;
  z-index: 2;
}

.about-two__image img {
  width: 528px;
  height: 635px;
  object-fit: cover;
}

.about-two__image::after {
  content: "";
  position: absolute;
  bottom: -35px;
  width: 558px;
  height: 548px;
  border: 12px solid transparent;
  border-image: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
  left: 34px;
  z-index: -1;
  animation: leftToRightThree 5s linear infinite;

}

.about-two__image__shape {
  position: relative;
  position: absolute;
  bottom: -25px;
  z-index: 2;
  left: 155px;
  animation: leftToRightFour 5s linear infinite;

}

.about-two__experience {
  width: 100%;
  position: absolute;
  bottom: 10px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: capitalize;
}

.about-two__experience__years {
  display: flex;
  align-items: center;
}

.about-two__experience__years__text {
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);
  font-weight: 700;
}


.about-two__experience__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: var(--getizy-white, #FFFFFF);
  margin-top: -10px;
}



@media (min-width: 992px) and (max-width: 1199px) {
  .about-two__list__img {
    width: 145px;
  }

  .about-two__list ul li {
    gap: 5px;

  }

  .about-two__image {
    width: 100%;
  }

  .about-two__image img {
    width: 100%;
  }

  .about-two__image::after {
    width: 100%;
  }


  .about-two__line::after {
    content: none;
  }

  .about-two__item__desc {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .about-two__image__wrap {
    padding-top: 50px;
  }

}

@media (max-width: 767px) {
  .about-two__image {
    width: 100%;
    padding-left: 0;

  }

  .about-two__image img {
    width: 100%;
  }

  .about-two__image::after {
    left: 0;
  }

  .about-two__item__desc {
    padding-right: 20px;
  }

  .about-two__list__img {
    padding-top: 20px;
  }

  .about-two__line::after {
    content: none;

  }

  .about-two__list {
    padding-top: 20px;
  }

  .about-two__list__image {
    display: grid;
  }

  .about-two .getizy-btn {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .about-two__image::after {
    width: 100%;

  }

  .about-two__image__shape {
    left: 80px;
  }

}


@media (max-width: 575px) {

  .about-two__features {
    display: grid;

    gap: 15px;

  }

}

@media (max-width: 390px) {

  .about-two__image__shape {
    left: 35px;
  }

}




/* about-three */




.about-three {
  position: relative;
}


.about-three__shapes .body-shape-one {
  position: absolute;
  left: -202px;
  top: -328px;
}



.about-three__images {
  position: relative;
  padding-top: 15px;
}

.about-three__img-one {
  width: 535px;
  height: 532px;
  position: relative;
}

.about-three__img-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-three__img-one::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: calc(100% - 98px);
  height: 100%;
  background-color: var(--getizy-secondary, #222230);
  z-index: -1;
  transition: 0.5s;
}

.about-three__images:hover .about-three__img-one::after {
  top: 0;
  right: 0;
}

.about-three__img-two {
  width: 291px;
  height: 291px;
  position: relative;
  position: absolute;
  bottom: -140px;
  right: 47px;
  z-index: 11;
}

.about-three__img-two img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.about-three__img-two::after {
  content: "";
  position: absolute;
  width: calc(100% + 59px);
  height: calc(100% + 59px);
  border-radius: 50%;
  background-color: var(--getizy-white, #FFFFFF);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


.about-three__logo {
  position: relative;
  position: absolute;
  bottom: -60px;
  left: 18px;
  width: 169px;
  height: 169px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  z-index: 1;

}

.about-three__logo::after {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 20px solid var(--getizy-white);
  z-index: -1;
}

.about-three__logo img {
  animation: zoomBig 2s linear infinite;
}

.about-three__content {
  padding-left: 15px;
  position: relative;
}

.about-three__content .sec-title {
  margin-bottom: 10px;
}

.about-three__content .sec-title__tagline::after {
  left: -26px;
}


.about-three__progress-box {
  background-color: #f5f5f5;
  margin-top: 20px;
}

.progress-box {
  padding: 20px 30px 30px 30px;
}

.progress-box:nth-child(1) {
  border-bottom: 1px solid rgba(var(--getizy-white-rgb, 255, 255, 255), 0.5);

}

.progress-box__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1px;
  color: var(--getizy-secondary, #222230);
}

@media (max-width: 575px) {
  .progress-box__title {
    font-size: 14px;
  }
}

.progress-box__bar {
  width: 100%;
  height: 10px;
  background-color: var(--getizy-white, #FFFFFF);
  position: relative;
}

.progress-box__bar__inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--getizy-secondary, #222230);
  transition: all 800ms linear;
  width: 0px;
}

.progress-box__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}

.progress-box__number {
  font-size: 16px;
  color: var(--getizy-secondary, #222230);
  font-weight: 500;

}

@media (max-width: 575px) {
  .progress-box__number {
    font-size: 14px;
  }
}



.about-three__list__infu {
  display: flex;
  justify-content: space-between;
}


.about-three__list {
  padding-top: 20px;
}

.about-three__list ul li {
  color: var(--getizy-text, #7F7D86);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}

.about-three__list ul li i {
  color: var(--getizy-secondary, #222230);
  font-size: 18px;
}

.about-three__infu {
  padding: 34px 29px 30px 29px;
  margin-top: 30px;
  background-color: var(--getizy-secondary, #222230);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.about-three__infu__icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.about-three__infu__icon span {
  color: var(--getizy-white, #FFFFFF);
}

.about-three__infu__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);
  line-height: 23px;
}

.about-three__infu__number {
  font-size: 18px;
  font-weight: 800;
  color: var(--getizy-white, #FFFFFF);
  line-height: 30px;
  margin-top: -5px;
}

.about-three .getizy-btn {
  position: absolute;
  bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-three__img-one {
    width: 100%;
  }

  .about-three__img-two {
    width: 250px;
    height: 250px;
    right: 0px;
  }

  .about-three__img-two::after {
    width: calc(100% + 35px);
    height: calc(100% + 35px);

  }

  .about-three__infu {
    padding: 30px 20px 30px 20px;
  }

  .about-three__infu__number {
    font-size: 16px;
    font-weight: 700;

  }

  .about-three__list ul li {
    font-size: 13px;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .about-three__img-one {
    width: 100%;
  }

  .about-three__content {
    margin-top: 140px;
  }
}

@media (max-width: 767px) {
  .about-three__list__infu {
    display: grid;
    justify-content: space-between;
  }

  .about-three__infu {
    padding-top: 15px;
    padding-bottom: 15px;

  }

  .about-three__infu__number {
    font-size: 15px;
  }

  .about-three__content {
    margin-top: 170px;
  }

  .about-three .getizy-btn {
    position: absolute;
    bottom: -70px;
  }
}

.about-four {
  position: relative;
}

.about-four__bg__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 568px;
  background-color: #f5f5f5;

}

.about-four__images {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  z-index: 2;
}

.about-four__img__one {
  width: 470px;
  height: 540px;
  float: right;
  position: relative;
}

.about-four__img__one::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 100%;
  background: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  right: -17px;
  top: 0;
  transition: 0.5s;
}

.about-four__images:hover .about-four__img__one::after {
  right: 0;
}

.about-four__img__one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-four__img__two {
  position: absolute;
  width: 348px;
  height: 391px;
  top: 250px;
  left: 0;
  z-index: 1;
}

.about-four__img__two img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.about-four__img__shape {
  position: absolute;
  top: 38px;
  left: 30px;
  animation: bottomToTop 2s linear infinite;
}

.about-four__infu {
  display: flex;
  align-items: center;
  position: absolute;
  top: 571px;
  right: 0;
  z-index: 11;
}

.about-four__infu .icon__bg {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-right: 2px solid var(--getizy-secondary);
}

.about-four__infu .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.about-four__infu .content {
  height: 70px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 38px;
}

.about-four__infu .content__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);

}

.about-four__infu .content__call {
  font-size: 18px;
  font-weight: 800;
  color: var(--getizy-secondary, #222230);
}

.about-four__content {
  position: relative;
  z-index: 11;
  padding-left: 50px;
  top: 20px;
}

.about-four__content__img {
  width: 480px;
  height: 184px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 50px;
  margin-left: 20px;
}

.about-four__content__img::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  background-color: var(--getizy-white, #FFFFFF);
  z-index: -1;
}

.about-four__content__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.about-three__content__list {
  position: relative;
  position: absolute;
  z-index: 11;
  gap: 20px;
  padding-left: 40px;
}




.about-four__content__img__overlay {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 0;
  opacity: 90%;
  z-index: 1;
  width: 100%;
  height: 100%;

}



.about-three__content__list li {
  color: var(--getizy-white, #FFFFFF);
  padding-bottom: 5px;
}

.about-three__content__list li i {
  color: var(--getizy-white, #FFFFFF);
  padding-right: 15px;
}

.about-four__content .getizy-btn {
  position: absolute;
  bottom: -105px;
}


@media (min-width: 992px) and (max-width: 1199px) {

  .about-four__img__shape {
    left: -60px;
  }

  .about-four__content__img {
    width: 100%;

  }

  .about-four__content .getizy-btn {
    bottom: -90px;
  }
}

@media (max-width: 991px) {
  .about-four__content {
    padding-top: 140px;
    padding-left: 0px;
  }

  .about-four__content .getizy-btn {
    bottom: -90px;
  }

  .about-four__img__shape {
    left: 150px;
  }

  .about-four__content__img {
    width: 100%;
  }

  .about-four__content__img {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .about-four__img__shape {
    left: -30px;
  }
}

@media (max-width: 575px) {
  .about-four__img__one {
    width: 100%;
  }

  .about-three__content__list {
    padding-left: 20px;
  }
}




/*--------------------------------------------------------------
# Service 
--------------------------------------------------------------*/
.service-one {
  position: relative;
  padding-top: 200px;
  z-index: 0;
}

.service-one__shapes .body-shape-one {
  width: 648px;
  height: 648px;
  position: absolute;
  top: 447px;
  left: -483px;
  z-index: 1;
}

.service-one__shapes .body-shape-two {
  width: 648px;
  height: 648px;
  position: absolute;
  right: -313px;
  top: -80px;
}


.service-one__card__wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 20px;
}

.service-one .row .col-lg-6:nth-child(1) {
  padding-left: 0;
  padding-right: 25px;
}

.service-one__card__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 378px;
  height: 378px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  z-index: -1;
}

.service-one__card {
  padding: 30px 0 0 0;
  background-color: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 10%);
  position: relative;
  transition: 0.5s;
  cursor: pointer;
  width: 270px;
}

.service-one__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}

.service-one__card:hover {
  background-color: var(--getizy-secondary, #222230);
}

.service-one__card:hover::after {
  opacity: 1;
  rotate: 5deg;
}

.service-one__card__single:nth-child(2),
.service-one__card__single:nth-child(4) {
  margin-top: -65px;
}

.service-one__card__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--getizy-secondary, #222230);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.5s;
  margin-left: 30px;
}

.service-one__card__icon span {
  font-size: 44px;
  color: var(--getizy-white, #FFFFFF);
  transition: all 0.5s ease;
}

.service-one__card:hover .service-one__card__icon {
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(-90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}


.service-one__card:hover span {
  transform: rotateY(180deg);

}

.service-one__card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  line-height: 26px;
  margin-bottom: 5px;
  padding-right: 30px;
  transition: 0.5s;
  text-transform: capitalize;
  padding-left: 30px;
  display: flex;
  align-items: flex-start;
}


.service-one__card:hover .service-one__card__title {
  color: var(--getizy-white, #FFFFFF);

}

.service-one__card__desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--getizy-text, #7F7D86);
  padding-bottom: 20px;
  padding-left: 30px;
}

.service-one__card__btn {
  font-size: 16px;
  font-weight: 700;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(45deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-top: 1px solid var(--getizy-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 15px;
  padding-left: 30px;
  padding-bottom: 20px;
}

.service-one__card__arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--getizy-text);
  color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  transition: 0.5s;
}

.service-one__card:hover .service-one__card__arrow {
  background-color: var(--getizy-white, #FFFFFF);
  color: var(--getizy-secondary, #222230);
}

.service-one__card:hover .service-one__card__btn {
  border-color: var(--getizy-white);
}


.service-one__content {
  padding-top: 60px;
}

.service-one__content .sec-title__tagline::after {
  left: -26px;
}

.service-one__content__eliment {
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 10px;
  margin-bottom: 60px;
}


.countbar-one__wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--getizy-secondary);
  padding: 20px 0;
  max-width: 390px;
}

.countbar-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--getizy-secondary);
  padding: 0 50px;
  position: relative;
  width: 195px;
}

.countbar-one__shape__one::after {
  content: "";
  position: absolute;
  bottom: -121px;
  width: 100%;
  height: 100%;
  background-color: var(--getizy-secondary, #222230);
  left: 0;
  clip-path: polygon(0 1%, 100% 20%, 100% 0, 0 0);
}

.countbar-one__shape__two::after {
  content: "";
  position: absolute;
  top: -120px;
  width: 100%;
  height: 100%;
  background-color: var(--getizy-secondary, #222230);
  left: -12px;
  clip-path: polygon(0 79%, 100% 98%, 100% 100%, 0% 100%);
}


.countbar-one:nth-child(2) {
  border: none;
}

.countbar-one__data {
  display: flex;
  align-items: flex-end;
}

.countbar-one__text {
  font-size: 40px;
  font-weight: 700;

}

.countbar-one span {
  line-height: 26px;
  text-align: center;
  font-weight: 700;
  color: var(--getizy-text, #7F7D86);
}


.service-one__content__eliment__logo {
  border: 1px solid var(--getizy-secondary);
  padding: 19px 18.5px;
}


@media (max-width: 1199px) {
  .service-one .container .row {
    align-items: center !important;
    justify-content: center;
  }

  .service-one__card {
    width: 300px;
  }

  .service-one__card__wrap {
    gap: 20px;
  }

  .service-one__card__single:nth-child(2),
  .service-one__card__single:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .service-one__card__wrap {
    gap: 0;
    row-gap: 20px;
  }


}

@media (max-width: 767px) {
  .service-one__card {
    width: 270px;
  }

  .service-one__card__wrap {
    gap: 20px;
  }

  .service-one__content__eliment {
    display: grid;
    gap: 40px;
  }

  .service-one__content__eliment__logo {
    display: flex;
    justify-content: center;
  }

}

@media (max-width: 600px) {

  .service-one .container,
  .container-sm {
    max-width: 100%;
  }

  .service-one__card__wrap {
    grid-template-columns: auto;

  }

  .service-one__card {
    width: 100%;
  }

}

@media (max-width: 440px) {
  .countbar-one {

    border-right: 0;

  }

  .countbar-one__wrap {
    display: grid;
    gap: 20px;
  }

  .countbar-one__shape__one::after {
    display: none;
  }

  .countbar-one__shape__two::after {
    display: none;
  }
}




/* serice-two */

.service-two {
  position: relative;
  background-color: #f5f5f5;
}




.service-two__bg {
  background-image: url(../images/backgrounds/service-bg-2-1.jpg);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
}

.service-two__wrapper {
  position: relative;
  z-index: 11;
}


.service-two__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.service-two__item {
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  height: 182px;
  position: relative;
  cursor: pointer;
}

.service-two__item__content {
  max-width: 685px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--getizy-secondary);
  padding: 25px 65px 25px 50px;
  transition: all 500ms ease;
  z-index: 1;
}



.service-two__item__content::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  bottom: 0;
  background: var(--getizy-secondary, #222230);
  z-index: -5;
  transition: all 0.4s ease-in-out;

}


.service-two__item:hover .service-two__item__content::after {
  width: 100%;
  right: auto;
  left: 0;
}


.service-two__item:hover .service-two__item__content {
  left: 0;
  width: 100%;
}

.service-two__item__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(45deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.service-two__item__shape {
  position: absolute;
  top: 50%;
  left: 260px;
  transform: translateY(-50%);
}

.service-two__item__shape svg {

  color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
}

.service-two__item:hover .service-two__item__shape svg {
  color: var(--getizy-white, #FFFFFF);
}

.service-two__item__desc {
  padding-left: 20px;
}

.service-two__right {
  position: relative;

}

.service-two__icon {
  width: 35.12px;
  height: 35.12px;
  border-radius: 50%;
  background-color: #f5f5f5;
  position: relative;

}

.service-two__right span {
  position: absolute;
  font-size: 43px;
  z-index: 11;
  left: -17px;
  top: 0px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 500ms ease;
  rotate: -30deg;
}

.service-two__item:hover .service-two__right span {
  -webkit-text-fill-color: var(--getizy-secondary);
  background: none;
  color: var(--getizy-secondary, #222230);
  transform: rotate(30deg);
}

.service-two__hover__img {
  position: absolute;
  width: 264px;
  height: 216px;
  right: 140px;
  top: -25px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  z-index: 11;

}

.service-two__hover__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-two__item:hover .service-two__hover__img {
  opacity: 1;
  visibility: visible;
  transform: rotate(11deg);
}

@media (max-width: 1199px) {
  .service-two__item:hover .service-two__hover__img {
    display: none;
  }


}

@media (max-width: 991px) {
  .service-two__item__content {
    width: 85%;
    padding: 25px 25px 25px 25px;
  }

  .service-two__item:hover .service-two__item__content {
    width: 85%;
  }

  .service-two__item__shape {
    left: 154px;

  }

  .service-two__item__title {
    font-size: 20px;
  }

}

@media (max-width: 767px) {
  .service-two__item__shape {
    left: 154px;
    display: none;
  }

  .service-two__item {
    padding-left: 20px;

  }

  .service-two__item__title {
    font-size: 18px;
  }

  .service-two__item__content {
    width: 85%;
    padding: 10px 25px 10px 25px;
  }
}

@media (max-width: 550px) {
  .service-two__item__content {
    display: grid;
    gap: 5px;
    margin: 0 auto;
  }

  .service-two__item__desc {
    padding-left: 0;
    line-height: 24px;
  }

  .service-two__item {
    display: grid;
    gap: 15px;
    height: 100%;
  }

  .service-two__right {
    margin: 0 auto;
  }
}




/* service-three */

.service-three {
  position: relative;
  z-index: 1;
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
}

.service-three__bg-overlay {
  background-image: url(../images/backgrounds/service-bg-3-1.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 756px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2;
  mix-blend-mode: overlay;
}

.service-three__images {
  position: relative;
}

.service-three__img {
  width: 522px;
  height: 680px;
}

.service-three__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-three__img__shape__one {
  position: relative;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.service-three__img__shape__one::after {
  content: "";
  position: absolute;
  width: calc(100% - 60px);
  height: 342px;
  background-color: var(--getizy-secondary, #222230);

  bottom: 0;
}

.service-three__img__shape__two {
  position: relative;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: -1;
}

.service-three__img__shape__two::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 312px;
  background-image: linear-gradient(45deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  left: 0;
  bottom: 0;
}


.service-three__says {
  position: relative;
  position: absolute;
  top: 23.5%;
  left: -100px;
  background-color: var(--getizy-secondary, #222230);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  line-height: 30px;
  padding: 30px 46px;
  animation: leftToRightTwo 1s linear infinite;
}

.service-three__says::after {
  content: "";
  position: absolute;
  top: -21px;
  right: -230px;
  width: 100%;
  height: 100%;
  background-color: var(--getizy-secondary, #222230);
  clip-path: polygon(10% 68%, 0 57%, 0 80%);
}


.service-three__content {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  gap: 20px;
  margin-top: 20px;
  border-right: 10px solid var(--getizy-secondary);
}

.service-three__content::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 300px;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(190deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.service-three__content__item {
  width: calc(100% - 44px);
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 37px 30px 40px;
}

.service-three__content__item::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  bottom: 0;
  background: var(--getizy-secondary, #222230);
  z-index: -5;
  transition: all 0.4s ease-in-out;

}

.service-three__content__item:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}


.service-three__content__item:hover {
  left: 0;
  width: calc(100% - 44px);
}

.service-three__content__icon__title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-three__content__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--getizy-secondary, #222230);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;

}

.service-three__content__item:hover .service-three__content__icon {
  background: linear-gradient(190deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  transform: rotateY(180deg);

}

.service-three__content__icon span {
  font-size: 44px;
  color: var(--getizy-white, #FFFFFF);
}

.service-three__content__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: var(--getizy-secondary, #222230);
  text-transform: capitalize;
  transition: 0.5s;

}

.service-three__content__item:hover .service-three__content__title {
  color: var(--getizy-white, #FFFFFF);

}

.service-three__content__arrow-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  transition: 0.5s
}

.service-three__content__item:hover .service-three__content__arrow-icon {
  background-color: var(--getizy-text);
}

.service-three__content__arrow-icon span {
  font-size: 39px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  rotate: -30deg;
  transition: 0.5s;
}

.service-three__content__item:hover .service-three__content__arrow-icon span {
  color: var(--getizy-white, #FFFFFF);
  -webkit-text-fill-color: var(--getizy-white);
  rotate: 0deg;
}


@media (max-width: 1199px) {
  .service-three__img {
    width: 100%;
    height: 587px;
    margin-top: 92px;
  }

  .service-three__img img {
    object-fit: contain;
  }

  .service-three__content__item {
    width: calc(100% - 44px);
    padding: 30px 10px 30px 10px;
  }

  .service-three__content__arrow-icon {
    width: 60px;
    height: 60px;
  }

  .service-three__content__arrow-icon span {
    font-size: 25px;

  }

  .service-three__says {
    top: 23.5%;
    left: -100px;

  }
}



@media (max-width: 991px) {}

@media (max-width: 767px) {
  .service-three__img__shape__two {
    left: -10px;

  }
}



.service-four {
  position: relative;
  z-index: 11;
}

.service-four__wrapper {
  padding-top: 30px;
}

.service-four__wrapper .row {
  padding: 0 15px;
}

.service-four .row .col-xl-3 {
  padding-left: 0;
  padding-right: 0;
}

.service-four__item {
  position: relative;
  background-color: #f5f5f5;
  max-height: 295px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 45px;
  padding-bottom: 35px;
  border: 2px solid var(--getizy-secondary);
  transition: all 0.4s ease-in-out;
  z-index: 11;

}

.service-four__item::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: auto;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.service-four__item:hover {
  background: #f5f5f5;
}

.service-four__item:hover::after {
  height: 100%;
  top: auto;
  left: 0%;
  bottom: 0;
}

.service-four__wrapper .row>.col-xl-3:nth-child(1) .service-four__item {
  border-right: 0;
}

.service-four__wrapper .row>.col-xl-3:nth-child(2) .service-four__item {
  border-right: 0;
}

.service-four__wrapper .row>.col-xl-3:nth-child(3) .service-four__item {
  border-right: 0;
}

@media (max-width: 1199px) {
  .service-four__item {
    margin-bottom: 20px;
  }

  .service-four__wrapper .row>.col-xl-3:nth-child(2) .service-four__item {
    border-right: 2px solid var(--getizy-secondary);
  }


}

@media (max-width: 767px) {
  .service-four__wrapper .row>.col-xl-3:nth-child(1) .service-four__item {
    border-right: 2px solid var(--getizy-secondary);

  }

  .service-four__wrapper .row>.col-xl-3:nth-child(3) .service-four__item {
    border-right: 2px solid var(--getizy-secondary);
  }

}

.service-four__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--getizy-secondary, #222230);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.service-four__item:hover .service-four__icon {
  background: var(--getizy-white, #FFFFFF);
}

.service-four__item:hover .service-four__icon {
  transform: rotateY(180deg);
}

.service-four__icon span {
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;
}

.service-four__item:hover .service-four__icon span {
  color: var(--getizy-secondary, #222230);
}

.service-four__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  line-height: 24px;
  text-align: center;
  margin-top: 18px;
  transition: 0.5s;

}

.service-four__item:hover .service-four__title {
  color: var(--getizy-white, #FFFFFF);
}

.service-four__desc {
  line-height: 24px;
  text-align: center;
  margin-top: 12px;
  color: var(--getizy-text, #7F7D86);
  transition: 0.5s;

}

.service-four__item:hover .service-four__desc {
  color: var(--getizy-white, #FFFFFF);
}

.service-four__arrow-icon {
  position: absolute;
  bottom: -0;
  left: 50%;
  transform: translateX(-50%);
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.service-four__arrow-icon span {
  font-size: 16px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  rotate: -30deg;
  transition: 0.5s;

}

.service-four__arrow-icon:hover span {
  rotate: 0deg;
}

.service-four__item:hover .service-four__arrow-icon {
  opacity: 1;
  visibility: visible;
  bottom: -17px;
}

.service-page .service-one__card {
  width: 100%;
  padding-top: 40px;

}

.service-page .service-one__card__btn {
  padding-top: 25px;
  padding-left: 40px;
  padding-bottom: 35px;
}

.service-page .service-one__card__icon {
  margin-bottom: 25px;
  margin-left: 40px;
}

.service-page .service-one__card__title {
  margin-bottom: 15px;
  padding-right: 30px;
  padding-left: 40px;
  font-size: 24px;
}



.service-page .service-one__card__desc {
  padding-bottom: 25px;
  padding-left: 40px;
  padding-right: 45px;
}

.service-page .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.service-page .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;
}



/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
  padding: 120px 0;
}

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

.service-details__thumbnail {
  max-height: 530px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 45px;
}

.service-details__thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details__thumbnail {
    max-height: 450px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-details__thumbnail {
    max-height: 400px;
    margin-bottom: 30px;
  }
}

.service-details__single {
  margin-bottom: 40px;
}

.service-details__single:last-child {
  margin-bottom: 0px;
}

.service-details__title {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 28px;
}

@media screen and (min-width: 768px) {
  .service-details__title {
    font-size: 30px;
  }
}

.service-details__sub-title {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
  color: transparent;
  background-image: linear-gradient(45deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
  .service-details__sub-title {
    font-size: 30px;
    margin-bottom: 38px;
  }
}

.service-details__text {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 38px;
  font-weight: 600;
  line-height: 200%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-details__text {
    margin-bottom: 25px;
  }
}

.service-details__single-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-details__single-inner {
    flex-wrap: wrap;
  }
}

.service-details__single-inner .benefit__img {
  max-width: 270px;
  display: inline-block;
}

.service-details__single-inner--base {
  flex-wrap: nowrap;
  padding-bottom: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-details__single-inner--base {
    flex-wrap: wrap;
  }
}

.service-details__benefit .service-details__title {
  margin-bottom: 7px;
}

.service-details__benefit .service-details__text {
  margin-bottom: 26px;
  letter-spacing: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-details__benefit .service-details__text {
    margin-bottom: 20px;
  }
}

.service-details__benefit .sub_title {
  margin-bottom: 20px;
  color: var(--getizy-secondary, #222230);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details__benefit .sub_title {
    font-size: 19px;
    margin-bottom: 15px;
  }
}

.service-details__benefit .service-details__list {
  margin-bottom: 0;
}

.service-details__benefit .service-details__list i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-details__inner-item-card {
  position: relative;
}

.service-details__inner-item-card::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 5px);
  height: 100%;
  border: 1px solid var(--getizy-secondary);
  z-index: -5;
}

.service-details__inner-item {
  max-width: 370px;
  display: flex;
  align-items: center;
  background: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details__inner-item {
    max-width: 285px;
  }
}

.service-details__inner-item .item-icon {
  max-width: 80px;
  max-height: 70px;
  margin-left: -5px;
  display: inline-flex;
  padding: 17px 20px 10px 20px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  background-image: linear-gradient(45deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.service-details__inner-item:hover .item-icon {
  transform: rotateY(180deg);
}

.service-details__inner-item .item-icon i {
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);
}

.service-details__inner-item .item-content {
  padding: 25px 0 25px 30px;

}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-details__inner-item .item-content {
    padding: 30px 10px;
  }
}

.service-details__inner-item .item-content .item__title {
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 3px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-details__inner-item .item-content .item__title {
    font-size: 20px;
  }
}

.service-details__inner-item .item-content .item__dec {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 178.571%;
  margin-bottom: -4px;
}

.service-details__list {
  margin-bottom: 0;
  margin-bottom: 40px;
}

.service-details__list li {
  position: relative;
  color: var(--getizy-secondary, #222230);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 261.111%;
  padding-left: 30px;
  margin-bottom: -10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details__list li {
    font-size: 15px;
  }
}

.service-details__list li+li {
  margin-top: 2px;
}

.service-details__list li>i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--getizy-text, #7F7D86);
}

@media screen and (min-width: 768px) {
  .service-details__process {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
  }
}

.service-details__process li+li {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .service-details__process li+li {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .service-details__process__top {
    display: flex;
    align-items: center;
  }
}

.service-details__process__icon {
  width: 57px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--getizy-text);
  color: var(--getizy-white, #FFFFFF);
  font-size: 21px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 500ms ease;
  margin-bottom: 20px;
}

.service-details__process__icon::before {
  transform: scale(1);
  transition: transform 500ms ease;
}

@media screen and (min-width: 768px) {
  .service-details__process__icon {
    margin-bottom: 0;
  }
}

.service-details__process__icon:hover {
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.service-details__process__icon:hover::before {
  transform: scale(0.9);
}

.service-details__process__title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  color: var(--getizy-secondary, #222230);
}

@media screen and (min-width: 768px) {
  .service-details__process__title {
    font-size: 20px;
  }
}

.service-details__process__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  max-width: 220px;
  margin-top: 10px;
}

.service-details__post {
  margin-bottom: 0;
}

.service-details__post li+li {
  margin-top: 10px;
}

.service-details__post__date {
  text-transform: uppercase;
  color: var(--getizy-text, #7F7D86);
  font-size: 14px;
  margin: 0;
  line-height: 2.1428571429em;
}

.service-details__post__title {
  margin: 0;
  line-height: 1.875em;
  color: var(--getizy-black2);
  text-shadow: 0 0 0.5px currentColor;
}

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

.service-details__post__title a:hover {
  background-size: 100% 1px;
}

.service-details__post__title a:hover {
  color: var(--getizy-black2);
}

.service-details__info {
  border-top: 1px solid var(--getizy-secondary);
  padding-top: 55px;
  margin-top: 60px;
}

.service-details__info__title {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  color: var(--getizy-black2);
  font-size: 20px;
  margin-bottom: 24px;
}

.service-details__info__list {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .service-details__info__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.service-details__info__list li+li {
  border-top: 1px solid var(--getizy-secondary);
  margin-top: 20px;
  padding-top: 20px;
}

.service-details__info__list__date {
  color: var(--getizy-secondary, #222230);
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.service-details__info__list__date>i {
  color: var(--getizy-text, #7F7D86);
  font-size: 22px;
  margin-right: 10px;
}

.service-details__info__list__space {
  font-size: 16px;
  line-height: 24px;
  color: var(--getizy-text, #7F7D86);
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .service-details__info__list__space {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.service-details__info__list__btn {
  font-size: 10px;
  padding: 10.75px 30px;
}












/*--------------------------------------------------------------
# Countbar
--------------------------------------------------------------*/


.countbar-two {
  width: 100%;
  max-width: 500px;
  background-color: rgba(var(--getizy-white-rgb, 255, 255, 255), 10%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 45px;
  margin-top: 40px;
}

.countbar-two__data {
  display: flex;
  align-items: flex-end;
}

.countbar-two__text {
  font-size: 50px;
  font-weight: 700;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(45deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.countbar-two__line {
  position: relative;
}

.countbar-two__line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 148px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--getizy-white, #FFFFFF);

}

.countbar-two__line span {
  position: relative;
  font-size: 54px;
  z-index: 11;
  color: var(--getizy-white, #FFFFFF);
  padding-bottom: 10px;
}


.countbar-three {
  position: relative;
  z-index: 2;
}

.countbar-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.countbar-three__bg__overaly {
  background-color: var(--getizy-secondary, #222230);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 90%;
}

.countbar-three__wrapper {
  position: relative;
  z-index: 11;
  padding-top: 167px;
  padding-bottom: 100px;
}

.countbar-three__item {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--getizy-white, #FFFFFF);
}

.countbar-three__item__top {
  margin-top: -67px;
  background-image: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.countbar-three__icon {
  transition: 0.5s;
}

.countbar-three__item:hover .countbar-three__icon {
  transform: rotateY(180deg);
}

.countbar-three__icon span {
  font-size: 70px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countbar-three__num {
  font-size: 40px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  line-height: 60px;
  display: flex;
  align-items: flex-end;
}

.countbar-three__text {
  font-size: 20px;
  font-weight: 500;
  color: var(--getizy-secondary, #222230);
}

.countbar-three__item__top .countbar-three__icon span {
  color: var(--getizy-white, #FFFFFF);
  -webkit-text-fill-color: var(--getizy-white);
  background: transparent;
}

.countbar-three__item__top .countbar-three__num,
.countbar-three__item__top .countbar-three__text {
  color: var(--getizy-white, #FFFFFF);
}

@media (max-width: 1199px) {
  .countbar-three__item__top {
    margin-top: -0;
  }

  .countbar-three__item {
    margin-bottom: 20px;

  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
  position: relative;
}

.testimonials-one__inner {
  position: relative;
  padding: 0 0px;
}

.testimonials-one__inner::after {
  content: "";
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translateX(-50%);
  width: 1464px;
  height: 70%;
  border: 2px solid var(--getizy-secondary);
}


@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonials-one__inner {
    padding-top: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonials-one__inner {
    padding-top: 0px;
    margin-top: -30px;
  }
}

.testimonials-one__carousel {
  padding: 40px 68px 82px 40px;
  background-color: var(--getizy-secondary, #222230);
}

.testimonials-one__carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

@media (max-width: 575px) {
  .testimonials-one__carousel {
    padding: 20px 30px 50px 20px;
  }
}

.testimonials-one__carousel__item {
  display: flex;
  align-items: center;
  gap: 60px;

}

@media (max-width: 992px) {
  .testimonials-one__carousel__item {
    display: block;
  }
}

.testimonials-one__carousel__item__image {
  position: relative;
  max-width: 311px;
  height: 311px;
  width: 100%;

}

.testimonials-one__carousel__item__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-one__carousel__item__image .quite {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: -50px;
  width: 99px;
  height: 99px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--getizy-secondary, #222230);
  transition: all 0.5s linear;
}

.testimonials-one__carousel__item .icon-thm-btn::before,
.testimonials-one__carousel__item .icon-thm-btn::after {
  background: linear-gradient(120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.testimonials-one__carousel__item:hover .icon-thm-btn::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.testimonials-one__carousel__item:hover .icon-thm-btn::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.testimonials-one__carousel__item__image .quite span {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s linear;
  font-size: 42px;
}

.testimonials-one__carousel__item:hover .quite span {
  color: var(--getizy-white, #FFFFFF);
  -webkit-text-fill-color: var(--getizy-white);
}

.testimonials-one__carousel__item__content {
  margin-top: 17px;
}

@media (max-width: 992px) {
  .testimonials-one__carousel__item__content {
    margin-top: 30px;
  }
}

.testimonials-one__carousel__item__content__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(157deg, var(--getizy-base, #1A237E) 15%, var(--getizy-base-two, #787ebd) 70%);
  margin-bottom: 25px;
}

.testimonials-one__carousel__item__content__ratings span {
  font-size: 26px;
  color: var(--getizy-white, #FFFFFF);
}

@media (max-width: 400px) {
  .testimonials-one__carousel__item__content__top {
    display: grid;
    gap: 5px;
    justify-content: center;
  }

  .testimonials-one__carousel__item__image {
    max-width: 270px;
    height: 270px;
  }

  .testimonials-one__carousel__item__content__top {
    padding: 10px 40px;

  }
}



.testimonials-one__carousel__item__content__text {
  color: var(--getizy-text, #7F7D86);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 40px;
  letter-spacing: 0;
}

@media (max-width: 992px) {
  .testimonials-one__carousel__item__content__text {
    margin-bottom: 20px;
  }
}

.testimonials-one__carousel__item__content__author__name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: -8px;
  color: var(--getizy-white, #FFFFFF);
}

.testimonials-one__carousel__item__content__author__deganation {
  margin-top: -2px;
  color: var(--getizy-white, #FFFFFF);
  opacity: 60%;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 0;
}



.testimonials-one .owl-nav {
  display: flex;
  align-items: center;
  position: absolute;
  left: 412px;
  bottom: 60px;
  gap: 8px;
}

.testimonials-one .owl-nav button.owl-prev,
.testimonials-one .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--getizy-white);
  transition: all 500ms ease;
  color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.testimonials-one .owl-nav button.owl-prev span,
.testimonials-one .owl-nav button.owl-next span {
  font-size: 10px;
  color: var(--getizy-white, #FFFFFF);
  margin-top: 1px;
}

.testimonials-one .owl-nav button.owl-prev:hover,
.testimonials-one .owl-nav button.owl-prev:active,
.testimonials-one .owl-nav button.owl-next:hover,
.testimonials-one .owl-nav button.owl-next:active {
  border: none;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);

}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonials-one .owl-nav {
    display: none;
  }
}

.testimonials-one .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots {
  width: 184px;
  height: 45px;
  border-radius: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: -115px;
  top: 45%;
  transform: translateY(-50%);
  background-color: var(--getizy-white, #FFFFFF);
  rotate: 90deg;
  padding: 0 44px;
}



.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;
}

/* .testimonials-two */


.testimonials-two {
  position: relative;
}


.testimonials-two__shapes .body-shape-one {
  width: 650px;
  height: 650px;
  position: absolute;
  left: -192px;
  top: -330px;
  z-index: -1;
}



.testimonials-two__top {
  margin-bottom: 30px;
}


.testimonials-two .sec-title__tagline::after {
  left: -26px;
}


.testimonials-two__custome-navs {
  position: relative;
  display: flex;
  top: -60px;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
}

@media (max-width: 991px) {
  .testimonials-two__custome-navs {
    top: 0;
  }
}

.testimonials-two__custome-navs button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--getizy-white, #FFFFFF);
  background: var(--getizy-secondary, #222230);
  transition: all 400ms ease;
  rotate: -45deg;
}

.testimonials-two__custome-navs button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.testimonials-two__custome-navs button:hover {
  background: linear-gradient(190deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

@media (max-width: 767px) {
  .testimonials-two__custome-navs button {
    width: 55px;
    height: 55px;
  }
}

.testimonials-two__custome-navs button span {
  border: none;
  outline: none;
  color: inherit;
  rotate: 45deg;
}



.testimonials-two .container {
  position: relative;
  z-index: 1;
}

.testimonials-two__container {
  padding-right: 0;
  margin-left: calc((100% - 1200px) / 2);
  width: auto;
  min-width: auto;
  max-width: inherit;
}

@media (max-width: 1200px) {
  .testimonials-two__container {
    padding-right: inherit;
    margin-left: auto;
    width: auto;
    min-width: inherit;
    max-width: inherit;
  }
}

.testimonial-two__card {
  margin-left: 20px;
  border-right: 2px solid var(--getizy-secondary);
}

.testimonial-two__card__content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
  position: relative;

}



.testimonial-two__card__image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  padding: 10px;
  position: relative;
}

.testimonial-two__card__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;

}

.testimonial-two__coma {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  position: absolute;
  z-index: 11;
  bottom: 0;
  right: 0;
}

.testimonial-two__card .icon-thm-btn::before,
.testimonial-two__card .icon-thm-btn::after {
  background: var(--getizy-secondary, #222230);
}

.testimonial-two__card:hover .icon-thm-btn::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.testimonial-two__card:hover .icon-thm-btn::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}


.testimonial-two__coma span {
  font-size: 21px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial__two-card__star {
  display: flex;
  align-items: center;
  gap: 4.28px;
}

.testimonial__two-card__star span {
  font-size: 26.58px;
  color: var(--getizy-secondary, #222230);
}

.testimonial-two__card__autor__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  margin-top: 15px;
  transition: 0.5s;
}

.testimonial-two__card__autor__name:hover {
  color: var(--getizy-base);
}

.testimonial-two__card__author__job {
  font-size: 16px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);
}

.testimonial-two__card__content__desc {
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--getizy-secondary, #222230);
  line-height: 50px;
  padding-right: 20px;
}

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

.line__bottom__line::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--getizy-black2);
}

.line__bottom__line__shape {
  position: absolute;
  font-size: 28px;
  color: var(--getizy-text, #7F7D86);
  z-index: 11;
}

.line__bottom__line__line__shape-1 {
  bottom: -148px;
  left: -5px;
}

.line__bottom__line__line__shape-2 {
  bottom: -148px;
  left: 20px;
}

.line__bottom__line__line__shape-3 {
  bottom: -148px;
  right: -5px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line__bottom__line__line__shape-4 {
  bottom: -148px;
  right: 20px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.testimonials-three {
  position: relative;
}

.testimonials-three__shapes .body-shape-one {
  position: absolute;
  right: -191px;
  top: -324px;
}

.testimonials-three__shapes .body-shape-two {
  position: absolute;
  left: -275px;
  bottom: -309px;
}

.testimonial-three__wrapper {
  padding-top: 40px;
}

.testimonials-three__carousel.owl-carousel .owl-nav {
  display: none;
}

.testimonial-three__card {
  position: relative;
  padding-top: 30px;
}

.testimonial-three__card__inner {
  border: 1px solid var(--getizy-secondary);
  padding: 35px;
  position: relative;
}



.testimonial-three__card__author {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 30px 0;
  z-index: 11;
  margin-top: -75px;
}

.testimonial-three__card__author__star-shape {
  position: absolute;
  right: 40px;
  top: 21px;
}

.testimonial-three__card__inner:hover .testimonial-three__card__author__star-shape {
  animation: zoomBig 2s linear infinite;

}

.testimonial-three__card__author::after {
  content: "";
  position: absolute;
  width: calc(100% - 80px);
  height: 1px;
  background-color: rgba(var(--getizy-white-rgb, 255, 255, 255), 23%);
  top: 103px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-three__card__author__name {
  font-size: 30px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;
}

.testimonial-three__card__author__name:hover {
  color: var(--getizy-base);
}

.testimonial-three__card__author span {
  font-size: 16px;
  font-weight: 400;
  color: var(--getizy-white, #FFFFFF);
  padding-bottom: 5px;
}

.testimonial-three__card__author__rating {
  display: flex;
  align-items: center;
  gap: 4.28px;
  padding-top: 15px;
}

.testimonial-three__card__author__rating span {
  font-size: 26px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-three-card__text {
  padding-top: 35px;
}

.testimonial-three__card__title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;

}

.testimonial-three__card__desc {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
}

.testimonial-three__images__container {
  max-width: 654px;
  padding-top: 60px;
  margin: 0 auto;
}


.testimonials-three .item .testimonial-three__image {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.testimonials-three .item .testimonial-three__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;

}

.testimonials-three .center .testimonial-three__card__active {
  position: absolute;
  bottom: 107px;
  right: 60px;
  width: 56px;
  height: 43px;
  background: var(--getizy-secondary, #222230);
  clip-path: polygon(0 0, 80% 0, 0 100%);
  z-index: 1;
}

.testimonial-four {
  position: relative;
  padding-bottom: 90px;
}

.testimonial-four__shapes .body-shape-one {
  position: absolute;
  left: -220px;
  bottom: -282px;
}


.testimonial-four__card {
  margin-bottom: 30px;
}


.testimonial-four__card__desc {
  position: relative;
  padding: 30px 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  background: var(--getizy-white, #FFFFFF);
}

.testimonial-four__card__desc::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px solid var(--getizy-secondary);

}

.testimonial-four__card__bottom {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  position: relative;
}

.testimonial-four__card__author {
  background-color: var(--getizy-secondary, #222230);
  display: flex;
  align-items: center;
  padding: 18px;
  padding-right: 68px;
  gap: 10px;
  width: 330px;
  max-height: 92px;
}

.testimonial-four__card__author__img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-four__card__author__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-four__card__author__text {
  padding-top: 10px;

}

.testimonial-four__card__author__name {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  line-height: 16px;
  padding-bottom: 5px;
}

.testimonial-four__card__author__job {
  font-size: 16px;
  font-weight: 400;
  color: var(--getizy-white, #FFFFFF);
  line-height: 14px;
}

.testimonial-four__coma {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--getizy-white, #FFFFFF);
  position: absolute;
  z-index: 11;
  left: 299px;

}

.testimonial-four__card .icon-thm-btn::before,
.testimonial-four__card .icon-thm-btn::after {
  background: var(--getizy-secondary, #222230);
}

.testimonial-four__card:hover .icon-thm-btn::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.testimonial-four__card:hover .icon-thm-btn::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.testimonial-four__coma span {
  font-size: 25px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  rotate: 180deg;
}

.testimonial-four__card__rating {
  background-color: #f5f5f5;
  width: 240px;
  max-height: 92px;
  display: flex;
  align-items: center;
  gap: 4.28px;
  padding: 33px 20px 33px 64px;

}

.testimonial-four__card__rating span {
  font-size: 26.58px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



@media (max-width: 1199px) {
  .testimonial-four__card__rating {
    width: 100%;
    padding: 33px 24px 33px 38px;
  }

  .testimonial-four__card__author {
    width: 100%;
    padding-right: 15px;
  }

  .testimonial-four__card__author__name {
    font-size: 20px;
  }

  .testimonial-four__coma {
    width: 45px;
    height: 45px;
    left: 223px;
  }
}

@media (max-width: 991px) {
  .testimonial-four__coma {
    width: 60px;
    height: 60px;
    left: 310px;
  }

  .testimonial-four__card__author {
    width: 350px;
    padding-right: 15px;
  }

  .testimonial-four__card__rating {
    width: 340px;
  }
}

@media (max-width: 767px) {
  .testimonial-four__coma {
    width: 50px;
    height: 50px;
    left: 240px;
  }

  .testimonial-four__card__author {
    width: 270px;
    padding-right: 15px;
  }

  .testimonial-four__card__rating {

    width: 240px;
  }
}

@media (max-width: 575px) {
  .testimonial-four__coma {
    display: none;
  }

  .testimonial-four__card__author {
    width: 100%;
    padding-right: 15px;
  }

  .testimonial-four__card__rating {
    width: 100%;
    padding: 33px 0px 33px 10px;
  }

  .testimonial-four__card__author__name {
    font-size: 17px;
  }
}

@media (max-width: 400px) {
  .testimonial-four__card__rating {

    padding: 36px 0px 36px 10px;
  }

  .testimonial-four__card__rating span {
    font-size: 20.58px;
  }
}



/*--------------------------------------------------------------
# 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(--getizy-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(--getizy-white, #FFFFFF);
}

.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(--getizy-black2);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--getizy-secondary, #222230);
  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: 20px;
  color: var(--getizy-white, #FFFFFF);
  cursor: pointer;
}

.mobile-nav__close:hover {
  color: var(--getizy-base);
  animation: rotated 3s ease;
}

.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(--getizy-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(--getizy-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(--getizy-white, #FFFFFF);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  height: 40px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li>a:hover,
.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--getizy-base);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--getizy-base);
  border: none;
  outline: none;
  color: var(--getizy-white, #FFFFFF);
  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(--getizy-white, #FFFFFF);
  color: var(--getizy-base);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--getizy-white, #FFFFFF);
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 20px;
}

.mobile-nav__social a:hover {
  color: var(--getizy-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--getizy-white, #FFFFFF);
  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(--getizy-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--getizy-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--getizy-white, #FFFFFF);
}

.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(--getizy-white, #FFFFFF);
  font-size: 16px;
  color: var(--getizy-secondary, #222230);
  font-weight: 500;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__form .getizy-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 .getizy-btn i {
  margin: 0;
}

.search-popup__form .getizy-btn::after {
  background-color: var(--getizy-black2);
}

.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(--getizy-secondary, #222230);
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  text-transform: capitalize;
}


@media screen and (min-width: 992px) {
  .page-header {
    padding-top: 146px;
    padding-bottom: 160px;
  }
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100%);
}

.page-header__bg__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--getizy-secondary-rgb, 34, 34, 48), 87%);

}

.page-header .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-header__title {
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .page-header__title {
    font-size: 50px;
  }
}

.getizy-breadcrumb {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  margin-top: 6px;
  padding: 10px 20px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.getizy-breadcrumb li {
  font-size: 12px;
  color: var(--getizy-white, #FFFFFF);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.getizy-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: -1px;
  margin-left: 10px;
  margin-right: 10px;
}

.getizy-breadcrumb li span,
.getizy-breadcrumb li a {
  color: inherit;
  display: inline-flex;
}

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

.getizy-breadcrumb li a:hover {
  background-size: 100% 1px;
}



/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
  padding-top: 120px;
  z-index: 11;
}


.client-carousel__inner {
  position: relative;
  padding-top: 20px;
}

.client-carousel__one {
  display: flex;
  justify-content: space-between;

}

.client-carousel__inner::after {
  content: "";
  position: absolute;
  top: -110%;
  left: 50%;
  transform: translateX(-50%);
  width: 1464px;
  border-top: 2px solid var(--getizy-secondary);
}


.client-carousel__one__item img {
  opacity: 50%;
  transition: 0.5s;
  cursor: pointer;
}


.client-carousel__one__item:hover img {
  opacity: 100%;
}



.client-carousel-three__custome-navs {
  position: relative;
  display: inline-flex;
  top: -40px;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  gap: 5px;
}

.client-carousel-three__custome-navs button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--getizy-white, #FFFFFF);
  background: var(--getizy-secondary, #222230);
  transition: all 400ms ease;
  margin: 0 auto;
}

.client-carousel-three__custome-navs button:hover {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.client-carousel-three__custome-navs::after,
.client-carousel-three__custome-navs::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 45px;
  width: 560px;
  height: 1px;
  background-color: var(--getizy-secondary, #222230);
}

.client-carousel-three__custome-navs::before {
  left: 45px;
}

.client-carousel-three__custome-navs button span {
  margin-top: -5px;
  margin-left: 1px;
}

.client-carousel .line__bottom__line__shape {
  position: absolute;
  font-size: 28px;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 11;
}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
}

.why-choose-one__shapes .body-shape-one {
  width: 560px;
  height: 560px;
  position: absolute;
  bottom: -210px;
  left: -236px;
}

.why-choose-one__shapes .body-shape-two {
  width: 560px;
  height: 560px;
  position: absolute;
  right: -276px;
  top: 170px;
}

.why-choose-one__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.why-choose-one__border {
  width: 370px;
  height: 370px;
  border: 2px solid var(--getizy-secondary);
  rotate: 45deg;
  animation: rotate3 6s infinite linear;
}

.why-choose-one__experiens {
  width: 370px;
  height: 370px;
  background-color: var(--getizy-secondary, #222230);
  rotate: 45deg;
  margin-top: -330px;
  position: relative;
  animation: rotate4 6s infinite linear;

}

.why-chose-one__experiens__one:nth-child(1) {
  display: flex;
  align-items: center;
  color: var(--getizy-white, #FFFFFF);
  rotate: 270deg;
  position: absolute;
  top: 160px;
  left: -70px;
  column-gap: 10px;
}

.why-chose-one__experiens__one:nth-child(2) {
  display: flex;
  align-items: center;
  color: var(--getizy-white, #FFFFFF);
  rotate: 0deg;
  position: absolute;
  top: 30px;
  right: 56px;
  column-gap: 3px;
}

.why-choose-one__experiens__count {
  display: flex;
  align-items: center;
}

.why-chose-one__experiens__one h5 {
  color: #f5f5f5;
  font-size: 18px;

}

.why-choose-one__experiens__count h2 {
  color: transparent;
  font-size: 30px;
  font-weight: 700;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
}



.count-two h2 {
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 600;
}

.why-choose-one__image {
  width: 560px;
  height: 560px;
  position: relative;
  margin-top: -330px;
  z-index: 11;
  animation: rotate3 6s infinite linear;

}

.why-choose-one__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-one__content {
  position: relative;
  z-index: 1;
}

.why-choose-one__desc {
  font-size: 16px;
  line-height: 30px;
  color: var(--getizy-text, #7F7D86);
}

.why-choose-one__cards {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 55px;
}

.why-choose-one__card__single {
  background-color: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 10%);
  padding: 25px 30px;
  position: relative;
  transition: all 500ms ease;
}

.why-choose-one__card__single::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background-color: var(--getizy-secondary, #222230);
  z-index: -1;
  transition: all 500ms ease;
}

.why-choose-one__card__single:hover::after {
  left: 0;
  top: 0;
}

.why-choose-one__card__top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-choose-one__card__top span {
  font-size: 40px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
}

.why-choose-one__card__single:hover .why-choose-one__card__top span {
  transform: rotateY(180deg);
}

.why-choose-one__card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.why-choose-one__card__desc {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--getizy-text, #7F7D86);
  line-height: 24px;
}


@media (max-width: 1199px) {
  .why-choose-one__wrap {
    margin-top: 80px;
  }

  .why-choose-one__cards {
    display: grid;
  }

  .why-choose-one__border {
    width: 320px;
    height: 320px;

  }

  .why-choose-one__experiens {
    width: 320px;
    height: 320px;
    margin-top: -280px;


  }

  .why-chose-one__experiens__one:nth-child(1) {
    top: 150px;
    left: -85px;
  }

  .why-chose-one__experiens__one:nth-child(2) {
    top: 15px;
    right: 55px;
  }

  .why-choose-one__image {
    width: 450px;
    height: 450px;
    margin-top: -300px;


  }
}






@media (max-width: 600px) {
  .why-choose-one__wrap {
    margin-top: 80px;
  }


  .why-choose-one__border {
    width: 280px;
    height: 280px;
  }

  .why-choose-one__experiens {
    width: 280px;
    height: 280px;
    margin-top: -250px;


  }

  .why-chose-one__experiens__one:nth-child(1) {
    top: 130px;
    left: -85px;
  }

  .why-chose-one__experiens__one:nth-child(2) {
    top: 15px;
    right: 30px;
  }

  .why-choose-one__image {
    width: 370px;
    height: 370px;
    margin-top: -250px;


  }

  .why-choose-one__content {
    padding-top: 50px;
  }

  .why-choose-one__cards {
    display: grid;
  }
}

/* why-choose-two */

.why-choose-two {
  background-color: #f5f5f5;
  position: relative;

}

.why-choose-two__shape-1 {
  position: absolute;
  z-index: 2;
  left: 5.8%;
  top: 17%;
  animation: zoomBigTwo 2s linear infinite;
}

.why-choose-two__shape-2 {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  animation: topToBottom 2s linear infinite;


}

.why-choose-two__shape-3 {
  position: absolute;
  z-index: 3;
  bottom: -56px;
  left: 0;

}

.why-choose-two__shape-4 {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -56px;
  animation: leftToRightTwo 2s linear infinite;
}

.why-choose-two__bg-overlay {
  position: absolute;
  top: 0;
  background-color: var(--getizy-secondary, #222230);
  left: 0;
  width: 50%;
  height: calc(100% + 56px);
}


.why-choose-two__wrapper {
  position: relative;
  z-index: 11;
}

.why-choose-two__wrapper .sec-title__tagline::after {
  left: -26px;

}

.why-choose-two__image {
  width: 636px;
  height: 655px;
  position: absolute;
  bottom: -118px;
}

.why-choose-two__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-two__content {
  position: relative;
  z-index: 11;
}

.why-choose-two__content__desc {
  font-weight: 600;
  color: var(--getizy-text, #7F7D86);
}

.why-choose-two__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.why-choose-two__bottom__right {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--getizy-white, #FFFFFF);
  padding: 20px;
  z-index: 2;
  position: relative;

}

.why-choose-two__bottom__right__logo {
  background-color: #f5f5f5;
  padding: 29px 30px 19px 38px;


}

.why-choose-two__bottom__right__logo img {
  width: 100px;
  animation: zoomBig 2s linear infinite;
}

.why-choose-two__bottom__right__text {
  font-size: 16px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  padding-top: 7px;

}

.why-choose-two__bottom__right__avater {
  padding-top: 10px;
}


.why-choose-two__bottom__right__avater img {
  width: 167px;
  height: 45px;
  object-fit: cover;
}

.why-choose-two__bottom__left__features {
  background-color: var(--getizy-secondary, #222230);
  padding: 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  text-align: center;
  border-radius: 47px;
  margin-left: 25px;
  rotate: -19.12deg;

}

.why-choose-two__bottom__left__features:nth-child(2) {
  rotate: -9.08deg;
  position: relative;
  z-index: 3;
}

.why-choose-two__bottom__left__features:nth-child(3) {
  rotate: -15deg;
  position: relative;
  z-index: 2;
  margin-left: 19px;
}

.why-choose-two__bottom__left__features:nth-child(4) {
  rotate: -7.04deg;
  margin-left: 35px;
}

.why-choose-two__bottom__left__features__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
}

.why-choose-two__content .getizy-btn {
  position: absolute;
  bottom: -117px;
  left: 0;
}



@media (max-width: 1199px) {
  .why-choose-two__image {
    position: inherit;

  }

  .why-choose-two__shape-4 {
    display: none;
  }

  .why-choose-two__bg-overlay {
    display: none;
  }

  .why-choose-two__shape-1 {
    display: none;
  }

  .why-choose-two__bottom__left {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;

  }

  .why-choose-two__bottom__left__features {
    rotate: -0deg;
  }

  .why-choose-two__bottom {
    justify-content: start;
  }

  .why-choose-two__bottom__left__features:nth-child(4) {
    rotate: -0deg;
    margin-left: 35px;
  }

  .why-choose-two__bottom__left__features:nth-child(2) {
    rotate: -0deg;
    z-index: 3;
  }

  .why-choose-two__bottom__left__features:nth-child(3) {
    rotate: -0deg;
    margin-left: 19px;
  }

  .why-choose-two__content .getizy-btn {
    position: inherit;
    bottom: -0;
    left: 0;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .why-choose-two__content {
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  .why-choose-two__image {
    width: 100%;
  }

  .why-choose-two__bottom__left__features {
    padding: 0 25px;

  }
}

@media (max-width: 767px) {
  .why-choose-two__bottom__left {
    grid-template-columns: auto;
  }
}

@media (max-width: 480px) {
  .why-choose-two__bottom {
    display: grid;
    gap: 20px;
  }
}


.why-choose-three {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  padding-bottom: 146px;
  overflow: hidden;
}

.why-choose-three__shape {
  position: absolute;
  top: -30px;
  left: -12px;
  animation: zoomBigThree 2s linear infinite;
}

.why-choose-three__desc {
  font-weight: 600;
}

.why-choose-three__inner {
  width: 839px;
  height: 240px;
  background-color: var(--getizy-secondary, #222230);
  padding: 40px;
  position: relative;
  margin-top: 30px;
  z-index: 11;
}

.why-choose-three__inner::after {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 0;
  width: calc(50% + 10px);
  height: 37px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.why-choose-three__inner__content {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
}

.why-choose-three__single {
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  padding-right: 25px;
  justify-content: space-between;
}

.why-choose-three__single__icon__title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-choose-three__single__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;
}


.why-choose-three__single__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
}

.why-choose-three__single__arrow-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--getizy-white, #FFFFFF);
}


.why-choose-three__single__arrow-icon span {
  font-size: 22px;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
  transform: rotate(-30deg);
}

.why-choose-three__single:hover .why-choose-three__single__arrow-icon span {
  transform: rotate(-0deg);
}

.why-choose-three__single:hover .why-choose-three__single__icon {
  transform: rotateY(180deg);
}


.why-choose-three__video {
  position: absolute;
  right: 0;
  bottom: -77px;
}

.why-choose-three__video img {
  width: 370px;
  height: 147px;
  object-fit: cover;
}

.why-choose-three__video-icon {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.why-choose-three__video-icon__overlay {
  width: 69px;
  height: 69px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  opacity: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.why-choose-three__video-icon span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  -webkit-text-fill-color: var(--getizy-secondary);
  transition: 0.5s;
}

.why-choose-three__video-icon:hover span {
  -webkit-text-fill-color: var(--getizy-white);
  background-color: var(--getizy-secondary, #222230);

}


.why-choose-three__video-icon span:before {
  margin-left: 4px;
}

.why-choose-three__img {
  width: 875px;
  height: 684px;
  position: absolute;
  top: 0;
  right: 0;
}

.why-choose-three__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

@media (max-width: 1740px) {
  .why-choose-three__img {
    width: 700px;
  }
}

@media (max-width: 1400px) {
  .why-choose-three__img {
    width: 100%;
    position: inherit;
  }

  .why-choose-three__shape {
    display: none;
  }
}

@media (max-width: 991px) {
  .why-choose-three__inner {
    width: 100%;
    height: 100%;
  }

  .why-choose-three__inner__content {
    grid-template-columns: auto;

  }

  .why-choose-three__video {
    position: inherit;
    right: 0;
    bottom: -0;
  }

  .why-choose-three__video-icon {
    left: 28%;

  }
}

@media (max-width: 430px) {
  .why-choose-three__inner {
    padding: 40px 20px;
  }
}



.why-choose-four {
  position: relative;

}

.why-choose-four__shapes .body-shape-one {
  position: absolute;
  right: -220px;
  bottom: 134px;
  z-index: -1;
}

.why-choose-four__bg__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 490px;
  background-color: var(--getizy-secondary, #222230);
  z-index: -1;

}

.why-choose-four__shape {
  position: absolute;
  right: -10px;
  bottom: 0;
  mix-blend-mode: overlay;
  animation: zoomBigThree 2s linear infinite;

}

.why-choose-four__image {
  position: relative;
  z-index: 11;
  float: inline-end;
  width: 962px;
  height: 724px;
}

.why-choose-four__image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(75% 0%, 100% 32.2%, 75% 100%, 0% 100%, -3% 50%, 0% 0%);
  object-fit: cover;
}

.why-choose-four__cards {
  position: relative;
}

.why-choose-four__card__single {
  position: relative;
  position: absolute;
  top: 30px;
  left: -190px;
}

.why-choose-four__card__single-two {
  position: relative;
  position: absolute;
  top: 30px;
  left: 80px;
}

.why-choose-four__card__text {
  position: absolute;
  top: 27%;
  left: 30%;
  rotate: -65.63deg;
  z-index: 11;
}

.why-choose-four__card__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
}

.why-choose-four__card__desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
  line-height: 24px;
}

.why-choose-four__card__icon {
  position: absolute;
  bottom: 45px;
  left: 26%;
  transition: 0.5s;
}

.why-choose-four__card__icon span {
  font-size: 80px;
  color: var(--getizy-white, #FFFFFF);
}

.why-choose-four__card__single:hover .why-choose-four__card__icon {
  transform: rotateY(180deg);
}

.why-choose-four__card__single-two:hover .why-choose-four__card__icon {
  transform: rotateY(180deg);
}



@media (max-width: 1199px) {
  .why-choose-four__card__single {
    top: 50px;

  }

  .why-choose-four__card__single-two {
    top: 50px;

  }
}

@media (max-width: 991px) {
  .why-choose-four__card__single {
    top: 0;
    left: -65px;
  }

  .why-choose-four__card__single-two {
    position: inherit;
    top: 0;
    left: 210px;
  }

  .why-choose-four__card__single-two .why-choose-four__card__text {
    left: 22%;
  }

  .why-choose-four__card__single-two .why-choose-four__card__icon {
    left: 20%;
  }
}

@media (max-width: 767px) {
  .why-choose-four__card__single {
    top: 0;
    left: -150px;
  }


  .why-choose-four__card__single-two {
    left: 140px;
  }

  .why-choose-four__card__single-two .why-choose-four__card__text {
    left: 27%;
  }

  .why-choose-four__card__single-two .why-choose-four__card__icon {
    left: 25%;
  }
}

@media (max-width: 575px) {
  .why-choose-four__bg__overlay {
    height: 100%;

  }

  .why-choose-four__image {
    width: 100%;
    height: 500px;
  }

  .why-choose-four .sec-title__tagline span {
    color: var(--getizy-white, #FFFFFF);
  }

  .why-choose-four .sec-title__title {
    color: var(--getizy-white, #FFFFFF);
  }

  .why-choose-four__card__shape img {
    display: none;
  }

  .why-choose-four__card__single {
    position: initial;
    background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;

  }

  .why-choose-four__card__single-two {
    position: initial;
    background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;
  }

  .why-choose-four__card__icon {
    position: initial;
    margin-top: 20px;
    padding: 20px 0;
    display: flex;
    background: #2D2D3D;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .why-choose-four__card__text {
    position: initial;
    rotate: 0deg;
  }

  .why-choose-four__card__title {
    text-align: center;
  }

  .why-choose-four__card__desc {
    text-align: center;
  }
}




/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/

.project-one {
  position: relative;
  padding-top: 120px;
  background-color: var(--getizy-secondary, #222230);
  z-index: 1;
  height: 826px;
  width: 100%;
}


.project-one__bg {
  background-image: url(../images/backgrounds/project-1-1-bg.jpg);
  height: 826px;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 10%;

}

.project-one .sec-title__tagline span {
  color: var(--getizy-white, #FFFFFF);
}

.project-one__shapes .body-shape-one {
  width: 576px;
  height: 523px;
  position: absolute;
  top: 151px;
  left: 272px;
}

.project-one__shapes .body-shape-two {
  width: 576px;
  height: 523px;
  position: absolute;
  right: -81px;
  top: 162px;
}

.project-one__shapes .body-shape-three {
  width: 648px;
  height: 648px;
  position: absolute;
  bottom: -398px;
  right: -189px;
}


.project-one__custome-navs {
  position: relative;
  display: flex;
  top: 50px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  right: 350px;
}

@media (max-width: 1870px) {
  .project-one__custome-navs {
    right: 100px;
  }
}

@media (max-width: 1670px) {
  .project-one__custome-navs {
    right: 50px;
  }
}

@media (max-width: 1590px) {
  .project-one__custome-navs {
    top: 0px;

  }



}


.project-one__custome-navs::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 122px;
  width: 548px;
  height: 1px;
  background-color: var(--getizy-text);
}



.project-one__custome__shape {
  position: absolute;
  font-size: 28px;
  top: 1px;
  color: var(--getizy-text, #7F7D86);
  z-index: 11;
}

.project-one__custome__shape__icon-one {
  right: 654px;

}

.project-one__custome__shape__icon-two {
  right: 626px;

}

.project-one__custome__shape__icon-three {
  right: 390px;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-one__custome__shape__icon-four {
  right: 362px;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

@media (max-width: 991px) {
  .project-one__custome-navs {
    top: 0;
  }
}

.project-one__custome-navs button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--getizy-white, #FFFFFF);
  background: RGBA(var(--getizy-white-rgb, 255, 255, 255), 10%);
  transition: all 400ms ease;

}



.project-one__custome-navs button:hover span {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(190deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

@media (max-width: 767px) {
  .project-one__custome-navs {
    top: 0;
    justify-content: center;
    right: 0;
  }

  .project-one__custome-navs button {
    width: 55px;
    height: 55px;
  }

  .project-one__custome-navs::after {
    content: none;
  }

  .project-one__custome__shape {
    display: none;
  }


}

.project-one__custome-navs button span {
  border: none;
  outline: none;
  color: inherit;
  font-size: 16.4px;
}

.project-one .container {
  overflow: hidden;
  margin: 0;
  margin-left: 350px;
  z-index: 0;
  position: relative;
  max-width: 100%;
  padding: 0;
}

@media (max-width: 1199px) {
  .project-one .container {
    margin-left: 200px;

  }
}

@media (max-width: 950px) {
  .project-one .container {
    margin-left: 50px;
  }


}

@media (max-width: 600px) {
  .project-one .container {
    margin-left: 0;
  }
}

.project-one__container {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .project-one__container {
    margin-top: 160px;
  }
}

.project-one__carousel {
  position: relative;
  display: block;
  width: 370px;
}

.project-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.project-one__content {
  position: relative;
  z-index: 11;
}



.project-one__content .sec-title__title {
  color: var(--getizy-white, #FFFFFF);
}



.project-one__item {
  position: relative;
  display: block;
  width: 370px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__img {
  width: 370px;
  height: 512px;
  position: relative;
}

.project-one__img img {
  height: 100%;
  object-fit: cover;
}

.project-one__card {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  position: relative;
  padding: 30px;
  display: none;
  width: 470px;
  position: absolute;
  bottom: -140px;
  left: -22px;

}

.project-one__arrow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: -40px;
  left: 37px;
}

.project-one__arrow-icon span {
  font-size: 21px;
  color: var(--getizy-white, #FFFFFF);
}

.project-one__arrow-icon:hover {
  background-color: #f5f5f5;

}

.project-one__arrow-icon:hover span {
  color: var(--getizy-secondary, #222230);
}

.project-one__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 30px;

}

.project-one__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}


.project-one__title:hover {
  background-size: 100% 1px;
  color: #f5f5f5;
}

.project-one__sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--getizy-white, #FFFFFF);
}



.project-one__carousel.owl-carousel .owl-stage-outer .owl-item.active {
  margin-right: 105px;
  margin-left: 44px;
  transform: translateY(-100px);
  width: 370px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .project-one__img {
  width: 426px;
  height: 470px;
}

.project-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .project-one__img img {
  width: 426px;
  height: 100%;
  object-fit: cover;
}

.project-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .project-one__img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  background-color: var(--getizy-secondary, #222230);
  z-index: -1;
}


.project-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .project-one__card {
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}



@media (max-width: 500px) {
  .project-one__carousel {
    width: 100%;
  }

  .project-one__carousel.owl-carousel .owl-stage-outer .owl-item.active {
    margin-right: 105px;
    margin-left: 0;
    transform: translateY(-100px);
    width: 370px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
}




.project-two {
  position: relative;
  padding-bottom: 225px;
}


.project-two__shapes .body-shape-one {
  position: absolute;
  right: -262px;
  bottom: -248px;
  z-index: -1;
}





.project-two .container {
  max-width: 1370px;
}

.project-two .sec-title__tagline::after {
  left: 43%;

}

.project-two__wrapper {
  padding-top: 30px;
  z-index: 11;
  position: relative;
}


.project-two__item {
  position: relative;
}

.project-two__images {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: -1;
}

.project-two__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-two__card {
  position: relative;
  position: absolute;
  bottom: -97px;
  right: 0;
  width: 371px;
  height: 246px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px 0 50px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
}

.project-two__card::after {
  content: "";
  position: absolute;
  background-color: var(--getizy-secondary, #222230);
  width: 100%;
  height: 100%;
  z-index: -1;
  right: 0;
}

.project-two__card__border {
  position: absolute;
  top: 8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
  z-index: -5;

}

.project-two__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 47px;
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}



.project-two__title:hover {
  background-size: 100% 1px;
  color: #f5f5f5;
}

.project-two__desc {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);
}

.project-two__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--getizy-white);
  margin-top: 25px;
}

.project-two__icon span {
  font-size: 25px;
  rotate: -30deg;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
}

.project-two__icon:hover span {
  rotate: 0deg;
  color: var(--getizy-white, #FFFFFF);
  -webkit-text-fill-color: var(--getizy-white);

}

.project-two__sub-title {
  width: 98px;
  height: 32px;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  left: -45px;
  rotate: -90deg;
}

.project-two__item:hover .project-two__card {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translatey(0);
  transform: translateY(0);

}


.project-three__container {
  max-width: 1570px;
}

.project-three__wrapper {
  padding-top: 30px;
}

.project-three__item {
  position: relative;
  cursor: pointer;
}

.project-three__images {
  width: 370px;
  height: 500px;
  position: relative;
  display: block;
  overflow: hidden;
}


.project-three__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease;
}

.project-three__images::before {
  content: "";
  position: absolute;
  top: -125%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%) 0%, RGBA(var(--getizy-white-rgb, 255, 255, 255)) 300%);

}


.project-three__item:hover .project-three__images::before {
  -webkit-animation: projectCardShine 0.50s;
  animation: projectCardShine 0.50s;
}

.project-three__item:hover .project-three__images img {
  transform: scale(1.1);
}




.project-three__card {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  rotate: -90deg;
  position: relative;
  position: absolute;
  bottom: 78px;
  left: -92px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
}

.project-three__card::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 50px;
  background: linear-gradient(180deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  bottom: 139px;
  left: -17px;
  rotate: 90deg;
  clip-path: polygon(68% 0, 100% 0, 100% 50%, 100% 76%, 86% 76%, 68% 55%);
  z-index: -1;
}


.project-three__text {
  padding: 35px 0 30px 0;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.project-three__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  line-height: 35px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.project-three__title:hover {
  background-size: 100% 1px;
  color: #f5f5f5;
}

.project-three__sub-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--getizy-white, #FFFFFF);
  margin-top: -5px;
}

.project-three__num {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  border-left: 1px solid rgba(var(--getizy-white-rgb, 255, 255, 255), 0.5);
  padding-left: 20px;
}

.project-three__item:hover .project-three__card {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}






@media (max-width: 1600px) {
  .project-three__images {
    width: 100%;
  }
}

.project-four {
  position: relative;
  z-index: 11;
}

.project-four .sec-title__tagline span {
  color: var(--getizy-white, #FFFFFF);
  padding-right: 8px;
}

.project-four .sec-title__title {
  color: var(--getizy-white, #FFFFFF);
}

.project-four__item {
  position: relative;
}

.project-four__container {
  max-width: 1470px;
  margin: 0;
  padding: 0;
  padding-top: 30px;
  margin-left: 370px;
  margin-right: 77px;
}

.project-four__images {
  width: 100%;
  height: 568px;
  position: relative;
  display: block;
  overflow: hidden;
  z-index: -1;
}

.project-four__images::before {
  content: "";
  position: absolute;
  top: -125%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%) 0%, RGBA(var(--getizy-white-rgb, 255, 255, 255)) 300%);
}

.project-four__item:hover .project-four__images::before {
  -webkit-animation: projectCardShine 0.50s;
  animation: projectCardShine 0.50s;
}

.project-four__item:hover .project-four__images img {
  transform: scale(1.1);
}

.project-four__images img {
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease;
}

.project-four__card {
  position: relative;
  position: absolute;
  bottom: 36px;
  left: 0;
  background-color: var(--getizy-secondary, #222230);
  margin: 0 30px;
  max-height: 238px;
  padding: 40px;
  border-bottom: 6px solid;
  border-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
  transition: 0.5s;
}


.project-four__card::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: auto;
  background: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  transition: all 0.4s ease-in-out;
}

.project-four__item:hover .project-four__card {
  border-image: none;
  border-color: var(--getizy-secondary);
}

.project-four__item:hover .project-four__card::after {
  height: 100%;
  top: auto;
  left: 0%;
  bottom: 0;
}

.project-four__sub-title {
  position: absolute;
  top: -17px;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  z-index: 2;
  transition: 0.5s;
}

.project-four__item:hover .project-four__sub-title {
  background: var(--getizy-white, #FFFFFF);
  color: var(--getizy-secondary, #222230);
}

.project-four__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
  padding-top: 5px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.project-four__title:hover {
  background-size: 100% 1px;
  color: #f5f5f5;
}

.project-four__desc {
  font-size: 14px;
  color: var(--getizy-text, #7F7D86);
  line-height: 24px;
  position: relative;
  z-index: 2;
  transition: 0.5s;
  padding-bottom: 23px;
}

.project-four__item:hover .project-four__desc {
  color: var(--getizy-white, #FFFFFF);
}

.project-four__arrow__icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 2;
  transition: 0.5s;
}

.project-four__arrow__icon:hover {
  background-color: var(--getizy-secondary, #222230);
}

.project-four__arrow__icon::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 1px;
  background-color: var(--getizy-text);
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.project-four__item:hover .project-four__arrow__icon::after {
  background-color: var(--getizy-white, #FFFFFF);
}

.project-four__arrow__icon span {
  font-size: 16px;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
}




@media (max-width: 450px) {
  .project-four__title {
    font-size: 25px;
  }
}

@media (max-width: 1680px) {
  .project-four__container {
    max-width: 1470px;
    margin: 0;
    padding: 0 15px;
    padding-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.project-page .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.project-page .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;

}





.project-details {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 991px) {
  .project-details {
    padding: 100px 0px;
  }
}

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

.project-details__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.project-details__top__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -3%;
  color: var(--getizy-secondary, #222230);
}

.project-details__top__date {
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.project-details__thumb {
  margin-bottom: 40px;
  height: 531px;
}

.project-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-details__left {
  margin-top: -10px;
}

.project-details__text {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 200%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-details__text--two {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 167%;
  color: transparent;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
  text-transform: capitalize;
  padding-bottom: 5px;
}

.project-details__text+.project-details__text {
  margin-top: 15px;
}

.project-details__list__title {
  margin-top: 23px;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  color: var(--getizy-secondary, #222230);
  margin-bottom: 22px;
}

.project-details__list {
  margin-bottom: 30px;
}

.project-details__list__item {
  color: var(--getizy-secondary, #222230);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}

.project-details__list__item i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  margin-right: 15px;
}

.project-details__list__item+.project-details__list__item {
  margin-top: 16px;
}

.project-details__box {
  border-top: 5px solid transparent;
  border-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
  background: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

@media (max-width: 991px) {
  .project-details__box {
    margin-top: 30px;
  }
}

.project-details__box__content {
  padding-bottom: 30px;
}

.project-details__box__text {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 188%;
  color: var(--getizy-secondary, #222230);
  margin-bottom: 0;
  padding-bottom: 0;
  text-shadow: 0 0 0.1px currentColor;
}

.project-details__box__text__top {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--getizy-text, #7F7D86);
  display: block;
}

.project-details__box__text+.project-details__box__text {
  margin-top: 20px;
}

.project-details__box__social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.project-details__box__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  background: #f5f5f5;
  justify-content: center;
  align-items: center;
  color: var(--getizy-secondary, #222230);
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.project-details__box__social a:hover {
  color: var(--getizy-white, #FFFFFF);
  background: var(--getizy-secondary, #222230);
}

.project-details__link {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--getizy-secondary);
  border-bottom: 1px solid var(--getizy-secondary);
  padding: 20px 0px;
}

@media (max-width: 1199px) {
  .project-details__link {
    margin-top: 70px;
  }
}

@media (max-width: 991px) {
  .project-details__link {
    margin-top: 50px;
  }

  .project-details__thumb {
    height: 100%;
  }
}

.project-details__link__item {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--getizy-secondary, #222230);
}

.project-details__link__item:hover {
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.project-details__link__left,
.project-details__link__right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.project-details__link span {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--getizy-secondary, #222230);
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-one {
  position: relative;
}


.faq-one__shapes .body-shape-one {
  position: absolute;
  left: -298px;
  bottom: -378px;
}

.faq-one__wrappper {
  padding-top: 30px;
}

.faq-accordion .accordion {
  border: 1px solid var(--getizy-secondary);
  background-color: #f5f5f5;
}

.faq-accordion .accordion+.accordion {
  margin-top: 20px;
}

.faq-accordion .accordion-title {
  padding: 24px 70px 24px 30px;
  padding-right: 70px;
  cursor: pointer;
  background-color: var(--getizy-white, #FFFFFF);
}

.faq-accordion .accordion-title h4 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  transition: all 500ms ease;
  text-transform: capitalize;
  margin-bottom: 0;
  color: var(--getizy-secondary, #222230);
}

.faq-accordion .accordion-title__icon {
  display: inline-block;
  width: 50px;
  height: 53px;
  position: absolute;
  top: calc(50% - 0px);
  right: -60px;
  transform: translateY(-50%);
  background-color: var(--getizy-secondary, #222230);
}

.faq-accordion .accordion-title__icon::after,
.faq-accordion .accordion-title__icon::before {
  width: 2px;
  height: 12px;
  position: absolute;
  background-color: var(--getizy-white, #FFFFFF);
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.faq-accordion .accordion-title__icon::after {
  width: 12px;
  height: 2px;
}


.faq-accordion .active .accordion-title {
  background-color: #f5f5f5;
  padding-bottom: 10px;
}

.faq-accordion .active .accordion-title__icon {
  background: linear-gradient(180deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.faq-accordion .active .accordion-title__icon::after,
.faq-accordion .active .accordion-title__icon::before {
  background-color: #f5f5f5;
  opacity: 0;
}

.faq-accordion .active .accordion-title__icon::after {
  opacity: 1;
}

.faq-accordion .accordion-content .inner {
  padding: 0px 50px 20px 30px;
}

.faq-accordion .accordion-content p {
  font-weight: 600;
  margin: 0;

}

.faq-one__images {
  position: relative;
  z-index: 0;
}

.faq-one__img {
  width: 100%;
  height: 473px;
}

.faq-one__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.faq-one__avaver {
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px 35px;
  position: relative;
  position: absolute;
  bottom: 0;
  gap: 10px;
  left: 0;

}

.faq-one__avaver::after {
  content: "";
  position: absolute;
  width: 105px;
  height: calc(100% + 10px);
  right: -10px;
  top: -10px;
  border-top: 10px solid var(--getizy-secondary);
  border-right: 10px solid var(--getizy-secondary);

}

.faq-one__avaver h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
}




.faq-page-contact {
  padding-top: 195px;

}

.faq-page-contact__wrapper {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.faq-page-contact__img {
  margin-top: -95px;
}

.faq-page-contact__title {
  font-size: 50px;
  font-weight: 700;
  padding-top: 20px;
  color: var(--getizy-secondary, #222230);
  text-align: center;
}


.faq-page-contact__infu {
  margin-top: 35px;
  background-color: var(--getizy-white, #FFFFFF);
  padding: 20px 90px;
  text-align: center;

}


.faq-page-contact__infu li a {
  font-size: 18px;
  color: var(--getizy-secondary, #222230);
  font-weight: 600;
}

.faq-page-contact__infu li a i {
  font-size: 18px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding-right: 10px;
}





/*--------------------------------------------------------------
# Team 
--------------------------------------------------------------*/
.team-one {
  position: relative;
  padding-top: 265px;
}

.team-one__bg__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 275px;
  background-color: #f5f5f5;

}



.team-one__content .sec-title__tagline::after {
  left: 42%;
}

.team-one__content {
  padding-bottom: 40px;
}

.team-one__single {
  position: relative;
  cursor: pointer;
}

.team-one__img {
  width: 100%;
  height: 484px;
  position: relative;
  display: block;
  overflow: hidden;
}

.team-one__img::before {
  content: "";
  position: absolute;
  top: -125%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%) 0%, RGBA(var(--getizy-white-rgb, 255, 255, 255)) 300%);
}

.team-one__single:hover .team-one__img::before {
  -webkit-animation: projectCardShine 0.50s;
  animation: projectCardShine 0.50s;
}

.team-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.1);
}

.team-one__shape__content {
  position: absolute;
  bottom: 0;
}

.team-one__shape__svg {
  position: absolute;
  bottom: 0;
  width: 370px;
  height: 123px;
  background: var(--getizy-secondary);
  mask-image: url('../images/team/team-1-shape.png');
  -webkit-mask-image: url('../images/team/team-1-shape.png');
  mask-repeat: no-repeat;
  mask-size: cover;
  transition: 0.5s;
}

.team-one__single:hover .team-one__shape__svg {
  background: linear-gradient(9deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.team-one__shape__two {
  position: absolute;
  bottom: 0;
  right: -296px;
}


@media (max-width: 1199px) {

  .team-one__shape__svg {
    width: 450px;
    height: 128px;

  }

  .team-one__shape__two svg {
    width: 398px;
    height: 72px;
  }

  .team-one__shape__two {
    right: -422px;
  }
}

@media (max-width: 991px) {
  .team-one__shape__svg {
    width: 330px;
    height: 105px;
  }

  .team-one__shape__two svg {
    width: 260px;
    height: 60px;
}

  .team-one__shape__two {
    right: -293px;
  }
}

@media (max-width: 767px) {
  .team-one__shape__svg {
    display: none;
  }

  .team-one__shape__two {
    display: none;
  }
}


.team-one__shape__content__desc {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
}

.team-one__shape__content__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-one__shape__title {
  color: var(--getizy-white, #FFFFFF);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.team-one__shape__title:hover {
  background-size: 100% 1px;
  color: #f5f5f5;
}

.team-one__shape__tagline {
  width: 65px;
  height: 21px;
  background-color: var(--getizy-text);
  border-radius: 45px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  color: var(--getizy-white, #FFFFFF);
  transition: all 400ms ease;


}

.team-one__shape__content__social {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);

}


.team-one__shape__content__social__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--getizy-secondary, #222230);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease;

}




.team-one__shape__content__social__icon i {
  color: transparent;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
  transition: all 400ms ease;

}


.team-one__shape__two {
  color: #7F7D86;
  opacity: 15%;
  transition: all 400ms ease;
}


.team-one__single:hover .team-one__shape__two {
  color: var(--getizy-white, #FFFFFF);
  opacity: 19%;
}


.team-one__single:hover .team-one__shape__tagline {
  background-color: var(--getizy-secondary, #222230);
}

.team-one__single:hover .team-one__shape__content__social__icon {
  background-color: var(--getizy-white, #FFFFFF);
}

.team-one__single:hover .team-one__shape__content__social__icon i {
  color: var(--getizy-secondary, #222230);
  background-image: none;

}




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

.team-page .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;

}





.team-details {
  padding-top: 120px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--getizy-secondary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.team-details__image {
  display: inline-block;
  position: relative;
  margin-right: -15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__image {
    margin-right: 0px;
  }
}

.team-details__image img {
  max-width: 100%;
}

.team-details__content {
  padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content {
    padding-left: 0px;
    margin-top: 30px;
  }
}

.team-details__content__subtitle {
  color: var(--getizy-text, #7F7D86);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.team-details__content__title {
  margin-top: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%;
  letter-spacing: -1.2px;
  margin-bottom: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content__title {
    font-size: 30px;
  }
}

.team-details__content__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content__text {
    margin-bottom: 22px;
  }
}

.team-details__content__highlight {
  background-color: var(--getizy-secondary, #222230);
  padding: 20px 40px;
  border-left: 8px solid transparent;
  border-image: linear-gradient(180deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
  margin-bottom: 40px;
  position: relative;
}

.team-details__content__highlight__text {
  color: var(--getizy-white, #FFFFFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
}

.team-details__content__highlight__shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content__highlight__shape {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content__highlight {
    padding: 10px 20px;
    margin-bottom: 30px;
  }

  .team-details__content__highlight__text {
    font-size: 16px;
  }
}

.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.team-details__social a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  font-size: 9px;
  color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
  border-radius: 50%;
}

.team-details__social a:hover {
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.team-details__list {
  margin-bottom: 30px;
}

.team-details__list>li {
  color: var(--getizy-secondary, #222230);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

.team-details__list>li a {
  color: var(--getizy-secondary, #222230);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

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

.team-details__list>li span {
  display: inline-block;
  color: var(--getizy-text, #7F7D86);
}

.team-details__list>li>i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  margin-right: 10px;
}

.team-details__list>li:last-child {
  margin-bottom: 0;
}

.team-details .team-skills {
  margin-bottom: 40px;
}

.team-details .team-skills__progress+.team-skills__progress {
  margin-top: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details .team-skills__progress+.team-skills__progress {
    margin-top: 15px;
  }
}

.team-details .team-skills__progress__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.444%;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details .team-skills__progress__title {
    margin-bottom: 10px;
  }
}

.team-details .team-skills__progress__bar {
  width: 100%;
  height: 10px;
  position: relative;
  background-color: #f5f5f5;
}

.team-details .team-skills__progress__inner {
  position: absolute;
  height: 10px;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  transition: all 700ms linear;
  width: 0px;
}

.team-details .team-skills__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 144.444%;
  color: var(--getizy-secondary, #222230);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details .team-skills {
    margin-bottom: 25px;
  }
}

.team-skills-one__top {
  padding-bottom: 66px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-skills-one__top {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-skills-one__top {
    padding-bottom: 30px;
  }
}

.team-skills-one__content__title {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.team-skills-one__content__text {
  font-weight: 600;
  line-height: 32px;
}

.team-skills-one__certificates {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-skills-one__certificates__item {
  max-width: 176px;
  overflow: hidden;
}

.team-skills-one__certificates__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-skills-one__certificates {
    flex-wrap: wrap;
  }
}

.team-skills-one__skill {
  padding-top: 45px;
  position: relative;
}

.team-skills-one__skill::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  clear: both;
  width: 110%;
  height: 1px;
  background-color: var(--getizy-secondary, #222230);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-skills-one__skill::before {
    display: none;
  }
}

.team-skills-one__skill::after {
  position: absolute;
  top: 0%;
  left: 0;
  content: "";
  clear: both;
  width: 15px;
  height: 15px;
  border-radius: 500px;
  background-color: var(--getizy-secondary, #222230);
  transition: all 0.4s ease-in-out;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-skills-one__skill::after {
    display: none;
  }
}

.team-skills-one__skill__start {
  display: block;
  color: var(--getizy-base);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.team-skills-one__skill__title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.team-skills-one__skill__text {
  margin-bottom: 0;
}

.team-skills-one__skill:hover::after {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-skills-one__skill {
    padding-top: 0px;
  }
}

.team-skills-one__title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.team-skills-one__text {
  max-width: 550px;
  width: 100%;
  padding-top: 15px;
}

.col-md-3:last-child .team-skills-one__skill::before {
  width: 100%;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-skills-one {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-skills-one {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.team-form-one {
  position: relative;
  padding: 120px 0;
  background-color: #f5f5f5;
  z-index: 1;
}

.team-form-one__bg-shape-one {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;

}

.team-form-one__bg-shape-two {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;

}

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

.team-form-one__shape {
  position: absolute;
  top: 0%;
  left: 0%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-form-one__shape {
    display: none;
  }
}

.team-form-one__shape__right {
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: -1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-form-one__shape__right {
    display: none;
  }
}

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

.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(--getizy-white, #FFFFFF);
}

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














/*--------------------------------------------------------------
# Video 
--------------------------------------------------------------*/
.video-one {
  background-image: url(../images/video/video-1-bg.png);
  background-position: center;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 11;
}


.video-one__bg__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 380px;
  background-color: var(--getizy-secondary, #222230);
  opacity: 90%;
}

.video-one__content {
  position: relative;
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.video-one__content::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: calc(100% - 100px);
  height: calc(100% + 20px);
  background-color: var(--getizy-secondary, #222230);
  z-index: -1;
}

.video-one__image {
  width: 970px;
  height: 274px;
  position: relative;
}



.video-one__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}



.video-one__icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.video-one__icon span {
  font-size: 24px;
  color: var(--getizy-white, #FFFFFF);
  margin-left: 5px;
}

.video-one__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  text-align: center;
  padding: 40px 80px 40px 100px;
  line-height: 60px;
}

@media (max-width: 1199px) {
  .video-one__image {
    width: 90%;
  }

  .video-one__title {
    font-size: 35px;

  }
}

@media (max-width: 991px) {
  .video-one__title {
    font-size: 30px;
    padding: 40px;
  }
}

@media (max-width: 540px) {
  .video-one__title {
    font-size: 25px;
    padding: 30px;
  }
}



/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/


.blog-one {
  position: relative;
}

.blog-one__shapes .body-shape-one {
  width: 648px;
  height: 648px;
  position: absolute;
  top: -278px;
  right: -266px;
}

.blog-one__shapes .body-shape-two {
  width: 648px;
  height: 648px;
  position: absolute;
  left: -324px;
  bottom: -252px;
}

.blog-one__wrapper {
  padding-top: 30px;
}

.blog-card {
  position: relative;
  background-color: var(--getizy-white, #FFFFFF);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  z-index: 11;
}

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

.blog-card__image-item {
  overflow: hidden;
  height: 240px;
}

.blog-card__image-item img {
  object-fit: cover;
  transition: 0.5s;
  background-size: cover;
  height: 100%;
  width: 100%;
  transition: all 2s ease;
  overflow: hidden;
}

@media (max-width: 575px) {
  .blog-card__image-item {
    height: 200px;
  }
}

.blog-card__image-link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--getizy-black2-rgb, 0, 0, 0), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-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(--getizy-white, #FFFFFF);
  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: translateX(0);
  left: auto;
  right: 0;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.15);
}

.blog-card:hover .blog-card__image .date__shape {
  transform: scale(1);
}

.blog-card__content {
  background-color: var(--getizy-white, #FFFFFF);
  padding: 30px 40px 40px 40px;
  position: relative;
  transition: all 500ms ease;
}

.blog-card__content:hover {
  background-color: var(--getizy-secondary, #222230);
}

.blog-card__content::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: var(--getizy-secondary, #222230);
  z-index: -1;
  transition: all 500ms ease;
}

.blog-card__content:hover::after {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-card__content {
    padding: 30px 20px 40px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-card__content {
    padding: 30px 20px 40px 20px;
  }
}


.blog-card__date {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--getizy-white, #FFFFFF);
  position: absolute;
  top: -44px;
  right: 35px;
  z-index: 11;
  line-height: 15px;
  transition: all 500ms ease;
}

.blog-card__content:hover .blog-card__date {
  background-color: var(--getizy-secondary, #222230);
}

.blog-card__date__month {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
}

.blog-card__date__year {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
}

.blog-card__content:hover .blog-card__date__month {
  color: var(--getizy-white, #FFFFFF);
}

.blog-card__content:hover .blog-card__date__year {
  color: #D7D7D7;
}

.blog-card__content-thumb {
  margin-right: 10px;
}

.author-img {
  width: 35px;
  height: 35px;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.blog-card__content-author {
  margin-top: 5px;
}

.blog-card__content-author .author-name {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 0px;
  margin-bottom: -6px;
  transition: all 500ms ease;
}

.blog-card__content:hover .author-name {
  color: var(--getizy-white, #FFFFFF);
}

.blog-card__content:hover .getizy-btn--black {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.blog-card__content-author .author-title {
  color: var(--getizy-text, #7F7D86);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  transition: all 500ms ease;
}

.blog-card__content-author:hover .author-name {
  color: var(--getizy-base);
}

.blog-card__meta {
  display: inline-flex;
  align-items: center;
  margin: 0;
  margin-bottom: 10px;
  margin-top: -5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-card__meta {
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-card__meta {
    margin-bottom: 5px;
  }
}



.blog-card__content {
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}

.blog-card__title {
  text-transform: capitalize;
  color: var(--getizy-secondary, #222230);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--getizy-text);
}

.blog-card__content:hover .blog-card__title {
  color: var(--getizy-white, #FFFFFF);
  border-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;

}

@media screen and (min-width: 768px) {
  .blog-card__title {
    font-size: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .blog-card__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

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





/* blog-two */

.blog-two {
  position: relative;
  padding-top: 240px;
}

.blog-two__shapes .body-shape-one {
  position: absolute;
  left: -287px;
  bottom: -280px;
  z-index: 2;
}

.blog-two__wrapper {
  padding-top: 30px;
}

.blog-two__card {
  transition: all 0.5s;
  max-width: 500px;
  margin: 0 auto 30px;
  cursor: pointer;
}

.blog-two__img__wrapper {
  position: relative;

}

.blog-two__img {
  position: relative;
  height: 392px;
  overflow: hidden;
}

.blog-two__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  display: block;
  transition: all 2s ease;
}

.blog-two__card__img__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  border-radius: inherit;
  transition: opacity 500ms ease, transform 500ms ease;

}

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

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

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

.blog-two__card:hover .blog-two__img img {
  transform: scale(1.15);
}




.blog-two__content {
  position: relative;
  text-align: left;

}

.blog-two__content-inner {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  margin: 0 auto;
  position: relative;
}

.blog-two__meta {
  display: flex;
  align-items: center;
  padding-top: 15px;
}

.blog-two__admin {
  color: var(--getizy-text, #7F7D86);
  padding-right: 15px;
  transition: 0.5s;
  font-weight: 600;
  font-size: 16px;
}

.blog-two__admin:hover {
  color: transparent;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
}



.blog-two__admin i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
}


.blog-two__comment {
  color: var(--getizy-text, #7F7D86);
  font-weight: 600;
  font-size: 16px;
}

.blog-two__comment:hover {
  color: transparent;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
}

.blog-two__comment i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
}



.blog-two__title {
  font-size: 24px;
  font-weight: 700;
  word-wrap: break-word;
  line-height: 35px;
  position: relative;
  color: var(--getizy-secondary, #222230);
  padding-bottom: 20px;
  padding-right: 75px;
}

.blog-two__title:hover {
  color: var(--getizy-base);

}

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

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



.blog-two__bottom {
  max-width: calc(100% - 27px);
  border: 1px solid var(--getizy-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  padding-left: 24px;
}

.blog-two__bottom .blog-card__meta {
  margin-bottom: 0;
  margin-top: 0;

}

.blog-two__link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--getizy-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--getizy-secondary);
  margin-right: -27px;
  rotate: -30deg;
  transition: all 500ms ease;
}

.blog-two__link span {
  font-size: 24px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-two__card:hover .blog-two__link {
  background-color: var(--getizy-secondary, #222230);
  transform: rotate(30deg);
}



.blog-three {
  position: relative;
  padding-bottom: 35px;
}


.blog-three__shapes .body-shape-one {
  position: absolute;
  right: -324px;
  top: -396px;
  z-index: -1;
}

.blog-three__shapes .body-shape-two {
  position: absolute;
  left: -309px;
  bottom: -620px;
}



.blog-three__wrapper {
  padding-top: 30px;
}



.blog-three__left__list {
  display: grid;
  grid-template-columns: auto;
  gap: 20px;
}


.blog-three__left__item {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
  transition: all 500ms ease;
}

.blog-three__left__item:hover {
  background-color: var(--getizy-secondary, #222230);

}

.blog-three__left__img {
  max-width: 115px;
  height: 129px;
}

.blog-three__left__img img {
  max-width: 115px;
  height: 100%;
  object-fit: cover;
}

.blog-three__left__item__content {
  padding-left: 20px;
}

.blog-three__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-three__comment,
.blog-three__admin {
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-text, #7F7D86);

}

.blog-three__admin i,
.blog-three__comment span {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
  padding-right: 6px;
}

.blog-three__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  line-height: 35px;
}

.blog-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__left__item:hover .blog-three__title {
  color: var(--getizy-white, #FFFFFF);

}

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

.blog-three__right__img {
  width: 100%;
  height: 404px;

}

.blog-three__right__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-three__right__title__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-three__right .blog-three__title a {
  font-size: 40px;
  line-height: 50px;
}

.blog-three__right .blog-three__title:hover {
  color: var(--getizy-base-two);
}

.blog-three__right .blog-three__meta {
  padding-top: 10px;
}

.blog-three__right__author {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -44px;
}

.blog-three__right__author__img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-top: -27px;
}

.blog-three__right__author__img img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-three__right__author__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  padding-top: 5px;
}

.blog-three__right__author__job {
  font-size: 12px;
  font-weight: 700;
  color: var(--getizy-text, #7F7D86);
  padding-bottom: 10px;
}

.blog-three__right__author__comment {
  background-color: var(--getizy-secondary, #222230);
  padding: 12px 24px;
}

.blog-three__right__author__comment {
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
}

.blog-three__right__author__comment i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 3px;
}

@media (max-width: 1199px) {
  .blog-three__right .blog-three__title a {
    font-size: 30px;
  }

  .blog-three__comment,
  .blog-three__admin {
    font-size: 11px;
  }

  .blog-three__title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .blog-three__right__title__author {
    display: grid;
    gap: 40px;
  }

  .blog-three__right__author {
    margin-top: -0;
  }

  .blog-three__left__item__content {
    padding-left: 15px;
  }
}





.blog-four {
  position: relative;
}


.blog-four__shapes .body-shape-one {
  position: absolute;
  right: -146px;
  top: -307px;
  z-index: -1;
}

.blog-four__shapes .body-shape-two {
  position: absolute;
  left: -295px;
  bottom: -368px;
}


.blog-four__item {
  position: relative;
}

.blog-four__ovarlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 280px;
  background: linear-gradient(180deg, rgba(105, 105, 150, 0) 29%, rgba(34, 34, 48, 1) 80%);
  transition: 500ms ease;
}

.blog-four__item:hover .blog-four__ovarlay {
  height: 100%;
}

.blog-four__wrapper {
  padding-top: 30px;
}

.blog-four__item {
  width: 100%;
  max-height: 551px;
}

.blog-four__img {
  position: relative;
  height: 551px;
  z-index: -1;
  overflow: hidden;
}

.blog-four__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 1.5s ease;
}

.blog-four__item:hover .blog-four__img img {
  transform: scale(1.15);
}


.blog-four__content {
  position: absolute;
  bottom: 40px;
  left: 44px;
  right: 44px;


}

.blog-four__comment {
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
}

.blog-four__comment span {
  font-size: 16px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 10px;
}

.blog-four__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;

}

.blog-four__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__title a:hover {
  background-size: 100% 1px;
  color: var(--getizy-base);
}

.blog-four__clan {
  width: 100px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  position: relative;
  position: absolute;
  top: 5px;
  right: 5px;
  line-height: 24px;
}

.blog-four__clan::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 100%;
  height: 100%;
  background-color: var(--getizy-secondary, #222230);
  z-index: -1;
}

.blog-four__clan__date {
  font-size: 30px;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
}

.blog-four__clan__month {
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
}


.blog-one--page {
  padding-top: 120px;
}

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

.blog-one--page .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;
}

.blog-one--page .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.pronation_widget {
  margin-top: 40px;
}

.pronation_widget-widget2 {
  margin-top: 20px;
}

.pronation_widget-widget2 ul {
  padding-left: 0;
}

.pronation_widget ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pronation_widget ul a {
  display: inline-block;
  padding: 4px 20px;
  border: 1px solid var(--getizy-secondary);
  color: var(--getizy-secondary, #222230);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  transition: all 500ms ease-in-out;
}

.pronation_widget ul a.active,
.pronation_widget ul a:hover {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
  border: 1px solid transparent;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-home--two {
  position: relative;
  padding-top: 120px;

}

.contact-home--two__bg {
  position: absolute;
  background-color: var(--getizy-secondary, #222230);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: 1;
  filter: grayscale(100%);
}

.contact-home--two-shape {
  position: absolute;
  z-index: 2;
  left: 758px;
  animation: zoomBig 2s linear infinite;
}

.contact-home--two__overlay {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 0;
  opacity: 90%;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.contact-home--two__wrapper {
  position: relative;
  z-index: 11;
}

.contact-home--two .sec-title__tagline span {
  color: var(--getizy-white, #FFFFFF);
}

.contact-home--two .sec-title__title {
  left: -26px;
  color: var(--getizy-white, #FFFFFF);
}

.contact-home--two__form {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  padding: 60px 40px;
  margin-left: 20px;
  margin-top: 50px;
}

.contact-home--two__form::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  z-index: -1;
}

@media (max-width: 1199px) {
  .contact-home--two__form::after {
    top: -20px;
    left: -20px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);

  }

  .contact-home--two__form {
    padding: 50px 20px;

  }
}

.contact-home--two__form .form-one__group {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  margin: 0;
}

@media (min-width: 576px) {
  .contact-home--two__form .form-one__group {
    grid-template-columns: none;
  }
}


.contact-home--two__form .form-one .bootstrap-select>.dropdown-toggle::placeholder,
.contact-home--two__form .form-one input[type=text]::placeholder,
.contact-home--two__form .form-one input[type=email]::placeholder,
.contact-home--two__form .form-one textarea::placeholder {
  color: var(--getizy-text, #7F7D86);
}

.contact-home--two__form .form-one .bootstrap-select>.dropdown-toggle,
.contact-home--two__form .form-one input[type=text],
.contact-home--two__form .form-one input[type=email],
.contact-home--two__form .form-one textarea {
  background-color: var(--getizy-white, #FFFFFF);

}

.contact-home--two__form .getizy-btn:hover {
  background: var(--getizy-white, #FFFFFF);
  color: var(--getizy-secondary, #222230);
}

.contact-home--two__form .btn-hover-cropping::after {
  background-color: var(--getizy-white, #FFFFFF);

}



.contact-one {
  padding: 100px 0px;
}




.contact-one__inner {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

.contact-one__form {
  position: relative;
  margin-top: 30px;
}

.contact-one__form__control input[type=text],
.contact-one__form__control input[type=email],
.contact-one__form__control textarea {
  height: 58px;
  color: var(--getizy-secondary, #222230);
  background: #f5f5f5;
}

.contact-one__form__control textarea {
  height: 175px;
}

.contact-one__form__control button[type=submit] {
  padding: 17px 40px;
  line-height: normal;
}


.contact-location .container .row .col-lg-4 {
  padding-right: 0;
  padding-left: 0;
}

.contact-location .container .row .col-lg-8 {

  padding-left: 20px;
  padding-right: 0;
}

.contact-location__inner__item__content__info__btn {
  gap: 20px;
}

.contact-location__inner__item__content {
  display: grid;
  grid-template-columns: auto;
  gap: 20px;
}

.contact-location__inner__item__content__info {
  background-color: var(--getizy-secondary, #222230);
  padding: 27px 40px;
}

.contact-location__inner__item__content__info__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.contact-location__inner__item__content__info__icon:hover {
  background: var(--getizy-base);
}

.contact-location__inner__item__content__info__icon i {
  color: var(--getizy-white, #FFFFFF);
  font-size: 20px;
}


.contact-location__inner__item__content__info .content {
  display: inline-flex;
  flex-direction: column;

}

.contact-location__inner__item__content__info__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);
}

.contact-location__inner__item__content__info__call {
  color: var(--getizy-white, #FFFFFF);
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;

}

.contact-location__inner__item__content__info__call:hover {
  background-size: 100% 1px;
  color: #f5f5f5;
}

.contact-location__inner__item__content__info:hover .contact-location__inner__item__content__info__icon {
  background: var(--getizy-base);
}

@media (max-width:1199px) {
  .contact-location__inner__item__content__info {
    padding: 27px 10px;
  }
}

@media (max-width:991px) {
  .contact-location .container .row .col-lg-8 {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-location__inner__item__content__info {

    padding: 27px 40px;
  }
}


/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/

.process-one-h-four {
  position: relative;
}

.process-one-h-four__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: -1;
}


.process-one-h-four__wrapper {
  position: relative;
}


.process-one-h-four__line-shape {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.process-one-h-four__content {
  display: grid;
  grid-template-columns: auto;
  gap: 70px;
}

.process-one-h-four__item {
  position: relative;
  max-width: 670px;
  max-height: 146px;
  background-color: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 15%);
  display: flex;
  align-items: center;
  margin-left: auto;
  z-index: 11;
}

.process-one-h-four__item::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  bottom: 0;
  background: var(--getizy-secondary, #222230);
  z-index: -1;
  transition: all 0.4s ease-in-out;

}


.process-one-h-four__item:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}


.process-one-h-four__item:hover {
  left: 0;
  width: 100%;
}

.process-one-h-four__item-left {
  margin: 0;
  margin-right: auto;
  flex-direction: row-reverse;
}

.process-one-h-four__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);
  line-height: 30px;
  border-right: 2px solid var(--getizy-secondary);
  padding: 40px 30px 43px 60px;
  transition: 0.5s;
}

.process-one-h-four__item:hover .process-one-h-four__title {
  color: var(--getizy-white, #FFFFFF);
  border-color: var(--getizy-white);
}

.process-one-h-four__item-left .process-one-h-four__title {
  border-right: 0;
  border-left: 2px solid var(--getizy-secondary);
  text-align: right;
  padding: 40px 60px 43px 20px;
}

.process-one-h-four__num {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  background: var(--getizy-secondary, #222230);
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.process-one-h-four__item:hover .process-one-h-four__num {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.process-one-h-four__item-left .process-one-h-four__num {
  left: auto;
  right: -34px;

}

.process-one-h-four__desc {
  font-weight: 600;
  line-height: 30px;
  padding-left: 30px;
  padding-right: 35px;
}

.process-one-h-four__item-left .process-one-h-four__desc {
  text-align: right;
  padding-left: 20px;
}


@media (max-width: 1199px) {
  .process-one-h-four__item {
    max-height: 100%;
  }
}

@media (max-width: 575px) {
  .process-one-h-four__item {
    display: grid;
    padding: 20px 0;
  }

  .process-one-h-four__num {
    position: inherit;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
    transform: translateY();

  }

  .process-one-h-four__item-left .process-one-h-four__num {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  .process-one-h-four__item-left .process-one-h-four__title {
    border-left: 0;
    border-bottom: 2px solid var(--getizy-secondary);
    padding: 20px;
    text-align: center;
  }

  .process-one-h-four__title {
    border-right: 0;
    border-bottom: 2px solid var(--getizy-secondary);
    padding: 20px;
    text-align: center;
  }

  .process-one-h-four__desc {
    text-align: center;
  }

  .process-one-h-four__item-left .process-one-h-four__desc {
    text-align: center;
  }
}






/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/

.price-page {
  position: relative;
  padding-bottom: 140px;
}



.price-page__shapes .body-shape-one {
  position: absolute;
  left: -221px;
  top: -202px;
  z-index: -1;
}

.price-page__shapes .body-shape-two {
  position: absolute;
  right: -212px;
  bottom: -351px;
  z-index: -1;
}




.price-page__inner {
  margin-bottom: 60px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .price-page__inner {
    margin-bottom: 40px;
  }
}

.price-page__inner__filter .getizy-btn {
  margin: 0px 12px;
  padding: 20px 40px;
  background: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}


.price-page__inner__btn.active-btn {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.price-page__inner__filter .getizy-btn:hover,
.price-page__inner__filter .getizy-btn.active-btn {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
}

.price-page__inner__filter .btn-hover-cropping::after {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

@media (max-width: 575px) {
  .price-page__inner__btn {
    padding: 15px 30px;
    margin: 0px 5px;
  }
}















.package-card__wrapper {
  margin-top: 30px;
}


.package-card {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  z-index: 11;
}

.package-card__head {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--getizy-white-rgb, 255, 255, 255), 28%);
}

.package-card__head__btn {
  background-color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 44px 18px 44px;
  position: relative;
  margin-left: 62px;
}

.package-card__head__btn::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0px;
  width: calc(100% - 30px);
  height: calc(100% + 10px);
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  z-index: -1;
}

.package-card__head__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--getizy-secondary, #222230);


}

.package-card__head__price {
  font-size: 40px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-card__head__price sup {
  font-size: 20px;
}

.package-card__head__name {
  font-size: 20px;
  font-weight: 400;
  color: var(--getizy-text, #7F7D86);
  text-align: center;
  margin-top: -10px;
}

.package-card__body {
  padding-top: 40px;
}

.package-card__body__list {
  padding-bottom: 60px;
  padding-left: 70px;
}

.package-card__body__list__item {
  font-size: 16px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);
  padding-bottom: 12px;
}

.package-card__body__list__item i {
  color: var(--getizy-white, #FFFFFF);
  padding-right: 10px;
}

.package-card__body__btn {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.package-card__premium {
  max-width: 355px;
  margin-left: 15px;
  position: relative;
  margin-top: 37px;
}

.package-card__recomment {
  position: absolute;
  top: -37px;
  left: 48%;
  transform: translateX(-50%);
  background-color: var(--getizy-secondary, #222230);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 29px;
  z-index: 1;
}

.package-card__recomment a {
  font-size: 16px;
  font-weight: 600;
  color: transparent;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  background-clip: text;
}

.package-card__premium .package-card__head__title {
  position: relative;
  margin-left: -15px;
  width: 370px;
  font-size: 30px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  padding: 35px 0;
  text-align: center;
  color: var(--getizy-white, #FFFFFF);
}

.package-card__premium .package-card__body__list {
  padding-bottom: 90px;
}

.package-card__premium .package-card__head__price {
  margin-top: 25px;

}

.package-card__premium .package-card__head {
  padding-bottom: 25px;
}

.package-card__premium .package-card__head__title::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 0px;
  width: 16px;
  height: 28px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
}

@media (max-width: 1199px) {
  .package-card__premium {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .package-card__premium .package-card__head__title {
    width: calc(100% + 15px);

  }

  .package-card__premium .package-card__head__title::after {
    bottom: -27px;

  }
}

@media (max-width: 767px) {
  .package-card__premium {
    width: auto;
    margin-top: 30px;
  }

  .package-card {
    margin-bottom: 50px;
  }

  .package-card__head__btn {
    margin: 0 auto;
  }

  .package-card__head {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(var(--getizy-white-rgb, 255, 255, 255), 28%);
    display: flex;
    flex-direction: column;
  }
}

.price-page .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.price-page .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;
}

/*--------------------------------------------------------------
# Apps Ref
--------------------------------------------------------------*/

.apps-ref {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-top: 110px;
}


.apps-ref__shapes .body-shape-one {
  position: absolute;
  left: -339px;
  bottom: 143px;
  opacity: 30%;
  z-index: 1;
}


.apps-ref__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/cta-bg-1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 25%;
  mix-blend-mode: color-burn;
}

.apps-ref__wrapper {
  position: relative;
}

.apps-ref__title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
  border-bottom: 1px solid var(--getizy-text);
  padding-bottom: 30px;
  text-transform: capitalize;
}

.apps-ref__btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}

.apps-ref__btn__single {
  width: 270px;
  height: 83px;
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--getizy-white, #FFFFFF);
  padding: 0 30px;
}

.apps-ref__btn__icon i {
  font-size: 50px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
}

.apps-ref__btn__single:hover .apps-ref__btn__icon i {
  transform: rotateY(180deg);
}

.apps-ref__btn__text span {
  font-size: 14px;
  font-weight: 600;
  color: var(--getizy-secondary, #222230);

}

.apps-ref__btn__name {
  font-size: 24px;
  font-weight: 600;
  color: var(--getizy-secondary, #222230);
  margin-top: -10px;
}

.apps-ref__image {
  position: absolute;
  bottom: -120px;
  right: 0;
  animation: topToBottom 2s linear infinite;
}


@media (max-width: 991px) {
  .apps-ref__image {
    position: inherit;
    bottom: -120px;
    right: 0;
  }

  .apps-ref__btn {
    display: grid;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .apps-ref__image {
    width: 100%;
  }

  .apps-ref__image img {
    width: 100%;
  }
}






/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/

.blog-card-two {
  max-width: 100%;
  box-shadow: none;
}

.blog-card__image-item2 {
  overflow: hidden;
  height: 449px;
}

.blog-card__image-item2 img {
  object-fit: cover;
  transition: 0.5s;
  background-size: cover;
  height: 100%;
  width: 100%;
  transition: all 2s ease;
  overflow: hidden;
}

.blog-details .blog-card__image img {
  transform: scale(1);
  transform: translatex(0%) scalex(1);
  opacity: 1;
  filter: blur(0px);
}

.blog-details .blog-card:hover .blog-card__image img {
  transform: scale(1);
  transform: translatex(0%) scalex(1);
  opacity: 1;
  filter: blur(0px);
}

.blog-details .blog-card__date {
  top: 30px;
  right: 30px;
  background: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);

}

.blog-details .blog-card__date__month {
  color: var(--getizy-white, #FFFFFF);

}

.blog-details .blog-card__date__year {
  color: #D7D7D7;
}

.blog-details .blog-card__title {
  border-bottom: 0;
}

.blog-one__list .blog-card__title {
  border-bottom: 0;
}

.blog-details-card-content2 {
  padding-top: 25px;
  padding-bottom: 30px;
  background-color: var(--getizy-white, #FFFFFF);
}

.blog-details-card__meta2 {
  margin-top: -7px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0px;
  gap: 28px;
}

.blog-details-card__meta2 li a {
  color: var(--getizy-secondary, #222230);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 214.286%;
  letter-spacing: 0.196px;
  text-transform: capitalize;
  transition: all 500ms ease-in-out;
}

.blog-details-card__meta2 li i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  margin-right: 5px;
}

.blog-details .blog-card-two__text {
  margin: 0;
  letter-spacing: 0;
  width: 100%;
}

.blog-details .blog-card-two__text+.blog-card-two__text {
  margin-top: 21px;
  width: 100%;
}

.blog-details .blog-card__title {
  margin-bottom: 10px;
  text-transform: none;
}

.blog-details .blog-card-two__content {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--getizy-secondary);
}

.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--getizy-secondary);
  border-bottom: 1px solid var(--getizy-secondary);
}

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

@media (max-width: 575px) {
  .blog-details__tags {
    display: block;
  }

  .blog-details__tags__title {
    margin-bottom: 20px;
  }
}

.blog-details__tags__title {
  text-transform: capitalize;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .blog-details__tags__title {
    margin-bottom: 20px;
  }
}

.blog-details__tags .sidebar__tags a {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
  padding: 13px 15px;
}

.blog-details__tags .sidebar__tags a:hover {
  background-color: var(--getizy-secondary, #222230);
}

.blog-details__tags .sidebar__tags2 a {
  color: var(--getizy-text, #7F7D86);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 0px;
  background-color: transparent;
  color: var(--getizy-text, #7F7D86);
}

.blog-details__tags .sidebar__tags2 a:hover {
  color: var(--getizy-base);
}

.blog-one__list .blog-two__link {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  rotate: 0deg;
  border: 0;
  color: var(--getizy-white, #FFFFFF);
  margin-top: 20px;
}

.blog-one__list .blog-two__link span {
  font-size: 20px;
  color: var(--getizy-white, #FFFFFF);
  -webkit-text-fill-color: var(--getizy-white);
}

.blog-one__list .blog-card__date {
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 30px;
  right: 30px;
}

.blog-one__list .blog-card__date__month {

  color: var(--getizy-white, #FFFFFF);
}

.blog-one__list .blog-card__date__year {
  color: #D7D7D7;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 40px;
}

@media screen and (min-width: 1200px) {
  .comments-one {
    margin-top: 45px;
  }
}

.comments-one__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 25px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}

@media screen and (min-width: 992px) {
  .comments-one__title {
    font-size: 30px;
  }
}

.comments-one__list {
  margin: 0;
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .comments-one__card {
    display: flex;
    align-items: flex-start;
  }
}

.comments-one__card:not(:first-of-type) {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--getizy-secondary);
}

@media screen and (min-width: 1200px) {
  .comments-one__card:not(:first-of-type) {
    margin-top: 50px;
    padding-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .comments-one__card__image {
    margin-right: 30px;
  }
}

.comments-one__card__image img {
  max-width: 165px;
  max-height: 165px;
  border-radius: 50%;
}

.comments-one__card__title {
  line-height: 110.333%;
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media screen and (min-width: 1200px) {
  .comments-one__card__title {
    margin-bottom: 17px;
    margin-top: 0;
  }
}

.comments-one__card__text {
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 20px;
  max-width: 560px;
}

.comments-one__card__reply {
  padding: 10px 20px;
  color: var(--getizy-secondary, #222230);
  background: #f5f5f5;
  font-size: 16px;
  font-weight: 500;
}

.comments-one__card__reply:hover {
  background: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}


.comments-one__card__content {
  position: relative;
  margin-top: 13px;
}

.comments-form {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--getizy-secondary);
}

@media screen and (min-width: 1200px) {
  .comments-form {
    margin-top: 50px;
    padding-top: 50px;
  }
}

.comments-form__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 25px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}

@media screen and (min-width: 992px) {
  .comments-form__title {
    font-size: 30px;
  }
}

.comments-form__form {
  margin-top: 38px;
}

.comments-form__form .getizy-btn {
  padding: 17px 40px;
  line-height: normal !important;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
}

.product__sidebar {
  position: relative;
}

.product__sidebar--title {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: -5px;
}

.product__sidebar__search {
  position: relative;
  margin-bottom: 30px;
}

.product__sidebar__search input[type=search],
.product__sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  font-size: 14px;
  color: var(--getizy-white, #FFFFFF);
  padding-left: 60px;
  padding-right: 20px;
  transition: all 500ms ease;
  border: none;
}

.product__sidebar__search input[type=search]:focus,
.product__sidebar__search input[type=text]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}

.product__sidebar__search input[type=search]::placeholder,
.product__sidebar__search input[type=text]::placeholder {
  color: var(--getizy-white, #FFFFFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 162.5%;
}

.product__sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--getizy-white, #FFFFFF);
}

.product__price-ranger {
  background: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
  padding: 30px;
  margin-bottom: 30px;
}

.product__price-ranger #slider-range {
  margin: 22px 0 0 0px;
  background: var(--getizy-gray);
  border: none;
  height: 6.98px;
  border-radius: 0;
  position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: linear-gradient(-45deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--getizy-base);
  border: 0;
  height: 15.7px;
  width: 15.7px !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: 21.15px 0 0 0px;
}

.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--getizy-text, #7F7D86);
  width: 40px;
  border: none;
  outline: none;

  padding: 0;
  text-align: center;
  background-color: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--getizy-text, #7F7D86);
  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(--getizy-gray);
  float: right;
  text-align: center;
  border: none;
  color: var(--getizy-text, #7F7D86);
  margin: 0;
  cursor: pointer;
  padding: 0 20px;
  height: 38px;
  border-radius: 0;
  transition: all 500ms ease;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 185.714%;
}

.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.product__categories {
  background-color: var(--getizy-white, #FFFFFF);
  padding: 30px;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
}

.product__categories .product__sidebar--title {
  border-bottom: 1px dashed var(--getizy-base);
  padding-bottom: 15px;
  margin-bottom: 5px;
}

.product__categories ul li {
  position: relative;
  margin: 0 0 4px;
}

.product__categories ul li:not(:last-of-type) {
  border-bottom: 1px solid var(--getizy-border-color);
}

.product__categories ul li a {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--getizy-text, #7F7D86);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 9px 15px 11px 0px;
}

.product__categories ul li a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: var(--getizy-secondary, #222230);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.product__categories ul li a::before {
  margin-right: 8px;
  content: "\e91c";
  font-family: "icomoon" !important;
  font-weight: 500;
  transition: all 500ms ease;
  font-size: 12px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product__categories ul li:last-child {
  border-bottom: 0px;
}

.product__categories ul li:hover a,
.product__categories ul li.active a {
  color: var(--getizy-secondary, #222230);
  padding-left: 7px;
}

.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(--getizy-text, #7F7D86);
}

.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: 991px) {
  .product__info-top {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .product__info-top {
    display: block;
    margin-top: 40px;
  }
}

.product__showing-text {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--getizy-secondary, #222230);
}

@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 20px;
  }
}

.product__showing-sort {
  margin: 0;
}

.product__showing-sort .filter-option-inner-inner {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 340px !important;
}

@media (max-width: 360px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 300px !important;
  }
}

.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: 64px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--getizy-gray) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--getizy-text) !important;
  font-size: 14px;
  line-height: 64px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.product__showing-sort .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: 16px;
  color: var(--getizy-base);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--getizy-border-color);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--getizy-text, #7F7D86);
  background-color: var(--getizy-gray);
  -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(--getizy-text);
  color: var(--getizy-white, #FFFFFF);
  border-color: var(--getizy-text);
}

.product__item {
  position: relative;
  background-color: var(--getizy-white, #FFFFFF);
  border: 1px solid var(--getizy-secondary);
  transition: all 500ms ease;
}

.product__item__top__img {
  background-color: var(--getizy-white, #FFFFFF);
  position: relative;
  overflow: hidden;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.product__item__top__img img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
  transform: scale(1);
}

.product__item__top__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}

.product__item__top__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: var(--getizy-secondary, #222230);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}

.product__item__top__btn a:hover {
  background-color: var(--getizy-base);
  color: var(--getizy-white, #FFFFFF);
}

.product__item__top__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__top__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__top__btn a+a {
  margin-top: 10px;
}

.product__item:hover {
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
}

.product__item:hover .product__item__top__img img {
  transform: scale(1.05);
}

.product__item:hover .product__item__top__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.product__item__content {
  position: relative;
  text-align: center;
  padding: 27px 30px 40px 30px;
}

.product__item__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.product__item__title a {
  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(--getizy-base);
}

.product__item__price {
  display: flex;
  justify-content: center;
  color: var(--getizy-text, #7F7D86);
  margin-bottom: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product__item__price__del {
  margin-left: 5px;
}

.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--getizy-secondary, #222230);
  letter-spacing: 4.5px;
  margin-bottom: 26px;
}

.product__item__link {
  background: #F4F5F8;
  color: var(--getizy-secondary, #222230);
  padding: 7.5px 30px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 185.714%;
  transition: 0.5s;
}

.product__item__link:hover {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
}


.product__item .btn-hover-cropping::after {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
}


.product-one .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  background-color: transparent;

}

.product-one .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.product-one {
  padding: 120px 0;
}

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

.product-one--page {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .product-one--page {
    padding-top: 60px;
  }
}

.product-one__home {
  position: relative;
  padding: 0 0 90px;
}

@media (max-width: 767px) {
  .product-one__home {
    padding-bottom: 50px;
  }
}

.product-one__home .sec-title {
  text-align: center;
}

.product-one__home .product__item {
  margin-bottom: 30px;
}

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

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0;
  padding-top: 100px;
}

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

.product-details__img {
  background-color: var(--getizy-white, #FFFFFF);
  position: relative;
  border: 1px solid var(--getizy-secondary);
}

.product-details__img img {
  width: 100%;
  height: auto;
}

.product-details__img-search {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  line-height: 1;
}

.product-details__img-search a {
  display: inline-block;
  font-size: 21px;
  color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
}

.product-details__img-search a:hover {
  color: var(--getizy-text, #7F7D86);
}

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

.product-details__title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-details__title {
    font-size: 30px;
  }
}

.product-details__price {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 0 5px;
}

.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 19.89px;
  color: var(--getizy-secondary, #222230);
}

.product-details__review a {
  display: inline-block;
  color: var(--getizy-text, #7F7D86);
  letter-spacing: 0;
  margin-left: 16px;
  transition: all 500ms ease;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-details__review a:hover {
  color: var(--getizy-base);
}

.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--getizy-border-color);
  margin: 22px 0 21px 0;
}

.product-details__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}

.product-details__excerpt-text1 {
  margin: 0 0 21px;
  letter-spacing: 0;
}

.product-details__excerpt-text2 {
  margin-bottom: 27px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .product-details__excerpt-text2 br {
    display: block;
  }
}

.product-details__excerpt-text2 span {
  font-weight: 600;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  margin-right: 35px;
  font-weight: bold;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: auto;
  height: 50px;
  display: flex;
}

.product-details__quantity .quantity-box input {
  width: 70px;
  height: 50px;
  border: 1px solid var(--getizy-secondary);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  color: var(--getizy-secondary, #222230);
  padding-left: 26px;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  background-color: transparent;
}

.product-details__quantity .quantity-box button {
  width: 45px;
  height: auto;
  color: var(--getizy-secondary, #222230);
  font-size: 12px;
  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,
.product-details__quantity .quantity-box button:focus,
.product-details__quantity .quantity-box button:active {
  background: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--getizy-secondary);
  border-left: 1px solid var(--getizy-secondary);
  border-bottom: 1px solid var(--getizy-secondary);
}

.product-details__quantity .quantity-box button.add {
  border-top: 1px solid var(--getizy-secondary);
  border-right: 1px solid var(--getizy-secondary);
  border-bottom: 1px solid var(--getizy-secondary);
}

.product-details__quantity .quantity-box button:hover {
  color: var(--getizy-text, #7F7D86);
}

.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0px 0;
}

.product-details__buttons a {
  padding: 16.55px 50px;
  color: var(--getizy-white, #FFFFFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 768px) {
  .product-details__buttons a {
    padding: 16.55px 35px;
  }
}

.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 30px;
}

.product-details__socials__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}

.product-details__socials__item {
  display: flex;
  gap: 20px;
}

.product-details__socials__item a {
  display: inline;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  font-size: 16px;
  color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
  border-radius: 50%;
}

.product-details__socials__item a:hover {
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.product-details__description {
  position: relative;
  margin: 72px 0 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-details__description {
    margin: 50px 0 0;
  }
}

.product-details__description__title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 22px;
}

.product-details__description__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}

.product-details__description__lists {
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 0;
}

.product-details__description__lists li {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  color: var(--getizy-secondary, #222230);
}

.product-details__description__lists li::before {
  content: "\f058";
  clear: both;
  font-family: var(--fontawesome, "Font Awesome 5 free");
  font-size: 16px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}

.product-details__comment {
  border-top: 1px solid var(--getizy-secondary);
  margin: 40px 0 0;
  padding: 40px 0 0;
  position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-details__comment {
    margin: 30px 0 0;
    padding: 30px 0 0;
  }
}

.product-details__review-title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
  text-transform: capitalize;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product-details__review-title {
    margin-bottom: 22px;
  }
}

.product-details__comment-box {
  position: relative;
  padding: 11px 0 52px 200px;
  margin-bottom: 40px;
  min-height: 166px;
  border-bottom: 1px solid var(--getizy-secondary);
}

@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.product-details__comment-box__thumb {
  width: 166px;
  height: 166px;
  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: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 26px;
  margin: 0 0 20px;
  color: var(--getizy-secondary, #222230);
}

.product-details__comment-box__date {
  margin-left: 20px;
  font-size: 15px;
  line-height: 26px;
  display: inline-block;
  text-transform: inherit;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.8px;
}

.product-details__comment-box__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}

.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 13px;
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 19px;
  color: var(--getizy-secondary, #222230);
}

@media (max-width: 767px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 0 0 22px;
  }
}

.product-details__form {
  position: relative;
  margin: 0px 0 40px 0px;
}

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

.product-details__form-title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 18px;
  font-weight: bold;
}

.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 25px;
  color: var(--getizy-secondary, #222230);
  margin: 0 0 40px;
}

.product-details__form-ratings i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--getizy-secondary, #222230);
  margin: 0 17px 0 0;

  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  text-transform: capitalize;
}

.product-details__form__form {
  margin-top: 0;
}




/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
  padding-top: 100px;
}

@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}

.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 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 235%;
  color: var(--getizy-secondary, #222230);
  padding: 0 0 24px;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--getizy-secondary) !important;
  box-shadow: none;
}

.cart-page__table thead tr th:last-child {
  text-align: right;
}

.cart-page__table tbody tr td {
  font-size: 18px;
  font-weight: 500;
  color: var(--getizy-secondary, #222230);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--getizy-secondary);
  border-bottom: 1px solid var(--getizy-secondary);
  padding: 30px 0;
  letter-spacing: 0;
}

.cart-page__table tbody tr td:last-child {
  text-align: right;
}

.cart-page__table__meta {
  display: flex;
  align-items: center;
}

.cart-page__table__meta-img {
  width: 119px;
  height: 119px;
  background-color: var(--getizy-white, #FFFFFF);
  border: 1px solid var(--getizy-secondary);
  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: capitalize;
  margin: 0;
  font-weight: bold;
  color: var(--getizy-secondary, #222230);
}

.cart-page__table__meta-title a {
  color: inherit;
}

.cart-page__table__meta-title a:hover {
  color: var(--getizy-text, #7F7D86);
}

.cart-page__table__remove {
  display: block;
  color: var(--getizy-secondary, #222230);
  font-size: 16px;
}

.cart-page__table__remove:hover {
  color: var(--getizy-text, #7F7D86);
}

.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: 60px;
  width: 375px;
  border: none;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--getizy-secondary, #222230);
  display: block;
  font-weight: 600;
  margin-right: 0;
}

@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__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 {
  color: var(--getizy-secondary, #222230);
  display: block;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  margin: 0 0 0px;
}

@media (max-width: 991px) {
  .cart-page__cart-total li span {
    display: inline-block;
    min-width: 172px;
  }
}

.cart-page__cart-total li:last-child {
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
}

.cart-page__cart-total li:last-child::after {
  content: "";
  width: 70%;
  height: 1px;
  position: absolute;
  top: 0%;
  right: 0;
  background: var(--getizy-secondary, #222230);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-page__cart-total li:last-child::after {
    width: 50%;
    right: auto;
    left: 0%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .cart-page__cart-total li:last-child::after {
    width: 50%;
    right: auto;
    left: 0%;
  }
}

.cart-page__cart-total-amount {
  font-size: 18px;
  color: var(--getizy-text, #7F7D86);
  font-weight: 500;
  text-transform: inherit;
  display: inline-block;
  min-width: 172px;
}

.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 991px) {
  .cart-page__buttons {
    justify-content: flex-start;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
}

.ui-datepicker-calendar th span {}

.ui-datepicker-calendar td {
  background-color: var(--getizy-text);
  background-image: none;
  color: var(--getizy-text, #7F7D86);
}

.ui-datepicker-calendar td a {
  border-color: var(--getizy-secondary);
  background-color: var(--getizy-text);
  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(--getizy-secondary);
  background-color: var(--getizy-text);
  background-image: none;
  color: var(--getizy-text, #7F7D86);
  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(--getizy-white, #FFFFFF);
  background-color: var(--getizy-text);
}

.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(--getizy-white, #FFFFFF);
  background-color: var(--getizy-text);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--getizy-white, #FFFFFF);
  color: var(--getizy-secondary, #222230);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--getizy-text);
  color: var(--getizy-white, #FFFFFF);
  top: 2px;
}

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

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



/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
  padding-top: 100px;
}

@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}

.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.checkout-page__notice {
  display: inline-block;
  color: var(--getizy-secondary, #222230);
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  padding: 34px 133px 34px 50px;
  background: #f5f5f5;
  margin-bottom: 40px;
}

.checkout-page__notice span {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checkout-page__notice a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  font-weight: 600;

}

.checkout-page__notice a:hover {
  background-size: 100% 1px;
}

.checkout-page__notice a:hover {
  color: var(--getizy-base);

}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .checkout-page__notice {
    padding: 17px 20px 17px 20px;
  }
}

.checkout-page__billing-address {
  position: relative;
}

.checkout-page__billing-address__title {
  margin-top: -8px;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .checkout-page__billing-address__title {
    font-size: 28px;
  }
}

.checkout-page__shipping-address {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .checkout-page__shipping-address {
    margin-top: 30px;
  }
}

.checkout-page__shipping-address__title {
  margin-top: -8px;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .checkout-page__shipping-address__title {
    font-size: 27px;
  }
}

.checkout-page__check-box {
  margin-top: 30px;
}

.checkout-page__check-box input[type=checkbox] {
  display: none;
}

.checkout-page__check-box label {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.checkout-page__check-box label span {
  position: absolute;
  top: 10px;
  left: 0;
  width: 20px;
  height: 20px;

  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 300ms ease;
}

.checkout-page__check-box label span::before {
  position: absolute;
  top: 3px;
  left: 5px;
  line-height: 15px;
  display: inline-block;
  color: var(--getizy-white, #FFFFFF);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 10px;
  font-weight: 900;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.checkout-page__check-box input[type=checkbox]:checked+label span:before {
  opacity: 1;
}

.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}

.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
  height: 60px;
  width: 100%;
  border: none;
  background: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--getizy-secondary, #222230);
  display: block;
  font-weight: 600;
}

.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
}

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

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 58px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--getizy-secondary) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--getizy-text) !important;
  font-size: 14px;
  line-height: 58px;
  font-weight: 500;
  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(--getizy-text, #7F7D86);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--getizy-secondary);
}

.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(--getizy-text, #7F7D86);
  background-color: var(--getizy-text);
  -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(--getizy-text);
  color: var(--getizy-secondary, #222230);
  border-color: var(--getizy-secondary);
}

.checkout-page__input-box textarea {
  font-size: 14px;
  font-weight: 500;
  color: var(--getizy-secondary, #222230);
  height: 176px;
  width: 100%;
  background: #f5f5f5;
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}

.checkout-page__sopping__details {
  padding-top: 23px;
  margin-bottom: 100px;
}

.checkout-page__sopping__details__title {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-shadow: 0 0 0 1px currentColor;
}

.checkout-page__sopping__details p {
  display: block;
}

.checkout-page__sopping__details p i {
  color: transparent;
  background-clip: text;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page__sopping__details {
    margin-bottom: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .checkout-page__sopping__details {
    margin-bottom: 50px;
  }
}

.checkout-page__your-order {
  position: relative;
}

.checkout-page__your-order__title {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 32px;
}



.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}

.checkout-page__order-table thead tr th {
  color: var(--getizy-secondary, #222230);
  font-size: 20px;
  font-style: normal;
  line-height: 235%;
  border-top: 1px solid var(--getizy-secondary);
  border-bottom: 1px solid var(--getizy-secondary);
  font-weight: bold;
  padding: 10px 0px;
}

.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}

.checkout-page__order-table .order_table_head-two tr th {
  border-bottom: none !important;
}

.checkout-page__order-table tbody tr td {
  color: var(--getizy-secondary, #222230);
  margin: 0;
  border: none;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}

.checkout-page__order-table tbody tr td span {
  color: var(--getizy-text, #7F7D86);
}

.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}

.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}

.checkout-page__order-table tbody tr:nth-child(3) td {
  padding-bottom: 13px;
}

.checkout-page__order-table .order_table_head-two {
  color: var(--getizy-secondary, #222230);
  font-size: 20px;
  font-style: normal;
  line-height: 235%;
  border-top: 1px solid var(--getizy-secondary);
  font-weight: bold;
}

.checkout-page__order-table .order_table_head-two .pro__title,
.checkout-page__order-table .order_table_head-two .pro__price {
  padding: 25px 0px;
}

.checkout-page__payment {
  background-color: #f5f5f5;
  padding: 38px 50px 1px;
  min-height: 295px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.checkout-page__payment__item {
  position: relative;
}

.checkout-page__payment__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 135%;
  cursor: pointer;
  display: flex;
}

.checkout-page__payment__title::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--getizy-white, #FFFFFF);
  border: 2px solid var(--getizy-white);
  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;
  top: 1px;
  transition: all 500ms ease;
}

.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 30px;
  padding-top: 15px;
}



.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border: none;
  content: "\f00c";
  color: var(--getizy-white, #FFFFFF);
  font-size: 12px;
}



/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
  padding: 120px 0;
  padding-top: 100px;
}

@media (max-width: 767px) {
  .login-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}

.login-page__inner {
  border: 1px solid var(--getizy-secondary);
  background: #FFF;
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.06);
  padding: 57px 40px 57px 40px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .login-page__inner {
    padding: 40px 30px 40px 30px;
  }
}

.login-page__info {
  background-color: var(--getizy-secondary, #222230);
  padding: 35px 50px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .login-page__info {
    margin-bottom: 20px;
    padding: 15px 30px;
  }

  .login-page__info p {
    font-size: 16px;
  }
}

.login-page__info p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  line-height: normal;
  color: var(--getizy-white, #FFFFFF);
}

.login-page__info p a span {
  display: inline-block;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}

.login-page__info p a {
  display: inline-block;

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

.login-page__info p a:hover {
  background-size: 100% 1px;
}

.login-page__info p a:hover {
  color: var(--getizy-base);
}

.login-page__wrap {
  position: relative;
}

.login-page__wrap__title {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: -5px;
  margin-bottom: 30px;
}

.login-page__wrap .form__border {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .login-page__wrap .form__border {
    display: none;
  }
}

.login-page__wrap .form__border::after {
  position: absolute;
  top: 0;
  right: -47px;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--getizy-secondary, #222230);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .login-page__wrap .form__border::after {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .login-page .register-page__wrap {
    margin-top: 50px;
  }
}

.login-page__form {
  position: relative;
  display: block;
}

.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--getizy-secondary, #222230);
  display: block;
  font-weight: 600;
}

.login-page__checked-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 38px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .login-page__checked-box {
    display: block;
  }
}

.login-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--getizy-text, #7F7D86);
  text-transform: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.login-page__checked-box label span:before {
  position: absolute;
  top: 2px;
  left: 3px;
  display: block;
  border-bottom: 2px solid var(--getizy-text);
  border-right: 2px solid var(--getizy-text);
  content: "";
  width: 7px;
  height: 10px;
  pointer-events: none;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  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: 4px;
  left: 0;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
  border: 1px solid var(--getizy-text);
}

.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 screen and (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: 14px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);
  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(--getizy-text, #7F7D86);
}

.gutter-x-94 {
  --bs-gutter-x: 94px;
}




/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  padding-bottom: 120px;
  text-align: center;
  padding-top: 70px;
}

.error-404__img {
  max-width: 675px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.error-404__img .error-404__img__svg-one {
  position: absolute;
  top: 23px;
  right: 140px;
  -webkit-animation: rotated 2s infinite linear;
  animation: rotated 2s infinite linear;
}

.error-404__img__svg-one__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-404__img .error-404__img__svg-two {
  position: relative;
  position: absolute;
  top: 98px;
  right: 188px;
  -webkit-animation: rotated 2s infinite linear;
  animation: rotatedTwo 2s infinite linear;

}

.error-404__img__svg-two__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotated {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotatedTwo {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}


@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .error-404__img {
    max-width: 100%;
  }

  .error-404__img img {
    max-width: 100%;
  }
}

.error-404__title {
  margin-top: 60px;
  position: relative;
  margin-bottom: 12px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 65%;
}

.error-404__text {
  color: var(--getizy-text, #7F7D86);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.16px;
  margin-bottom: 20px;
}

.error-404__search {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  max-width: 550px;
}

.error-404__search input[type=text] {
  position: relative;
  border: none;
  outline: none;
  display: block;
  background-color: #f5f5f5;
  color: var(--getizy-secondary, #222230);
  font-size: 16px;
  width: 100%;
  max-width: 550px;
  padding-left: 70px;
  padding-right: 20px;
  height: 60px;
}

.error-404__search input[type=text]::placeholder {
  color: var(--getizy-secondary, #222230);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%;
}

.error-404__search__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  margin-right: 8px;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--getizy-secondary, #222230);
  font-weight: 700;
}

.error-404__search__btn a {
  text-transform: none;
}

.error-404__btns a {
  padding: 14px 39.44px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}




















/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar__single {
  background-color: var(--getizy-white, #FFFFFF);
  padding: 40px;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
}

.sidebar__single--search {
  padding: 20px;
  margin-bottom: 30px;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  text-transform: capitalize;
  margin: 0;
  font-weight: bold;
  margin-top: -5px;
  margin-bottom: 29px;
  padding-bottom: 24px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 108.333%;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  border-image-slice: 1;
}

.sidebar__search {
  position: relative;
  margin: -20px;
}

@media screen and (min-width: 1200px) {
  .sidebar__search {
    margin: -20px;
  }
}

.sidebar__single--search {
  background-color: #f5f5f5;
  padding: 50px;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 64px;
  background-color: var(--getizy-white, #FFFFFF);
  font-size: 14px;
  color: var(--getizy-secondary, #222230);
  padding-left: 60px;
  padding-right: 20px;

  transition: all 500ms ease;
  border: none;
}

.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}

.sidebar__search input[type=search]::placeholder,
.sidebar__search input[type=text]::placeholder {
  color: var(--getizy-text, #7F7D86);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 162.5%;
}

.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--getizy-text, #7F7D86);
}

.sidebar__posts {
  margin-bottom: 0;
}

.sidebar__posts__item {
  display: flex;
  align-items: center;
}

.sidebar__posts__item:not(:last-of-type) {
  border-bottom: 1px solid var(--getizy-secondary);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.sidebar__posts__item:hover .sidebar__posts__image::after {
  width: 100%;
  right: auto;
  left: 0;
}

.sidebar__posts__item:hover .sidebar__posts__image img {
  transform: scale(1.3) rotate(-15deg);
}

.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 20px;
  overflow: hidden;
  width: 70px;
  height: 70px;
  position: relative;
}

.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.sidebar__posts__image::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0%;
  left: auto;
  right: 0;
  background-color: rgba(var(--getizy-black2-rgb, 0, 0, 0), 0.5);
  position: absolute;
  transition: all 0.4s ease-in-out;
}

.sidebar__posts__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--getizy-secondary, #222230);
  font-weight: bold;
  font-size: 16px;
  line-height: normal;
}

.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__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.sidebar__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: var(--getizy-text, #7F7D86);
  transition: all 500ms ease;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.sidebar__posts__meta a:hover {
  color: var(--getizy-base);
}

.sidebar__posts__meta a i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 13px;
}

.sidebar__categories {
  margin-bottom: -4px;
}

.sidebar__categories li:not(:last-of-type) {
  border-bottom: 1px solid var(--getizy-secondary);
}

.sidebar__categories li:first-child a {
  padding-top: 0;
}

.sidebar__categories li:last-child a {
  padding-bottom: 0 !important;
}

.sidebar__categories li a {
  font-size: 16px;
  color: var(--getizy-text, #7F7D86);
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  padding: 11px 0;
  font-style: normal;
  font-weight: 500;
}

.sidebar__categories li a::before {
  margin-right: 10px;
  content: "\e91c";
  font-family: "icomoon" !important;
  font-weight: 700;
  transition: all 500ms ease;
  font-size: 12px;
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar__categories li a:hover {
  padding-left: 20px;
  background-color: var(--getizy-white, #FFFFFF);
  color: var(--getizy-base);
}

.sidebar__categories li a:hover::after {
  color: var(--getizy-base);
}

.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar__tags a {
  background: #f5f5f5;
  text-transform: capitalize;
  font-size: 14px;
  color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 10px 16px;
  font-weight: 600;
}

.sidebar__tags a:hover {
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.sidebar__comments {
  margin-bottom: -4px;
}

.sidebar__comments__item {
  display: flex;
  align-items: center;
}

.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 16px;
}

.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  font-size: 21px;
  color: var(--getizy-secondary, #222230);
  margin-right: 14px;
  border-radius: 50%;
  transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
}

.sidebar__comments__title {
  margin: 0;
  color: var(--getizy-text, #7F7D86);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 185.714%;
}

.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}

.sidebar__comments__title a:hover {
  color: var(--getizy-secondary, #222230);
}

.service-sidebar__single:nth-child(1) {
  transition: all 0.4s ease-in-out;
}

.service-sidebar__single:nth-child(1):hover {
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}

.service-sidebar__single+.service-sidebar__single {
  margin-top: 30px;
}

.service-sidebar__title {
  position: relative;
  color: var(--getizy-white, #FFFFFF);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
  font-weight: bold;
  padding: 23px 30px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

}



@media screen and (min-width: 768px) {
  .service-sidebar__title {
    font-size: 24px;
  }
}

.service-sidebar__nav {
  border-top: 0;
  margin-bottom: 0;
  padding: 40px 30px;
  background: #f5f5f5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .service-sidebar__nav {
    padding: 30px 20px;
  }
}

.service-sidebar__nav li a {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: var(--getizy-secondary, #222230);
  background: var(--getizy-white, #FFFFFF);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 15px 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .service-sidebar__nav li a {
    font-size: 14px;
  }
}

.service-sidebar__nav li a::after {
  content: "\e91c";
  font-family: "icomoon" !important;
  font-weight: 900;
  transition: all 500ms ease;
  font-size: 14px;
  color: var(--getizy-secondary, #222230);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-sidebar__nav li a::after {
    font-size: 12px;
  }
}

.service-sidebar__nav li a::before {
  content: "";
  width: 0%;
  height: 100%;
  background-color: var(--getizy-secondary, #222230);
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  z-index: -1;
  transition: all 500ms ease-in-out;
}

.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
  color: var(--getizy-white, #FFFFFF);
}

.service-sidebar__nav li.current a::after,
.service-sidebar__nav li:hover a::after {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}

.service-sidebar__nav li.current a::before,
.service-sidebar__nav li:hover a::before {
  width: 100%;
  left: 0;
  right: auto;
}

.service-sidebar__nav li:last-child a {
  margin-bottom: 0;
}

.service-sidebar__discount {
  padding: 50px;
  padding-bottom: 30px;
  text-align: center;
  background-size: cover;
}

.service-sidebar__discount__image {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 15px;
  background-color: var(--getizy-secondary, #222230);
  transition: all 500ms ease;
}

.service-sidebar__discount__image img {
  width: 100%;
  border-radius: 50%;
}

.service-sidebar__discount__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(var(--getizy-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-sidebar__discount__content__shape {
  display: block;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}

.service-sidebar__discount__tagline {
  margin: 0;
  font-size: 30px;
  color: var(--getizy-text, #7F7D86);
  margin-bottom: 4px;
}

@media screen and (min-width: 992px) {
  .service-sidebar__discount__tagline {
    font-size: 36px;
  }
}

.service-sidebar__discount__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--getizy-secondary, #222230);
  font-size: 22px;
  line-height: 1.2em;
  margin-top: -5px;
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .service-sidebar__discount__title {
    font-size: 24px;
  }
}

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

.service-sidebar__discount__title a:hover {
  background-size: 100% 1px;
}

.service-sidebar__discount__title a:hover {
  color: var(--getizy-text, #7F7D86);
}

.service-sidebar__discount__text {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
  margin-top: 10px;
  padding-bottom: 21px;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

.service-sidebar__discount__link {
  font-size: 10px;
  padding: 10.75px 29.25px;
}

.service-sidebar__contact {
  position: relative;
  z-index: 1;
  padding: 33px 30px 180px 30px;
  background-color: var(--getizy-secondary, #222230);
}

.service-sidebar__contact-title {
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  margin: 0;
  color: var(--getizy-white, #FFFFFF);
  max-width: 220px;
  font-size: 25px;
  margin-bottom: 52px;
}

@media screen and (min-width: 992px) {
  .service-sidebar__contact-title {
    font-size: 30px;
  }
}

.service-sidebar__contact-btn .getizy-btn {
  padding: 10px 28px;

}

.service-sidebar__contact-btn .getizy-btn:hover {
  background-color: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}

.service-sidebar__contact-btn .btn-hover-cropping::after {

  background-color: #f5f5f5;


}

.service-sidebar__contact-image,
.service-sidebar__contact-angle {
  bottom: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
  z-index: -2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .service-sidebar__contact-image,
  .service-sidebar__contact-angle {
    right: 0;
    left: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .service-sidebar__contact-image svg,
  .service-sidebar__contact-angle svg {
    max-width: 250px;
    height: 130px;
  }
}

.service-sidebar__contact-image {
  right: 0;
  left: auto;
  z-index: -1;
}

.service-sidebar__contact-image img {
  max-height: 320px;
  width: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-sidebar__contact-image img {
    max-height: 250px;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page__card {
  position: relative;
  overflow: hidden;
  background-color: var(--getizy-secondary, #222230);
}

.gallery-page__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.gallery-page__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--getizy-secondary-rgb, 34, 34, 48), 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.gallery-page__card__hover .img-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);

  border-radius: 50%;
  transition: all 400ms ease;
}

@media (max-width: 991px) {
  .gallery-page__card__hover .img-popup {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .gallery-page__card__hover .img-popup {
    width: 45px;
    height: 45px;
  }
}

.gallery-page__card__hover .img-popup:hover {
  background: var(--getizy-white, #FFFFFF);
}

.gallery-page__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.gallery-page__card:hover .gallery-page__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.gallery-page__card__icon {
  width: 21.56px;
  height: 21.56px;
  display: block;
  position: relative;
}

@media (max-width: 991px) {
  .gallery-page__card__icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 575px) {
  .gallery-page__card__icon {
    width: 18px;
    height: 18px;
  }
}

.gallery-page__card__icon::after,
.gallery-page__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--getizy-white, #FFFFFF);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}

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

.gallery-page__card__icon:hover::before,
.gallery-page__card__icon:hover::after {
  background-color: var(--getizy-secondary, #222230);
}

.img-popup:hover .gallery-page__card__icon::before,
.img-popup:hover .gallery-page__card__icon::after {
  background-color: var(--getizy-secondary, #222230);
}

.gallery-page__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-page__filter__list li {
  cursor: pointer;
  display: block;
  font-size: 14px;
  color: var(--getizy-white, #FFFFFF);
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13.5px 20px 12.5px;
  line-height: 1.142;
}


.gallery-page__filter__list li:hover {
  color: var(--getizy-white, #FFFFFF);
}

.gallery-page__filter__list li.active {
  color: var(--getizy-white, #FFFFFF);
  background: var(--getizy-secondary, #222230);
}

.gallery-instagram {
  background-color: var(--getizy-white, #FFFFFF);
}

.gallery-instagram .container-fluid {
  max-width: 1710px;
  position: relative;
  margin-bottom: -83px;
  z-index: 2;
}

.gallery-instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}

@media (max-width: 1199px) {
  .gallery-instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .gallery-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-instagram__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery-instagram__image {
  position: relative;
  overflow: hidden;
}

.gallery-instagram__image img {
  width: 100%;
  display: block;
}

.gallery-instagram__image__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(16, 15, 15, 0.7);
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  transition: all 500ms ease;
}

.gallery-instagram__image__link span {
  font-size: 40px;
  color: var(--getizy-white, #FFFFFF);
  transition: all 500ms ease;
}

@media (max-width: 1399px) {
  .gallery-instagram__image__link span {
    font-size: 30px;
  }
}



.gallery-instagram__image:hover .gallery-instagram__image__link {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}


.gallery-page .getizy-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.gallery-page .getizy-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {

  background-color: transparent;

}




/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}

.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 370px;
  width: 100%;
  mix-blend-mode: luminosity;

}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .google-map iframe {
    height: 440px;
  }
}

.google-map__contact {
  overflow: hidden;
  background-color: var(--getizy-text);
}

.contact-map {
  position: relative;
}

/*--------------------------------------------------------------
# Footer 
--------------------------------------------------------------*/

.main-footer {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  width: 100%;
  height: 100%;
  z-index: 1;
}


.main-footer__bg__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.main-footer__wrapper {
  position: relative;

}

.main-footer__wrapper .row .col-xl-4:nth-child(1) {
  padding-right: 0;
}

.footer-widget {
  padding-top: 100px;
  padding-bottom: 80px;
  border-right: 1px solid var(--getizy-black);
  position: relative;
  height: 86%;
  z-index: 2;
}

.footer-widget::after {
  content: "";
  position: absolute;
  top: 98px;
  right: -2px;
  width: 3px;
  height: 167px;
  background-color: var(--getizy-white, #FFFFFF);
  animation: topToBottomTwo 4s linear infinite;
}


.main-footer .col-xl-3:nth-child(2) .footer-widget::after {
  animation: topToBottomTwo 5s linear infinite;
}

.main-footer .col-xl-3:nth-child(4) .footer-widget::after {
  animation: topToBottomTwo 6s linear infinite;
}


.main-footer .col-xl-3:nth-child(2) {
  padding-right: 35px;
}

.main-footer .col-xl-3:nth-child(4) {
  padding-left: 0;
}

.main-footer .col-xl-2:nth-child(3) .footer-widget {
  border-right: none;
  padding-left: 25px;

}

.main-footer .col-xl-2:nth-child(3) .footer-widget::after {
  content: none;
}


.main-footer .col-xl-3:nth-child(4) .footer-widget {
  border-right: none;
  border-left: 1px solid var(--getizy-black);
}

.main-footer .col-xl-3:nth-child(4) .footer-widget::after {
  content: "";
  position: absolute;
  top: 98px;
  left: -2px;
  width: 3px;
  height: 167px;
  background-color: var(--getizy-white, #FFFFFF);
}

.main-footer__wrapper .main-footer__left {
  padding-right: 67px;
  position: relative;
}

.main-footer__desc {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  padding-top: 15px;
}

.footer-widget--input {
  padding-top: 28px;
}

.footer-widget__newsletter {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-bottom: 18px;
}

.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: var(--getizy-white, #FFFFFF);
  color: var(--getizy-text, #7F7D86);
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 100px;
  transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit] {
  width: 100%;
  border: none;
  outline: none;

}

.footer-widget__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  transition: all 0.5s;
  font-weight: 600;
  color: var(--getizy-white, #FFFFFF);
  padding: 20px 40px;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  cursor: pointer;
  margin-top: 10px;
}

.footer-widget__btn:hover {
  color: var(--getizy-secondary, #222230);
}

.footer-widget--input .btn-hover-cropping::after {
  background-color: var(--getizy-white, #FFFFFF);

}

.footer-widget--input .btn-hover-cropping:hover::after {
  height: 450%;
  opacity: 1;
}

.main-footer__navmenu {
  padding-left: 60px;
}

.main-footer__navmenu__title h5 {
  color: transparent;
  margin-bottom: 19px;
  font-size: 20px;
  font-weight: 700;
  background-clip: text;
  background-image: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.main-footer__navmenu__list {
  list-style: none;
  margin: 0;
  padding: 0;

}

.main-footer__navmenu__list li {
  font-size: 16px;
  font-weight: 600;
  color: var(--getizy-text, #7F7D86);
  line-height: 30px;
  padding-bottom: 5px;

}

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

.main-footer__navmenu__list li a:hover {
  color: var(--getizy-white, #FFFFFF);
  background-size: 100% 1px;
}

.main-footer__gallery {
  position: relative;
  padding-left: 32px;
  padding-right: 15px;
  margin-right: 0px;
  max-width: 250px;
  margin-left: auto;
}

@media screen and (max-width: 1199px) {
  .main-footer__gallery {
    margin-right: auto;
    margin-left: 0;
  }
}

.footer-widget__grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
}

.footer-widget__grid-item {
  position: relative;
  float: left;
  background-size: cover;
  height: 90.35px;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}

.footer-widget__grid-item::after {
  content: "";
  width: 0%;
  height: 100%;
  background-color: rgba(var(--getizy-white-rgb, 255, 255, 255), 0.5);
  top: 0%;
  left: auto;
  right: 0;
  position: absolute;
  transition: all 500ms ease-in-out;
}

.footer-widget__grid-item:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.main-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.main-footer__socials .social-icon {
  width: 35.71px;
  height: 35.71px;
  border-radius: 50%;
  color: var(--getizy-white, #FFFFFF);
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: center;

}

.main-footer__infu__card {
  width: 532px;
  background-color: var(--getizy-white, #FFFFFF);
  padding: 20px 55px 16px 77px;
  position: absolute;
  bottom: 0;
  left: 385px;
  z-index: 3;
}

.main-footer__infu__card__line {
  position: relative;
  z-index: 11;
  padding-bottom: 15px;
}

.main-footer__infu__card__line::after {
  content: "";
  position: absolute;
  width: calc(100% + 132px);
  left: -77px;
  height: 1px;
  background-color: black;
}

.main-footer__infu {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.main-footer__infu:nth-child(1) {
  padding-bottom: 20px;
}

.main-footer__infu .infu {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 25px;
}

.main-footer__infu .infu:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 57%;
  background-color: var(--getizy-black2);
  left: 50%;
  transform: translateX(-50%);
}

.main-footer__infu .infu__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--getizy-secondary, #222230);
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;
}



.main-footer__infu .infu:hover .infu__icon {
  background-color: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}





.main-footer__infu .infu__icon span {
  font-size: 18px;
}

.main-footer__infu .infu__link {
  display: flex;
  flex-direction: column;

}



.main-footer__infu .infu__link a {
  font-size: 14px;
  font-weight: 600;
  color: var(--getizy-secondary, #222230);

}


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

.main-footer__infu .infu__link a:hover {
  color: var(--getizy-secondary, #222230);
  background-size: 100% 1px;
}



.main-footer__infu .infu__location {
  display: flex;
  align-items: center;
  gap: 10px;

}

.main-footer__bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  background: #2F2F40;
}

.main-footer__bottom__inner {
  padding: 29px 0;
}


@media (max-width: 1199px) {
  .main-footer__navmenu {
    padding-left: 0;
  }

  .main-footer .col-xl-3:nth-child(2) {
    padding-right: 0;
  }

  .main-footer__wrapper .main-footer__left {
    padding-right: 30px;
  }

  .main-footer__gallery {
    padding-left: 20px;
    padding-right: 0;
  }

  .main-footer__infu__card {
    position: inherit;
    left: 0;
  }

  .main-footer .col-xl-2:nth-child(3) .footer-widget {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .main-footer__wrapper {
    padding-top: 100px;
  }

  .main-footer__wrapper .row .col-xl-4:nth-child(1) {
    padding-right: 15px;
  }

  .footer-widget {
    padding-top: 0;
    padding-bottom: 40px;

  }

  .main-footer .col-xl-3:nth-child(2) .footer-widget {
    border: 0;
    padding-left: 25px;
  }

  .main-footer .col-xl-3:nth-child(4) .footer-widget {
    border: 0;
  }

  .main-footer .col-xl-2:nth-child(3) .footer-widget {
    border-right: 1px solid var(--getizy-black2);
    position: relative;
  }

  .main-footer .col-xl-2:nth-child(3) .footer-widget::after {
    content: "";
    position: absolute;
    top: 98px;
    right: -2px;
    width: 3px;
    height: 167px;
    background-color: var(--getizy-white, #FFFFFF);
  }

  .main-footer .col-xl-3:nth-child(2) .footer-widget::after {
    content: none;
  }

  .main-footer .col-xl-3:nth-child(4) .footer-widget::after {
    content: none;
  }

  .main-footer .col-xl-3:nth-child(4) {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .footer-widget {
    padding-bottom: 20px;
    border: 0;

  }

  .footer-widget::after {
    content: none;
  }

  .main-footer__wrapper .main-footer__left {
    padding-right: 0;
  }

  .main-footer .col-xl-3:nth-child(2) .footer-widget {
    padding-left: 0;
  }

  .main-footer .col-xl-2:nth-child(3) .footer-widget {
    border-right: 0;

  }

  .main-footer .col-xl-2:nth-child(3) .footer-widget::after {
    content: none;

  }

  .main-footer__gallery {
    padding-left: 0;
    padding-right: 0;
  }

  .main-footer .col-xl-3:nth-child(4) {
    padding-left: 15px;
  }
}

@media (max-width: 575px) {

  .main-footer__infu__card {
    width: 100%;
    padding: 20px 10px 16px 25px;
  }

  .main-footer__infu {
    display: grid;
    gap: 20px;
  }

  .main-footer__infu .infu:nth-child(2)::after {

    width: 57%;
    height: 1px;
    top: 80px;
    background-color: var(--getizy-black2);
    left: auto;
    transform: translateX(0);
  }

  .main-footer__infu__card__line::after {
    width: calc(100%);
    left: -0;
  }
}

@media (max-width: 420px) {
  .main-footer__infu:nth-child(3) .infu {
    display: grid;
    align-items: center;
    gap: 10px;

  }
}



.main-footer__copyright {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--getizy-text, #7F7D86);
  line-height: normal;
}




.footer-two {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  width: 100%;
  height: 100%;
  z-index: 1;
}



.footer-two__bg__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/footer-2-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 40%;
  mix-blend-mode: color-burn;
}


.footer-two__subscribe {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  margin-bottom: 80px;
}

.footer-two__subscribe h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--getizy-white, #FFFFFF);
}

.footer-two__input {
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-two__input input {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  outline: none;
  border: none;
  color: var(--getizy-text, #7F7D86);

}

.footer-two__input__btn {

  color: var(--getizy-white, #FFFFFF);
  position: absolute;
  right: 0;
}

.footer-two__subscribe .getizy-btn {
  padding: 22px 40px;
}

.footer-two__wrapper {
  border-bottom: 1px solid rgba(var(--getizy-white-rgb, 255, 255, 255), 24%);
  padding-bottom: 30px;
}

.footer-two__title {
  font-size: 60px;
  font-weight: 700;
  color: var(--getizy-white, #FFFFFF);
}

.footer-two__desc {
  font-weight: 600;
  color: var(--getizy-text, #7F7D86);
  padding-top: 10px;
  padding-right: 70px;
}

.footer-two .main-footer__navmenu {
  padding: 0;
}

.footer-two .footer-widget {
  border-right: 0;

}

.footer-two .footer-widget::after {
  content: none;
}

.footer-two .main-footer__gallery {
  padding: 0;
  margin: 0;
  max-width: 100%;

}



.footer-two .footer-widget__grid {
  gap: 20px;
}

.footer-two .footer-widget__grid-item {
  height: 164px;

}

.footer-two__infu {
  padding-top: 40px;
  padding-bottom: 120px;
}

.footer-two .main-footer__infu .infu__icon {
  background: linear-gradient(145deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
}

.footer-two__infu .main-footer__infu:nth-child(1) {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-two__infu .main-footer__infu .infu__link a {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--getizy-tex);
}

.footer-two__infu .main-footer__infu .infu__link a {
  background: none;
}

.footer-two__infu .main-footer__infu .infu__location {
  gap: 20px;
  padding-top: 0;
}

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

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

.footer-two__contact li {
  font-size: 16px;
  font-weight: 500;
  color: var(--getizy-text, #7F7D86);
}

.footer-two__contact li i {
  color: transparent;
  background: radial-gradient(circle at -40% 100%, #1A237E 4%, #787ebd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 15px;
}

.footer-two__infu .main-footer__socials {
  margin-top: 0;
}

.footer-two .main-footer__socials .social-icon {
  width: 35.71px;
  height: 35.71px;
  border-radius: 50%;
  color: var(--getizy-white, #FFFFFF);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--getizy-base-two);
  transition: 0.5s;
}

.main-footer__socials .social-icon:hover {
  background: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-two__contact li {
    font-size: 13px;
  }

  .footer-two__contact li i {
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .footer-two__subscribe {
    display: grid;
    justify-content: center;
    gap: 20px;

  }

  .footer-two__infu .main-footer__infu:nth-child(1) {
    justify-content: start;
  }
}

@media (max-width: 767px) {
  .footer-two .main-footer__gallery {
    padding: 0;
    margin: 0;
    max-width: 300px;
  }


}

@media (max-width: 767px) {
  .footer-two__input {
    width: 100%;
  }

  .footer-two__subscribe {
    padding: 50px 20px;
  }

}

.footer-three {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-three__bg__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/footer-bg-3-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
  opacity: 100%;
  mix-blend-mode: multiply;
}

.footer-three__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--getizy-white);
  padding-bottom: 50px;
}

.footer-three__content {
  padding-top: 60px;
  padding-bottom: 110px;
}

.footer-three .main-footer__navmenu {
  padding-left: 0;
}

.footer-three .getizy-btn:hover {
  background: #f5f5f5;
  color: var(--getizy-secondary, #222230);
}

.footer-three .btn-hover-cropping::after {
  background: #f5f5f5;
}


.footer-three .main-footer__gallery {
  padding: 0;
  margin: 0;
  max-width: 100%;

}

.footer-three .footer-widget__grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 10px;
}

.footer-three__input {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
}

.footer-three__input input {
  width: 100%;
  height: 56px;
  padding: 0 30px;
  outline: none;
  border: none;
  color: var(--getizy-text, #7F7D86);
}

.footer-three__btn {
  min-width: 58px;
  height: 56px;
  background: linear-gradient(-120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-three__btn.getizy-btn {
  padding: 0;
}

.footer-three__btn span {
  font-size: 26px;
  rotate: -30deg;

}

.footer-four {
  position: relative;
  background-color: var(--getizy-secondary, #222230);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-four__bg__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/footer-bg-4-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
  opacity: 3%;
  mix-blend-mode: lighten;
}

.footer-four__left {
  position: relative;
  margin-top: -120px;
}

.footer-four__left__img {
  width: 100%;
  height: 539px;

}

.footer-four__left__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-four__left__ovarlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #EA674A;
  opacity: 92%;
}

.footer-four__left__content {
  position: absolute;
  top: 120px;
  left: 40px;
  right: 50px;
}

.footer-four__left__logo {
  padding-bottom: 20px;
}

.footer-four__left__desc {
  color: var(--getizy-white, #FFFFFF);
  font-weight: 600;
  padding-bottom: 45px;
}


.footer-four__left__contact {
  position: relative;

}

.footer-four__left__contact::after {
  content: "";
  position: absolute;
  top: -23px;
  left: -40px;
  width: calc(100% + 90px);
  height: 2px;
  background-color: var(--getizy-white, #FFFFFF);
}



.footer-four__left__contact li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--getizy-white, #FFFFFF);
}

.footer-four__left__contact li i {
  color: var(--getizy-white, #FFFFFF);

  padding-right: 15px;
}

.footer-four .main-footer__navmenu {
  padding: 0;
}

.footer-four__wrap {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: flex-start;
  gap: 88px;
  border-bottom: 1px solid rgba(var(--getizy-white-rgb), 24%);
  padding-bottom: 15px;
}

.footer-four__navmenu__post li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}

.footer-four__navmenu__post__img {
  width: 86px;
  height: 78px;

}

.footer-four__navmenu__post__img img {
  width: 86px;
  height: 78px;
  object-fit: cover;
}

.footer-four__navmenu__post__title {
  color: var(--getizy-white, #FFFFFF);
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.footer-four__wrap__bottom {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 65px;
  padding-top: 30px;
}

.footer-four .main-footer__infu {
  padding: 0;
}

.footer-four .main-footer__infu .infu__link a {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--getizy-tex);
}

.footer-four .main-footer__infu .infu__location {
  gap: 20px;
  padding-top: 0;
}

.footer-four .main-footer__infu .infu__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  color: var(--getizy-white, #FFFFFF);
}

.footer-four__input {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-four__input input {
  width: 100%;
  height: 56px;
  padding: 0 30px;
  outline: none;
  border: none;
  color: var(--getizy-text, #7F7D86);
}

.footer-four__btn {
  min-width: 58px;
  height: 56px;
  background: linear-gradient(-120deg, var(--getizy-base, #1A237E) 0%, var(--getizy-base-two, #787ebd) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-four__btn span {
  font-size: 26px;
  rotate: -30deg;
  color: var(--getizy-white, #FFFFFF);
  transition: 0.5s;
}

.footer-four__btn.getizy-btn {
  padding: 0;
}

.footer-four__btn:hover span {
  color: var(--getizy-secondary, #222230);
}

.footer-four__btn.getizy-btn:hover {
  background: #f5f5f5;

}

.footer-four__btn.btn-hover-cropping::after {
  background: #f5f5f5;
}

@media (max-width: 1199px) {
  .footer-four__wrap {
    gap: 20px;

  }

  .footer-four__wrap__bottom {
    grid-template-columns: auto;
    gap: 20px;

  }

  .footer-four__wrap {
    grid-template-columns: auto auto;

  }
}

@media (max-width: 991px) {
  .footer-four__wrap {
    grid-template-columns: auto auto auto;
    margin-top: 50px;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .footer-four__wrap {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 767px) {
  .footer-four__wrap {
    grid-template-columns: auto;
  }
}


/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}

body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--getizy-white, #FFFFFF);
  box-shadow: 0px 0px 100px 0px rgba(var(--getizy-black2-rgb, 0, 0, 0), 0.08);
}

body.boxed-wrapper .main-slider-one__shape-two {
  display: none;
}

body.boxed-wrapper .contact-two__left__image {
  left: -11%;
}

body.boxed-wrapper .contact-two__left__shape {
  left: -5%;
}

body.boxed-wrapper .project-one__custome-navs {

  right: 5px;
}



/*--------------------------------------------------------------
# Animations 
--------------------------------------------------------------*/

@keyframes topToBottom {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes topToBottomTwo {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes bottomToTop {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes leftToRight {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes leftToRightTwo {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-15px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes leftToRightThree {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-30px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes leftToRightFour {
  0% {
    transform: translateX(50px);
  }

  50% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(50px);
  }
}

@keyframes leftToRightFive {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes aspro-scroller {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

@keyframes aspro-scroller-reverse {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, 0);
  }
}

@keyframes projectCardShine {
  100% {
    top: 125%;
  }
}


@keyframes rotateOne {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}


@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate3 {
  0% {
    transform: rotate(3deg);
  }

  50% {
    transform: rotate(-3deg);
  }

  100% {
    transform: rotate(3deg);
  }
}

@keyframes rotate4 {
  0% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

@keyframes zoomBig {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.8, 0.8);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes zoomBigTwo {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.9, 0.9);
  }

  100% {
    transform: scale(1, 1);

  }
}

@keyframes zoomBigThree {
  0% {
    transform: scale(0.9, 0.9);
  }

  50% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0.9, 0.9);

  }
}

@keyframes topToBottomBig {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-280px);
  }

  100% {
    transform: translateY(0);
  }
}









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