/*
CSS for: Partnerschule des Leistungssports
Author: Kai Kimpenhaus

--------------------------------------------------------------
*/
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-v27-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-v27-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-v20-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-v20-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #FF0336;
  --theme-2: #0B4E3D;
  --header: #011E3C;
  --text: #011E3C;
  --text-2: #0B4E3D;
  --border: #C9C9C9;
  --bg: #F8F3E7;
  --bg-2: #122F2A;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.filter-gs {
  filter: grayscale(100%) contrast(1.1);
}

.theme-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 32px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
  font-family: Manrope;
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 18px 100%, 0 50%);
}
.theme-btn img {
  margin-left: 8px;
  transition: all 0.4s ease-in-out;
}
.theme-btn::before {
  position: absolute;
  content: "";
  background-color: var(--header);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.theme-btn:hover {
  color: var(--white);
  background-color: transparent;
}
.theme-btn:hover::before {
  height: 650%;
}

.link-btn {
  font-weight: 700;
  font-size: 20px;
  color: var(--theme);

  font-family: Manrope;
  text-decoration: underline;
}
.link-btn:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;

}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

/* Shared heading styles (elements + classes) */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Anton", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

/* Headings (elements) */
h1 { font-size: clamp(2.75rem, 2.2rem + 3vw, 4.25rem); line-height: 1; }   /* 44 -> 68 */
h2 { font-size: clamp(1.875rem, 1.55rem + 1.6vw, 2.5rem); line-height: 1.2; } /* 30 -> 40 */
h3 { font-size: clamp(1.5rem, 1.3rem + 1.0vw, 2rem); line-height: 1; }      /* 24 -> 32 */
h4 { font-size: clamp(1.25rem, 1.12rem + 0.6vw, 1.5rem); line-height: 1; }  /* 20 -> 24 */
h5 { font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem); line-height: 1; }/* 18 -> 20 */
h6 { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); line-height: 1; }  /* 16 -> 18 */

/* Headings (utility classes) */
.h1 { font-size: clamp(2.75rem, 2.2rem + 3vw, 4.25rem) !important; line-height: 1; }
.h2 { font-size: clamp(1.875rem, 1.55rem + 1.6vw, 2.5rem) !important; line-height: 1; }
.h3 { font-size: clamp(1.5rem, 1.3rem + 1.0vw, 2rem) !important; line-height: 1; }
.h4 { font-size: clamp(1.25rem, 1.12rem + 0.6vw, 1.5rem) !important; line-height: 1; }
.h5 { font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem) !important; line-height: 1; }
.h6 { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem) !important; line-height: 1; }

/* Helpful text utilities */
.lead  { font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem); line-height: 1.55; }
.small, small { font-size: clamp(0.875rem, 0.84rem + 0.15vw, 1rem); }

/* Spacing helper utilities */
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-80 { margin-top: 80px !important; }

.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }

/* Subtitle inside hero H1 (smaller than H1, still tight) */
.hero-content h1 span{
  display: block;
  font-size: clamp(2.75rem, 2.2rem + 3vw, 4.25rem); line-height: 1;
  line-height: 1;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  margin: 0px;
  overflow-wrap: break-word;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.about-wrapper .about-image {
  position: relative;
  z-index: 9;
  max-width: 590px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image {
    max-width: initial;
  }
}
.about-wrapper .about-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  top: 95px;
  left: -27px;
  width: 90%;
  height: 90%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image::before {
    display: none;
  }
}
.about-wrapper .about-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.about-wrapper .about-content {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .text {
  margin-top: 24px;
  margin-bottom: 24px;
}

.about-wrapper .about-content .icon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.about-wrapper .about-content .icon-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.about-wrapper .about-content .icon-item .content h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
}
.about-wrapper .about-content .icon-item .content p {
  max-width: 384px;
}
.about-wrapper .about-content .icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}
.about-wrapper .about-content .about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}
.about-wrapper .about-content .about-feature-grid .icon-item {
  align-items: flex-start;
  background: #F7F5F3;
  border: 1px solid rgba(1, 30, 60, 0.08);
  border-top: 4px solid var(--theme);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0 16px;
  margin-bottom: 0;
  min-height: 100%;
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
}
.about-wrapper .about-content .about-feature-grid .icon-item::before {
  background: rgba(255, 3, 54, 0.08);
  border-radius: 50%;
  content: "";
  height: 112px;
  position: absolute;
  right: -46px;
  top: -56px;
  width: 112px;
}
.about-wrapper .about-content .about-feature-grid .icon-item .icon {
  align-items: center;
  background: rgba(255, 3, 54, 0.12);
  color: var(--theme);
  display: inline-flex;
  flex: 0 0 54px;
  font-size: 22px;
  height: 54px;
  justify-content: center;
  margin-top: 2px;
  position: relative;
  width: 54px;
}
.about-wrapper .about-content .about-feature-grid .icon-item .content {
  display: contents;
  position: relative;
}
.about-wrapper .about-content .about-feature-grid .icon-item .content h4 {
  align-self: start;
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
}
.about-wrapper .about-content .about-feature-grid .icon-item .content p {
  grid-column: 1 / -1;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 18px;
  max-width: none;
  position: relative;
}
@media (max-width: 991px) {
  .about-wrapper .about-content .about-feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-feature-grid .icon-item {
    padding: 28px 22px;
  }
  .about-wrapper .about-content .about-feature-grid .icon-item .icon {
    margin-bottom: 0;
  }
  .about-wrapper .about-content .about-feature-grid .icon-item .content h4 {
    font-size: 26px;
  }
}
.about-wrapper .about-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
  max-width: 490px;
}
.about-wrapper .about-content h5.style-2 {
  border-left: 2px solid var(--theme);
  padding-left: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    display: block;
  }
}
.about-wrapper .about-content .theme-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .theme-btn {
    margin-top: 30px;
  }
}

.about-wrapper-2 {
  position: relative;
}
.about-wrapper-2 .about-content .text {
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-content .text {
    margin-bottom: 30px;
  }
}
.about-wrapper-2 .about-content .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.about-wrapper-2 .about-content .theme-btn::before {
  background-color: var(--header);
}
.about-wrapper-2 .about-content .theme-btn:hover {
  color: var(--white);
}
.about-wrapper-2 .about-content .theme-btn:hover img {
  filter: brightness(0) invert(1);
}
.about-wrapper-2 .about-image {
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-image {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.about-section-2 {
  position: relative;
}
@media (max-width: 1399px) {
  .about-section-2 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .about-section-2 {
    padding-bottom: 80px !important;
  }
}
.about-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  height: 72%;
}
@media (max-width: 1399px) {
  .about-section-2::before {
    height: 77%;
  }
}
@media (max-width: 991px) {
  .about-section-2::before {
    height: 100%;
  }
}
.about-section-2 .shape {
  position: absolute;
  right: 20px;
  top: -75px;
}
.about-section-2 .shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1600px) {
  .about-section-2 .shape {
    top: -75px;
  }
}
@media (max-width: 1399px) {
  .about-section-2 .shape {
    display: none;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderMuvon {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes borderAnim {
  0% {
    width: 0;
  }
  100% {
    width: 44px;
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes strokeColorChange1 {
  0% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  25% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  50% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
  75% {
    -webkit-text-stroke-color: rgba(227, 87, 43, 0.1);
  }
  100% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll-left-to-right-loop {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.img_left_animation {
  animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_right_animation {
  animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_top_animation {
  animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_bottom_animation {
  animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(30);
    opacity: 0;
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.zoom_in {
  transform: scale(0.5);
}

.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.contact-wrapper-2 .contact-content .contact-item {
  margin-top: 40px;
}
.contact-wrapper-2 .contact-content .contact-item .contact-form-items {
  margin-top: 20px;
}
.contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--header);
  padding: 12px 20px;
}
@media (max-width: 767px) {
  .contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt input::placeholder, .contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper-2 .contact-content .contact-item .contact-form-items .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}
.contact-wrapper-2 .contact-image {
  margin-left: 80px;
  max-width: 550px;
}
@media (max-width: 1399px) {
  .contact-wrapper-2 .contact-image {
    margin-left: 0;
    max-width: initial;
  }
}
.contact-wrapper-2 .contact-image img {
  width: 100%;
  height: 100%;
}

.contact-us-box {
  background: #F3F3F3;
  padding: 70px 60px;
  text-align: center;
  height: 277px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .contact-us-box {
    height: initial;
    padding: 40px;
  }
}
.contact-us-box .icon {
  font-size: 48px;
  color: var(--header);
  margin-bottom: 24px;
}
@media (max-width: 1399px) {
  .contact-us-box .icon {
    font-size: 40px;
  }
}
.contact-us-box .content h5 {
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}
@media (max-width: 1399px) {
  .contact-us-box .content h5 {
    font-size: 16px;
  }
}
.contact-us-box .content h5 a {
  color: var(--header);
}
.contact-us-box:hover {
  background-color: var(--theme);
}
.contact-us-box:hover .icon {
  color: var(--white);
}
.contact-us-box:hover .content h3 {
  color: var(--white);
}
.contact-us-box:hover .content h5 {
  color: var(--white);
}
.contact-us-box:hover .content h5 a {
  color: var(--white);
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
}
@media (max-width: 1399px) {
  .cta-wrapper {
    padding: 60px 0;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 30px 0;
  }
}
.cta-wrapper .cta-content .section-title h2 span {
  color: var(--header) !important;
}
.cta-wrapper .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.cta-wrapper .theme-btn::before {
  background-color: var(--header);
}
.cta-wrapper .theme-btn:hover {
  color: var(--white);
}
.cta-wrapper .theme-btn:hover img {
  filter: brightness(0) invert(1);
}

.instagram-wrapper {
  margin-top: 48px;
}
.instagram-wrapper .instagram-item {
  position: relative;
}
.instagram-wrapper .instagram-item .instagram-iamge {
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.instagram-wrapper .instagram-item .instagram-iamge.style-2 {
  height: 484px;
}
.instagram-wrapper .instagram-item .instagram-iamge.style-2 img {
  object-fit: cover;
}
.instagram-wrapper .instagram-item .instagram-iamge img {
  width: 100%;
  height: 100%;
}
.instagram-wrapper .instagram-item .instagram-iamge .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 999;
  font-size: 32px;
}
.instagram-wrapper .instagram-item .instagram-iamge:before, .instagram-wrapper .instagram-item .instagram-iamge:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(255, 3, 54, 0.7);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.instagram-wrapper .instagram-item .instagram-iamge:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}
.instagram-wrapper .instagram-item:hover .instagram-iamge .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.instagram-wrapper .instagram-item:hover .instagram-iamge:before, .instagram-wrapper .instagram-item:hover .instagram-iamge:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.video-wrapper {
  padding: 350px 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .video-wrapper {
    padding: 150px 0;
  }
}
@media (max-width: 991px) {
  .video-wrapper {
    padding: 120px 0;
  }
}
.video-wrapper .video-btn {
  width: 230px;
  height: 230px;
  line-height: 225px;
  display: inline-block;
  background: var(--theme);
  border: 4px solid var(--white);
  color: var(--theme);
  text-align: center;
  border-radius: 100%;
  font-size: 40px;
  position: relative;
  z-index: 999;
}
.video-wrapper .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 93px;
  height: 93px;
  border-radius: 100px;
  z-index: -1;
}
@media (max-width: 991px) {
  .video-wrapper .video-btn {
    width: 120px;
    height: 120px;
    line-height: 120px;
  }
}

.video-bg-section {
  background-attachment: fixed;
}

.faq-items {
  position: relative;
  z-index: 9;
  margin-top: 30px;
}
.faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 18px;
  background: #F3F3F3;
}
.faq-items .accordion .accordion-item h2 button {
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  box-shadow: none;
  padding: 30px 40px;
  color: var(--header);
  cursor: pointer;
}
@media (max-width: 1399px) {
  .faq-items .accordion .accordion-item h2 button {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}
.faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 40px;
  padding-top: 0;
  background-color: var(--theme);
}
@media (max-width: 1399px) {
  .faq-items .accordion .accordion-item .accordion-body {
    padding: 22px 20px;
  }
}
.faq-items .accordion .accordion-item .accordion-body p {
  color: var(--white);
  font-size: 17px;
  line-height: 32px;
  font-weight: 600;
  max-width: 936px;
}
@media (max-width: 575px) {
  .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.faq-items .accordion .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 900;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}
.faq-items .accordion .accordion-button:not(.collapsed) {
  background-color: var(--theme);
  color: var(--white);
}
.faq-items .accordion .accordion-button:not(.collapsed)::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 900;
  color: var(--white);
  transform: rotate(0);
}
.faq-items.style-2 .accordion .accordion-button::after {
  content: "\f063";
}
.faq-items.style-2 .accordion .accordion-button:not(.collapsed)::after {
  content: "\f062";
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0;
}
@media (max-width: 1399px) {
  .counter-wrapper {
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 25px;
  }
}
.counter-wrapper .counter-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.counter-wrapper .counter-item h2 {
  color: var(--white);
  font-size: 87px;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-item h2 {
    font-size: 45px;
  }
}
.counter-wrapper .counter-item p {
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-item p {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .choose-us-wrapper .choose-us-image {
    margin-left: 0;
  }
}
.choose-us-wrapper .choose-us-image img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper .why-choose-us-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper .why-choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper .why-choose-us-content .text {
  max-width: 662px;
  margin-top: 20px;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper .why-choose-us-content .text {
    margin-bottom: 30px;
  }
}
.choose-us-wrapper .why-choose-us-content .choose-us-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 45px;
  row-gap: 18px;
  align-items: start;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper .why-choose-us-content .choose-us-item {
    gap: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper .why-choose-us-content .choose-us-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  height: 50px;
}
.choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}
.choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item h5 {
  font-size: 18px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 1399px) {
  .choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item h5 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper .why-choose-us-content .choose-us-item .icon-item h5 {
    font-size: 16px;
  }
}
.choose-us-wrapper .why-choose-us-content .theme-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper .why-choose-us-content .theme-btn {
    margin-top: 30px;
  }
}

.why-choose-us-section {
  position: relative;
}
.why-choose-us-section .shape {
  position: absolute;
  left: -19px;
  z-index: -1;
  top: 296px;
}
@media (max-width: 1600px) {
  .why-choose-us-section .shape {
    left: -216px;
  }
}
@media (max-width: 1399px) {
  .why-choose-us-section .shape {
    display: none;
  }
}
.why-choose-us-section .shape img {
  width: 100%;
  height: 100%;
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  margin-top: -70px;
  position: relative;
  z-index: -1;
}
@media (max-width: 1399px) {
  .scrolling-wrap {
    margin-top: 0;
  }
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
  font-size: 373px;
  font-weight: 400;
  line-height: 381px;
  color: transparent;
  font-family: "Anton", sans-serif;
  display: flex;
  align-items: center;
  gap: 20px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #011E3C;
}
@media (max-width: 1399px) {
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 150px;
    line-height: 330px;
  }
}
@media (max-width: 991px) {
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 150px;
    line-height: 295px;
  }
}
@media (max-width: 767px) {
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 100px;
    line-height: 240px;
  }
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .scrolling-wrap {
    gap: 14px;
  }
  .scrolling-wrap .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 12px;
  }
}

.choose-us-wrapper-2 .choose-us-image {
  max-width: 414px;
  position: relative;
  margin-left: 80px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image {
    max-width: initial;
    margin-left: 0;
  }
}
.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper-2 .choose-us-image .count-box {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--theme);
  padding: 60px;
  text-align: center;
  min-width: 257px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image .count-box {
    padding: 30px;
    min-width: 220px;
    z-index: 9999;
  }
}
.choose-us-wrapper-2 .choose-us-image .count-box h2 {
  color: var(--white);
  font-size: 85px;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image .count-box h2 {
    font-size: 50px;
  }
}
.choose-us-wrapper-2 .choose-us-image .count-box p {
  color: var(--white);
}
.choose-us-wrapper-2 .choose-us-image .choose-us-image-2 {
  position: absolute;
  bottom: -50px;
  left: -200px;
  max-width: 370px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image .choose-us-image-2 {
    bottom: 0;
    right: 0;
    max-width: 250px;
    left: initial;
    z-index: 999;
  }
}
.choose-us-wrapper-2 .why-choose-us-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .why-choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-2 .why-choose-us-content .text {
  max-width: 662px;
  margin-top: 20px;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .why-choose-us-content .text {
    margin-bottom: 30px;
  }
}
.choose-us-wrapper-2 .why-choose-us-content .choose-us-item {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .why-choose-us-content .choose-us-item {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper-2 .why-choose-us-content .choose-us-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.choose-us-wrapper-2 .why-choose-us-content .choose-us-item .icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.choose-us-wrapper-2 .why-choose-us-content .choose-us-item .icon-item .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.choose-us-wrapper-2 .why-choose-us-content .choose-us-item .icon-item:hover .icon img {
  transform: scaleX(-1) !important;
}
.choose-us-wrapper-2 .why-choose-us-content .choose-us-item .icon-item h5 {
  font-size: 18px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .why-choose-us-content .choose-us-item .icon-item h5 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper-2 .why-choose-us-content .choose-us-item .icon-item h5 {
    font-size: 16px;
  }
}
.choose-us-wrapper-2 .why-choose-us-content .theme-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .why-choose-us-content .theme-btn {
    margin-top: 30px;
  }
}

.fitner-membership-box {
  background-color: var(--white);
  padding: 48px 45px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .fitner-membership-box {
    padding: 30px;
  }
}
.fitner-membership-box .icon {
  margin-bottom: 25px;
}
.fitner-membership-box .icon img {
  transition: 0.3s;
}
.fitner-membership-box h4 {
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}
.fitner-membership-box p {
  font-weight: 500;
  margin-top: 10px;
  color: var(--black);
  max-width: 428px;
}
.fitner-membership-box:hover .icon img {
  animation: zoomIn 0.5s linear;
}

@media (max-width: 1399px) {
  .choose-us-section-2 {
    padding-top: 0 !important;
  }
}

.footer-widget-wrapper {
  padding: 60px 0 80px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
  width: 180px;
}

.footer-widget-wrapper .single-footer-widget .wid-title img {
  margin-top: -90px;
  margin-left: 30px;
}

.footer-widget-wrapper .single-footer-widget .wid-title h4 {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
  max-width: 360px;
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 25px;
}
.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .list-area li {
    font-size: 16px;
  }
}
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
  color: var(--white);
  font-size: 16px;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .contact-content span {
  color: var(--white);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}
.footer-widget-wrapper .single-footer-widget .contact-content span i {
  margin-right: 10px;
}
.footer-widget-wrapper .single-footer-widget .contact-content h6 {
  color: #CECECE;
  margin-bottom: 22px;
  font-family: "Manrope", sans-serif;
  line-height: 120%;
}
.footer-widget-wrapper .single-footer-widget .contact-content h6 a {
  color: #CECECE;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid #ffffff20;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px 0;
}
.footer-bottom p {
  color: var(--white);
}
.footer-legal-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}
.footer-legal-links a {
  color: var(--white);
  font-weight: 700;
}
.footer-legal-links a:hover {
  color: var(--theme);
}
@media (max-width: 767px) {
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-legal-links {
    justify-content: flex-start;
  }
}

.header-top-section {
  background-color: #051A30;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 10px 210px;
}

.header-top-wrapper .header-left .list {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-top-wrapper .header-left .list li {
  color: var(--white);
}
.header-top-wrapper .header-left .list li i {
  color: var(--white);
  margin-right: 6px;
}
.header-top-wrapper .header-left .list li a {
  color: var(--white);
}
.header-top-branding {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-top-branding__link {
  display: inline-flex;
  align-items: center;
}
.header-top-branding__logo {
  width: 200px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.header-top-branding__logo--thg {
    max-width: 120px;
    max-height: 50px;
}
.header-top-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper .social-icon a {
  color: var(--white);
  font-size: 22px;
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
@media (min-width: 1200px) {
  .header-main .mean__menu-wrapper {
    margin-left: 220px;
    margin-right: auto;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 32px;
}
@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 24px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 20px 0;
  text-align: left;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme-2);
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: scaleY(0) translateZ(100px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.34px;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme-2);
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 550px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--white);
  position: relative;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn img {
  width: initial;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white);
  background-color: transparent;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  height: 380%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1) translateZ(0px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .search-toggler {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--theme);
  border-radius: 100px;
  border: 1px solid var(--theme);
  font-size: 16px;
}
@media (max-width: 575px) {
  .header-main .header-right .search-toggler {
    display: none;
  }
}
.header-main .header-right .header-button .theme-btn img {
  width: initial;
}
.header-main .header-right .header-button .theme-btn::before {
  background-color: var(--white);
}
.header-main .header-right .header-button .theme-btn:hover {
  color: var(--header);
}
.header-main .header-right .sidebar__toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  color: var(--white);
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.header-main .header-right .sidebar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.header-main .header-right .sidebar__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-main .header-right .sidebar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header-main .header-right .sidebar__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-1 {
  background-color: #011E3C;
  position: relative;
  z-index: 1002;
}

.header-logo img {
    width: 160px;
    position: absolute;
    top: 0px;
    z-index: 99;
  }

@media (min-width: 1200px) {
  .header-logo img {
    top: -76px;
  }
}

@media (max-width: 1199px) {
  .header-1 .header-main .header-left .logo .header-logo img {
    width: 80px;
  }
}
.header-1 .header-main .header-left .logo .header-logo-2 {
  display: none;
}
@media (max-width: 1399px) {
  .header-1 .header-main .header-left .logo .header-logo-2 img {
    width: 120px;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 .header-main .header-left .logo .header-logo {
  display: none;
}
.sticky.header-1 .header-main .header-left .logo .header-logo-2 {
  display: block;
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right .header-button .theme-btn::before {
  background-color: var(--theme);
}
.sticky.header-1 .header-main .header-right .sidebar__toggle {
  color: var(--header);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--black);
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__logo img {
    width: 120px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 20px;
  font-weight: 600;

}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  z-index: 9;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(1, 30, 60, 0.83);
  z-index: -1;
}
.breadcrumb-wrapper .page-heading {
  padding: 220px 0 220px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0 100px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 80px 0 80px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
}
.breadcrumb-wrapper .page-heading h1 span {
  color: var(--theme);
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  margin-top: 30px;
  gap: 10px;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--theme);

  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.sichtung-intro-wrapper {
  background: linear-gradient(135deg, rgba(1, 30, 60, 0.04) 0%, rgba(255, 3, 54, 0.08) 100%);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .sichtung-intro-wrapper {
    padding: 35px 25px;
  }
}
.sichtung-lead {
  font-size: 20px;
  line-height: 1.8;
  margin-top: 24px;
  max-width: 720px;
}
@media (max-width: 767px) {
  .sichtung-lead {
    font-size: 17px;
  }
}
.sichtung-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.sichtung-chip {
  background-color: var(--white);
  border: 1px solid rgba(1, 30, 60, 0.12);
  color: var(--header);
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sichtung-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 35px;
}
.sichtung-feature-item {
  background-color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  border-left: 4px solid var(--theme);
}
.sichtung-feature-item .icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: rgba(255, 3, 54, 0.12);
  color: var(--theme);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.sichtung-feature-item .content h4 {
  margin-bottom: 8px;
}
.sichtung-feature-item__location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.sichtung-feature-item__location i {
  color: var(--theme);
}
.sichtung-feature-item__location a {
  color: var(--header);
  font-weight: 700;
}
.sichtung-feature-item__location a:hover {
  color: var(--theme);
}
.sichtung-download-card {
  background: var(--header);
  color: var(--white);
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
}
.sichtung-download-card::before {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  content: "";
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.sichtung-download-card__eyebrow {
  color: var(--theme);
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sichtung-download-card h3 {
  color: var(--white);
  margin-bottom: 18px;
}
.sichtung-download-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}
.sichtung-topic-links {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 28px;
  padding: 18px 0;
}
.sichtung-topic-links li:not(:last-child) {
  margin-bottom: 10px;
}
.sichtung-topic-links a {
  color: var(--white);
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}
.sichtung-topic-links a:hover {
  color: var(--theme);
  transform: translateX(4px);
}
.sichtung-download-card .theme-btn {
  background-color: var(--theme);
  color: var(--white);
}
.sichtung-download-card__button {
  display: flex;
  justify-content: center;
  width: 100%;
}
.sichtung-download-card__button:not(:last-child) {
  margin-bottom: 14px;
}
.sichtung-download-card .theme-btn::before {
  background-color: var(--white);
}
.sichtung-download-card .theme-btn:hover {
  color: var(--header);
}
.sichtung-download-card .theme-btn:hover img {
  filter: none;
}
.sichtung-step-box {
  background: #F7F5F3;
  text-align: left;
  padding: 48px 36px;
  position: relative;
  height: auto;
}
#vorteile .row,
#ablauf .row {
  align-items: stretch;
}
#vorteile .row > [class*="col-"],
#ablauf .row > [class*="col-"] {
  display: flex;
}
#vorteile .sichtung-step-box,
#ablauf .sichtung-step-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sichtung-step-box .icon {
  display: inline-flex;
  margin-bottom: 24px;
}
.sichtung-step-box__number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--theme);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sichtung-step-box .content h3 {
  margin-bottom: 10px;
}
.sichtung-step-box .content h5 {
  margin-top: 0;
  line-height: 1.7;
}
.sichtung-step-box:hover {
  transform: translateY(-6px);
}
.sichtung-step-box:hover .content h5,
.sichtung-step-box:hover .content h3,
.sichtung-step-box:hover .content h5 a,
.sichtung-step-box:hover .sichtung-step-box__number {
  color: var(--white);
}
.sichtung-modules {
  background-color: #F3F3F3;
  padding: 55px;
}
@media (max-width: 991px) {
  .sichtung-modules {
    padding: 35px 20px;
  }
}
.sichtung-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 35px;
}
.focus-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .sichtung-module-grid,
  .focus-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .sichtung-module-grid,
  .focus-module-grid {
    grid-template-columns: 1fr;
  }
}
.sichtung-module-card {
  background: var(--white);
  padding: 28px 24px;
  min-height: 100%;
  border-top: 4px solid transparent;
  transition: all 0.4s ease-in-out;
}
.sichtung-module-card span {
  color: var(--theme);
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.sichtung-module-card h4 {
  font-size: 26px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sichtung-module-card h4 {
    font-size: 22px;
  }
}
.sichtung-module-card:hover {
  border-color: var(--theme);
  transform: translateY(-4px);
}
.partner-logo {
  width: auto;
  max-width: 180px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}
.partner-logo--invert {
  filter: invert(1);
}
.focus-partner-section .row {
  align-items: stretch;
}
.home-partner-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  gap: 36px;
  margin-bottom: 42px;
}
.home-partner-intro h2 {
  margin-bottom: 0;
}
.home-partner-intro p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}
.home-partner-section .row > [class*="col-"] {
  display: flex;
}
.home-partner-section .focus-partner-card {
  width: 100%;
}
.focus-partner-card {
  height: 100%;
  margin-top: 0;
  background: var(--white);
  padding: 34px;
  border-top: 4px solid var(--theme);
}
.focus-partner-card .news-content {
  margin-top: 0;
}
.focus-partner-card .partner-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--header);
  margin-bottom: 24px;
}
.focus-partner-card p {
  color: var(--text);
  line-height: 1.75;
}
.partner-contact-wrapper {
  background: #F7F5F3;
  padding: 42px;
}
.partner-contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: start;
  gap: 36px;
  margin-bottom: 48px;
}
.partner-contact-intro .section-title h2 {
  margin-bottom: 0;
}
.partner-contact-lead {
  max-width: 880px;
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}
.partner-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  height: 100%;
  background: var(--white);
  padding: 30px;
  border-top: 4px solid var(--theme);
  text-align: left;
}
.partner-contact-card--accent {
  border-top-color: var(--header);
}
.partner-contact-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme);
  color: var(--white);
  font-size: 28px;
  flex: 0 0 72px;
}
.partner-contact-card--accent .partner-contact-card__icon {
  background: var(--header);
}
.partner-contact-card__head {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-bottom: 22px;
}
.partner-contact-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--theme);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.partner-contact-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}
.partner-contact-card p {
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.7;
}
.partner-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--header);
  font-weight: 800;
  text-transform: uppercase;
}
.partner-contact-card a:hover {
  color: var(--theme);
}
.partner-contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(1, 30, 60, 0.14);
}
.partner-contact-strip strong {
  color: var(--header);
}
.partner-contact-strip a {
  color: var(--theme);
  font-weight: 800;
}
.contact-compact-card,
.contact-person-card,
.contact-quick-wrapper {
  height: 100%;
  background: #F7F5F3;
}
.contact-card-row > [class*="col-"],
.contact-card-row .row > [class*="col-"] {
  display: flex;
}
.contact-card-row .col-lg-8,
.contact-card-row .col-lg-8 > .row {
  display: flex;
  flex: 1;
}
.contact-compact-card {
  display: flex;
  flex-direction: column;
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
}
.contact-compact-card--primary {
  background: var(--header);
  color: var(--white);
  height: 100%;
}
.contact-compact-card--primary::before {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  content: "";
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.contact-compact-card__eyebrow,
.contact-person-card span {
  display: inline-block;
  color: var(--theme);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.contact-compact-card h2 {
  color: var(--white);
  font-size: 34px;
  line-height: 1.12;
  margin-bottom: 28px;
}
.contact-compact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.6;
}
.contact-compact-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 28px;
  padding: 22px 0;
}
.contact-compact-list li:not(:last-child) {
  margin-bottom: 16px;
}
.contact-compact-list i {
  color: var(--theme);
  margin-top: 5px;
  min-width: 18px;
}
.contact-compact-list a {
  color: rgba(255, 255, 255, 0.9);
}
.contact-compact-list a:hover {
  color: var(--theme);
}
.contact-compact-card__button {
  align-items: center;
  background: var(--theme);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  margin-top: auto;
  padding: 16px 20px;
  text-transform: uppercase;
}
.contact-compact-card__button:hover {
  background: var(--white);
  color: var(--header);
}
.contact-person-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 4px solid transparent;
  transition: all 0.35s ease-in-out;
}
.contact-person-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  background: #ececec;
}
.contact-person-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px;
}
.contact-person-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.contact-person-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.contact-person-card a {
  align-items: center;
  background: var(--theme);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-top: auto;
  padding: 14px 16px;
  text-transform: uppercase;
}
.contact-person-card a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-left: 10px;
}
.contact-person-card a:hover {
  background: var(--header);
  color: var(--white);
}
.contact-person-card:hover {
  border-color: var(--theme);
  transform: translateY(-4px);
}
.contact-person-card__body a {
  order: 4;
}
.privacy-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 340px minmax(0, 1fr);
}
.privacy-section {
  overflow: visible;
}
.privacy-summary {
  align-self: start;
  background: var(--header);
  color: var(--white);
  padding: 34px;
  position: sticky;
  top: 24px;
  z-index: 5;
}
.privacy-summary span {
  color: var(--theme);
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.privacy-summary h2 {
  color: var(--white);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.privacy-summary ul {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 24px;
  padding: 18px 0;
}
.privacy-summary li {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.privacy-summary li::before {
  background: var(--theme);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 11px;
  width: 8px;
}
.privacy-summary li:not(:last-child) {
  margin-bottom: 12px;
}
.privacy-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 18px 0;
}
.privacy-nav a {
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  display: grid;
  font-weight: 800;
  gap: 12px;
  grid-template-columns: 22px minmax(0, 1fr);
  line-height: 1.35;
  padding: 12px 10px;
}
.privacy-nav a i {
  color: var(--theme);
  font-size: 17px;
  text-align: center;
}
.privacy-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.privacy-summary__contact {
  align-items: center;
  background: var(--theme);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  padding: 15px 18px;
  text-transform: uppercase;
}
.privacy-summary__contact:hover {
  background: var(--white);
  color: var(--header);
}
.privacy-content {
  display: grid;
  gap: 18px;
}
.privacy-block {
  background: #F7F5F3;
  padding: 32px 34px;
}
.privacy-block h2 {
  font-size: 30px;
  line-height: 1.18;
  margin-bottom: 16px;
}
.privacy-block p,
.privacy-block li {
  color: var(--text);
  line-height: 1.75;
}
.privacy-block p:not(:last-child) {
  margin-bottom: 14px;
}
.privacy-block ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 0;
}
.privacy-block li {
  list-style: none;
  padding-left: 26px;
  position: relative;
}
.privacy-block li::before {
  background: var(--theme);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 13px;
  width: 8px;
}
.privacy-block a {
  color: var(--theme);
  font-weight: 800;
}
.privacy-block a:hover {
  color: var(--header);
}
@media (max-width: 991px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-summary {
    position: static;
  }
}
@media (max-width: 575px) {
  .partner-contact-wrapper {
    padding: 28px 22px;
  }
  .partner-contact-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }
  .partner-contact-card__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .partner-contact-card h3 {
    font-size: 24px;
  }
  .privacy-summary,
  .privacy-block {
    padding: 26px 22px;
  }
  .privacy-summary h2,
  .privacy-block h2 {
    font-size: 26px;
  }
}
.contact-quick-wrapper {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 36px;
}
.index-quick-wrapper {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  height: auto;
  margin-bottom: 32px;
  min-height: 260px;
  padding: 38px 40px;
}
.index-quick-wrapper .section-title h2 {
  font-size: 36px;
  line-height: 1.08;
  max-width: 280px;
}
.index-quick-wrapper .contact-quick-links {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}
.index-quick-wrapper .contact-quick-links a {
  min-width: 145px;
}
.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.contact-quick-links img {
  flex: 0 0 auto;
  height: 28px;
  width: 28px;
}
.contact-quick-links a {
  align-items: center;
  background: var(--white);
  color: var(--header);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  padding: 14px 18px;
}
.contact-quick-links a:hover {
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 575px) {
  .focus-partner-card {
    padding: 28px 22px;
  }
  .focus-partner-card .partner-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .partner-logo {
    max-width: 150px;
    height: 48px;
  }
}
@media (max-width: 991px) {
  .contact-quick-wrapper {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-quick-links {
    justify-content: flex-start;
  }
  .index-quick-wrapper {
    grid-template-columns: 1fr;
  }
  .index-quick-wrapper .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .contact-compact-card,
  .contact-quick-wrapper {
    padding: 28px 22px;
  }
  .contact-compact-card h2 {
    font-size: 28px;
  }
  .contact-quick-links a {
    width: 100%;
  }
}
.sichtung-form-note {
  margin-top: 18px;
  margin-bottom: 28px;
  max-width: 620px;
}
.sichtung-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
}
.sichtung-checkbox input {
  margin-top: 6px;
  accent-color: var(--theme);
}
.sichtung-side-panel {
  background-color: var(--white);
  box-shadow: 0 18px 50px rgba(1, 30, 60, 0.08);
  overflow: hidden;
}
.sichtung-side-panel__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.sichtung-side-panel__content {
  padding: 34px 32px;
}
.sichtung-side-panel__content h3 {
  margin-bottom: 20px;
}
.sichtung-side-panel__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sichtung-side-panel__content ul li:not(:last-child) {
  margin-bottom: 14px;
}
.sichtung-side-panel__content ul li i {
  color: var(--theme);
  margin-top: 6px;
}
.sichtung-contact-strip {
  border-top: 1px solid rgba(1, 30, 60, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 26px;
  padding-top: 22px;
}
.sichtung-contact-strip a {
  color: var(--header);
  font-weight: 700;
}
.form-message {
  display: none;
  margin-top: 8px;
  padding: 16px 18px;
  font-weight: 700;
}
.form-message.success,
.form-message.error {
  display: block;
}
.form-message.success {
  background: rgba(17, 153, 84, 0.12);
  color: #0f6b3c;
}
.form-message.error {
  background: rgba(255, 3, 54, 0.12);
  color: var(--theme);
}
.form-hp {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
@media (max-width: 767px) {
  .sichtung-download-card,
  .sichtung-step-box,
  .sichtung-side-panel__content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.error-item {
  text-align: center;
}
.error-item .error-image {
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .error-item .error-image img {
    width: 100%;
    height: 100%;
  }
}
.error-item h2 {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .error-item h2 {
    margin-bottom: 30px;
  }
}
.error-item h2 span {
  color: var(--theme);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.array-buttons-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons-2 {
    flex-wrap: wrap;
  }
}
.array-buttons-2 .array-prev {
  width: 110px;
  height: 48px;
  line-height: 45px;
  text-align: center;
  background-color: transparent;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
  border: 1px solid var(--header);
  font-weight: 600;
}
.array-buttons-2 .array-prev i {
  margin-left: 5px;
  transform: rotate(45deg);
}
.array-buttons-2 .array-prev:hover {
  background: var(--theme-2);
  color: var(--header);
  border: 1px solid var(--theme-2);
}
.array-buttons-2 .array-next {
  width: 110px;
  height: 48px;
  line-height: 45px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
}
.array-buttons-2 .array-next i {
  margin-left: 5px;
  transform: rotate(-45deg);
}
.array-buttons-2 .array-next:hover {
  background: var(--header);
  color: var(--white);
}

.array-buttons-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons-2 {
    flex-wrap: wrap;
  }
}
.array-buttons-2 .array-prev {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--header);
  color: #00E5FF;
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}
.array-buttons-2 .array-prev:hover {
  background: var(--theme);
  color: var(--white);
}
.array-buttons-2 .array-next {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 100%;
  text-align: center;
  background: #2ADDC8;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.array-buttons-2 .array-next:hover {
  background: var(--theme);
  color: var(--white);
}

.array-buttons-4 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons-4 {
    flex-wrap: wrap;
  }
}
.array-buttons-4 .array-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--bg);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}
.array-buttons-4 .array-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid rgb(65, 65, 65);
  border-radius: 100%;
  text-align: center;
  background: transparent;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-buttons-4 .array-next:hover {
  background: var(--bg);
  border: 1px none;
  color: var(--white);
}

.swiper-dot {
  text-align: center;
  margin-top: 30px;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: var(--theme-2);
  opacity: 1;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 30px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.swiper-dot-2 {
  text-align: center;
  margin-top: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid var(--header);
  opacity: 1;
  position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid var(--header);
  transition: 0.6s;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.page-nav-wrap.style-2 {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .page-nav-wrap.style-2 {
    margin-top: 30px;
  }
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #000;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers.active {
  background: #F3F3F3;
  border: 1px solid #F3F3F3;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container {
  max-width: 1700px;
  margin: 0 auto;
}

.bw-img-anim-left,
.bw-img-anim-right {
  transition: clip-path 0.5s ease-out;
}

.hero-1 {
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .hero-1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1399px) {
  .hero-1 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding-top: 80px;
    padding-bottom: 0;
  }
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(1, 30, 60, 0.83);
}
.hero-1 .text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 375px;
  left: 5%;
  letter-spacing: 7.2px;
}
@media (max-width: 1600px) {
  .hero-1 .text {
    display: none;
  }
}
.hero-1 .text b {
  font-weight: 700;
  color: var(--theme);
}
.hero-1 .shape {
  position: absolute;
  right: 0;
  bottom: 250px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .hero-1 .shape {
    bottom: 120px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .shape {
    display: none;
  }
}
.hero-1 .hero-content {
  position: relative;
  z-index: 999;
  padding: 40px 0 0 0;
}
.hero-1 .hero-content h1 {
  color: var(--white);
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    margin-bottom: 30px;
  }
}
.hero-1 .hero-content h1 span {
  color: var(--theme);
  font-weight: 400;
  font-family: "Anton", sans-serif;
}

.hero-1 .hero-content p {
  font-weight: 500;
  color: var(--white);
  max-width: 549px;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content p {
    margin-bottom: 30px;
  }
}
.hero-1 .hero-content h6 {
  color: var(--white);
  margin-top: 20px;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h6 {
    margin-left: 0;
  }
}
.hero-1 .hero-image {
  position: relative;
  z-index: 999;
  margin-top: 30px;
  filter: grayscale(1) contrast(1.3);
}
@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-bottom: 0;
  }
}
@media (max-width: 1600px) {
  .hero-1 .hero-image {
    margin-top: 0;
    margin-bottom: -50px;
  }
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-bottom: 0;
  }
}
.hero-1 .hero-player {
  position: absolute;
  right: max(15px, calc((100vw - 1320px) / 2 + 15px));
  bottom: 0;
  z-index: 3;
  width: min(53vw, 672px);
  pointer-events: none;
  filter: contrast(1.1);
}
.hero-1 .hero-player img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1367px) {
  .hero-1 {
    min-height: 720px;
    padding: 100px 0;
  }
  .hero-1 .container {
    min-height: 720px;
    display: flex;
    align-items: center;
  }
  .hero-1 .container .row {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-player {
    right: 2vw;
    width: min(55vw, 624px);
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-player {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(80vw, 420px);
    margin: 30px auto 0;
  }
  .hero-1 {
    min-height: initial;
  }
}
.hero-2 {
  position: relative;
  z-index: 9;
  padding: 115px 0 685px;
}
@media (max-width: 1600px) {
  .hero-2 {
    padding: 100px 0 490px;
  }
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 100px 0 520px;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 80px 0 375px;
  }
}
@media (max-width: 575px) {
  .hero-2 {
    padding: 80px 0 175px;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(1, 16, 33, 0.87);
}
.hero-2 .hero-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 9;
}
.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-2 .shape {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 218px;
}
@media (max-width: 1399px) {
  .hero-2 .shape {
    display: none;
  }
}
.hero-2 .shape-2 {
  position: absolute;
  z-index: 9;
  right: 40px;
  bottom: 0;
}
@media (max-width: 1399px) {
  .hero-2 .shape-2 {
    display: none;
  }
}
.hero-2 .hero-content {
  position: relative;
  text-align: center;
}
.hero-2 .hero-content span {
  font-size: 122px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content span {
    font-size: 100px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content span {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content span {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content span {
    font-size: 35px;
  }
}
.hero-2 .hero-content h1 {
  font-size: 373px;
  color: var(--theme);
  margin-top: 20px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 320px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .header-main .mean__menu-wrapper {
    display: none;
  }
}

.mobile-menu {
  margin-top: 10px;
}

.mobile-menu__nav > ul,
.mobile-menu__nav .submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu__nav > ul > li {
  border-bottom: 1px solid rgba(1, 30, 60, 0.12);
}

.mobile-menu__nav a {
  display: block;
  width: 100%;
  padding: 14px 42px 14px 0;
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.mobile-menu__nav a:hover {
  color: var(--theme);
}

.mobile-menu__nav li {
  position: relative;
}

.mobile-menu__nav .submenu {
  padding: 6px 0 10px 16px;
}

.mobile-menu__nav .submenu a {
  padding: 8px 32px 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu__nav .submenu .submenu {
  padding-left: 14px;
}

.mobile-menu__submenu-toggle {
  position: absolute;
  top: 8px;
  right: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  border: 1px solid rgba(1, 30, 60, 0.12);
  transition: all 0.3s ease-in-out;
}

.mobile-menu__submenu-toggle:hover {
  color: var(--white);
  background-color: var(--theme);
  border-color: var(--theme);
}

.mobile-menu__item--has-children.is-open > .mobile-menu__submenu-toggle {
  color: var(--white);
  background-color: var(--theme);
  border-color: var(--theme);
}

.mobile-menu__item--has-children.is-open > .mobile-menu__submenu-toggle i {
  transform: rotate(45deg);
}

.mobile-menu__submenu-toggle i {
  transition: transform 0.3s ease-in-out;
}

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

  .header-main {
    min-height: 78px;
    gap: 16px;
    align-items: center;
  }

  .header-main .header-left {
    flex: 0 0 auto;
  }

  .header-main .header-right {
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

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

  .header-main .header-right .header-button .theme-btn {
    padding: 12px 18px;
    font-size: 16px;
  }

  .offcanvas__info {
    top: var(--mobile-header-offset, 0px);
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--mobile-header-offset, 0px));
    border-left: 0;
    border-top: 2px solid var(--theme);
    transform: translateY(-24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s ease, opacity 0.38s ease, visibility 0.38s ease;
    z-index: 1001;
  }

  .offcanvas__info.info-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .offcanvas__wrapper {
    padding: 72px 20px 28px;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__top {
    display: none !important;
  }

  .offcanvas__overlay {
    top: var(--mobile-header-offset, 0px);
    height: calc(100dvh - var(--mobile-header-offset, 0px));
    z-index: 1000;
  }

  .mobile-menu {
    margin-top: 0;
  }

  .mobile-menu__nav > ul > li:first-child {
    border-top: 1px solid rgba(1, 30, 60, 0.12);
  }

  .mobile-menu__nav a {
    padding: 16px 42px 16px 0;
    font-size: 17px;
  }

  .mobile-menu__nav .submenu {
    padding: 0 0 14px 18px;
  }
}

@media (max-width: 575px) {
  .header-main .header-right .header-button .theme-btn {
    padding: 10px 14px;
    font-size: 15px;
  }

  .header-main .header-right .header-button .theme-btn img {
    display: none;
  }

  .offcanvas__wrapper {
    padding: 72px 16px 24px;
  }
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-img {
  overflow: hidden;
  position: relative;
}
.news-card-items .news-img a:nth-child(2), .news-card-items .news-img a:nth-child(3), .news-card-items .news-img a:nth-child(4) {
  top: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .news-card-items .news-img a:nth-child(2), .news-card-items .news-img a:nth-child(3), .news-card-items .news-img a:nth-child(4) {
    width: 100%;
  }
}
.news-card-items .news-img a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-card-items .news-content {
  margin-top: 32px;
}
.news-card-items .news-content .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.news-card-items .news-content .list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}
.news-card-items .news-content .list li i {
  color: var(--theme);
  margin-right: 12px;
}
.news-card-items .news-content h3 {
  line-height: normal;
}
.news-card-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.news-card-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items .news-content .link-btn {
  margin-top: 40px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .news-card-items .news-content .link-btn {
    margin-top: 30px;
  }
}
.news-card-items:hover .news-img a:nth-child(2) {
  transform: scale(0.9);
}
.news-card-items:hover .news-img a:nth-child(3) {
  transform: scale(0.7);
}
.news-card-items:hover .news-img a:nth-child(4) {
  transform: scale(0.5);
}

.news-main-sideber .single-sideber-widget {
  margin-bottom: 40px;
  background-color: #F3F3F3;
  padding: 30px;
}
.news-main-sideber .single-sideber-widget .search-widget form {
  width: 100%;
  position: relative;
}
.news-main-sideber .single-sideber-widget .search-widget form input {
  background: #E6E6E6;
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: #54595F;
}
.news-main-sideber .single-sideber-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.news-main-sideber .single-sideber-widget .search-widget form button:hover {
  background-color: var(--header);
  color: var(--white);
}
.news-main-sideber .single-sideber-widget .widget-title {
  padding-bottom: 16px;
  margin-bottom: 15px;
}
.news-main-sideber .single-sideber-widget .widget-title h3 {
  font-size: 24px;
}
@media (max-width: 575px) {
  .news-main-sideber .single-sideber-widget .widget-title h3 {
    font-size: 20px;
  }
}
.news-main-sideber .single-sideber-widget ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}
.news-main-sideber .single-sideber-widget ul li a {
  color: var(--header);
}
.news-main-sideber .single-sideber-widget ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.news-main-sideber .single-sideber-widget ul li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E6E6E6;
}
.news-main-sideber .single-sideber-widget ul li:hover a {
  color: var(--theme);
}
.news-main-sideber .single-sideber-widget ul li:hover span {
  color: var(--theme);
}
.news-main-sideber .single-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 1399px) {
  .news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h5 {
    font-size: 16px;
  }
}
.news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h5 a:hover {
  color: var(--theme);
}
.news-main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
}
.news-main-sideber .single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 17px;
  line-height: 1;
  font-weight: 400;
  border: 1px solid #E6E6E6;
  margin-right: 10px;
  margin-bottom: 10px;

}
.news-main-sideber .single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.news-main-sideber .single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.news-standard-wrapper .news-standard-post-item .news-standard-items {
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .news-standard-wrapper .news-standard-post-item .news-standard-items {
    margin-bottom: 30px;
  }
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content {
  margin-top: 32px;
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content .list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .news-standard-wrapper .news-standard-post-item .news-standard-items .news-content .list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content .list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content .list li i {
  color: var(--theme);
  margin-right: 12px;
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content h3 {
  line-height: normal;
  margin-bottom: 12px;
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-standard-wrapper .news-standard-post-item .news-standard-items .news-content .link-btn {
  margin-top: 48px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .news-standard-wrapper .news-standard-post-item .news-standard-items .news-content .link-btn {
    margin-top: 30px;
  }
}

.news-details-wrapper .news-details-post .news-details-content h4 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content h4 {
    font-size: 20px;
  }
}
.news-details-wrapper .news-details-post .news-details-content p {
  color: var(--header);
}
.news-details-wrapper .news-details-post .news-details-content .list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-details-wrapper .news-details-post .news-details-content .list li {
  font-size: 17px;
  font-weight: 500;
  color: rgba(1, 30, 60, 0.8);
  padding-left: 20px;
  position: relative;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .list li {
    font-size: 16px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 30px;
  background-color: rgba(1, 30, 60, 0.8);
}
.news-details-wrapper .news-details-post .news-details-content .list li:not(:last-child) {
  margin-bottom: 5px;
}
.news-details-wrapper .news-details-post .news-details-content .details-image {
  margin-top: 30px;
  margin-bottom: 30px;
}
.news-details-wrapper .news-details-post .news-details-content .details-image img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-details-post .news-details-content .thumb img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-details-post .news-details-content .bottom-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(8, 37, 36, 0.2);
  border-bottom: 1px solid rgba(8, 37, 36, 0.2);
  padding: 30px 0;
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-details-post .news-details-content .bottom-item {
    margin-top: 30px;
  }
}
.news-details-wrapper .news-details-post .news-details-content .bottom-item .content h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  margin-top: 10px;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Anton", sans-serif, "Manrope", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Anton", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--white);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}
.back-to-top:hover {
  background-color: var(--white);
  color: var(--theme-2);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.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: #000000;
  opacity: 0.7;
  cursor: url(../img/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%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

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

.pricing-card-items {
  background-color: var(--header);
  padding: 48px 60px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 1399px) {
  .pricing-card-items {
    padding: 30px;
  }
}
.pricing-card-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}
.pricing-card-items .pricing-header {
  border-bottom: 1px solid var(--white);
  padding-bottom: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .pricing-card-items .pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.pricing-card-items .pricing-header h3 {
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .pricing-card-items .pricing-header h3 {
    font-size: 25px;
  }
}
.pricing-card-items .pricing-header p {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .pricing-card-items .pricing-header p {
    font-size: 20px;
  }
}
.pricing-card-items h2 {
  font-size: 95px;
  font-weight: 400;
  color: var(--white);
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .pricing-card-items h2 {
    font-size: 35px;
  }
}
.pricing-card-items h2 span {
  font-size: 32px;
  font-weight: 400;
}
.pricing-card-items .pricing-list {
  margin-top: 10px;
  margin-bottom: 40px;
}
.pricing-card-items .pricing-list li {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.pricing-card-items .pricing-list li i {
  margin-right: 5px;
}
.pricing-card-items .pricing-list li:not(:last-child) {
  margin-bottom: 14px;
}
.pricing-card-items .theme-btn {
  background-color: var(--white);
  color: var(--header);
  text-align: center;
  position: relative;
  z-index: 999;
}
.pricing-card-items .theme-btn::before {
  background-color: var(--header);
}
.pricing-card-items .theme-btn:hover {
  color: var(--white);
}
.pricing-card-items .theme-btn:hover::before {
  height: 635%;
}
.pricing-card-items .theme-btn:hover img {
  filter: brightness(0) invert(1);
}
.pricing-card-items:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
  z-index: 999;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title .sub-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  font-family: "Anton", sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid var(--header);
  padding: 10px 20px;
  border-radius: 100px;
  padding-left: 25px;
  display: inline-block;
  position: relative;
}
.section-title .sub-title::before {
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background-color: var(--text-2);
  left: 0;
  position: absolute;
  content: "";
  top: 15px;
  left: 13px;
}
.section-title h2 {
  text-transform: uppercase;
}
.section-title h2 span {
  color: var(--theme);
}
.section-title.style-2 h2 {
  font-size: 64px;
}
@media (max-width: 1399px) {
  .section-title.style-2 h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .section-title.style-2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .section-title.style-2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-title.style-2 h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .section-title.style-2 h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .section-title.style-2 h2 {
    font-size: 25px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg-2);
}

.section-bg-1 {
  background-color: var(--bg);
}

.section-bg-2 {
  background-color: #F7F7F7;
}

.header-bg {
  background-color: var(--header);
}

.theme-bg {
  background-color: var(--theme);
}

.footer-bg-2 {
  background-color: #0F0F0F;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-card-items {
  margin-top: 30px;
}
.service-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
  margin-bottom: 6px;
}
.service-intro .service-intro-content {
  max-width: 560px;
  justify-self: end;
}
.service-intro .service-intro-content p {
  margin: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .service-intro {
    grid-template-columns: 1fr;
  }
  .service-intro .service-intro-content {
    justify-self: start;
  }
}
.service-card-items .service-image {
  position: relative;
  overflow: hidden;
}

.service-card-items .service-image {
  position: relative;
  overflow: hidden;
}

.service-card-items .service-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(1, 30, 60, 0.3);
}

.service-card-items .service-image .shape {
  position: absolute;
  right: -100px;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.service-card-items .service-image img {
  width: 100%;
  height: 100%;
}
.service-card-items .service-image .service-content {
  background-color: var(--white);
  padding: 15px 15px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
}
.service-card-items .service-image .service-content .icon img {
  width: initial;
  height: initial;
  max-width: 50px;
}
.service-card-items .service-image .service-content h5 {
  line-height: normal;
}
.service-card-items .service-image .service-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.service-card-items .service-image .service-content h5 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-card-items:hover .service-image .shape {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.service-details-wrapper .service-main-item .service-single-sideber {
  background: #F3F3F3;
  padding: 30px 40px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-main-item .service-single-sideber {
    padding: 30px;
  }
}
.service-details-wrapper .service-main-item .service-single-sideber .service-category {
  margin-top: 25px;
}
.service-details-wrapper .service-main-item .service-single-sideber .service-category li {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.service-details-wrapper .service-main-item .service-single-sideber .service-category li img {
  margin-right: 8px;
}
.service-details-wrapper .service-main-item .service-single-sideber .service-category li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.service-details-wrapper .service-main-item .theme-btn {
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 999;
  margin-bottom: 30px;
}
.service-details-wrapper .service-main-item .theme-btn::before {
  background-color: var(--header);
}
.service-details-wrapper .service-main-item .theme-btn:hover {
  color: var(--white);
}
.service-details-wrapper .service-main-item .theme-btn:hover::before {
  height: 622%;
}
.service-details-wrapper .service-main-item h4 {
  font-family: "Manrope", sans-serif;
  margin-bottom: 30px;
}
.service-details-wrapper .service-main-item .service-post-item {
  margin-bottom: 30px;
}
.service-details-wrapper .service-main-item .service-post-item .service-thumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.service-details-wrapper .service-main-item .service-post-item .service-thumb-item .content h6 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-details-wrapper .service-main-item .service-post-item .service-thumb-item .content span {
  color: #111;
}
.service-details-wrapper .service-main-item .single-service-widget {
  background: #F3F3F3;
  padding: 30px 40px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-main-item .single-service-widget {
    padding: 30px;
  }
}
.service-details-wrapper .service-main-item .single-service-widget .widget-title {
  margin-bottom: 15px;
}
.service-details-wrapper .service-main-item .single-service-widget .tagcloud a {
  display: inline-block;
  padding: 11px 13px;
  line-height: 1;
  font-weight: 400;
  border: 1px solid #E6E6E6;
  margin-right: 10px;
  margin-bottom: 10px;

}
.service-details-wrapper .service-main-item .single-service-widget .tagcloud a:last-child {
  margin-right: 0;
}
.service-details-wrapper .service-main-item .single-service-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.service-details-wrapper .service-details-post .details-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-details-post .details-content {
  margin-top: 30px;
}
.service-details-wrapper .service-details-post .details-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-post .details-content h3 {
    font-size: 22px;
  }
}
.service-details-wrapper .service-details-post .details-content p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(1, 30, 60, 0.8);
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-post .details-content p {
    font-size: 16px;
  }
}
.service-details-wrapper .service-details-post .details-content .list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details-post .details-content .list li {
  font-size: 17px;
  font-weight: 500;
  color: rgba(1, 30, 60, 0.8);
  padding-left: 20px;
  position: relative;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-post .details-content .list li {
    font-size: 16px;
  }
}
.service-details-wrapper .service-details-post .details-content .list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 30px;
  background-color: rgba(1, 30, 60, 0.8);
}
.service-details-wrapper .service-details-post .details-content .list li:not(:last-child) {
  margin-bottom: 5px;
}

.testimonial-section.section-padding {
  padding-top: 70px;
  padding-bottom: 70px;
}
.testimonial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  gap: 36px;
}
.testimonial-intro h2 {
  margin-bottom: 0;
}
.testimonial-intro p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}
.testimonial-wrapper {
  margin-top: 30px;
}
.testimonial-wrapper .row {
  align-items: stretch;
  min-height: 220px;
}
.testimonial-wrapper .testimonial-image {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .row {
    min-height: 205px;
  }
  .testimonial-wrapper .testimonial-image {
    max-height: 205px;
    min-height: 205px;
  }
}
.testimonial-wrapper .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.1);
}
.testimonial-wrapper .testimonial-content {
  align-items: center;
  display: flex;
  position: relative;
  background-color: var(--theme);
  padding: 22px 28px 22px 140px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.testimonial-wrapper .testimonial-content > .testimonial-slider {
  align-self: center;
}
.testimonial-wrapper .testimonial-content .content h3 {
  margin-bottom: 10px !important;
}
.testimonial-wrapper .testimonial-slider,
.testimonial-wrapper .swiper-wrapper,
.testimonial-wrapper .swiper-slide {
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper .row > .col-lg-8 .testimonial-content {
    margin-left: -100px;
    width: calc(100% + 100px);
  }
}

@media (min-width: 1200px) {
  .testimonial-wrapper .row > .col-lg-8 {
    position: relative;
    z-index: 2;
  }
  .testimonial-wrapper .row > .col-lg-8 .testimonial-content {
    margin-left: -166px;
    width: calc(100% + 166px);
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content {
    padding: 22px 26px;
  }
}
@media (min-width: 992px)  {
  .testimonial-wrapper .row > [class*="col-lg-"] {
    display: flex;
  }
  .testimonial-wrapper .testimonial-content {
    padding: 22px 30px 22px 98px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }
  .testimonial-wrapper .testimonial-image,
  .testimonial-wrapper .testimonial-content {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .home-partner-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-wrapper .testimonial-content {
    clip-path: none;
    min-height: 0;
  }
  .testimonial-wrapper .row,
  .testimonial-wrapper .testimonial-image {
    max-height: none;
    min-height: 0;
  }
}
.testimonial-wrapper .testimonial-content .content .star {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 25px;
  margin-bottom: 20px;
}
.testimonial-wrapper .testimonial-content .content p {
  color: var(--white);
  max-width: 654px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content .content p {
    margin-bottom: 0;
  }
}
.testimonial-wrapper .testimonial-content .content .info-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.testimonial-wrapper .testimonial-content .content .info-item .content h3 {
  color: var(--white);
}
.testimonial-wrapper .testimonial-content .content .info-item .content span {
  color: var(--white);
}
.testimonial-wrapper .array-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 16px;
}
.testimonial-wrapper .array-buttons .array-prev {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .array-buttons .array-prev {
    font-size: 18px;
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
}
.testimonial-wrapper .array-buttons .array-prev:hover {
  background-color: var(--header);
}
.testimonial-wrapper .array-buttons .array-next {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper .array-buttons .array-next {
    font-size: 18px;
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
}
.testimonial-wrapper .array-buttons .array-next:hover {
  background-color: var(--theme);
}

.testimonial-wrapper-2 {
  margin-top: 48px;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 {
    margin-top: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper-2 .testimonial-item {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item {
    margin-left: 0;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-content {
  background-color: #F3F3F3;
  padding: 35px 35px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item .testimonial-content {
    padding: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-content .content .star {
  color: var(--header);
  margin-bottom: 10px;
}
.testimonial-wrapper-2 .testimonial-item .testimonial-content .content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item .testimonial-content .content p {
    margin-bottom: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-content .content h3 {
  font-size: 32px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item .testimonial-content .content h3 {
    font-size: 20px;
  }
}
.testimonial-wrapper-2 .testimonial-item .array-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.testimonial-wrapper-2 .testimonial-item .array-buttons .array-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
}
.testimonial-wrapper-2 .testimonial-item .array-buttons .array-prev:hover {
  background-color: var(--header);
}
.testimonial-wrapper-2 .testimonial-item .array-buttons .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
}
.testimonial-wrapper-2 .testimonial-item .array-buttons .array-next:hover {
  background-color: var(--theme);
}

.trainer-card-item {
  margin-top: 30px;
  /* Split line goes from bottom-left to top-right */
background: linear-gradient(
  45deg,
  #051A30 0%,
  #051A30 50%,
  #ff0336 50%,
  #ff0336 100%
);
}
.trainer-card-item .trainer-image {
  position: relative;
  overflow: hidden;
}
.trainer-card-item .trainer-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.trainer-card-item .trainer-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.trainer-card-item .trainer-image .trainer-content {
  padding: 18px 30px 18px 30px;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  z-index: 999;
}
.trainer-card-item .trainer-image .trainer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--theme);
  z-index: 1;
  transition: width 0.5s ease;
}
.trainer-card-item .trainer-image .trainer-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}
.trainer-card-item .trainer-image .trainer-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.trainer-card-item .trainer-image .trainer-content p {
  margin-top: 10px;
}
.trainer-card-item:hover .trainer-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.trainer-card-item:hover .trainer-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.trainer-card-item:hover .trainer-image .trainer-content h3 a {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.trainer-card-item:hover .trainer-image .trainer-content p {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.trainer-card-item:hover .trainer-image .trainer-content::before {
  width: 100%;
}

.trainer-wrapper-2 {
  margin-top: 48px;
}
.trainer-wrapper-2 .main-box {
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .trainer-wrapper-2 .main-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.trainer-wrapper-2 .main-box .box-2 {
  background-image: url(../img/home-2/trainer/01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 270px !important;
  height: 476px;
  position: relative;
  overflow: hidden;
  list-style: none;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
@media (max-width: 575px) {
  .trainer-wrapper-2 .main-box .box-2 {
    height: 420px;
    object-fit: cover;
  }
  .trainer-wrapper-2 .main-box .box-2 .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
  }
}
.trainer-wrapper-2 .main-box .box-2 .trainer-content {
  position: absolute;
  bottom: -100px;
  left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme);
  padding: 20px 25px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--theme);
}
@media (max-width: 1399px) {
  .trainer-wrapper-2 .main-box .box-2 .trainer-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.trainer-wrapper-2 .main-box .box-2 .trainer-content h3 {
  font-size: 32px;
}
.trainer-wrapper-2 .main-box .box-2 .trainer-content h3 a {
  color: var(--white);
}
.trainer-wrapper-2 .main-box .box-2 .trainer-content h3 a:hover {
  color: var(--white);
}
.trainer-wrapper-2 .main-box .box-2 .trainer-content p {
  color: var(--white);
  margin-top: 10px;
}
.trainer-wrapper-2 .main-box .box-2.bg-1 {
  background-image: url(../img/home-2/trainer/02.jpg);
}
.trainer-wrapper-2 .main-box .box-2.bg-2 {
  background-image: url(../img/home-2/trainer/03.jpg);
}
.trainer-wrapper-2 .main-box .box-2.bg-3 {
  background-image: url(../img/home-2/trainer/04.jpg);
}
.trainer-wrapper-2 .main-box .box-2.active {
  width: 412px !important;
}
.trainer-wrapper-2 .main-box .box-2.active .trainer-content {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}

.schedule-section .nav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
  padding-top: 48px;
}
@media (max-width: 1199px) {
  .schedule-section .nav {
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .schedule-section .nav {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.schedule-section .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--header);
  background-color: transparent;
  border: 1px dashed #011E3C;
  padding: 19px 36px;
  line-height: 1;
}
@media (max-width: 1399px) {
  .schedule-section .nav .nav-item .nav-link {
    font-size: 16px;
    padding: 18px 24px;
  }
}
.schedule-section .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

@media (max-width: 1199px) {
  .weekly-schedule-wrapper {
    max-width: 100%;
    overflow-x: auto;
  }
}
.weekly-schedule-wrapper .weekly-schedule-items {
  background-color: #F4F4F4;
  padding: 0 0;
}
@media (max-width: 1199px) {
  .weekly-schedule-wrapper .weekly-schedule-items {
    min-width: 1100px;
  }
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list {
  border-right: 1px solid rgba(205, 206, 208, 0.48);
  padding: 40px 0;
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .name-list li:not(:last-child) {
  border-bottom: 1px solid rgba(205, 206, 208, 0.48);
  padding-bottom: 30px;
  margin-bottom: 25px;
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .name-list li .title-name {
  padding-left: 40px;
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .name-list li .title-name span {
  display: inline-block;
  margin-bottom: 10.5px;
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .name-list li .title-name h4 {
  font-size: 20px;
  font-weight: 500;
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .button .theme-btn {
  background-color: transparent;
  color: var(--header);
  border: 1px solid var(--header);
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .button .theme-btn::before {
  background-color: var(--theme);
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .button .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.weekly-schedule-wrapper .weekly-schedule-items .weekly-schedule-list .button .theme-btn:hover img {
  filter: brightness(0) invert(1);
}

.trainer-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.trainer-details-wrapper .details-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .trainer-details-wrapper .details-content {
    margin-left: 0;
  }
}
.trainer-details-wrapper .details-content h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.trainer-details-wrapper .details-content h2 span {
  color: var(--theme);
}
.trainer-details-wrapper .details-content p {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .trainer-details-wrapper .details-content p {
    margin-bottom: 30px;
  }
}
.trainer-details-wrapper .details-content .progress-area {
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .trainer-details-wrapper .details-content .progress-area {
    margin-top: 30px;
  }
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items {
  width: 100%;
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items .pro-head .title {
  font-size: 18px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items .progress {
  background: var(--header);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 18px;
  width: 100%;
  border-radius: 0px;
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 18px;
  width: 0;
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.trainer-details-wrapper .details-content .progress-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}

.hero-section {
  position: relative;
  overflow: hidden; /* ensures video doesn't spill outside */
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* like background-size: cover */
  z-index: 0;
  filter: grayscale(1);
}

/* keep content above video */
.hero-section .container {
  position: relative;
  z-index: 3;
}

/* blue hero tint for readability, matching the site's page heroes */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 30, 60, 0.58) 0%, rgba(1, 30, 60, 0.42) 46%, rgba(1, 30, 60, 0.24) 100%),
    rgba(1, 30, 60, 0.28);
  z-index: 1;
}
