/*-----------------------------------------------------------------------------------

  Theme Name: Karex - Auto Service and Car Dealer Listing HTML Template.
  Author: RRDevs
  Support: https://support.rrdevs.net
  Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************
/* variable css */
/* typography css */
/* animation css */
/* common css */
/* theme css */
/* preloader css */
/* scroll css */
/* button css */
/* menu css */
/* modal css */
/* cursor css */
/* header css */
/* footer css */
/* digital agency page css */
/* startup agency page css */
/* creative agency page css */
/* design studio page css */
/* branding agency page css */
/* video production page css */
/* portfolio minimal page css */
/* Portfolio Grid page css */
/* full screen menu slider page css */
/* ai agency page css */
/* about us page css */
/* service page css */
/* service details page css */
/* work page css */
/* work details page css */
/* team page css */
/* team details page css */
/* blog page css */
/* blog details page css */
/* contact page css */
/* error page css */
/* marketing agency page css */
/* modern agency page css */
/* image reveal hover page css */
/* agency portfolio page css */
/* agency portfolio 2 page css */
/* portfolio massonary page css */
/* portfolio full page css */
/* full screen clam slider page css */
/* === Colors variable scss (index 01) === */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary: #E71010;
  --secondary: #141414;
  --bg: #0E1117;
  --bg-2: #151515;
  --bg-3: #161921;
  --light_bg: #F6F6F6;
  --light_bg-2: #F5F3EF;
  --dark-blue_bg: #12151C;
  --dark-blue_bg-2: #0E1117;
  --body_text: #74787C;
  --border: #EBEBEB;
  --black: #010101;
  --black-1: #111111;
  --white: #FFFFFF;
}

/* === Responsive variable scss (index 02) === */
/* === For Box Layout scss (index 03) === */
/* === Responsive container scss (index 04) === */
/* === heading scss (index 01) === */
/* === dark scss (index 01) === */
/* === bg primary  scss (index 01) === */
/* === Transition multiple scss (index 01) === */
/* === Transform scss (index 01) === */
/* === Flexbox scss (index 01) === */
/* === Font Family scss (index 01) === */
:root {
  --font_inter: "Inter", sans-serif;
  --font_awesome: "Font Awesome 6 Pro";
}

/* === Defalut Style scss (index 03) === */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font_inter);
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.48px;
  color: var(--secondary);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  color: var(--primary);
  line-height: 1.22;
  font-family: var(--font_inter);
  font-weight: 500;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}

a:hover {
  color: var(--primary);
}

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

p {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--body_text);
}

strong {
  font-weight: 500;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.medium {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* === Gutter scss (index 03) === */
@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .row.g-0 {
    padding-right: 0;
    padding-left: 0;
  }

  br {
    display: none;
  }
}

main {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

/* animation css */
.skillInLeft {
  animation: skillInLeft 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes skillInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.upDown {
  animation: upDown 1.3S infinite alternate;
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.ripple {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  border-radius: 50%;
  animation: ripple 1.5s linear infinite;
  background: rgba(255, 255, 255, 0.5);
}

.ripple.delay {
  animation-delay: 0s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* === Scrollbar scss (index 01) === */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* === positioning scss (index 02) === */
.rr-pos-rel {
  position: relative;
}

.rr-pos-abs {
  position: absolute;
}

.rr-ov-hidden {
  overflow: hidden;
}

/* === Container scss (index 03) === */
.container {
  --bs-gutter-x: 30px;
  max-width: 1320px;
}

.container.large {
  --bs-gutter-x: 30px;
  max-width: 1560px;
}

.footer-container {
  --bs-gutter-x: 30px;
  max-width: 1408px;
}

/* === Background scss (index 04) === */
.rr-bg-primary {
  background-color: var(--primary);
}

/* === Parallax view scss (index 05) === */
.parallax-view {
  overflow: hidden;
}

.go-down {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 50%;
}

.dark .go-down {
  color: var(--black);
}

.mt-minus-3 {
  margin-top: -3px;
}

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

.mb-minus-24 {
  margin-bottom: -24px;
}

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

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

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.fix {
  overflow: hidden;
}

.br-5 {
  border-radius: 5px;
}

.br-5 img {
  border-radius: 5px;
}

.br-10 {
  border-radius: 10px;
}

.br-10 img {
  border-radius: 10px;
}

.br-20 {
  border-radius: 20px;
}

.br-20 img {
  border-radius: 20px;
}

.mb-0 {
  margin-bottom: 0;
}

.text_center {
  text-align: center;
}

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

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

.z-index-1 {
  z-index: 1;
}

/* === ontainer styling with full HD support  scss (index 08) === */
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: var(--white);
  right: -6px;
  width: 20px;
  background: transparent;
  text-align: center;
  line-height: 50px;
  padding: 0;
  height: 10px;
  margin-top: 0px;
  opacity: 1;
}

/* ===Inverted scss (index 09) === */
.text-invert>div {
  background-image: linear-gradient(to right, var(--primary) 50%, #CDC9C6 51%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* === Sticky header scss (index 14) === */
.header-sticky {
  transition: all 0.5s;
}

.transformed {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  position: fixed !important;
  transform: translateY(-100%);
}

.transformed .header-area__inner {
  height: 80px;
}

.sticky {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  transform: translateY(0%);
  position: fixed !important;
  background-color: var(--white);
}

/* === inverted text scss (index 15) === */
.text-invert>div {
  background-image: linear-gradient(to right, var(--primary) 50%, rgba(17, 17, 17, 0.3) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* === theme scss (index 01) === */
html {
  --container-max-widths: 1320px;
}

@media only screen and (max-width: 1399px) {
  html {
    --container-max-widths: 1140px;
  }
}

@media only screen and (max-width: 1199px) {
  html {
    --container-max-widths: 960px;
  }
}

@media only screen and (max-width: 991px) {
  html {
    --container-max-widths: 720px;
  }
}

@media only screen and (max-width: 767px) {
  html {
    --container-max-widths: 540px;
  }
}

.body-wrapper {
  background-color: var(--white);
}

.body-wrapper.dark {
  background-color: var(--black);
}

.img_anim_reveal {
  visibility: hidden;
  overflow: hidden;
}

.img_anim_reveal img {
  object-fit: cover;
  transform-origin: left;
}

.anim-reveal {
  overflow: hidden;
}

.anim-reveal-line {
  overflow: hidden;
}

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

.color-black {
  color: var(--black);
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

/* === BG Color scss (index 02) === */
.theme-bg-white {
  background-color: var(--white);
}

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

.dark .theme-bg-black {
  background-color: #171717;
}

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

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

.theme-bg-transparent {
  background-color: transparent;
}

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

/* === Z-index scss (index 03) === */
.zi-1 {
  z-index: 1;
}

.zi-2 {
  z-index: 2;
}

.zi-0 {
  z-index: 0;
}

.zi--1 {
  z-index: -1;
}

/* === Text Border scss (index 04) === */
.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;
}

.vertically-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === Text Indent scss (index 05) === */
.text-indent-40 {
  text-indent: 40px;
}

.text-indent-50 {
  text-indent: 50px;
}

header {
  margin-bottom: -1px;
  z-index: 100;
}

section {
  margin-bottom: -1px;
}

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

.dir-rtl {
  direction: rtl;
}

.show-light {
  display: inline-block;
}

.dark .show-light {
  display: none;
}

.show-dark {
  display: none;
}

.dark .show-dark {
  display: inline-block;
}

.line-divider-sm {
  height: 0.5px;
  background-color: var(--black-9);
}

/* === Section spacing  scss (index 07) === */
.section-space {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 991px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .section-space {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.section-space-top {
  padding-top: 120px;
}

@media only screen and (max-width: 991px) {
  .section-space-top {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .section-space-top {
    padding-top: 70px;
  }
}

.section-space-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 991px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 70px;
  }
}

.section-space-bottom-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .section-space-bottom-100 {
    padding-bottom: 80px;
  }
}

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

/* === preloader scss (index 02) === */
.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--action);
  z-index: 99999999999999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #000;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  z-index: 20;
}

@media only screen and (max-width: 767px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 50px;
  }
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* === scroll scss (index 01) === */
.scroll__down {
  display: flex;
  gap: 20px;
  align-items: center;
}

.scroll__down p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  text-transform: uppercase;
  color: var(--white);
}

.scroll__down span {
  width: 66px;
  height: 106px;
  border: 1px solid var(--black-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 89px;
}

.scroll__down span i {
  color: var(--white);
}

.scroll__down-wrapper {
  height: 425px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1399px) {
  .scroll__down-wrapper {
    height: 380px;
  }
}

@media only screen and (max-width: 1199px) {
  .scroll__down-wrapper {
    height: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .scroll__down-wrapper {
    height: auto;
    padding: 40px 0;
  }
}

.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 0px;
  z-index: 9999;
  background: var(--white);
  border-radius: 100px;
  mix-blend-mode: exclusion;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.scroll-top.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top-writer {
  width: 105px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  background-image: url(../imgs/writer/go-top.webp);
  background-position: right center;
  background-repeat: no-repeat;
  right: 16%;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
}

.go-top-writer:hover {
  color: var(--primary);
}

.go-top-writer.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .go-top-writer br {
    display: block;
  }
}

/* === progress-wrap scss (index 01) === */
.progress-wrap {
  position: fixed;
  right: 80px;
  bottom: 154px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 9999;
  opacity: 0;
  background-color: var(--primary);
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
}

@media only screen and (max-width: 767px) {
  .progress-wrap {
    right: 20px;
    bottom: 30px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: var(--primary);
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--white);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
  background-color: var(--primary);
}

.dark .progress-wrap::after {
  color: var(--black);
}

.progress-wrap svg path {
  fill: var(--black-6);
}

.progress-wrap svg.progress-circle path {
  fill: var(--white);
  stroke: transparent;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* === primary btn scss (index 01) === */
.rr-btn {
  z-index: 5;
  font-size: 16px;
  overflow: hidden;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding: 14.5px 33.8px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  justify-content: center;
  text-transform: capitalize;
  font-family: var(--font_inter);
  background-color: var(--primary);
}

.rr-btn:hover::before,
.rr-btn:focus::before {
  height: 100%;
}

.rr-btn:hover .btn-wrap .text-one,
.rr-btn:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}

.rr-btn:hover .btn-wrap .text-two,
.rr-btn:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
}

.rr-btn:after {
  display: block;
  clear: both;
  content: "";
}

.rr-btn::before {
  background-color: var(--secondary);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}

.rr-btn .btn-wrap {
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.rr-btn .btn-wrap .text-one,
.rr-btn .btn-wrap .text-two {
  gap: 4px;
  display: flex;
  margin-right: 1px;
  align-items: center;
}

.rr-btn .btn-wrap .text-one i,
.rr-btn .btn-wrap .text-two i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.rr-btn .btn-wrap .text-one {
  position: relative;
  color: var(--white);
  transition: all 0.5s;
}

.rr-btn .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}

.rr-btn-2::before {
  background-color: var(--white);
}

.rr-btn-2 .btn-wrap .text-two {
  color: var(--secondary);
}

.rr-btn-3 {
  padding: 19.5px 43.14px;
}

.mean-container {
  margin-bottom: 35px;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}

.mean-container a.meanmenu-reveal span {
  height: 3px;
  display: block;
  margin-top: 3px;
  background: var(--white);
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  float: left;
  width: 100%;
}

.mean-container .mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li.dropdown-opened>a,
.mean-container .mean-nav ul li.dropdown-opened>span {
  color: var(--primary);
}

.mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked,
.mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}

.mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked i,
.mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked i {
  color: var(--white);
  -webkit-transform: rotate(90deg) translate(-84%, 30%);
  -moz-transform: rotate(90deg) translate(-84%, 30%);
  -ms-transform: rotate(90deg) translate(-84%, 30%);
  -o-transform: rotate(90deg) translate(-84%, 30%);
  transform: rotate(90deg) translate(-84%, 30%);
}

.mean-container .mean-nav ul li.mean-last {
  border-bottom: none;
  margin-bottom: 0;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  top: 50%;
  left: 50%;
  color: var(--white);
  position: absolute;
  display: inline-block;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li span {
  margin: 0;
  float: left;
  width: 100%;
  display: block;
  padding: 10px 0;
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  text-transform: capitalize;
  border-top: 1px solid rgba(255, 255, 255, 0.079);
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li span:hover {
  color: var(--primary);
}

.mean-container .mean-nav ul li a:hover i,
.mean-container .mean-nav ul li span:hover i {
  color: var(--white);
}

.mean-container .mean-nav ul li a.mean-expand,
.mean-container .mean-nav ul li span.mean-expand {
  right: 0;
  top: 1px;
  z-index: 2;
  height: 30px;
  width: 30px;
  line-height: 1;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 400;
  border-radius: 3px;
  position: absolute;
  text-align: center;
  font-family: var(--font_awesome);
  padding: 0 !important;
  color: var(--body_text);
  border: 1px solid rgba(255, 255, 255, 0.079) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.mean-container .mean-nav ul li a.mean-expand:hover i,
.mean-container .mean-nav ul li span.mean-expand:hover i {
  color: var(--white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked,
.mean-container .mean-nav ul li span.mean-expand.mean-clicked {
  color: var(--white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover,
.mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i,
.mean-container .mean-nav ul li span.mean-expand.mean-clicked i {
  display: block;
  font-family: var(--font_awesome);
}

.mean-container .mean-nav ul li li a {
  width: 90%;
  padding: 10px 7%;
  text-shadow: none !important;
  visibility: visible;
}

.mean-container .mean-nav ul li li li a {
  width: 80%;
  padding: 10px 12%;
}

.mean-container .mean-nav ul li li li li a {
  width: 70%;
  padding: 10px 17%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 60%;
  padding: 10px 20%;
}

.mean-container .mean-bar {
  background: none;
  float: left;
  width: 100%;
  position: relative;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* === header scss (index 01) === */
.header_3 .header__logo {
  position: relative;
}

.header_3 .header__logo::before {
  content: "";
  width: 591px;
  height: 148px;
  left: -102%;
  top: -49px;
  z-index: -1;
  position: absolute;
  background-color: #EDEDED;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

@media only screen and (max-width: 1399px) {
  .header_3 .header__logo::before {
    display: none;
  }
}

.header_3 .header__logo::after {
  content: "";
  width: 40px;
  height: 148px;
  right: 24px;
  top: -49.5px;
  position: absolute;
  background-color: var(--primary);
  clip-path: polygon(100% 0, 100% 0, 50% 100%, 0 100%);
}

@media only screen and (max-width: 1199px) {
  .header_3 .header__logo::after {
    right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .header_3 .header__logo::after {
    display: none;
  }
}

.header_3 .header__follow-us {
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_3 .header__follow-us__border {
  margin-right: -100%;
  margin-left: -54px;
  border-bottom: 1px solid #EDEDED;
}

@media only screen and (max-width: 1199px) {
  .header_3 .header__follow-us__border {
    margin-left: -33px;
  }
}

.header_3 .header__top-right {
  display: flex;
  align-items: center;
}

.header_3 .header__lan {
  position: relative;
  margin-left: 20px;
  padding-left: 21px;
}

.header_3 .header__lan::before {
  content: "";
  width: 1px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background-color: #E2E2E2;
}

@media only screen and (max-width: 767px) {
  .header_3 .header__lan {
    display: none;
  }
}

.header_3 .header__lan .nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  height: auto;
  outline: none;
  padding-left: 0;
  padding-right: 16px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.header_3 .header__lan .nice-select .current {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.header_3 .header__lan .nice-select .icon {
  top: 1px;
  right: 0;
  position: absolute;
  transition: all 0.3s;
}

.header_3 .header__lan .nice-select .icon i {
  font-size: 14px;
  font-weight: 400;
}

.header_3 .header__lan .nice-select .list {
  background-color: var(--white);
}

.header_3 .header__lan .nice-select .option {
  line-height: 1;
  font-size: 14px;
  min-height: auto;
  font-weight: 400;
  padding: 12px 10px;
  color: var(--secondary);
}

.header_3 .header__lan .nice-select .option:hover {
  color: var(--primary);
}

.header_3 .header__lan .nice-select .option.selected {
  font-weight: 600;
}

.header_3 .header__lan .nice-select:after {
  display: none;
}

.header_3 .header__lan .nice-select.open .icon {
  top: 0;
  transform: rotate(180deg);
}

.header_3 .header__location a {
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  color: var(--secondary);
}

.header_3 .header__location a:hover {
  color: var(--primary);
}

.header_3 .header__location a .icon i {
  color: var(--primary);
}

.header_3 .header__social {
  gap: 15px;
  display: flex;
  align-items: center;
}

.header_3 .header__social ul {
  gap: 20px;
  display: flex;
  list-style: none;
  align-items: center;
}

.header_3 .header__social ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--body_text);
}

.header_3 .header__social ul li a:hover {
  color: var(--primary);
}

.header_3 .header__social span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--body_text);
}

.header_3 .header__contact {
  display: flex;
  padding: 32px 0;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .header_3 .header__contact {
    padding: 17px 0;
  }
}

.header_3 .header__contact-item {
  gap: 15px;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 50px;
  padding-left: 51px;
}

@media only screen and (max-width: 1399px) {
  .header_3 .header__contact-item {
    margin-left: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .header_3 .header__contact-item {
    margin-left: 20px;
    padding-left: 20px;
    flex-wrap: wrap;
  }
}

.header_3 .header__contact-item:first-of-type {
  margin-left: 0;
  padding-left: 0;
}

.header_3 .header__contact-item:first-of-type::before {
  display: none;
}

.header_3 .header__contact-item::before {
  content: "";
  width: 1px;
  height: 99px;
  left: 0;
  position: absolute;
  background-color: #EDEDED;
}

.header_3 .header__contact-item .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  background: #F5E7E7;
  justify-content: center;
  color: var(--primary);
}

.header_3 .header__contact-item .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
}

.header_3 .header__contact-item .text a {
  font-weight: 600;
  color: var(--secondary);
}

.header_3 .header__contact-item .text a:hover {
  color: var(--primary);
}

.header_3 .header__contact-item .text cite {
  font-style: normal;
  font-weight: 600;
  color: var(--secondary);
}

.header_3 .header__wrap {
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  position: absolute;
  backdrop-filter: blur(50px);
  background: rgba(0, 0, 0, 0.43);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

@media only screen and (max-width: 991px) {
  .header_3 .header__main {
    padding: 15px 0;
  }
}

.header_3 .header__menu__wrapper .main-menu ul {
  list-style: none;
}

.header_3 .header__menu__wrapper .main-menu ul li {
  margin: 0 22px;
  position: relative;
  display: inline-block;
}

@media only screen and (max-width: 1199px) {
  .header_3 .header__menu__wrapper .main-menu ul li {
    margin: 0 10px;
  }
}

.header_3 .header__menu__wrapper .main-menu ul li>a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  padding: 34.5px 0;
  position: relative;
  display: inline-block;
  color: var(--white);
  font-family: var(--font_inter);
}

.header_3 .header__menu__wrapper .main-menu ul li.has-dropdown {
  position: relative;
  padding-right: 17px;
}

.header_3 .header__menu__wrapper .main-menu ul li.has-dropdown::after {
  content: "\f107";
  right: 0;
  top: 50%;
  font-size: 16px;
  font-weight: 900;
  position: absolute;
  transform: translateY(-50%);
  color: var(--white);
  transition: all 0.3s ease-in-out;
  font-family: var(--font_awesome);
}

.header_3 .header__menu__wrapper .main-menu ul li .sub-menu {
  left: 0;
  top: 90%;
  opacity: 0;
  width: 300px;
  padding: 15px 0;
  position: absolute;
  visibility: hidden;
  background: var(--white);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 20px 30px rgba(1, 15, 28, 0.1);
}

.header_3 .header__menu__wrapper .main-menu ul li .sub-menu li {
  margin: 0;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.header_3 .header__menu__wrapper .main-menu ul li .sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.header_3 .header__menu__wrapper .main-menu ul li .sub-menu li:hover {
  margin-left: 10px;
}

.header_3 .header__menu__wrapper .main-menu ul li .sub-menu li:hover a {
  color: var(--primary);
}

.header_3 .header__menu__wrapper .main-menu ul li.actives.has-dropdown::after {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.header_3 .header__menu__wrapper .main-menu ul li.actives a {
  font-weight: 500;
}

.header_3 .header__menu__wrapper .main-menu ul li.actives a::before {
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.header_3 .header__menu__wrapper .main-menu ul li:hover.has-dropdown::after {
  top: 50%;
  color: var(--primary);
  transform: translateY(-50%) rotate(180deg);
}

.header_3 .header__menu__wrapper .main-menu ul li:hover a {
  color: var(--primary);
}

.header_3 .header__menu__wrapper .main-menu ul li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.header_3 .header__menu-toggle {
  width: 45px;
  height: 45px;
  margin-left: 20px;
  border-radius: 500px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
}

.header_3 .header__menu-toggle .menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  margin-bottom: 4px;
  background: var(--white);
}

.header_3 .header__menu-toggle .menu-toggle span:last-of-type {
  margin-bottom: 0;
}

.header_2__middle__wrap {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
}

.header_2__top-wrap {
  display: flex;
  padding: 14.5px 0;
  align-items: center;
  justify-content: space-between;
}

.header_2__text {
  gap: 10px;
  display: flex;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  color: var(--white);
  font-family: var(--font_inter);
}

.header_2__text a {
  gap: 4px;
  display: flex;
  font-weight: 700;
  align-items: center;
  color: var(--primary);
}

.header_2__text a i {
  line-height: 1;
  font-size: 16px;
  font-weight: 900;
}

.header_2__location a {
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  color: var(--white);
}

.header_2__location a i {
  font-weight: 900;
  color: var(--primary);
}

.header_2__location a:hover {
  color: var(--primary);
}

.header_2__contact {
  display: flex;
  padding: 30.5px 0;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header_2__contact {
    padding: 20px 0;
  }
}

.header_2__contact-info {
  gap: 15px;
  display: flex;
  margin-left: 60px;
  padding-left: 61px;
  align-items: center;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .header_2__contact-info {
    margin-left: 30px;
    padding-left: 30px;
  }
}

.header_2__contact-info::before {
  content: "";
  width: 1px;
  height: 116px;
  left: 0;
  position: absolute;
  background-color: var(--border);
}

.header_2__contact-info .icon i {
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--secondary);
}

.header_2__contact-info .text span {
  font-size: 14px;
  line-height: 1;
  display: block;
  font-weight: 400;
  margin-bottom: 7px;
  color: var(--body_text);
}

.header_2__contact-info .text a {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: var(--secondary);
}

.header_2__contact-info .text a:hover {
  color: var(--primary);
}

.header_2__btn .rr-btn {
  line-height: 1.1;
  padding: 18.71px 44.7px;
}

.header_2 .header__wrap {
  z-index: 1;
  padding: 0 20px;
  padding-left: 23px;
  position: relative;
  margin-bottom: -42px;
  border-radius: 500px;
  background: var(--white);
  border: 1px solid var(--border);
}

.header_2 .header__menu__wrapper .main-menu ul li>a {
  font-weight: 600;
  padding: 33.5px 0;
  color: var(--secondary);
}

.header_2 .header__menu__wrapper .main-menu ul li.has-dropdown::after {
  color: var(--secondary);
}

.header_2 .header__cart button {
  width: 45px;
  height: 45px;
  display: flex;
  margin-left: 15px;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--secondary);
}

.header_2 .header__cart button i {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}

.header_2 .header__cart button:hover i {
  color: var(--primary);
}

.header_2 .header__menu-toggle {
  margin-left: 15px;
  background-color: var(--secondary);
}

.header__search button {
  width: 45px;
  height: 45px;
  display: flex;
  margin-left: 15px;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--secondary);
}

.header__search button i {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}

.header__search button:hover i {
  color: var(--primary);
}

.header_1 {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
}

.header_1 .header__wrap {
  position: inherit;
  border-bottom: none;
  backdrop-filter: blur(30px);
  background: rgba(20, 20, 20, 0.58);
}

.header_1 .header__menu__wrapper {
  margin-left: 170px;
}

@media only screen and (max-width: 1399px) {
  .header_1 .header__menu__wrapper {
    margin-left: 75px;
  }
}

@media only screen and (max-width: 1199px) {
  .header_1 .header__menu__wrapper {
    margin-left: 0;
  }
}

.header_1 .header__menu__wrapper .main-menu ul li>a {
  padding: 50px 0;
}

.header_1 .header__logo::before {
  display: none;
}

.header_1 .header__logo::after {
  display: none;
}

.header_1 .header__follow-us {
  padding: 2.5px 0;
}

.header_1 .header__location a {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.header_1 .header__location a .icon i {
  color: var(--white);
}

.header_1 .header__location a:hover {
  color: var(--secondary);
}

.header_1 .header__social span {
  font-size: 16px;
  color: var(--white);
}

.header_1 .header__social ul li a {
  font-size: 16px;
  color: var(--white);
}

.header_1 .header__social ul li a:hover {
  color: var(--secondary);
}

.header_1 .header__lan .nice-select .current {
  font-size: 16px;
  color: var(--white);
}

.header_1 .header__lan .nice-select .icon i {
  font-size: 16px;
  color: var(--white);
}

.header_1 .header__lan::before {
  height: 45px;
  background-color: #FE3F3F;
}

.header_1 .header__menu-toggle {
  width: 50px;
  height: 50px;
  background-color: var(--white);
}

.header_1 .header__menu-toggle .menu-toggle span {
  width: 16px;
  background: var(--secondary);
}

.header_1 .header__search button {
  width: 50px;
  height: 50px;
  margin-left: 20px;
  background-color: var(--white);
}

.header_1 .header__search button i {
  font-size: 16px;
  color: var(--secondary);
}

.header_1 .header__search button:hover i {
  color: var(--primary);
}

.header_1 .header__btn .rr-btn {
  line-height: 1.1;
  padding: 16.21px 35.7px;
}

.header-4-container {
  --bs-gutter-x: 30px;
  max-width: 1634px;
}

.header_4 {
  padding: 30px 0;
  background-color: #131722;
}

@media only screen and (max-width: 991px) {
  .header_4 {
    padding: 15px 0;
  }
}

.header_4 .header__wrap {
  border-radius: 15px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header_4 .header__lan::before {
  height: 57px;
  background-color: rgba(255, 255, 255, 0.1);
}

.header_4 .header__follow-us {
  padding: 8.5px 0;
  padding-left: 37px;
  padding-right: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1199px) {
  .header_4 .header__follow-us {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header_4 .header__social ul li a:hover {
  color: var(--primary);
}

.header_4 .header__main {
  padding-left: 37px;
  padding-right: 30px;
}

@media only screen and (max-width: 1199px) {
  .header_4 .header__main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .header_4 .header__main {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header_4 .header__menu__wrapper {
  margin-left: 80px;
}

@media only screen and (max-width: 1399px) {
  .header_4 .header__menu__wrapper {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .header_4 .header__menu__wrapper .main-menu ul li {
    margin: 0 18px;
  }
}

.header_4 .header__menu__wrapper .main-menu ul li>a {
  padding: 47px 0;
}

.header_4 .header__menu-toggle {
  background-color: #FDEAEC;
}

.header_4 .header__contact {
  gap: 40px;
  padding: 0;
}

.header_4 .header__contact-item {
  gap: 10px;
  margin-left: 0;
  padding-left: 0;
}

.header_4 .header__contact-item::before {
  display: none;
}

.header_4 .header__contact-item .icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  color: var(--white);
  background: #262626;
}

.header_4 .header__contact-item .icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

.header_4 .header__contact-item .text {
  font-weight: 500;
  color: var(--white);
}

.header_4 .header__contact-item .text a {
  color: var(--white);
}

.header_4 .header__contact-item .text a:hover {
  color: var(--primary);
}

.header_4 .header__search button {
  background-color: #FDEAEC;
}

.header_5 {
  padding: 0;
  background-color: var(--white);
}

.header_5 .header__top {
  z-index: 1;
  margin-top: 10px;
  position: relative;
  background-color: var(--primary);
}

.header_5 .header__top::before {
  content: "";
  top: -10px;
  left: 0px;
  max-width: 922px;
  width: 100%;
  height: 120%;
  position: absolute;
  background-color: var(--secondary);
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
}

@media only screen and (max-width: 1399px) {
  .header_5 .header__top::before {
    max-width: 670px;
  }
}

@media only screen and (max-width: 1199px) {
  .header_5 .header__top::before {
    max-width: 590px;
  }
}

.header_5 .header__social ul li a:hover {
  color: var(--secondary);
}

.header_5 .header__follow-us {
  padding: 0;
  padding-left: 0;
  padding-right: 0;
  border-bottom: none;
  transform: translateY(-5px);
}

.header_5 .header__contact-item .icon {
  background: var(--primary);
}

.header_5 .header__top-right {
  padding: 5px 0;
  transform: translateY(5px);
}

.header_5 .header__lan::before {
  height: 50px;
  background-color: #FE3F3F;
}

.header_5 .header__main {
  padding-left: 0px;
  padding-right: 0px;
}

.header_5 .header__menu__wrapper .main-menu ul li>a {
  color: var(--secondary);
}

.header_5 .header__menu__wrapper .main-menu ul li.has-dropdown::after {
  color: var(--secondary);
}

/* === Icon draw scss (index 01) === */
.bar-icon {
  width: 26px;
  height: 18px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  transition: color 0.2s ease-out;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  display: inline-block;
  background: var(--primary);
  transition: color 0.2s ease-out;
}

.bar-icon span:nth-child(2) {
  margin-left: 0px;
}

.bar-icon:hover span {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}

.bar-icon:hover span:nth-child(2) {
  margin-left: 0px;
  animation-delay: 0.1s;
}

.bar-icon:hover span:nth-child(3) {
  animation-delay: 0.2s;
}

.bar-icon.is-black span {
  background: var(--rr-common-black);
}

.bar-icon.is-white span {
  background: var(--rr-common-white);
}

/* === Icon draw Animate scss (index 01) === */
@keyframes qode-draw {

  0%,
  100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }

  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }

  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}

/* === footer scss (index 01) === */
.title-slide__title {
  padding: 60px 0;
  margin-right: -100%;
}

@media only screen and (max-width: 767px) {
  .title-slide__title {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .title-slide__title {
    padding: 30px 0;
  }
}

.title-slide__title h2 {
  font-weight: 700;
  font-size: 200px;
  line-height: 0.75;
  background: linear-gradient(90deg, rgba(252, 236, 237, 0.5) 0%, #E3C9CB 50.03%, rgba(252, 236, 237, 0.15) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media only screen and (max-width: 1399px) {
  .title-slide__title h2 {
    font-size: 150px;
  }
}

@media only screen and (max-width: 1199px) {
  .title-slide__title h2 {
    font-size: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .title-slide__title h2 {
    font-size: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .title-slide__title h2 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .title-slide__title h2 {
    font-size: 40px;
  }
}

.title-slide__active .swiper-wrapper {
  transition-timing-function: linear;
}

.title-slide__active .swiper-wrapper .swiper-slide {
  width: auto;
}

.footer-2__top {
  padding-top: 167px;
  padding-bottom: 80px;
  border-bottom: 1px solid #212732;
}

@media only screen and (max-width: 991px) {
  .footer-2__top {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-2__top {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.footer-2__notification {
  gap: 30px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .footer-2__notification {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.footer-2__notification .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--primary);
}

@media (max-width: 575px) {
  .footer-2__notification .icon {
    width: 60px;
    height: 60px;
  }
}

.footer-2__notification .icon i {
  font-size: 34px;
  color: var(--white);
  transform: rotate(-45deg);
}

.footer-2__notification .text h3 {
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--white);
}

@media only screen and (max-width: 767px) {
  .footer-2__notification .text h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .footer-2__notification .text h3 {
    font-size: 22px;
  }
}

.footer-2__notification .text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #A9A9AA;
}

.footer-2__form {
  text-align: end;
  max-width: 520px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .footer-2__form {
    margin-top: 20px;
    text-align: start;
  }
}

.footer-2__form input {
  max-width: 520px;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border: none;
  padding-right: 195px;
  border-radius: 500px;
  background: var(--white);
}

@media (max-width: 575px) {
  .footer-2__form input {
    padding: 0 20px;
  }
}

.footer-2__form input:focus {
  outline: none;
}

.footer-2__form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
}

.footer-2__form .rr-btn {
  top: 50%;
  right: 5px;
  font-weight: 600;
  position: absolute;
  padding: 17px 33.7px;
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .footer-2__form .rr-btn {
    position: inherit;
    margin-top: 10px;
    transform: translateY(0);
  }
}

.footer-2__wrapper {
  padding: 74px 0;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .footer-2__wrapper {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

.footer-2__widget.widget-col_1 {
  position: relative;
}

.footer-2__widget.widget-col_1::after {
  content: "";
  width: 1px;
  height: 391px;
  background-color: #212732;
  position: absolute;
  top: -74px;
  right: -3px;
}

@media only screen and (max-width: 1399px) {
  .footer-2__widget.widget-col_1::after {
    height: 398px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-2__widget.widget-col_1::after {
    display: none;
  }
}

.footer-2__widget.widget-col_2 {
  margin-left: 35px;
}

@media only screen and (max-width: 991px) {
  .footer-2__widget.widget-col_2 {
    margin-left: 0;
  }
}

.footer-2__widget.widget-col_3 {
  padding-left: 70px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .footer-2__widget.widget-col_3 {
    padding-left: 0;
  }
}

.footer-2__widget.widget-col_3::before {
  content: "";
  width: 1px;
  height: 391px;
  background-color: #212732;
  position: absolute;
  top: -74px;
  left: 10px;
}

@media only screen and (max-width: 1399px) {
  .footer-2__widget.widget-col_3::before {
    height: 398px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-2__widget.widget-col_3::before {
    display: none;
  }
}

.footer-2__widget.widget-col_3::after {
  content: "";
  width: 1px;
  height: 391px;
  background-color: #212732;
  position: absolute;
  top: -74px;
  right: 6px;
}

@media only screen and (max-width: 1399px) {
  .footer-2__widget.widget-col_3::after {
    height: 398px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-2__widget.widget-col_3::after {
    display: none;
  }
}

.footer-2__widget.widget-col_4 {
  margin-left: 20px;
}

@media only screen and (max-width: 1199px) {
  .footer-2__widget.widget-col_4 {
    margin-left: 0;
  }
}

.footer-2__dec {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #9DA0AD;
  max-width: 287px;
  margin-top: 8px;
  margin-bottom: 23px;
}

.footer-2__social ul {
  gap: 7px;
  display: flex;
  list-style: none;
  align-items: center;
}

.footer-2__social ul li a {
  width: 51px;
  height: 51px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  background: #161A24;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-2__social ul li a i {
  font-size: 16px;
}

.footer-2__social ul li a:hover {
  color: var(--white);
  background: var(--primary);
}

.footer-2__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--white);
  margin-bottom: 27px;
}

.footer-2__contact ul {
  list-style: none;
}

.footer-2__contact ul li {
  gap: 18px;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #9DA0AD;
  align-items: center;
  margin-bottom: 21px;
}

.footer-2__contact ul li:first-of-type {
  align-items: start;
  margin-bottom: 15px;
}

.footer-2__contact ul li:first-of-type a {
  transform: translateY(-6px);
}

.footer-2__contact ul li:last-of-type {
  margin-bottom: 0;
}

.footer-2__contact ul li i {
  font-size: 20px;
  color: var(--primary);
}

.footer-2__contact ul li a:hover {
  color: var(--primary);
}

.footer-2__menu ul {
  list-style: none;
}

.footer-2__menu ul li {
  margin-bottom: 15px;
}

.footer-2__menu ul li:last-of-type {
  margin-bottom: 0;
}

.footer-2__menu ul li a {
  gap: 13px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--white);
  align-items: center;
}

.footer-2__menu ul li a i {
  font-size: 12px;
  color: var(--primary);
}

.footer-2__menu ul li a:hover {
  gap: 8px;
  color: var(--primary);
}

.footer-2__post-item {
  gap: 20px;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

@media (max-width: 575px) {
  .footer-2__post-item {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.footer-2__post-item:last-of-type {
  margin-bottom: 0;
}

.footer-2__post-item .thumb {
  min-width: 80px;
  height: 80px;
}

.footer-2__post-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.footer-2__post-item .text .date {
  gap: 8px;
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
  align-items: center;
}

.footer-2__post-item .text .title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  margin: 10px 0;
  color: var(--white);
}

.footer-2__post-item .text .title a:hover {
  color: var(--primary);
}

.footer-2__post-item .text .button a {
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  position: relative;
  align-items: center;
  color: var(--primary);
}

.footer-2__post-item .text .button a i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.footer-2__post-item .text .button a::before {
  content: "";
  width: 0%;
  height: 1px;
  bottom: -2px;
  right: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}

.footer-2__post-item .text .button a:hover::before {
  width: 100%;
  left: 0;
}

.footer-2__bg_shape {
  top: -1px;
  left: 0;
  right: 0;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .footer-2__bg_shape {
    display: none;
  }
}

.copyright-2 {
  padding: 28.5px 0;
  border-top: 1px solid #212732;
}

.copyright-2__wrap {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .copyright-2__wrap {
    justify-content: center;
  }
}

.copyright-2 .copyright-text .text {
  color: var(--white);
}

.footer-3__top {
  padding: 71px 0;
  margin-bottom: 96px;
  border-bottom: 1px solid #232323;
}

@media only screen and (max-width: 991px) {
  .footer-3__top {
    padding: 50px 0;
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-3__top {
    padding: 40px 0;
    margin-bottom: 70px;
  }
}

.footer-3__main-title h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  color: var(--white);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .footer-3__main-title h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-3__main-title h3 {
    margin: 15px 0;
  }
}

@media (max-width: 575px) {
  .footer-3__main-title h3 {
    font-size: 22px;
    line-height: 32px;
  }
}

.footer-3__btn {
  text-align: end;
}

@media only screen and (max-width: 991px) {
  .footer-3__btn {
    text-align: start;
  }
}

.footer-3__btn .rr-btn-2 {
  font-size: 18px;
  line-height: 1.3;
  padding: 18.34px 41px;
  background-color: var(--white);
}

.footer-3__btn .rr-btn-2 .btn-wrap .text-one {
  color: var(--primary);
}

.footer-3__btn .rr-btn-2 .btn-wrap .text-two {
  color: var(--white);
}

.footer-3__btn .rr-btn-2 .btn-wrap .text-one i,
.footer-3__btn .rr-btn-2 .btn-wrap .text-two i {
  font-size: 19px;
}

.footer-3__btn .rr-btn-2::before {
  background-color: var(--primary);
}

.footer-3__title {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: var(--white);
  position: relative;
  margin-bottom: 42px;
  font-family: var(--font_inter);
}

.footer-3__title::before {
  content: "";
  position: absolute;
  width: 77px;
  height: 2px;
  bottom: -20px;
  left: 0;
  background: linear-gradient(270deg, rgba(232, 28, 46, 0) 0%, #E81C2E 42.5%);
}

.footer-3__dec {
  font-weight: 400;
  font-size: 16px;
  max-width: 320px;
  line-height: 26px;
  color: var(--white);
  font-family: var(--font_inter);
}

.footer-3__social {
  margin-top: 22px;
}

.footer-3__social ul {
  gap: 10px;
  display: flex;
  list-style: none;
  align-items: center;
}

.footer-3__social ul li a {
  width: 40px;
  height: 40px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  color: var(--secondary);
  justify-content: center;
  background: var(--white);
}

.footer-3__social ul li a i {
  font-size: 14px;
}

.footer-3__social ul li a:hover {
  color: var(--white);
  background: var(--primary);
}

.footer-3__menu ul {
  list-style: none;
}

.footer-3__menu ul li {
  margin-bottom: 19px;
}

.footer-3__menu ul li:last-of-type {
  margin-bottom: 0;
}

.footer-3__menu ul li a {
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  font-family: var(--font_inter);
}

.footer-3__menu ul li a:hover {
  color: var(--primary);
}

.footer-3__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font_inter);
}

.footer-3__form {
  position: relative;
}

.footer-3__form input {
  width: 100%;
  height: 55px;
  border: none;
  padding: 0 30px;
  border-radius: 100px;
  padding-right: 142px;
  color: var(--white);
  background: #222222;
}

@media only screen and (max-width: 1199px) {
  .footer-3__form input {
    padding: 0 30px;
  }
}

.footer-3__form input:focus {
  outline: none;
}

.footer-3__form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-family: var(--font_inter);
}

.footer-3__form .rr-btn-2 {
  right: 0;
  top: 50%;
  font-weight: 600;
  position: absolute;
  padding: 19.5px 28.6px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1199px) {
  .footer-3__form .rr-btn-2 {
    margin-top: 10px;
    position: inherit;
    transform: translateY(0);
  }
}

.footer-3__widget.widget-col_3 {
  margin-left: 22px;
}

@media only screen and (max-width: 1199px) {
  .footer-3__widget.widget-col_3 {
    margin-left: 0;
  }
}

.footer-3__widget.widget-col_4 {
  margin-left: 40px;
}

@media only screen and (max-width: 1199px) {
  .footer-3__widget.widget-col_4 {
    margin-left: 0;
  }
}

.footer-3__bg-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  background-position: right;
  background-repeat: no-repeat;
}

.footer-3__bg-thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(270deg, rgba(21, 21, 21, 0.9) 0%, #151515 60.4%);
}

.copyright-3__wrap {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 95px;
  align-items: center;
  padding: 34px 40px;
  border-bottom: none;
  background: #141414;
  border: 1px solid #232323;
  justify-content: space-between;
  border-radius: 15px 15px 0px 0px;
  box-shadow: 3px 0px 64px rgba(0, 0, 0, 0.33);
}

@media only screen and (max-width: 991px) {
  .copyright-3__wrap {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .copyright-3__wrap {
    padding: 20px;
    margin-top: 70px;
    justify-content: center;
  }
}

.copyright-3-text .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .copyright-3-text .text {
    text-align: center;
    line-height: 1.3;
  }
}

.copyright-3-text .text a:hover {
  color: var(--primary);
}

.copyright-3__menu ul {
  gap: 30px;
  display: flex;
  list-style: none;
  align-items: center;
}

@media (max-width: 575px) {
  .copyright-3__menu ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.copyright-3__menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-family: var(--font_inter);
}

.copyright-3__menu ul li a:hover {
  color: var(--primary);
}

.footer-4__wrap {
  padding-top: 118px;
  padding-bottom: 108px;
}

@media only screen and (max-width: 991px) {
  .footer-4__wrap {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__wrap {
    padding: 70px 0;
  }
}

.footer-4__widget {
  position: relative;
}

.footer-4__widget.widget-col_2 {
  margin-left: 118px;
}

@media only screen and (max-width: 1599px) {
  .footer-4__widget.widget-col_2 {
    margin-left: 70px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget.widget-col_2 {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__widget.widget-col_2 {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__widget.widget-col_2 {
    margin-left: 0px;
  }
}

.footer-4__widget.widget-col_3 {
  margin-left: 139px;
}

@media only screen and (max-width: 1599px) {
  .footer-4__widget.widget-col_3 {
    margin-left: 100px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget.widget-col_3 {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__widget.widget-col_3 {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__widget.widget-col_3 {
    margin-left: 0px;
  }
}

.footer-4__widget.widget-col_4 {
  margin-left: 112px;
}

@media only screen and (max-width: 1599px) {
  .footer-4__widget.widget-col_4 {
    margin-left: 70px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget.widget-col_4 {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__widget.widget-col_4 {
    margin-left: 0px;
  }
}

.footer-4__dec {
  color: #B3C1D3;
  margin-top: 23px;
  max-width: 458px;
  margin-bottom: 30px;
}

.footer-4__social span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--white);
}

.footer-4__social ul {
  gap: 10px;
  display: flex;
  margin-top: 22px;
  list-style: none;
  align-items: center;
}

.footer-4__social ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: #1C2028;
}

.footer-4__social ul li a i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}

.footer-4__social ul li a:hover {
  background-color: var(--primary);
}

.footer-4__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-4__title cite {
  gap: 3px;
  display: flex;
  margin-top: 18px;
  align-items: center;
}

.footer-4__title span {
  width: 5px;
  height: 3px;
  display: inline-block;
  background-color: var(--primary);
}

.footer-4__title span:first-of-type {
  width: 26px;
}

.footer-4__menu ul {
  list-style: none;
}

.footer-4__menu ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 500px;
  display: inline-block;
  background: #B3C1D3;
  transform: translateY(-1px);
  transition: all 0.3s ease-in-out;
}

.footer-4__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #B3C1D3;
  display: inline-block;
}

.footer-4__menu ul li:hover a {
  color: var(--primary);
}

.footer-4__menu ul li:hover::before {
  background: var(--primary);
}

.footer-4__text {
  color: #B3C1D3;
  max-width: 350px;
}

.footer-4__input {
  margin-bottom: 15px;
  margin-top: 23px;
  position: relative;
}

.footer-4__input input {
  width: 100%;
  height: 55px;
  padding: 21px 30px;
  padding-right: 40px;
  color: var(--white);
  border-radius: 500px;
  background: transparent;
  border: 1px solid #242932;
}

.footer-4__input input:focus {
  outline: none;
}

.footer-4__input input::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-family: var(--font_inter);
}

.footer-4__input .icon {
  top: 50%;
  right: 21px;
  position: absolute;
  transform: translateY(-50%);
}

.footer-4__input .icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

.footer-4__form .rr-btn {
  font-size: 14px;
  padding: 18px 30px;
  text-transform: uppercase;
}

.footer-4__form .rr-btn .btn-wrap .text-one,
.footer-4__form .rr-btn .btn-wrap .text-two {
  gap: 4px;
}

.footer-4__form .rr-btn .btn-wrap .text-one i,
.footer-4__form .rr-btn .btn-wrap .text-two i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-4__bg-shape {
  top: -307px;
  right: -290px;
  width: 714px;
  height: 714px;
  position: absolute;
  border-radius: 100%;
  filter: blur(150px);
  background: radial-gradient(155.67% 155.67% at 50% -55.67%, rgba(231, 16, 16, 0.3) 0%, rgba(231, 16, 16, 0) 86.63%);
}

.footer-4__shape_1 {
  left: -7px;
  top: 154px;
  position: absolute;
}

@media only screen and (max-width: 1599px) {
  .footer-4__shape_1 {
    top: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__shape_1 {
    display: none;
  }
}

.footer-4__shape_2 {
  position: absolute;
  bottom: 87px;
  right: 28px;
}

@media (max-width: 575px) {
  .footer-4__shape_2 {
    display: none;
  }
}

.copyright-4__wrap {
  display: flex;
  padding: 20.5px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #282C35;
}

@media only screen and (max-width: 767px) {
  .copyright-4__wrap {
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}

.copyright-4__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #B3C1D3;
}

.copyright-4__text p a:hover {
  color: var(--primary);
}

.copyright-4__menu ul {
  gap: 28px;
  display: flex;
  list-style: none;
  align-items: center;
}

.copyright-4__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #B3C1D3;
}

.copyright-4__menu ul li a:hover {
  color: var(--primary);
}

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

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

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

.dark-blue_bg {
  background-color: var(--dark-blue_bg);
}

.dark-blue_bg-2 {
  background-color: var(--dark-blue_bg-2);
}

.heading_bg {
  background-color: var(--secondary);
}

.primary_bg {
  background-color: var(--primary);
}

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

.light_bg {
  background-color: var(--light_bg);
}

.breadcrumb-section__space {
  padding-top: 218px;
  padding-bottom: 135px;
}

@media only screen and (max-width: 991px) {
  .breadcrumb-section__space {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-section__space {
    padding-top: 150px;
    padding-bottom: 70px;
  }
}

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

.breadcrumb-section__wrapper::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(20, 20, 20, 0.5);
}

.breadcrumb-section__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 767px) {
  .breadcrumb-section__title {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-section__title {
    font-size: 30px;
  }
}

.breadcrumb-section__list {
  list-style: none;
}

.breadcrumb-section__list li {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
  color: var(--primary);
  font-family: var(--font_inter);
}

.breadcrumb-section__list li a {
  font-weight: 400;
  color: var(--white);
}

.breadcrumb-section__list li:hover a {
  color: var(--primary);
}

.breadcrumb-section__bg-shape {
  position: absolute;
  transform: rotate(15deg);
}

.breadcrumb-section__bg-shape_1 {
  left: 87px;
  bottom: -288px;
  width: 133.18px;
  height: 436.94px;
  transform: rotate(15deg);
  background: linear-gradient(174.89deg, rgba(137, 0, 0, 0) 6.98%, #DA1111 95.9%);
}

.breadcrumb-section__bg-shape_2 {
  left: 206px;
  bottom: -200px;
  width: 279.91px;
  height: 436.94px;
  transform: rotate(15deg);
  background: linear-gradient(174.89deg, rgba(137, 0, 0, 0) 20.65%, #DA1111 95.9%);
}

.offcanvas__area {
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  backdrop-filter: blur(16px);
  background: rgba(25, 41, 41, 0.8);
  -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: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  border-left: 1px solid #1e2a2b;
}

.offcanvas__area ::-webkit-scrollbar {
  display: none;
}

@media (max-width: 575px) {
  .offcanvas__area {
    width: 400px;
  }
}

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

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

.offcanvas__content {
  padding-bottom: 45px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 35px 40px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 25px 25px;
  }
}

.offcanvas__top {
  padding-bottom: 20px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.079);
}

@media (max-width: 575px) {
  .offcanvas__top {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}

.offcanvas__search {
  position: relative;
}

.offcanvas__search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--white);
  padding-bottom: 15px;
}

.offcanvas__search input::placeholder {
  color: var(--white);
}

.offcanvas__search input:focus {
  border-color: var(--white);
}

.offcanvas__search button {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 20px;
  color: var(--white);
}

.offcanvas__search button:hover {
  color: var(--primary);
}

.offcanvas__title {
  font-size: 40px;
  line-height: 40px;
  color: var(--white);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .offcanvas__title {
    font-size: 20px;
  }
}

.offcanvas__text p {
  margin-bottom: 25px;
}

.offcanvas__social {
  margin-bottom: 40px;
}

.offcanvas__social ul {
  margin-top: 20px;
  list-style: none;
}

.offcanvas__social ul li {
  display: inline-block;
}

.offcanvas__social ul li:not(:last-child) {
  margin-right: 5px;
}

.offcanvas__social ul li a {
  color: var(--white);
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  border-radius: 50%;
  background: var(--primary);
}

.offcanvas__social ul li a:hover {
  color: var(--primary);
  background: var(--white);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}

.offcanvas__notification-icon a {
  font-size: 14px;
  color: var(--white);
  position: relative;
}

.offcanvas__notification-icon a .notification-count {
  position: absolute;
  top: -4px;
  right: -13px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 22px;
  font-size: 12px;
  border-radius: 50%;
  font-weight: 700;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

.offcanvas__notification-text p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--white);
  font-size: 14px;
}

.offcanvas__notification-text p .notification-number {
  color: var(--primary);
}

.offcanvas__notification-text p a {
  color: var(--primary);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #262424;
  z-index: 900;
  top: 0;
  opacity: 0;
  right: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

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

.sidebar__toggle {
  cursor: pointer;
}

.offcanvas__contact-icon {
  margin-inline-end: 15px;
}

.offcanvas__slider-content {
  padding: 20px;
  border: 1px solid var(--border);
}

.offcanvas__navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.offcanvas__navigation button svg {
  transition: all 0.3s ease-in-out;
}

.offcanvas__navigation button svg * {
  fill: var(--white);
}

.offcanvas__navigation button:hover svg * {
  fill: var(--primary);
}

.offcanvas__post-title {
  font-size: 26px;
  color: var(--white);
}

.offcanvas__post-title a:hover {
  color: var(--primary);
}

.offcanvas-close-icon {
  line-height: 1;
  color: var(--white);
}

.offcanvas-close-icon .offcanvas-m-lines {
  position: relative;
  display: block;
  height: 12px;
  width: 30px;
}

.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--1 {
  top: 6px;
  transform: rotate(45deg);
}

.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--3 {
  opacity: 0;
  opacity: 0;
}

.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--2 {
  top: 6px;
  transform: rotate(-45deg);
}

.offcanvas-close-icon .offcanvas-m-line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transition: top 0.15s ease, transform 0.3s ease;
}

.offcanvas-close-icon .offcanvas-m-line.line--1 {
  top: 0;
}

.offcanvas-close-icon .offcanvas-m-line.line--2 {
  top: 5px;
}

.offcanvas-close-icon .offcanvas-m-line.line--3 {
  bottom: 0;
  bottom: 0;
}

.offcanvas-close-icon:hover .offcanvas-m-line {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}

.offcanvas-close-icon:hover .offcanvas-m-line:nth-of-type(2) {
  animation-delay: 0.1s;
}

.search__popup {
  padding: 70px;
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 55vh;
  z-index: 9999;
  background-color: rgba(25, 41, 41, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  -webkit-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.search__popup.search-opened .search__input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.search__top {
  margin-bottom: 80px;
}

.search__input {
  position: relative;
  height: 80px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 0;
}

.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}

.search__input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::-ms-input-placeholder {
  /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::placeholder {
  /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--white);
}

.search__close-btn {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.3);
}

.search__close-btn:hover {
  color: var(--white);
}

/* === Section title scss (index 06) === */
.section-heading__wrap {
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .section-heading__wrap {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading__wrap {
    margin-bottom: 30px;
  }
}

.section-heading__wrap .section__subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 19px;
  padding: 6px 16.4px;
  border-radius: 500px;
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--font_inter);
  border: 1px solid var(--primary);
}

@media only screen and (max-width: 767px) {
  .section-heading__wrap .section__subtitle {
    margin-bottom: 15px;
  }
}

.section-heading__wrap .section__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .section-heading__wrap .section__title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .section-heading__wrap .section__title {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading__wrap .section__title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .section-heading__wrap .section__title {
    font-size: 28px;
  }
}

.section-heading-2__wrap {
  margin-bottom: 57px;
}

@media only screen and (max-width: 991px) {
  .section-heading-2__wrap {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading-2__wrap {
    margin-bottom: 30px;
  }
}

.section-heading-2__wrap .section__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--secondary);
}

@media only screen and (max-width: 767px) {
  .section-heading-2__wrap .section__title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .section-heading-2__wrap .section__title {
    font-size: 26px;
  }
}

/* === pages scss (index 01) === */
.about-section__wrapper .section-heading__wrap {
  margin-bottom: 47px;
}

@media only screen and (max-width: 767px) {
  .about-section__wrapper .section-heading__wrap {
    margin-bottom: 30px;
  }
}

.about-section__title {
  margin: 0 auto;
  font-size: 54px;
  font-weight: 700;
  line-height: 64px;
  max-width: 1000px;
  color: var(--secondary);
}

@media only screen and (max-width: 1199px) {
  .about-section__title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section__title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .about-section__title {
    font-size: 25px;
    line-height: 35px;
  }
}

.about-section__author {
  text-align: center;
}

.about-section__author .author-thumb {
  width: 130px;
  height: 130px;
  padding: 15px;
  margin: 0 auto;
  margin-bottom: 28px;
  border-radius: 500px;
  border: 1px solid var(--primary);
}

.about-section__author .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

.about-section__author .author-info .name {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}

.about-section__card {
  padding: 60px;
  display: flex;
  margin-top: 104px;
  align-items: center;
  border-radius: 15px;
  justify-content: space-between;
  background-color: var(--white);
  border: 1px solid var(--border);
}

@media only screen and (max-width: 1199px) {
  .about-section__card {
    padding: 20px;
    margin-top: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .about-section__card {
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section__card {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .about-section__card {
    gap: 20px;
    padding: 15px;
  }
}

.about-section__card-item {
  gap: 30px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .about-section__card-item {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .about-section__card-item {
    gap: 10px;
  }
}

.about-section__card-item .icon {
  min-width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  background: #FBE4E4;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .about-section__card-item .icon {
    min-width: 60px;
    height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section__card-item .icon img {
    width: 40%;
  }
}

.about-section__card-item .text h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--secondary);
}

@media (max-width: 575px) {
  .about-section__card-item .text h3 {
    font-size: 30px;
  }
}

.about-section__card-item .text h3 span {
  font-size: 16px;
  color: var(--secondary);
}

.about-section__card-item .text span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

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

.more-about__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, var(--bg-3) 50.1%);
}

.more-about__space {
  padding-top: 288px;
  padding-bottom: 196px;
}

@media only screen and (max-width: 1399px) {
  .more-about__space {
    padding-top: 200px;
    padding-bottom: 160px;
  }
}

@media only screen and (max-width: 1199px) {
  .more-about__space {
    padding-top: 130px;
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .more-about__space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .more-about__space {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.more-about__content {
  position: relative;
}

.more-about__content .section-heading__wrap {
  margin-bottom: 48px;
}

@media only screen and (max-width: 991px) {
  .more-about__content .section-heading__wrap {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .more-about__content .section-heading__wrap {
    margin-bottom: 30px;
  }
}

.more-about__list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}

@media (max-width: 575px) {
  .more-about__list ul {
    gap: 8px;
  }
}

.more-about__list ul li {
  width: 156.5px;
  height: 50px;
  line-height: 1;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
}

.more-about__list ul li:hover {
  color: var(--white);
  background-color: var(--primary);
}

.more-about__dec {
  max-width: 600px;
  margin-top: 23px;
  margin-bottom: 33px;
}

@media only screen and (max-width: 991px) {
  .more-about__dec {
    color: var(--white);
  }
}

.more-about__progress .more-about-2__bar-item {
  margin-bottom: 26px;
}

.more-about__btn {
  margin-top: 35px;
}

.more-about__btn .rr-btn {
  padding: 17px 35.57px;
}

@media only screen and (max-width: 991px) {
  .more-about__bg_shape {
    display: none;
  }
}

.more-about__bg_shape_1 {
  left: 0;
  top: -1px;
  position: absolute;
}

.more-about__bg_shape_2 {
  left: 0;
  bottom: -2px;
  position: absolute;
}

.about-section-2__top {
  padding-bottom: 135px;
}

@media only screen and (max-width: 991px) {
  .about-section-2__top {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-2__top {
    margin-bottom: 70px;
  }
}

.about-section-2__content .section-heading__wrap {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .about-section-2__content .section-heading__wrap {
    margin-bottom: 15px;
  }
}

.about-section-2__dec {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 42px;
  color: var(--body_text);
}

@media only screen and (max-width: 991px) {
  .about-section-2__dec {
    margin-bottom: 20px;
  }
}

.about-section-2__thumb {
  position: relative;
}

@media only screen and (max-width: 991px) {
  .about-section-2__thumb {
    margin-bottom: 40px;
  }
}

.about-section-2__thumb img {
  z-index: 1;
  position: relative;
  border-radius: 15px;
}

@media only screen and (max-width: 991px) {
  .about-section-2__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.about-section-2__thumb::before {
  content: "";
  top: 10px;
  left: -10px;
  max-width: 598px;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  border: 1px solid #FFFFFF;
}

.about-section-2__wrap {
  display: grid;
  margin-top: -15px;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 991px) {
  .about-section-2__wrap {
    margin-top: -1px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-section-2__info {
  left: 50%;
  bottom: 80px;
  max-width: 540px;
  width: 100%;
  z-index: 1;
  text-align: center;
  position: absolute;
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .about-section-2__info {
    bottom: 30px;
  }
}

.about-section-2__info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  max-width: 575px;
  margin-top: 18px;
  margin-bottom: 31px;
  color: var(--white);
}

@media (max-width: 575px) {
  .about-section-2__info p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 17px;
  }
}

.about-section-2__image {
  position: relative;
}

.about-section-2__image::before {
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(31, 7, 7, 0) 0%, rgba(32, 11, 11, 0.9) 80%);
}

@media (max-width: 575px) {
  .about-section-2__image img {
    height: 300px;
  }
}

.about-section-2__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}

@media only screen and (max-width: 1700px) {
  .about-section-2__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .about-section-2__title {
    font-size: 27px;
  }
}

.about-section-2__button .rr-btn-2 {
  padding: 19.5px 43.71px;
  background-color: var(--white);
}

.about-section-2__button .rr-btn-2 .btn-wrap .text-one {
  color: var(--primary);
}

.about-section-2__button .rr-btn-2 .btn-wrap .text-two {
  color: var(--white);
}

.about-section-2__button .rr-btn-2::before {
  background-color: var(--primary);
}

.more-about-2__wrapper {
  position: relative;
  padding-top: 371px;
  padding-bottom: 217px;
}

@media only screen and (max-width: 1199px) {
  .more-about-2__wrapper {
    padding-bottom: 130px;
  }
}

@media only screen and (max-width: 991px) {
  .more-about-2__wrapper {
    padding-top: 330px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .more-about-2__wrapper {
    padding-top: 320px;
    padding-bottom: 70px;
  }
}

.more-about-2__content .section-heading__wrap {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .more-about-2__content .section-heading__wrap {
    margin-bottom: 20px;
  }
}

.more-about-2__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--body_text);
}

.more-about-2__bar-item {
  margin-bottom: 35px;
}

.more-about-2__bar-item:last-of-type {
  margin-bottom: 0;
}

.more-about-2__bar-item .progress-outer {
  position: relative;
}

.more-about-2__bar-item .progress-outer .progress {
  height: 8px;
  border-radius: 500px;
  background-color: #F6F6F6;
}

.more-about-2__bar-item .progress-outer .progress-bar {
  border-radius: 500px;
  background-color: #E71010;
}

.more-about-2__bar-item .progress-outer label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-top: 13px;
  color: var(--white);
}

.more-about-2__bar-item .progress-outer .progress-num {
  right: 0;
  top: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  color: var(--primary);
}

.more-about-2__thumb {
  text-align: end;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .more-about-2__thumb {
    margin-top: 30px;
  }
}

.more-about-2__thumb .image_1 {
  margin-right: -60px;
}

@media only screen and (max-width: 1199px) {
  .more-about-2__thumb .image_1 {
    margin-right: 0;
  }
}

.more-about-2__thumb .image_2 {
  bottom: 0;
  left: 50px;
  position: absolute;
}

@media only screen and (max-width: 1199px) {
  .more-about-2__thumb .image_2 {
    left: 0;
  }
}

@media (max-width: 575px) {
  .more-about-2__thumb .image_2 {
    margin-top: 20px;
    position: inherit;
  }
}

.more-about-2__thumb .image_2 img {
  margin-top: -80px;
}

.more-about-2__thumb .image_2 .years-experience {
  gap: 12px;
  z-index: 1;
  display: flex;
  padding: 22px 23px;
  position: relative;
  align-items: center;
  background-color: var(--primary);
}

.more-about-2__thumb .image_2 .years-experience .years-number {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
}

.more-about-2__thumb .image_2 .years-experience .years-label {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--white);
}

@media (max-width: 575px) {
  .more-about-2__thumb .image_2 .years-experience .years-label {
    font-size: 18px;
  }
}

.more-about-2__bg-shape {
  position: absolute;
}

.more-about-2__bg-shape_1 {
  top: -1px;
  left: 0;
}

.more-about-2__bg-shape_2 {
  left: 0;
  bottom: -1px;
}

.about-section-3-space {
  padding-bottom: 197px;
}

@media only screen and (max-width: 991px) {
  .about-section-3-space {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-3-space {
    padding-bottom: 70px;
  }
}

.about-section-3__thumb {
  border-radius: 30px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .about-section-3__thumb {
    margin-bottom: 30px;
  }
}

.about-section-3__thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

@media only screen and (max-width: 991px) {
  .about-section-3__thumb>img {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .about-section-3__thumb>img {
    height: 100%;
  }
}

.about-section-3__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  border-radius: 30px;
  background-color: rgba(12, 4, 4, 0.48);
}

.about-section-3__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(65, 0, 0, 0) 38%, rgb(231, 16, 16) 100%);
}

.about-section-3__image {
  z-index: 2;
  right: -87px;
  bottom: -89px;
  position: absolute;
}

@media only screen and (max-width: 991px) {
  .about-section-3__image {
    right: 0;
    bottom: 0;
    width: 64%;
  }
}

@media (max-width: 575px) {
  .about-section-3__image {
    width: 80%;
  }
}

.about-section-3__card {
  gap: 20px;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 1;
  display: flex;
  max-width: 460px;
  padding: 25px 31px;
  position: absolute;
  padding-left: 40px;
  align-items: center;
  border-radius: 500px;
  background: var(--white);
  backdrop-filter: blur(40px);
}

@media only screen and (max-width: 1199px) {
  .about-section-3__card {
    left: 20px;
    right: 20px;
    padding: 25px 20px;
    padding-left: 25px;
  }
}

@media (max-width: 575px) {
  .about-section-3__card {
    display: none;
  }
}

.about-section-3__card .text h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--secondary);
}

.about-section-3__card .text p {
  font-size: 14px;
  line-height: 24px;
  max-width: 320px;
}

.about-section-3__content {
  margin-left: 73px;
}

@media only screen and (max-width: 991px) {
  .about-section-3__content {
    margin-left: 0;
  }
}

.about-section-3__content .section-heading__wrap {
  margin-bottom: 41px;
}

@media only screen and (max-width: 1199px) {
  .about-section-3__content .section-heading__wrap {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-section-3__content .section-heading__wrap .section__title br {
    display: none;
  }
}

.about-section-3__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
}

.about-section-3__dec {
  line-height: 28px;
  margin-top: 12px;
  margin-bottom: 33px;
}

@media only screen and (max-width: 1199px) {
  .about-section-3__dec {
    margin-bottom: 20px;
  }
}

.about-section-3__item {
  gap: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
  .about-section-3__item {
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.about-section-3__video {
  max-width: 345px;
  position: relative;
}

.about-section-3__video .image img {
  border-radius: 15px;
  border: 10px solid var(--white);
  box-shadow: 0px 12px 27px rgba(0, 0, 0, 0.08);
}

.about-section-3__video a {
  top: 50%;
  left: 50%;
  width: 55px;
  height: 55px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  font-weight: 900;
  position: absolute;
  align-items: center;
  border-radius: 500px;
  color: var(--primary);
  justify-content: center;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.about-section-3__list ul {
  list-style: none;
}

.about-section-3__list ul li {
  gap: 12px;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  align-items: center;
  color: var(--secondary);
}

.about-section-3__list ul li i {
  width: 16px;
  height: 16px;
  display: flex;
  font-size: 8px;
  font-weight: 900;
  line-height: 32px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}

.about-section-3__contact {
  gap: 10px;
  padding: 10px;
  display: flex;
  padding-right: 30px;
  border-radius: 15px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(231, 16, 16, 0.22);
}

@media only screen and (max-width: 1199px) {
  .about-section-3__contact {
    flex-wrap: wrap;
  }
}

.about-section-3__call {
  gap: 20px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .about-section-3__call {
    flex-wrap: wrap;
  }
}

.about-section-3__call .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: center;
  background: rgba(232, 28, 46, 0.12);
  box-shadow: 0px 7px 37px rgba(96, 125, 185, 0.11);
}

.about-section-3__call .call-info span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-bottom: 7px;
  color: var(--body_text);
}

.about-section-3__call .call-info a {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--secondary);
}

.about-section-3__call .call-info a:hover {
  color: var(--primary);
}

.about-section-3__btn .rr-btn-3 {
  padding: 19.5px 37.82px;
}

.more-about-3-2__thumb {
  margin-left: -129px;
}

@media only screen and (max-width: 1599px) {
  .more-about-3-2__thumb {
    margin-left: -40px;
  }
}

@media only screen and (max-width: 1399px) {
  .more-about-3-2__thumb {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .more-about-3-2__thumb {
    margin-bottom: 30px;
    text-align: center;
  }
}

.more-about-3-2__content {
  margin-right: -125px;
  margin-left: -42px;
}

@media only screen and (max-width: 1599px) {
  .more-about-3-2__content {
    margin-right: -30px;
    margin-left: -15px;
  }
}

@media only screen and (max-width: 1399px) {
  .more-about-3-2__content {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.more-about-3-2__content .section-heading__wrap {
  margin-bottom: 38px;
}

@media only screen and (max-width: 1199px) {
  .more-about-3-2__content .section-heading__wrap {
    margin-bottom: 25px;
  }
}

.more-about-3-2__more {
  gap: 20px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .more-about-3-2__more {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.more-about-3-2__more .image {
  padding: 6px;
  min-width: 180px;
  border-radius: 15px;
  display: inline-block;
  background: var(--white);
  box-shadow: 0px 12px 27px rgba(0, 0, 0, 0.08);
}

.more-about-3-2__more .image img {
  border-radius: 10px;
}

.more-about-3-2__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--primary);
}

.more-about-3-2__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body_text);
}

.more-about-3-2__list {
  gap: 11px;
  display: flex;
  align-items: center;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}

@media only screen and (max-width: 1199px) {
  .more-about-3-2__list {
    margin: 15px 0;
    padding: 15px 0;
    flex-wrap: wrap;
  }
}

.more-about-3-2__list-item {
  gap: 11px;
  padding: 17px;
  max-width: 260px;
  border-radius: 15px;
  align-items: center;
  display: inline-flex;
  background: var(--light_bg);
  border: 3px solid var(--white);
  box-shadow: 0px 12px 27px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 1599px) {
  .more-about-3-2__list-item {
    padding: 12px;
  }
}

@media only screen and (max-width: 1399px) {
  .more-about-3-2__list-item {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1199px) {
  .more-about-3-2__list-item {
    max-width: 229px;
  }
}

@media (max-width: 575px) {
  .more-about-3-2__list-item {
    flex-wrap: nowrap;
    max-width: 100%;
  }
}

.more-about-3-2__list-item .icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}

.more-about-3-2__list-item .icon i {
  font-weight: 900;
  font-size: 16px;
  line-height: 28px;
  color: var(--white);
}

.more-about-3-2__list-item span {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  display: inline-block;
  color: var(--secondary);
}

.about-section-4__thumb {
  height: 100%;
  position: relative;
  margin-right: 20px;
}

@media only screen and (max-width: 1199px) {
  .about-section-4__thumb {
    margin-right: 0;
  }
}

.about-section-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-section-4__play {
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.about-section-4__play a {
  width: 100px;
  height: 100px;
  display: flex;
  border-radius: 500%;
  align-items: center;
  justify-content: center;
  background: var(--white);
  outline: 10px solid rgba(255, 255, 255, 0.5);
}

.about-section-4__play a i {
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  color: var(--primary);
}

.about-section-4__content {
  padding: 60px;
  padding-top: 57px;
  margin-left: -30px;
  border-radius: 20px;
  background-color: var(--light_bg);
}

@media only screen and (max-width: 1399px) {
  .about-section-4__content {
    padding: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-section-4__content {
    margin-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .about-section-4__content {
    padding: 30px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .about-section-4__content {
    padding: 15px;
  }
}

.about-section-4__content .section-heading-2__wrap {
  margin-bottom: 22px;
}

@media (max-width: 575px) {
  .about-section-4__content .section-heading-2__wrap {
    margin-bottom: 15px;
  }
}

.about-section-4__dec {
  max-width: 738px;
}

.about-section-4__list {
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
  align-items: start;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1399px) {
  .about-section-4__list {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-section-4__list {
    gap: 15px;
  }
}

.about-section-4__list ul {
  list-style: none;
}

.about-section-4__list ul li {
  gap: 10px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  align-items: center;
  color: var(--secondary);
}

.about-section-4__list ul li:last-of-type {
  margin-bottom: 0;
}

.about-section-4__list ul li i {
  min-width: 30px;
  height: 30px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  align-items: center;
  color: var(--white);
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}

@media (max-width: 575px) {
  .about-section-4__list ul li i {
    margin-bottom: 15px;
  }
}

.about-section-4__btn .rr-btn {
  padding: 17px 42.4px;
}

.about-us__thumb {
  text-align: center;
  position: relative;
  margin-bottom: 70px;
}

@media only screen and (max-width: 1399px) {
  .about-us__thumb {
    text-align: start;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us__thumb {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__thumb {
    margin-bottom: 30px;
  }
}

.about-us__thumb>img {
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .about-us__thumb>img {
    width: 100%;
  }
}

.about-us__content {
  margin-left: -11px;
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .about-us__content {
    margin-left: 0;
  }
}

.about-us__content .section-heading__wrap {
  margin-bottom: 32px;
}

@media (max-width: 575px) {
  .about-us__content .section-heading__wrap {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .about-us__content .section-heading__wrap .section__title {
    font-size: 25px;
  }
}

.about-us__badge {
  left: -100px;
  bottom: -69px;
  position: absolute;
}

@media only screen and (max-width: 1599px) {
  .about-us__badge {
    left: -40px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-us__badge {
    left: 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us__badge {
    bottom: inherit;
    position: inherit;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__badge {
    bottom: 20px;
    right: -42%;
    max-width: 430px;
    margin: 0 auto;
    position: absolute;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__badge {
    bottom: inherit;
    position: inherit;
    margin-top: 20px;
  }
}

.about-us__badge img {
  border-radius: 10px;
  border: 5px solid var(--white);
  box-shadow: 0px 4px 41px rgba(211, 210, 210, 0.4);
}

.about-us__badge__item {
  z-index: 1;
  top: -69px;
  right: -53px;
  width: 180px;
  height: 180px;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 500px;
  flex-direction: column;
  justify-content: center;
  border: 7px solid var(--white);
  background: var(--primary);
}

@media only screen and (max-width: 1199px) {
  .about-us__badge__item {
    right: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__badge__item {
    top: -58px;
    right: 1px;
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us__badge__item {
    top: -48px;
    right: -13px;
  }
}

@media (max-width: 575px) {
  .about-us__badge__item {
    top: -37px;
    right: 0;
    width: 130px;
    height: 130px;
  }
}

.about-us__badge__item .number {
  display: flex;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  align-items: center;
  color: var(--white);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .about-us__badge__item .number {
    font-size: 35px;
  }
}

.about-us__badge__item span {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  color: var(--white);
  align-items: center;
  font-family: var(--font_inter);
}

.about-us__wrap {
  gap: 30px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .about-us__wrap {
    gap: 23px;
    margin: 25px 0;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__wrap {
    gap: 23px;
    margin: 25px 0;
  }
}

@media only screen and (max-width: 767px) {
  .about-us__wrap {
    gap: 25px;
    margin: 23px 0;
  }
}

@media (max-width: 575px) {
  .about-us__wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.about-us__item {
  gap: 17.5px;
  width: 100%;
  display: flex;
  margin: 34px 0px;
  border-radius: 5px;
  padding: 20px 20px;
  align-items: center;
  background: var(--white);
}

@media only screen and (max-width: 1199px) {
  .about-us__item {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__item {
    padding: 14px 14px;
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .about-us__item {
    margin: 0;
  }
}

.about-us__item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  background: var(--light_bg);
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .about-us__item .icon {
    width: 60px;
    height: 60px;
  }
}

.about-us__item .title {
  display: flex;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .about-us__item .title br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__item .title {
    font-size: 18px;
  }
}

.about-us__desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  align-items: center;
  margin-bottom: 0;
  padding-right: 43px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1399px) {
  .about-us__desc {
    padding-right: 0;
  }
}

.about-us__btn {
  margin-top: 34px;
}

@media only screen and (max-width: 991px) {
  .about-us__btn {
    margin-top: 21px;
  }
}

.about-us__btn .rr-btn {
  padding: 18px 37.32px;
}

/* === Hero Section (Home 01) === */
.hero-section__space {
  padding-top: 308px;
  padding-bottom: 599px;
}

@media only screen and (max-width: 1599px) {
  .hero-section__space {
    padding-top: 275px;
    padding-bottom: 400px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section__space {
    padding-bottom: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section__space {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section__space {
    padding-top: 150px;
    padding-bottom: 70px;
  }
}

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

.hero-section__bg {
  top: -560px;
  left: 0;
  right: 0;
  width: 1607px;
  height: 1607px;
  margin: 0 auto;
  position: absolute;
  border-radius: 100%;
  background: rgba(20, 20, 20, 0.88);
}

@media only screen and (max-width: 1599px) {
  .hero-section__bg {
    left: -10px;
    right: -10px;
    width: 102%;
    height: 1470px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section__bg {
    height: 1400px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section__bg {
    top: -350px;
    height: 1100px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section__bg {
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.hero-section__content {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  position: relative;
}

.hero-section__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-family: var(--font_inter);
}

.hero-section__subtitle::before {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  position: absolute;
  background-color: var(--primary);
}

.hero-section__title {
  font-weight: 700;
  font-size: 66px;
  margin-top: 22px;
  line-height: 76px;
  color: var(--white);
  margin-bottom: 28px;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .hero-section__title {
    font-size: 46px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section__title {
    font-size: 37px;
    line-height: 47px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .hero-section__title {
    font-size: 25px;
    line-height: 35px;
  }
}

.hero-section__dec {
  margin: 0 auto;
  font-size: 18px;
  max-width: 740px;
  font-weight: 500;
  line-height: 28px;
  color: var(--white);
}

@media (max-width: 575px) {
  .hero-section__dec {
    font-size: 15px;
    line-height: 25px;
  }
}

.hero-section__btn {
  gap: 20px;
  display: flex;
  margin-top: 42px;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .hero-section__btn {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-section__btn {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.hero-section__btn .rr-btn {
  line-height: 1.1;
}

.hero-section__btn .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.hero-section__btn .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.hero-section__btn .rr-btn::before {
  background-color: var(--primary);
}

.hero-section__btn .btn-one .rr-btn {
  padding: 18.71px 39.7px;
  background-color: var(--white);
}

.hero-section__btn .btn-two .rr-btn {
  padding: 18.71px 38.46px;
  background-color: var(--white);
}

.hero-section-2__wrap {
  text-align: center;
  position: relative;
}

.hero-section-2__thumb {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .hero-section-2__thumb {
    height: 350px;
  }
}

.hero-section-2__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background-color: rgba(34, 17, 17, 0.52);
}

.hero-section-2__thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section-2__bg-shape {
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .hero-section-2__bg-shape {
    display: none;
  }
}

.hero-section-2__content {
  top: 50%;
  left: 50%;
  z-index: 2;
  max-width: 890px;
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1399px) {
  .hero-section-2__content {
    max-width: 770px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-2__content {
    max-width: 650px;
  }
}

.hero-section-2__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font_inter);
}

.hero-section-2__title {
  font-weight: 700;
  font-size: 96px;
  line-height: 1.1;
  margin-top: 28px;
  color: var(--white);
  margin-bottom: 40px;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1700px) {
  .hero-section-2__title {
    font-size: 80px;
  }
}

@media only screen and (max-width: 1599px) {
  .hero-section-2__title {
    font-size: 66px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-2__title {
    font-size: 45px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-2__title {
    font-size: 35px;
  }
}

.hero-section-2__btn {
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .hero-section-2__btn {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.hero-section-2__btn .btn-one .rr-btn {
  padding: 19.5px 45.5px;
}

.hero-section-2__btn .btn-two .rr-btn {
  padding: 18.5px 45px;
  background-color: transparent;
  border: 1px solid var(--white);
}

.hero-section-2__btn .btn-two .rr-btn:hover {
  border-color: var(--secondary);
}

.hero-section-2__arrow {
  top: 50%;
  z-index: 2;
  width: 80px;
  left: 200px;
  height: 80px;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1599px) {
  .hero-section-2__arrow {
    left: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-2__arrow {
    width: 60px;
    height: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-2__arrow {
    display: none;
  }
}

.hero-section-2__arrow i {
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}

.hero-section-2__arrow__next {
  left: auto;
  right: 200px;
}

@media only screen and (max-width: 1599px) {
  .hero-section-2__arrow__next {
    right: 100px;
  }
}

.hero-section-2__arrow:hover {
  background-color: var(--white);
}

.hero-section-2__arrow:hover i {
  color: var(--primary);
}

.hero-section-2__bg {
  width: 318.5px;
  height: 351px;
  z-index: 2;
  position: absolute;
  background: rgba(237, 29, 36, 0.5);
  clip-path: polygon(50% 0, 100% 0, 50% 100%, 19% 100%, 0 100%);
}

@media only screen and (max-width: 1199px) {
  .hero-section-2__bg {
    display: none;
  }
}

.hero-section-2__bg_1 {
  top: 200px;
  left: 495px;
}

@media only screen and (max-width: 1599px) {
  .hero-section-2__bg_1 {
    top: 130px;
    left: 295px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section-2__bg_1 {
    top: 75px;
  }
}

.hero-section-2__bg_2 {
  top: 200px;
  right: 538px;
}

@media only screen and (max-width: 1599px) {
  .hero-section-2__bg_2 {
    top: 130px;
    right: 300px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section-2__bg_2 {
    top: 75px;
  }
}

.hero-section-2__active .swiper-slide-active .hero-section-2__wrap {
  transform: scale(1);
}

.hero-section-2__active .swiper-slide-active .hero-section-2__subtitle {
  opacity: 0;
  animation: anim-down 0.6s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-2__active .swiper-slide-active .hero-section-2__title {
  opacity: 0;
  animation: anim-down 0.6s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-2__active .swiper-slide-active .hero-section-2__btn {
  opacity: 0;
  animation: anim-down 0.6s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

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

@keyframes anim-down {
  0% {
    transform: translateY(10%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.hero-section-3__wrap {
  position: relative;
  padding-top: 258px;
  padding-bottom: 173px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1199px) {
  .hero-section-3__wrap {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-3__wrap {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-3__wrap {
    padding-top: 150px;
    padding-bottom: 70px;
  }
}

.hero-section-3__wrap::before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(36, 12, 14, 0.47);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.hero-section-3__content {
  z-index: 1;
  max-width: 685px;
  position: relative;
}

.hero-section-3__subtitle {
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--primary);
  text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
  .hero-section-3__subtitle {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-3__subtitle {
    font-size: 14px;
  }
}

.hero-section-3__title {
  font-weight: 800;
  font-size: 72px;
  line-height: 85px;
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .hero-section-3__title {
    font-size: 64px;
    line-height: 74px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-3__title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-3__title {
    font-size: 37px;
    line-height: 47px;
  }
}

.hero-section-3__title span {
  color: var(--primary);
  background-color: var(--white);
}

.hero-section-3__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 36px;
  margin-bottom: 34px;
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .hero-section-3__dec {
    margin: 25px 0;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-3__dec {
    margin: 20px 0;
  }
}

.hero-section-3__btn {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-section-3__btn .btn_one .rr-btn-3 {
  padding: 19.5px 38.9px;
}

.hero-section-3__btn .btn_two .rr-btn-3 {
  padding: 19.5px 38px;
  color: var(--primary);
  background-color: var(--white);
}

.hero-section-3__btn .btn_two .rr-btn-3 .btn-wrap .text-one {
  color: var(--primary);
}

.hero-section-3__btn .btn_two .rr-btn-3 .btn-wrap .text-two {
  color: var(--white);
}

.hero-section-3__btn .btn_two .rr-btn-3::before {
  background-color: var(--primary);
}

.hero-section-3__button {
  gap: 20px;
  z-index: 999;
  right: 30px;
  top: 48%;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 20px;
  padding: 27px 23.73px;
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg) translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media only screen and (max-width: 1199px) {
  .hero-section-3__button {
    right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-3__button {
    display: none;
  }
}

.hero-section-3__arrow {
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
}

.hero-section-3__pagination {
  gap: 10px;
  display: flex;
  align-items: center;
}

.hero-section-3__pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 50px;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  color: var(--primary);
  transform: rotate(-90deg);
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}

.hero-section-3__pagination .swiper-pagination-bullet-active {
  color: var(--white);
  background-color: var(--primary);
}

.hero-section-3__active .swiper-slide-active .hero-section-3__wrap {
  transform: scale(1);
}

.hero-section-3__active .swiper-slide-active .hero-section-3__subtitle {
  opacity: 0;
  animation: anim-left 0.6s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-3__active .swiper-slide-active .hero-section-3__title {
  opacity: 0;
  animation: anim-left 0.6s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-3__active .swiper-slide-active .hero-section-3__dec {
  opacity: 0;
  animation: anim-left 0.6s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-3__active .swiper-slide-active .hero-section-3__btn {
  opacity: 0;
  animation: anim-left 0.6s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

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

@keyframes anim-left {
  0% {
    transform: translateX(10%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.hero-section-4__wrapper {
  padding-top: 229px;
}

@media only screen and (max-width: 991px) {
  .hero-section-4__wrapper {
    padding-top: 111px;
  }
}

.hero-section-4__item {
  overflow: hidden;
  position: relative;
}

.hero-section-4__thumb {
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__thumb {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .hero-section-4__thumb {
    height: 250px;
  }
}

.hero-section-4__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.37);
}

.hero-section-4__thumb img {
  transform: scale(1.1);
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hero-section-4__info {
  top: 292px;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  position: absolute;
}

@media only screen and (max-width: 1599px) {
  .hero-section-4__info {
    top: 200px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section-4__info {
    top: 135px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__info {
    top: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-4__info {
    top: 100px;
  }
}

@media (max-width: 575px) {
  .hero-section-4__info {
    top: 50%;
    transform: translateY(-50%);
  }
}

.hero-section-4__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--white);
  text-align: center;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1399px) {
  .hero-section-4__title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-4__title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .hero-section-4__title {
    line-height: 1.2;
  }
}

.hero-section-4__arrow {
  z-index: 1;
  top: 295px;
  left: 100px;
  width: 55px;
  height: 55px;
  display: flex;
  position: absolute;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

@media only screen and (max-width: 1599px) {
  .hero-section-4__arrow {
    top: 200px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section-4__arrow {
    top: 140px;
    left: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__arrow {
    top: 120px;
    left: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-4__arrow {
    display: none;
  }
}

.hero-section-4__arrow-next {
  left: auto;
  right: 100px;
}

@media only screen and (max-width: 1399px) {
  .hero-section-4__arrow-next {
    right: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__arrow-next {
    right: 50px;
  }
}

.hero-section-4__arrow i {
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: var(--white);
}

.hero-section-4__car-details {
  gap: 30px;
  z-index: 1;
  left: 40px;
  right: 40px;
  bottom: 40px;
  display: grid;
  padding: 60px;
  position: absolute;
  border-radius: 15px;
  background-color: var(--white);
  grid-template-columns: repeat(5, 1fr);
}

@media only screen and (max-width: 1399px) {
  .hero-section-4__car-details {
    gap: 20px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 35px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__car-details {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-4__car-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-4__car-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .hero-section-4__car-details {
    left: 0;
    right: 0;
    bottom: 0;
    position: inherit;
    grid-template-columns: repeat(1, 1fr);
  }
}

.hero-section-4__car-details-item .nice-select {
  float: inherit;
  max-width: 320px;
  height: 54px;
  border: none;
  border-radius: 500px;
  position: relative;
  padding-left: 30px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--border);
}

.hero-section-4__car-details-item .nice-select .icon {
  top: 50%;
  right: 25px;
  line-height: 0;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.hero-section-4__car-details-item .nice-select .icon i {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  color: var(--secondary);
}

.hero-section-4__car-details-item .nice-select.open .icon i {
  transform: rotate(180deg);
}

.hero-section-4__car-details-item .nice-select::after {
  display: none;
}

.hero-section-4__car-details-item .nice-select .current {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 21px 0;
  height: 54px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.hero-section-4__car-details-item .nice-select:focus {
  outline: none;
}

.hero-section-4__car-details-item .nice-select .list {
  width: 100%;
}

.hero-section-4__search .rr-btn {
  max-width: 320px;
  width: 100%;
  padding: 19px 33.8px;
}

.hero-section-4__search .rr-btn .btn-wrap .text-one,
.hero-section-4__search .rr-btn .btn-wrap .text-two {
  gap: 7px;
}

.hero-section-4__search .rr-btn .btn-wrap .text-one i,
.hero-section-4__search .rr-btn .btn-wrap .text-two i {
  font-size: 16px;
}

.hero-section-4__active .swiper-slide-active .hero-section-4__thumb img {
  transform: scale(1);
  transition: all 1s ease-in-out;
}

.hero-section-4__active .swiper-slide-active .hero-section-4__title {
  opacity: 0;
  animation: anim-left 0.9s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-4__big-text {
  position: absolute;
  bottom: 214px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
}

@media only screen and (max-width: 1399px) {
  .hero-section-4__big-text {
    bottom: 155px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section-4__big-text {
    display: none;
  }
}

.hero-section-4__big-text h3 {
  font-weight: 700;
  font-size: 160px;
  line-height: 0.7;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
}

@media (min-width: 1701px) and (max-width: 1780px) {
  .hero-section-4__big-text h3 {
    font-size: 150px;
  }
}

@media only screen and (max-width: 1700px) {
  .hero-section-4__big-text h3 {
    font-size: 140px;
  }
}

@media only screen and (max-width: 1599px) {
  .hero-section-4__big-text h3 {
    font-size: 120px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section-4__big-text h3 {
    font-size: 105px;
  }
}

.hero-section-5__wrapper {
  padding-top: 170px;
  padding-bottom: 218px;
  background-color: var(--bg-3);
}

@media only screen and (max-width: 991px) {
  .hero-section-5__wrapper {
    padding-top: 82px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-5__wrapper {
    padding-bottom: 70px;
  }
}

.hero-section-5__item {
  position: relative;
}

.hero-section-5__thumb {
  overflow: hidden;
  position: relative;
  margin-bottom: -1px;
  border-radius: 0 0 100px 100px;
}

@media only screen and (max-width: 991px) {
  .hero-section-5__thumb {
    border-radius: 0;
  }
}

.hero-section-5__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.38);
}

.hero-section-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 1s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .hero-section-5__thumb img {
    height: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-5__thumb img {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .hero-section-5__thumb img {
    height: 380px;
  }
}

.hero-section-5__info {
  top: 50%;
  z-index: 1;
  position: absolute;
  transform: translateY(-50%);
}

.hero-section-5__price {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--white);
}

@media (max-width: 575px) {
  .hero-section-5__price {
    font-size: 25px;
  }
}

.hero-section-5__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  margin-top: 15px;
  margin-bottom: 28px;
  color: var(--white);
}

@media only screen and (max-width: 1599px) {
  .hero-section-5__title {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-5__title {
    font-size: 45px;
    line-height: 55px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .hero-section-5__title {
    font-size: 30px;
    line-height: 40px;
  }
}

.hero-section-5__btn .rr-btn {
  padding: 17px 37.63px;
  background-color: var(--white);
}

.hero-section-5__btn .rr-btn::before {
  background-color: var(--primary);
}

.hero-section-5__btn .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.hero-section-5__btn .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.hero-section-5__button {
  z-index: 1;
  left: 195px;
  bottom: 75px;
  position: absolute;
}

@media only screen and (max-width: 1599px) {
  .hero-section-5__button {
    left: 20px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-section-5__button {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 991px) {
  .hero-section-5__button {
    display: none;
  }
}

.hero-section-5__pagination {
  gap: 10px;
  display: flex;
  align-items: center;
}

.hero-section-5__pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 46px;
  height: 35px;
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 50px;
  align-items: center;
  border-radius: 10px;
  margin: 0 !important;
  justify-content: center;
  color: var(--secondary);
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--primary);
}

.hero-section-5__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--white);
  background-color: var(--primary);
}

.hero-section-5__active .swiper-slide-active .hero-section-5__thumb img {
  transform: scale(1);
}

.hero-section-5__active .swiper-slide-active .hero-section-5__price {
  opacity: 0;
  animation: anim-left 0.9s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-5__active .swiper-slide-active .hero-section-5__title {
  opacity: 0;
  animation: anim-left 0.9s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-5__active .swiper-slide-active .hero-section-5__list {
  opacity: 0;
  animation: anim-left 0.9s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-5__active .swiper-slide-active .hero-section-5__btn {
  opacity: 0;
  animation: anim-left 0.9s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.hero-section-5__list {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 60px;
  align-items: center;
}

@media only screen and (max-width: 1599px) {
  .hero-section-5__list {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .hero-section-5__list {
    gap: 8px;
  }
}

.hero-section-5__list li {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  border-radius: 4px;
  padding: 12.5px 23px;
  display: inline-block;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

@media only screen and (max-width: 767px) {
  .hero-section-5__list li {
    padding: 12.5px 16px;
  }
}

.hero-section-5__list li i {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.hero-section-5__car-details {
  left: 0;
  right: 0;
  bottom: 0;
  gap: 20px;
  position: relative;
  margin-top: 170px;
  border-radius: 0 15px 15px;
}

@media only screen and (max-width: 991px) {
  .hero-section-5__car-details {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section-5__car-details {
    margin-top: 120px;
  }
}

.hero-section-5__car-details-cat {
  left: 0;
  top: -50px;
  overflow: hidden;
  position: absolute;
  background: var(--white);
  border-radius: 15px 15px 0 0;
}

.hero-section-5__car-details-cat span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  position: relative;
  padding: 17px 27.6px;
  display: inline-block;
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.hero-section-5__car-details-cat span:last-of-type::before {
  display: none;
}

.hero-section-5__car-details-cat span:hover,
.hero-section-5__car-details-cat span.active {
  cursor: pointer;
  color: var(--white);
  background-color: var(--primary);
}

.hero-section-5__car-details-cat span:hover::before,
.hero-section-5__car-details-cat span.active::before {
  display: none;
}

.hero-section-5__car-details-cat span::before {
  content: "";
  width: 1px;
  height: 30px;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--border);
  transition: all 0.3s ease-in-out;
}

.cta-section-2__wrap {
  padding: 80px 0;
  overflow: hidden;
  padding-top: 75px;
  position: relative;
  border-radius: 15px;
}

@media only screen and (max-width: 767px) {
  .cta-section-2__wrap {
    padding: 70px 0;
  }
}

.cta-section-2__wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(90deg, rgba(14, 17, 23, 0) 0%, #0E1117 61.81%);
}

.cta-section-2__content {
  position: relative;
  margin-left: -31px;
}

@media only screen and (max-width: 991px) {
  .cta-section-2__content {
    margin: 0 15px;
  }
}

.cta-section-2__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
}

@media (max-width: 575px) {
  .cta-section-2__title {
    font-size: 24px;
  }
}

.cta-section-2__dec {
  font-weight: 500;
  font-size: 16px;
  max-width: 539px;
  margin-top: 17px;
  margin-bottom: 33px;
  line-height: 26px;
  color: var(--white);
}

@media (max-width: 575px) {
  .cta-section-2__dec {
    margin: 17px 0;
  }
}

.cta-section-2__call {
  gap: 15px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .cta-section-2__call {
    flex-wrap: wrap;
  }
}

.cta-section-2__call .icon i {
  width: 55px;
  height: 55px;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}

.cta-section-2__call .rr-btn {
  font-size: 20px;
  padding: 17.5px 38.35px;
}

.blog-section__item {
  padding: 20px;
  border-radius: 15px;
  padding-bottom: 30px;
  background: var(--white);
  border: 1px solid var(--border);
}

.blog-section__thumb {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.blog-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.blog-section__thumb:hover img {
  transform: scale(1.1);
}

.blog-section__issue {
  top: 0;
  left: 0;
  position: absolute;
}

.blog-section__issue span {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  padding: 9px 22.8px;
  color: var(--white);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 15px 0 15px 0;
  background-color: var(--primary);
}

.blog-section__content {
  padding: 28px 12px 0 10px;
}

@media only screen and (max-width: 1399px) {
  .blog-section__content {
    padding: 20px 0 0 0;
  }
}

.blog-section__meta {
  gap: 20px;
  display: flex;
  align-items: center;
}

.blog-section__meta span {
  gap: 10px;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-section__meta span i {
  color: var(--primary);
}

.blog-section__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 15px;
  margin-bottom: 21px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .blog-section__title {
    margin: 15px 0;
    font-size: 17px;
    line-height: 26px;
  }
}

.blog-section__title a:hover {
  color: var(--primary);
}

.blog-section__btn .rr-btn {
  font-size: 14px;
  padding: 12.5px 27.75px;
  background-color: transparent;
  border: 1px solid rgb(227, 227, 227);
}

.blog-section__btn .rr-btn::before {
  background-color: var(--primary);
}

.blog-section__btn .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.blog-section__btn .rr-btn .btn-wrap .text-one,
.blog-section__btn .rr-btn .btn-wrap .text-two {
  gap: 4px;
}

.blog-section__btn .rr-btn .btn-wrap .text-one i,
.blog-section__btn .rr-btn .btn-wrap .text-two i {
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
}

.blog-section__btn .rr-btn:hover {
  border-color: var(--primary);
}

.blog-post-2__card {
  position: relative;
}

.blog-post-2__card-thumb {
  margin-right: 22px;
  position: relative;
  border-radius: 15px;
}

@media only screen and (max-width: 1399px) {
  .blog-post-2__card-thumb {
    margin-right: 0;
  }
}

.blog-post-2__card-thumb::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 19.15%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 15px;
}

.blog-post-2__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.blog-post-2__card-content {
  bottom: 0;
  left: 0;
  padding: 40px;
  display: block;
  position: absolute;
}

@media (max-width: 575px) {
  .blog-post-2__card-content {
    padding: 20px 10px 20px 10px;
  }
}

.blog-post-2__card-meta {
  gap: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .blog-post-2__card-meta {
    gap: 19px;
  }
}

.blog-post-2__card-date {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  color: var(--white);
  font-family: var(--font_inter);
}

.blog-post-2__card-date i {
  margin-right: 10px;
  color: var(--primary);
}

.blog-post-2__card-admin {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  color: var(--white);
  font-family: var(--font_inter);
}

.blog-post-2__card-admin i {
  margin-right: 10px;
  color: var(--primary);
}

.blog-post-2__card-title {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  align-items: center;
  color: var(--white);
  margin: 20px 0px 27px 0px;
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .blog-post-2__card-title {
    font-size: 18px;
    line-height: 25px;
    margin: 14px 0px 20px 0px;
  }
}

.blog-post-2__btn .rr-btn {
  font-size: 14px;
  padding: 13.5px 28.33px;
}

.blog-post-2__btn .rr-btn::before {
  background: var(--white);
}

.blog-post-2__btn .rr-btn .btn-wrap .text-two {
  color: var(--secondary);
}

.blog-post-2__btn .rr-btn .btn-wrap .text-one {
  color: var(--white);
}

.blog-post-2__btn .rr-btn .btn-wrap .text-one,
.blog-post-2__btn .rr-btn .btn-wrap .text-two {
  gap: 4px;
}

.blog-post-2__btn .rr-btn .btn-wrap .text-one i,
.blog-post-2__btn .rr-btn .btn-wrap .text-two i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.blog-post-2__wrap {
  margin-left: 13px;
}

@media only screen and (max-width: 1399px) {
  .blog-post-2__wrap {
    margin-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .blog-post-2__wrap {
    margin-top: 40px;
  }
}

.blog-post-2__item {
  gap: 20px;
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px dashed #CFCFCF;
}

.blog-post-2__item:first-child {
  padding-top: 0;
}

@media only screen and (max-width: 1199px) {
  .blog-post-2__item {
    padding: 16px 0;
  }
}

@media only screen and (max-width: 991px),
only screen and (max-width: 767px) {
  .blog-post-2__item {
    padding: 20px 0;
  }
}

@media (max-width: 575px) {
  .blog-post-2__item {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.blog-post-2__author span {
  display: flex;
  font-size: 16px;
  color: #74787C;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  font-family: var(--font_inter);
}

.blog-post-2__author span i {
  margin-right: 10px;
  color: var(--primary);
}

@media (max-width: 575px) {
  .blog-post-2__author span {
    justify-content: center;
  }
}

.blog-post-2__title {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 11px;
  padding-right: 30px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1399px) {
  .blog-post-2__title {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .blog-post-2__title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .blog-post-2__title {
    text-align: center;
  }
}

.blog-post-2__date {
  gap: 4px;
  display: flex;
  padding: 16px 22px;
  border-radius: 15px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: var(--primary);
}

@media only screen and (max-width: 1199px) {
  .blog-post-2__date {
    padding: 11px 11px;
  }
}

.blog-post-2__date .date-one {
  display: flex;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  align-items: center;
  text-align: center;
  color: var(--white);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .blog-post-2__date .date-one {
    font-size: 28px;
  }
}

.blog-post-2__date .month {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  color: var(--white);
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font_inter);
}

.blog-section-3__item {
  border-radius: 10px;
  background: var(--light_bg);
  padding: 20px 20px 28px 20px;
}

.blog-section-3__thumb {
  overflow: hidden;
  border-radius: 5px;
}

.blog-section-3__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.blog-section-3__thumb:hover img {
  transform: scale(1.1);
}

.blog-section-3__meta {
  gap: 21px;
  display: flex;
  margin-top: 27px;
  align-items: center;
}

.blog-section-3__meta span {
  gap: 10px;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-section-3__meta span i {
  color: var(--primary);
}

.blog-section-3__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  max-width: 340px;
  color: var(--secondary);
  margin: 17px 0px 22px 0px;
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .blog-section-3__title {
    font-size: 17px;
    line-height: 25px;
  }
}

.blog-section-3__title a:hover {
  color: var(--primary);
}

.blog-section-3__btn .rr-btn {
  font-size: 14px;
  padding: 14px 28.75px;
  background-color: var(--white);
}

.blog-section-3__btn .rr-btn::before {
  background-color: var(--primary);
}

.blog-section-3__btn .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.blog-section-3__btn .rr-btn .btn-wrap .text-one,
.blog-section-3__btn .rr-btn .btn-wrap .text-two {
  gap: 4px;
}

.blog-section-3__btn .rr-btn .btn-wrap .text-one i,
.blog-section-3__btn .rr-btn .btn-wrap .text-two i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.blog-section-4__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .blog-section-4__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-section-4__top {
    margin-bottom: 30px;
  }
}

.blog-section-4__top .section-heading-2__wrap {
  margin-bottom: 0;
}

.blog-section-4__item {
  padding: 10px;
  border-radius: 15px;
  border: 1px solid var(--border);
}

.blog-section-4__thumb {
  overflow: hidden;
  border-radius: 15px;
}

.blog-section-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.blog-section-4__thumb:hover img {
  transform: scale(1.1);
}

.blog-section-4__content {
  padding: 22px 20px;
  padding-bottom: 18px;
}

@media only screen and (max-width: 1399px) {
  .blog-section-4__content {
    padding: 22px 10px;
    padding-bottom: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-section-4__content {
    padding: 15px 5px;
  }
}

.blog-section-4__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--secondary);
}

@media only screen and (max-width: 1399px) {
  .blog-section-4__title {
    font-size: 18px;
    line-height: 28px;
  }
}

.blog-section-4__dec {
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
  padding-bottom: 23px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

@media only screen and (max-width: 767px) {
  .blog-section-4__dec {
    margin-top: 8px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.blog-section-4__meta {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}

@media only screen and (max-width: 1399px) {
  .blog-section-4__meta {
    gap: 10px;
  }
}

.blog-section-4__meta li {
  gap: 10px;
  font-size: 14px;
  line-height: 1;
  display: flex;
  font-weight: 400;
  align-items: center;
  color: var(--body_text);
}

.blog-section-4__meta li i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

.blog-section-4__btn .rr-btn .btn-wrap .text-one,
.blog-section-4__btn .rr-btn .btn-wrap .text-two {
  gap: 4px;
}

.blog-section-4__btn .rr-btn .btn-wrap .text-one i,
.blog-section-4__btn .rr-btn .btn-wrap .text-two i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.blog-section-5__item {
  margin-right: 3px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 5px 40px 0px rgba(15, 39, 37, 0.1019607843);
}

.blog-section-5__thumb img {
  border-radius: 10px 10px 0 0;
}

@media (max-width: 575px) {
  .blog-section-5__thumb-one {
    width: 100%;
  }
}

.blog-section-5__thumb-one img {
  border-radius: 10px 0 0 10px;
}

@media (max-width: 575px) {
  .blog-section-5__thumb-one img {
    width: 100%;
  }
}

.blog-section-5__content {
  padding: 0px 30px 30px 30px;
}

@media (max-width: 575px) {
  .blog-section-5__content {
    padding: 0px 15px 30px 15px;
  }
}

.blog-section-5__content-one {
  padding: 25px;
}

@media (max-width: 575px) {
  .blog-section-5__content-one {
    padding: 25px 15px;
  }
}

.blog-section-5__meta {
  gap: 20px;
  display: flex;
  align-items: center;
  padding: 17px 0 15px 0;
  border-bottom: 1px dashed var(--border);
}

@media (max-width: 575px) {
  .blog-section-5__meta {
    gap: 14px;
  }
}

.blog-section-5__meta-one {
  padding: 0 0 15px 0;
}

.blog-section-5__date {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-section-5__date i {
  margin-right: 4px;
}

.blog-section-5__admin {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-section-5__admin i {
  margin-right: 4px;
}

.blog-section-5__title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--secondary);
  margin: 19px 0px 10px 0px;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .blog-section-5__title br {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .blog-section-5__title {
    font-size: 18px;
  }
}

.blog-section-5__desc {
  font-size: 16px;
  font-weight: 400;
  max-width: 660px;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-section-5__btn {
  margin-top: 23px;
}

.blog-section-5__btn .rr-btn {
  padding: 12px 20.4px;
}

.blog-section-5__btn-one {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-section-5__btn-one i {
  width: 30px;
  height: 30px;
  display: flex;
  color: var(--white);
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  background: var(--primary);
}

.blog-section-5__wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .blog-section-5__wrap {
    flex-wrap: wrap;
  }
}

.blog-list__card {
  border-radius: 10px;
  background-color: var(--light_bg);
}

.blog-list__thumb {
  padding: 20px;
  padding-bottom: 0;
  overflow: hidden;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .blog-list__thumb {
    padding: 10px;
    padding-bottom: 0;
  }
}

.blog-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.blog-list__content {
  padding: 40px;
  padding-top: 27px;
}

@media (max-width: 575px) {
  .blog-list__content {
    padding: 15px;
    padding-top: 20px;
  }
}

.blog-list__meta {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.blog-list__meta span {
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--body_text);
  display: inline-flex;
  align-items: center;
}

.blog-list__meta span i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--primary);
}

.blog-list__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  margin-top: 18px;
  margin-bottom: 18px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .blog-list__title {
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-list__title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.blog-list__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--body_text);
  max-width: 723px;
  margin-bottom: 22px;
  font-family: var(--font_inter);
}

.blog-list__btn .rr-btn-2 {
  font-size: 14px;
  padding: 14px 29.21px;
  border: 1px solid #EBEBEB;
  background-color: var(--white);
}

.blog-list__btn .rr-btn-2 i {
  font-size: 14px;
  font-weight: 900;
}

.blog-list__btn .rr-btn-2::before {
  background-color: var(--primary);
}

.blog-list__btn .rr-btn-2 .btn-wrap .text-one,
.blog-list__btn .rr-btn-2 .btn-wrap .text-two {
  gap: 4px;
}

.blog-list__btn .rr-btn-2 .btn-wrap .text-one {
  color: var(--primary);
}

.blog-list__btn .rr-btn-2 .btn-wrap .text-two {
  color: var(--white);
}

.blog-list__page {
  padding-top: 10px;
}

@media only screen and (max-width: 991px) {
  .blog-list__page {
    padding-top: 0;
  }
}

.blog-list__page ul {
  gap: 10px;
  display: flex;
  list-style: none;
  align-items: center;
}

.blog-list__page ul li a {
  width: 50px;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  color: var(--secondary);
  justify-content: center;
  font-family: var(--font_inter);
  background-color: var(--light_bg);
}

.blog-list__page ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
}

.blog-list__page ul li a.active {
  color: var(--white);
  background-color: var(--primary);
}

.blog-list__page ul li a.arrow i {
  font-size: 16px;
  font-weight: 900;
}

.pricing-plan-2__top {
  padding-bottom: 220px;
  background-color: var(--secondary);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 42% 91%, 0% 100%);
}

.pricing-plan-2__wrap {
  padding: 15px;
  margin-top: -223px;
  position: relative;
  border-radius: 15px;
  background-color: var(--light_bg);
}

@media only screen and (max-width: 1199px) {
  .pricing-plan-2__wrap {
    padding: 0px;
  }
}

.pricing-plan-2__bg {
  gap: 40px;
  padding: 40px;
  display: grid;
  border-radius: 15px;
  background-color: var(--white);
  grid-template-columns: auto auto auto;
}

@media only screen and (max-width: 1199px) {
  .pricing-plan-2__bg {
    gap: 25px;
    padding: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .pricing-plan-2__bg {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .pricing-plan-2__bg {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pricing-plan-2__card {
  max-width: 340px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pricing-plan-2__card {
    max-width: 100%;
  }
}

.pricing-plan-2__card:nth-child(2) {
  padding: 0 39px;
  max-width: 100%;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

@media only screen and (max-width: 1199px) {
  .pricing-plan-2__card:nth-child(2) {
    padding: 0px;
    border: none;
  }
}

.pricing-plan-2__price {
  z-index: 1;
  width: 100px;
  height: 100px;
  display: flex;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  font-family: var(--font_inter);
  background-color: var(--primary);
}

@media (max-width: 575px) {
  .pricing-plan-2__price {
    width: 80px;
    height: 80px;
  }
}

.pricing-plan-2__price span {
  font-size: 20px;
  transform: translateY(5px);
}

.pricing-plan-2__btn .rr-btn {
  width: 100%;
  padding: 19.5px 33.8px;
}

.pricing-plan-2__thumb {
  margin-bottom: -47px;
}

@media (max-width: 575px) {
  .pricing-plan-2__thumb {
    margin-bottom: -37px;
  }
}

.pricing-plan-2__thumb img {
  border-radius: 10px 40px;
  mask-image: url(../img/price/price-2_01.png);
  mask-size: 100%, 100%;
}

.pricing-plan-2__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 25px;
  text-align: center;
  color: var(--secondary);
}

.pricing-plan-2__dec {
  font-weight: 400;
  font-size: 16px;
  max-width: 245px;
  margin: 0 auto;
  line-height: 26px;
  margin-top: 12px;
  margin-bottom: 22px;
  color: var(--body_text);
}

.pricing-section-3__wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}

.pricing-section-3__wrapper::before {
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: linear-gradient(180deg, #F3EBEB 0%, rgba(243, 235, 235, 0.83) 100%);
}

.pricing-section-3__wrapper .section-heading__wrap {
  z-index: 1;
  position: relative;
}

.pricing-section-3__item {
  z-index: 2;
  position: relative;
  border-radius: 10px;
  background: var(--white);
  padding: 44px 40px 29px 40px;
}

@media only screen and (max-width: 1199px) {
  .pricing-section-3__item {
    padding: 44px 25px 29px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section-3__item {
    padding: 35px 15px 29px 15px;
  }
}

.pricing-section-3__title {
  display: flex;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  margin-bottom: 8px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 991px) {
  .pricing-section-3__title {
    font-size: 23px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section-3__title {
    font-size: 21px;
  }
}

.pricing-section-3__desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #74787C;
  line-height: 19px;
  align-items: center;
  font-family: var(--font_inter);
}

.pricing-section-3__price {
  display: flex;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  margin: 26px 0px 29px 0px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 991px) {
  .pricing-section-3__price {
    font-size: 38px;
    margin: 19px 0px 20px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section-3__price {
    font-size: 30px;
    margin: 16px 0px 20px 0px;
  }
}

.pricing-section-3__price span {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #74787C;
  align-items: center;
  padding-top: 19px;
  font-family: var(--font_inter);
}

.pricing-section-3__btn .rr-btn {
  width: 100%;
  border-radius: 5px;
  padding: 17px 29px;
}

.pricing-section-3__list {
  list-style: none;
  margin: 29px 0px 19px 0px;
}

@media only screen and (max-width: 767px) {
  .pricing-section-3__list {
    margin: 19px 0px 19px 0px;
  }
}

.pricing-section-3__list:last-child {
  margin-bottom: 0;
}

.pricing-section-3__list li {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #74787C;
  line-height: 34.7px;
  align-items: center;
  font-family: var(--font_inter);
}

.pricing-section-3__list li i {
  margin-right: 10px;
}

.pricing-section-3__list-one {
  margin-top: 18px;
}

.pricing-section-3__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.pricing-section-3__icon::before {
  content: "";
  left: 0;
  top: 19px;
  width: 133px;
  height: 1px;
  display: block;
  position: absolute;
  background: #DFDFDF;
}

@media only screen and (max-width: 1399px) {
  .pricing-section-3__icon::before {
    width: 129px;
  }
}

@media only screen and (max-width: 1199px) {
  .pricing-section-3__icon::before {
    width: 99px;
  }
}

@media only screen and (max-width: 991px) {
  .pricing-section-3__icon::before {
    width: 130px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section-3__icon::before {
    width: 98px;
  }
}

.pricing-section-3__icon::after {
  content: "";
  right: 0;
  top: 19px;
  width: 133px;
  height: 1px;
  display: block;
  position: absolute;
  background: #DFDFDF;
}

@media only screen and (max-width: 1399px) {
  .pricing-section-3__icon::after {
    width: 129px;
  }
}

@media only screen and (max-width: 1199px) {
  .pricing-section-3__icon::after {
    width: 99px;
  }
}

@media only screen and (max-width: 991px) {
  .pricing-section-3__icon::after {
    width: 130px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section-3__icon::after {
    width: 98px;
  }
}

.pricing-section-3__icon i {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 28px;
  text-align: center;
  position: relative;
  align-items: center;
  border-radius: 5px;
  color: var(--primary);
  justify-content: center;
  background: var(--white);
  border: 1px solid #DFDFDF;
}

/*----------------------------------------*/
/*  5.3 sidebar
/*----------------------------------------*/
.blog-sidebar__wrapper {
  margin-left: 23px;
}

@media only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .blog-sidebar__wrapper {
    margin-left: 0;
  }
}

@media only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .blog-sidebar__wrapper {
    margin-top: 40px;
  }
}

.blog-sidebar__widget {
  padding: 40px;
  border-radius: 10px;
  background: #F6F6F6;
}

.blog-sidebar__widget:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px),
(max-width: 575px) {
  .blog-sidebar__widget {
    padding: 22px 20px 31px 20px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar__widget {
    margin-bottom: 30px;
  }
}

.blog-sidebar-form {
  position: relative;
}

.blog-sidebar-form input {
  width: 100%;
  height: 55px;
  padding: 0 25px;
  padding-right: 57px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #EBEBEB;
}

.blog-sidebar-form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-sidebar-form input:focus {
  outline: none;
}

.blog-sidebar-form button {
  right: 0;
  top: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  position: absolute;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transform: translate(0%, -50%);
}

.blog-sidebar-form button i {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
}

.blog-sidebar__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 16px;
  margin-bottom: 30px;
  position: relative;
  color: var(--secondary);
  font-family: var(--font_inter);
  border-bottom: 1px solid #EBEBEB;
}

.blog-sidebar__title::before {
  content: "";
  width: 66px;
  height: 1px;
  bottom: -1px;
  left: 0;
  position: absolute;
  background-color: var(--primary);
}

.blog-sidebar__Categories ul {
  list-style: none;
}

.blog-sidebar__Categories ul li {
  margin-bottom: 10px;
}

.blog-sidebar__Categories ul li:last-of-type {
  margin-bottom: 0;
}

.blog-sidebar__Categories ul li a {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  align-items: center;
  padding: 17px 25px;
  border-radius: 5px;
  border: 1px solid #EBEBEB;
  background-color: var(--white);
  justify-content: space-between;
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
}

.blog-sidebar__Categories ul li a i {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
}

@media (max-width: 575px) {
  .blog-sidebar__Categories ul li a i {
    display: none;
  }
}

.blog-sidebar__Categories ul li:hover a {
  color: var(--white);
  border-color: var(--primary);
  background-color: var(--primary);
}

.blog-sidebar__Categories ul li:hover a i {
  color: var(--white);
}

.blog-sidebar__post-item {
  gap: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .blog-sidebar__post-item {
    flex-wrap: wrap;
  }
}

.blog-sidebar__post-item:last-of-type {
  margin-bottom: 0;
}

.blog-sidebar__post-thumb {
  min-width: 80px;
  height: 80px;
}

.blog-sidebar__post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.blog-sidebar__post-meta span {
  gap: 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--body_text);
  display: inline-flex;
  align-items: center;
  font-family: var(--font_inter);
}

.blog-sidebar__post-meta span i {
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
}

.blog-sidebar__post-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-top: 5px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1399px) {
  .blog-sidebar__post-title {
    font-size: 14px;
    line-height: 20px;
  }
}

.blog-sidebar__post-title a:hover {
  color: var(--primary);
}

.blog-sidebar__gallery {
  gap: 11px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 575px) {
  .blog-sidebar__gallery {
    grid-template-columns: 1fr;
  }
}

.blog-sidebar__gallery .gallery__thumb {
  width: 95px;
  height: 95px;
  border-radius: 5px;
}

@media only screen and (max-width: 1399px) {
  .blog-sidebar__gallery .gallery__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.blog-sidebar__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.blog-sidebar__popular-tags {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}

.blog-sidebar__popular-tags li {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: var(--body_text);
  border-radius: 500px;
  display: inline-block;
  padding: 9.5px 14.72px;
  background: var(--white);
  border: 1px solid #EBEBEB;
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
}

.blog-sidebar__popular-tags li:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.blog-sidebar__brand {
  padding: 60px;
  text-align: center;
  border-radius: 10px;
  background: var(--secondary);
}

@media only screen and (max-width: 1199px) {
  .blog-sidebar__brand {
    padding: 50px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar__brand {
    padding: 30px;
  }
}

.blog-sidebar__brand-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 31px;
  font-family: var(--font_inter);
}

.blog-sidebar__brand-btn .rr-btn-2 {
  padding: 17px 35.2px;
}

.service-section__top {
  padding-bottom: 290px;
  background-color: #FFE9EB;
}

@media only screen and (max-width: 991px) {
  .service-section__top {
    padding-bottom: 260px;
  }
}

@media only screen and (max-width: 767px) {
  .service-section__top {
    padding-bottom: 250px;
  }
}

.service-section__top .section-heading__wrap {
  margin-bottom: 0;
}

.service-section__wrap {
  margin-top: -231px;
}

.service-section__item {
  border-radius: 25px;
  background: var(--light_bg);
  border: 6px solid var(--white);
  box-shadow: 0px 12px 27px rgba(0, 0, 0, 0.08);
}

.service-section__thumb {
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.service-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.service-section__thumb:hover img {
  transform: scale(1.1);
}

.service-section__content {
  padding: 25px;
  padding-bottom: 23px;
}

@media (max-width: 575px) {
  .service-section__content {
    padding: 20px;
  }
}

.service-section__title {
  gap: 15px;
  display: flex;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  align-items: center;
  color: var(--secondary);
}

@media only screen and (max-width: 1399px) {
  .service-section__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-section__title {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.service-section__title a:hover {
  color: var(--primary);
}

.service-section__title .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}

.service-section__dec {
  font-weight: 400;
  font-size: 16px;
  max-width: 350px;
  line-height: 26px;
  margin-top: 16px;
  margin-bottom: 17px;
  color: var(--body_text);
}

.service-section__btn a {
  gap: 4px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  align-items: center;
  display: inline-flex;
  color: var(--primary);
}

.service-section__btn a i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.service-section__btn a::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  right: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}

.service-section__btn a:hover::before {
  left: 0;
  width: 100%;
}

.service-overview-2__text .section-heading__wrap {
  margin-bottom: 33px;
}

@media only screen and (max-width: 1199px) {
  .service-overview-2__text .section-heading__wrap {
    margin-bottom: 10px;
  }
}

.service-overview-2__item {
  gap: 31px;
  padding: 40px;
  align-items: center;
  border-radius: 15px;
  margin-bottom: 24px;
  display: inline-flex;
  border: 1px solid var(--border);
}

@media only screen and (max-width: 1199px) {
  .service-overview-2__item {
    gap: 20px;
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .service-overview-2__item {
    flex-wrap: wrap;
  }
}

.service-overview-2__item:last-of-type {
  margin-bottom: 0;
}

.service-overview-2__thumb {
  min-width: 150px;
  height: 150px;
  overflow: hidden;
}

.service-overview-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

.service-overview-2__btn {
  margin-top: 45px;
}

@media only screen and (max-width: 991px) {
  .service-overview-2__btn {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.service-overview-2__dec {
  font-weight: 400;
  max-width: 545px;
  font-size: 16px;
  line-height: 26px;
  color: var(--body_text);
}

.service-overview-2__content p {
  font-weight: 400;
  font-size: 16px;
  margin: 14px 0;
  max-width: 364px;
  line-height: 26px;
  color: var(--body_text);
}

.service-overview-2__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--secondary);
}

@media only screen and (max-width: 1199px) {
  .service-overview-2__title {
    font-size: 20px;
  }
}

.service-overview-2__button a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

.service-overview-2__button a:hover {
  color: var(--secondary);
}

.our-service-2__bg {
  padding-top: 260px;
  background: linear-gradient(180deg, #FFEDEE 44.71%, #FFFFFF 100%);
}

@media only screen and (max-width: 1199px) {
  .our-service-2__bg {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .our-service-2__bg {
    padding-top: 70px;
  }
}

.our-service-2__thumb {
  position: relative;
}

.our-service-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.our-service-2__thumb::before {
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.our-service-2__content {
  left: 40px;
  bottom: 33px;
  position: absolute;
}

@media only screen and (max-width: 1199px) {
  .our-service-2__content {
    left: 20px;
    bottom: 30px;
  }
}

@media (max-width: 575px) {
  .our-service-2__content {
    left: 15px;
    right: 5px;
  }
}

.our-service-2__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .our-service-2__title {
    font-size: 20px;
  }
}

.our-service-2__title:hover {
  color: var(--primary);
}

.our-service-2__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 309px;
  color: var(--white);
}

.our-service-2__btn {
  top: 30px;
  right: 30px;
  position: absolute;
}

.our-service-2__btn .arrow_btn {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--white);
}

.our-service-2__btn .arrow_btn i {
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
}

.our-service-2__bg-shape {
  top: 0;
  left: 0;
  position: absolute;
}

.our-service-3__bg {
  background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, #F2F2F2 78.75%);
}

.our-service-3__wrap {
  position: relative;
}

.our-service-3__thumb {
  position: relative;
}

.our-service-3__thumb>img {
  border-radius: 15px;
}

@media only screen and (max-width: 1199px) {
  .our-service-3__thumb>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 575px) {
  .our-service-3__thumb>img {
    border-radius: 15px 15px 0 0;
  }
}

.our-service-3__content {
  padding: 30px;
  padding-top: 28px;
  margin-left: 25px;
  margin-top: -63px;
  position: relative;
  border-radius: 15px 0 15px 15px;
  background-color: var(--primary);
}

@media only screen and (max-width: 1399px) {
  .our-service-3__content {
    margin-top: -42px;
  }
}

@media (max-width: 575px) {
  .our-service-3__content {
    padding: 20px;
    margin-left: 0px;
    margin-top: 0px;
    border-radius: 0 0 15px 15px;
  }
}

.our-service-3__icon {
  right: 0;
  top: 75px;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px 0 0 0;
}

.our-service-3__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}

.our-service-3__title a:hover {
  color: var(--secondary);
}

.our-service-3__dec {
  margin-top: 8px;
  max-width: 325px;
  margin-bottom: 17px;
}

.our-service-3__btn a {
  gap: 6px;
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  align-items: center;
}

.our-service-3__btn a i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.our-service-3__arrow {
  top: 50%;
  z-index: 9;
  width: 60px;
  width: 60px;
  left: -120px;
  height: 60px;
  display: flex;
  cursor: pointer;
  position: absolute;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  transform: translateY(-50%);
  background-color: #F0F0F0;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1599px) {
  .our-service-3__arrow {
    top: 120%;
    left: 0;
  }
}

.our-service-3__arrow i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
}

.our-service-3__arrow:hover {
  background-color: var(--primary);
}

.our-service-3__arrow:hover i {
  color: var(--white);
}

.our-service-3__arrow-next {
  right: -120px;
  left: auto;
}

@media only screen and (max-width: 1599px) {
  .our-service-3__arrow-next {
    right: auto;
    left: 70px;
  }
}

.our-service-3__bottom {
  gap: 30px;
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .our-service-3__bottom {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: start;
  }
}

@media (max-width: 575px) {
  .our-service-3__bottom {
    margin-bottom: 15px;
  }
}

.our-service-3__author {
  gap: 39px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .our-service-3__author {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.our-service-3__author .thumb {
  width: 60px;
  height: 60px;
  position: relative;
}

.our-service-3__author .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

.our-service-3__author .icon {
  top: 50%;
  right: -24px;
  position: absolute;
  transform: translateY(-50%);
}

.our-service-3__author .icon i {
  width: 45px;
  height: 45px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  display: flex;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
  border: 5px solid var(--white);
}

.our-service-3__author p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
}

@media only screen and (max-width: 767px) {
  .our-service-3__author p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .our-service-3__author p {
    line-height: 1.3;
  }
}

.our-service-3__author p a {
  font-weight: 600;
  position: relative;
  color: var(--primary);
}

.our-service-3__author p a::before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}

.our-service-3__author p a:hover::before {
  width: 0;
  left: 0;
}

.our-service-3__button .rr-btn {
  line-height: 1.1;
  padding: 16.21px 44.7px;
}

.our-service-3__title-slide_active {
  margin-top: 80px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .our-service-3__title-slide_active {
    margin-top: 60px;
  }
}

@media (max-width: 575px) {
  .our-service-3__title-slide_active {
    margin-top: 40px;
  }
}

.our-service-3__title-slide_active .swiper-wrapper {
  transition-timing-function: linear;
}

.our-service-3__title-slide_active .swiper-wrapper .swiper-slide {
  width: auto;
}

.our-service-3__title-slide h2 {
  font-weight: 700;
  font-size: 120px;
  line-height: 0.75;
  color: var(--white);
  text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
  .our-service-3__title-slide h2 {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  .our-service-3__title-slide h2 {
    font-size: 50px;
  }
}

.our-service-3__title-slide h3 {
  font-weight: 700;
  font-size: 120px;
  line-height: 0.75;
  margin-top: -4px;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(242, 242, 242, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

@media only screen and (max-width: 991px) {
  .our-service-3__title-slide h3 {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  .our-service-3__title-slide h3 {
    font-size: 50px;
  }
}

.our-service-3__bg-shape {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.service-page__item {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-right: 4px;
  background: var(--light_bg);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .service-page__item {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .service-page__item {
    height: 330px;
  }
}

@media only screen and (max-width: 767px) {
  .service-page__item {
    height: 304px;
  }
}

@media (max-width: 575px) {
  .service-page__item {
    height: 355px;
  }
}

.service-page__item .blur-bg {
  top: 0;
  left: -30px;
  z-index: 1;
  width: 410px;
  opacity: 0;
  height: 105px;
  visibility: hidden;
  position: absolute;
  filter: blur(50px);
  mix-blend-mode: color-dodge;
  border-radius: 10px 0px 0px 0px;
  transition: all 0.5s ease-in-out;
  background: linear-gradient(180deg, var(--primary) 0%, #810909 296.19%);
}

.service-page__item:hover {
  opacity: 1;
  background: none;
  visibility: visible;
}

.service-page__item:hover::before {
  opacity: 0.85;
  visibility: visible;
  z-index: 1;
}

.service-page__item:hover .blur-bg {
  opacity: 1;
  visibility: visible;
}

.service-page__item:hover .service-page__thumb>img {
  height: 100%;
}

.service-page__item:hover .service-page__title {
  color: var(--white);
}

.service-page__item:hover .service-page__desc {
  color: var(--white);
}

.service-page__item:hover .service-page__number {
  z-index: 3;
  color: var(--white);
  position: relative;
}

.service-page__item:hover .service-page__content::before {
  height: 0;
}

.service-page__item:hover .service-page__wrap .bg {
  display: none;
}

.service-page__item:hover .service-page__wrap .icon {
  background: var(--white);
}

.service-page__item:hover .service-page__wrap .icon svg [fill=white] {
  fill: var(--primary);
}

.service-page__thumb {
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.service-page__thumb::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  display: block;
  position: absolute;
  background: var(--secondary);
}

.service-page__thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.9s ease-in-out;
}

.service-page__wrap {
  gap: 40px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
}

.service-page__wrap .bg {
  left: 105px;
  z-index: 4;
  width: 8.5px;
  height: 10px;
  bottom: -10px;
  position: absolute;
  background-color: #5C1010;
  transition: all 0.3s ease-in-out;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

@media only screen and (max-width: 1399px) {
  .service-page__wrap .bg {
    left: 80px;
    bottom: 5px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-page__wrap .bg {
    display: none;
  }
}

.service-page__wrap .icon {
  top: 0;
  z-index: 5;
  width: 105px;
  height: 105px;
  display: flex;
  position: absolute;
  border-top-left-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1399px) {
  .service-page__wrap .icon {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .service-page__wrap .icon {
    width: 80px;
    height: 89px;
  }
}

.service-page__wrap .icon svg {
  transition: all 0.3s ease-in-out;
}

.service-page__number {
  display: flex;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  position: relative;
  align-items: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 30px 20px 29px 146px;
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
  color: rgba(255, 255, 255, 0.25);
}

@media only screen and (max-width: 1399px) {
  .service-page__number {
    font-size: 28px;
    padding: 20px 20px 29px 121px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-page__number {
    font-size: 22px;
    padding: 20px 20px 29px 100px;
  }
}

@media only screen and (max-width: 991px) {
  .service-page__number {
    padding: 30px 20px 21px 100px;
  }
}

.service-page__number .blur-bg {
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, #E71010 0%, #810909 296.19%);
  mix-blend-mode: color-dodge;
  filter: blur(50px);
  border-radius: 10px 0px 0px 0px;
}

.service-page__content {
  z-index: 1;
  bottom: 0;
  left: 0;
  position: absolute;
  padding: 33px 30px 25px 25px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 1399px) {
  .service-page__content {
    padding: 31px 30px 25px 25px;
  }
}

.service-page__content::before {
  content: "";
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: #F6F6F6;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.service-page__title {
  display: flex;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 13px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1399px) {
  .service-page__title {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-page__title {
    font-size: 20px;
  }
}

.service-page__desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #74787C;
  align-items: center;
  font-family: var(--font_inter);
}

.service-page__btn .rr-btn {
  margin-top: 26px;
  padding: 12.5px 27.61px;
  border: 1px solid var(--border);
  background-color: var(--white);
}

.service-page__btn .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.service-page__btn .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.service-page__btn .rr-btn .btn-wrap .text-one,
.service-page__btn .rr-btn .btn-wrap .text-two {
  gap: 4px;
}

.service-page__btn .rr-btn .btn-wrap .text-one i,
.service-page__btn .rr-btn .btn-wrap .text-two i {
  font-weight: 900;
}

.service-page__btn .rr-btn::before {
  background-color: var(--primary);
}

.service-page__btn .rr-btn:hover {
  border-color: var(--primary);
}

.project-section__top {
  gap: 15px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 60px;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .project-section__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section__top {
    margin-bottom: 30px;
  }
}

.project-section__top .section-heading__wrap {
  margin-bottom: 0;
}

.project-section__top .section-heading__wrap .section__subtitle {
  border-color: var(--white);
}

.project-section__top-btn {
  transform: translateY(-10px);
}

@media only screen and (max-width: 767px) {
  .project-section__top-btn {
    transform: translateY(0);
  }
}

.project-section__top-btn .rr-btn {
  padding: 19.5px 45.61px;
}

.project-section__wrapper {
  gap: 2px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 991px) {
  .project-section__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-section__item {
  padding: 30px;
  max-width: 959px;
  border-radius: 30px;
  padding-bottom: 40px;
  background-color: var(--black-1);
}

@media (max-width: 575px) {
  .project-section__item {
    padding: 15px;
    padding-bottom: 30px;
  }
}

.project-section__thumb {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

.project-section__thumb img {
  transition: all 0.3s ease-in-out;
}

.project-section__thumb:hover img {
  transform: scale(1.1);
}

.project-section__content {
  margin-left: 10px;
}

@media only screen and (max-width: 1399px) {
  .project-section__content {
    margin-left: 0;
  }
}

.project-section__list {
  top: 30px;
  gap: 11px;
  left: 30px;
  display: flex;
  list-style: none;
  position: absolute;
  align-items: center;
}

@media (max-width: 575px) {
  .project-section__list {
    left: 15px;
    top: 15px;
    gap: 8px;
    flex-wrap: wrap;
  }
}

.project-section__list li {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border-radius: 100px;
  color: var(--primary);
  display: inline-block;
  padding: 9.5px 25.43px;
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-section__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  max-width: 870px;
  margin-top: 31px;
  color: var(--white);
  margin-bottom: 32px;
}

@media only screen and (max-width: 1399px) {
  .project-section__title {
    font-size: 25px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-section__title {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section__title {
    margin: 20px 0;
  }
}

@media (max-width: 575px) {
  .project-section__title {
    font-size: 18px;
    line-height: 28px;
  }
}

.project-section__title a:hover {
  color: var(--primary);
}

.project-section__btn .rr-btn {
  padding: 14.5px 31.33px;
}

.project-section__bg-shape {
  top: -82px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}

.project-section__bg-shape_1 {
  width: 1036px;
  height: 115px;
  filter: blur(100px);
  border-radius: 100%;
  mix-blend-mode: lighten;
  background: var(--primary);
}

.project-section__bg-shape_2 {
  top: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1710px;
  height: 191px;
  filter: blur(150px);
  border-radius: 100%;
  mix-blend-mode: lighten;
  background: rgba(231, 16, 16, 0.3);
}

.project-section__title-slide h2 {
  font-weight: 700;
  font-size: 200px;
  line-height: 0.75;
  letter-spacing: -0.02em;
  color: rgb(27, 27, 30);
  text-transform: uppercase;
}

@media only screen and (max-width: 1399px) {
  .project-section__title-slide h2 {
    font-size: 140px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-section__title-slide h2 {
    font-size: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section__title-slide h2 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .project-section__title-slide h2 {
    font-size: 40px;
  }
}

.project-section__title-slide_active {
  padding: 105px 0;
  margin-right: -100%;
}

@media only screen and (max-width: 1199px) {
  .project-section__title-slide_active {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .project-section__title-slide_active {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section__title-slide_active {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}

.project-section__title-slide_active .swiper-wrapper {
  transition-timing-function: linear;
}

.project-section__title-slide_active .swiper-wrapper .swiper-slide {
  width: auto;
}

.project-section-2__top .section-heading__wrap {
  margin-bottom: 19px;
}

@media only screen and (max-width: 1199px) {
  .project-section-2__top .section-heading__wrap {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}

.project-section-2__top .section-heading__wrap .section__subtitle {
  color: var(--white);
  border-color: var(--white);
}

.project-section-2__big-text {
  font-weight: 700;
  font-size: 200px;
  line-height: 0.8;
  color: transparent;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}

@media (min-width: 1699px) and (max-width: 1866px) {
  .project-section-2__big-text {
    font-size: 182px;
  }
}

@media only screen and (max-width: 1700px) {
  .project-section-2__big-text {
    font-size: 170px;
  }
}

@media only screen and (max-width: 1599px) {
  .project-section-2__big-text {
    font-size: 150px;
  }
}

@media only screen and (max-width: 1399px) {
  .project-section-2__big-text {
    font-size: 128px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-section-2__big-text {
    display: none;
  }
}

.project-section-2__active {
  margin-top: -123px;
  margin-right: -315px;
}

@media only screen and (max-width: 1599px) {
  .project-section-2__active {
    margin-top: -90px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-section-2__active {
    margin-top: 0;
    margin-right: 0;
  }
}

.project-section-2__thumb {
  max-width: 630px;
  position: relative;
}

.project-section-2__thumb img {
  border-radius: 15px;
}

.project-section-2__thumb::before {
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.project-section-2__thumb:hover .project-section-2__cat {
  top: 30px;
  opacity: 1;
  visibility: visible;
}

.project-section-2__thumb:hover .project-section-2__content {
  opacity: 1;
  bottom: 30px;
  visibility: visible;
}

.project-section-2__thumb:hover::before {
  height: 100%;
}

.project-section-2__content {
  left: 30px;
  bottom: 0px;
  opacity: 0;
  max-width: 570px;
  visibility: hidden;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .project-section-2__content {
    right: 5px;
  }
}

@media (max-width: 575px) {
  .project-section-2__content {
    left: 20px;
  }
}

.project-section-2__cat {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  top: 0px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 500px;
  color: var(--primary);
  display: inline-block;
  padding: 9.5px 25.35px;
  backdrop-filter: blur(50px);
  transition: all 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-section-2__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}

@media (max-width: 575px) {
  .project-section-2__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.project-section-2__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 14px;
  margin-bottom: 19px;
  color: var(--white);
}

@media (max-width: 575px) {
  .project-section-2__dec {
    display: none;
  }
}

.project-section-2__btn a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  position: relative;
  color: var(--primary);
}

.project-section-2__btn a::before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}

.project-section-2__btn a:hover::before {
  width: 0;
  left: 0;
}

.project-section-3__wrapper {
  margin: 0 -125px;
}

@media only screen and (max-width: 1199px) {
  .project-section-3__wrapper {
    margin: 0 -70px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section-3__wrapper {
    margin: 0px;
    padding: 0 15px;
  }
}

.project-section-3__active .swiper-wrapper {
  align-items: center;
}

.project-section-3__active .swiper-wrapper .swiper-slide.swiper-slide-prev {
  margin-right: 0 !important;
}

@media only screen and (max-width: 767px) {
  .project-section-3__active .swiper-wrapper .swiper-slide.swiper-slide-prev {
    margin-right: 30px !important;
  }
}

.project-section-3__active .swiper-wrapper .swiper-slide.swiper-slide-active {
  z-index: 9;
  position: relative;
  width: 550px !important;
  margin: 0 -40px !important;
}

@media only screen and (max-width: 1399px) {
  .project-section-3__active .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 380px !important;
  }
}

@media only screen and (max-width: 767px) {
  .project-section-3__active .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 30px !important;
  }
}

.project-section-3__active .swiper-wrapper .swiper-slide.swiper-slide-active .project-section-3__thumb img {
  border: 5px solid var(--white);
  box-shadow: 0px 18px 45px rgba(39, 18, 20, 0.29);
}

.project-section-3__active .swiper-wrapper .swiper-slide.swiper-slide-active .project-section-3__content {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}

.project-section-3__thumb {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-section-3__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.project-section-3__content {
  left: 20px;
  opacity: 0;
  right: 20px;
  bottom: 0px;
  padding: 30px;
  padding-top: 25px;
  visibility: hidden;
  position: absolute;
  border-radius: 10px;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .project-section-3__content {
    padding: 15px;
  }
}

.project-section-3__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
  position: relative;
}

.project-section-3__subtitle::before {
  content: "";
  width: 50px;
  height: 1px;
  top: 50%;
  right: -60px;
  position: absolute;
  background-color: var(--primary);
}

.project-section-3__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-top: 9px;
  margin-bottom: 10px;
  color: var(--secondary);
}

@media (max-width: 575px) {
  .project-section-3__title {
    font-size: 16px;
    line-height: 23px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.project-section-3__title a:hover {
  color: var(--primary);
}

.project-section-3__dec {
  max-width: 450px;
  margin-bottom: 23px;
}

@media (max-width: 575px) {
  .project-section-3__dec {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

.project-section-3__btn .rr-btn {
  padding: 14.5px 30.9px;
}

.project-page__item {
  overflow: hidden;
  border-radius: 5px;
  margin-right: 3px;
  background: #F6F6F6;
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .project-page__item {
    margin-right: 0;
  }
}

.project-page__thumb {
  position: relative;
}

.project-page__thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-page__thumb::before {
  content: "";
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  visibility: hidden;
  position: absolute;
  background: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.project-page__thumb:hover::before {
  opacity: 0.67;
  visibility: visible;
}

.project-page__thumb:hover .project-page__icon {
  opacity: 1;
  visibility: visible;
}

.project-page__thumb:hover .project-page__icon a {
  transform: translate(-50%, -50%) scale(1);
}

.project-page__icon {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.project-page__icon a {
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--white);
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 991px) {
  .project-page__icon a {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 575px) {
  .project-page__icon a {
    width: 60px;
    height: 60px;
  }
}

.project-page__content {
  padding: 36px 38px 34px 39px;
}

@media only screen and (max-width: 1399px) {
  .project-page__content {
    padding: 36px 28px 34px 39px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-page__content {
    padding: 36px 20px 34px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .project-page__content {
    padding: 36px 15px 34px 15px;
  }
}

.project-page__content span {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  color: #74787C;
  line-height: 19px;
  align-items: center;
  font-family: var(--font_inter);
}

.project-page__title {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-top: 11px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .project-page__title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .project-page__title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-details__thumb img {
    width: 100%;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .project-details__thumb img {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .project-details__thumb img {
    margin-bottom: 40px;
  }
}

.project-details__thumb-two {
  margin: 32px 0px;
}

.project-details__thumb-two img {
  border-radius: 15px;
}

.project-details__thumb-wrap {
  gap: 20px;
  display: grid;
  margin: 33px 12px 33px 0px;
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .project-details__thumb-wrap {
    margin: 33px 0px 33px 0px;
  }
}

.project-details__thumb-wrap .thumb-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 575px) {
  .project-details__thumb-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-details__title {
  display: flex;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  align-items: center;
  color: var(--secondary);
  margin: 33px 0px 17px 0;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .project-details__title {
    margin: 0px 0px 17px 0;
  }
}

@media only screen and (max-width: 991px) {
  .project-details__title {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .project-details__title {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .project-details__title {
    font-size: 22px;
    line-height: 34px;
  }
}

.project-details__title-two {
  margin-top: 47px;
}

.project-details__desc {
  gap: 10px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  align-items: start;
  color: var(--text_body);
  font-family: var(--font_inter);
}

.project-details__desc-one {
  margin-bottom: 25px;
}

.project-details__desc-two {
  margin-top: -7px;
}

.project-details__desc-three {
  margin-bottom: 20px;
}

.project-details__desc span i {
  color: var(--primary);
}

.project-details__item {
  gap: 25px;
  display: flex;
  margin-top: 30px;
  align-items: center;
  padding-right: 50px;
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .project-details__item {
    padding-right: 0px;
  }
}

@media (max-width: 575px) {
  .project-details__item {
    flex-wrap: wrap;
  }
}

.project-details__subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.project-details__content {
  margin-right: 12px;
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .project-details__content {
    margin-right: 0;
  }
}

.project-details__icon {
  height: 80px;
  display: flex;
  min-width: 80px;
  border-radius: 500px;
  align-items: center;
  background: var(--light_bg);
  justify-content: center;
}

.project-details__sidebar {
  margin-left: 4px;
}

@media only screen and (max-width: 1399px),
only screen and (max-width: 1199px),
only screen and (max-width: 991px),
only screen and (max-width: 767px),
(max-width: 575px) {
  .project-details__sidebar {
    margin-right: 0;
  }
}

.project-details__sidebar__item {
  border-radius: 10px;
  margin-bottom: 30px;
  background: var(--light_bg);
  padding: 36px 40px 40px 40px;
}

@media only screen and (max-width: 1199px) {
  .project-details__sidebar__item {
    padding: 36px 20px 35px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .project-details__sidebar__item {
    margin-top: 30px;
  }
}

.project-details__sidebar__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  position: relative;
  margin-bottom: 29px;
  padding-bottom: 14px;
  color: var(--secondary);
  font-family: var(--font_inter);
  border-bottom: 1px solid var(--border);
}

.project-details__sidebar__title::before {
  content: "";
  bottom: -1px;
  width: 66px;
  height: 1px;
  position: absolute;
  background: var(--primary);
}

.project-details__sidebar__list li {
  list-style: none;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.project-details__sidebar__list li:last-child {
  margin-bottom: 0;
}

.project-details__sidebar__list li a {
  display: flex;
  font-size: 16px;
  list-style: none;
  font-weight: 600;
  line-height: 19px;
  align-items: center;
  padding: 15.5px 20px;
  border-radius: 5px;
  color: var(--secondary);
  background: var(--white);
  font-family: var(--font_inter);
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 1399px) {
  .project-details__sidebar__list li a {
    padding: 15.5px 10px;
  }
}

.project-details__sidebar__list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.project-details__sidebar__list li a i {
  font-size: 14px;
}

.project-details__sidebar__thumb {
  position: relative;
  z-index: 1;
}

.project-details__sidebar__thumb img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .project-details__sidebar__content {
    margin-top: -160px;
  }
}

@media only screen and (max-width: 767px) {
  .project-details__sidebar__content {
    margin-top: -103px;
  }
}

@media (max-width: 575px) {
  .project-details__sidebar__content {
    margin-top: -93px;
  }
}

.project-details__sidebar__icon {
  left: 43px;
  z-index: 2;
  width: 80px;
  height: 80px;
  bottom: 47px;
  display: flex;
  margin-top: -42px;
  position: absolute;
  border-radius: 100%;
  align-items: center;
  border: 10px solid var(--primary);
  background: var(--white);
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .project-details__sidebar__icon {
    left: 122px;
    bottom: 138px;
  }
}

@media only screen and (max-width: 767px) {
  .project-details__sidebar__icon {
    left: 84px;
    bottom: 138px;
  }
}

@media (max-width: 575px) {
  .project-details__sidebar__icon {
    left: 52px;
    bottom: 147px;
  }
}

.project-details__sidebar__wrap {
  bottom: -120px;
  position: absolute;
  background: var(--primary);
  padding: 57.5px 40px 32px 40px;
  clip-path: polygon(0 21%, 21% 0%, 100% 37%, 100% 100%, 0 100%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media only screen and (max-width: 1199px) {
  .project-details__sidebar__wrap {
    padding: 57.5px 20px 32px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .project-details__sidebar__wrap {
    position: inherit;
  }
}

@media (max-width: 575px) {
  .project-details__sidebar__wrap {
    clip-path: polygon(0 21%, 30% 0%, 100% 37%, 100% 100%, 0 100%);
  }
}

.project-details__sidebar__title-two {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  color: var(--white);
  padding: 25px 0px 10px 0px;
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .project-details__sidebar__title-two {
    font-size: 22px;
  }
}

.project-details__sidebar__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--white);
  font-family: var(--font_inter);
}

.our-team-section-2__shape img {
  z-index: 2;
  opacity: 0.2;
  top: -530px;
  right: -414px;
  position: absolute;
}

@media only screen and (max-width: 991px) {
  .our-team-section-2__shape img {
    display: none;
  }
}

.our-team-section-2__bg {
  z-index: 1;
  top: -399px;
  right: -699px;
  position: absolute;
  width: 1172.73px;
  height: 1633.84px;
  background: var(--primary);
  transform: matrix(0.87, -0.5, -0.5, -0.87, 0, 0);
}

@media only screen and (max-width: 1399px) {
  .our-team-section-2__bg {
    width: 910.73px;
  }
}

@media only screen and (max-width: 1199px) {
  .our-team-section-2__bg {
    width: 852.73px;
  }
}

@media only screen and (max-width: 991px) {
  .our-team-section-2__bg {
    display: none;
  }
}

.our-team-section-2__item {
  z-index: 1;
  position: relative;
}

.our-team-section-2__thumb {
  z-index: 3;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.our-team-section-2__thumb img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.our-team-section-2__thumb:hover img {
  transform: scale(1.1);
}

.our-team-section-2__content {
  bottom: 0;
  width: 85%;
  z-index: 3;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 10px;
  background: var(--white);
  margin: 0 20px 29px 29px;
  padding: 24px 30px 27px 30px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .our-team-section-2__content {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .our-team-section-2__content {
    width: 93%;
    margin: 0 10px 29px 10px;
    padding: 13px 20px 15px 20px;
  }
}

.our-team-section-2__name {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 7px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .our-team-section-2__name {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .our-team-section-2__name {
    font-size: 21px;
    margin-bottom: 5px;
  }
}

.our-team-section-2__name a:hover {
  color: var(--primary);
}

.our-team-section-2__desc {
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  align-items: center;
  color: var(--primary);
  font-family: var(--font_inter);
}

.our-team-section-2__social {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}

.our-team-section-2__social a i {
  color: var(--white);
}

.team-section-3__wrap {
  border-radius: 20px;
  background-color: var(--light_bg);
}

.team-section-3__thumb {
  position: relative;
}

.team-section-3__thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

@media only screen and (max-width: 991px) {
  .team-section-3__thumb>img {
    border-radius: 20px;
  }
}

.team-section-3__icon {
  right: -20px;
  bottom: 41px;
  position: absolute;
}

@media (max-width: 575px) {
  .team-section-3__icon {
    right: -15px;
  }
}

.team-section-3__icon .icon {
  width: 50px;
  height: 50px;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  background: var(--primary);
  box-shadow: 0px 4px 8px rgba(50, 13, 13, 0.21);
}

.team-section-3__icon .icon::before {
  content: "";
  width: 8px;
  height: 9px;
  bottom: -9px;
  right: 12px;
  position: absolute;
  background: #951621;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

@media (max-width: 575px) {
  .team-section-3__icon .icon::before {
    right: 7px;
  }
}

.team-section-3__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--secondary);
}

.team-section-3__title a:hover {
  color: var(--primary);
}

.team-section-3__content {
  padding-right: 30px;
}

@media only screen and (max-width: 1199px) {
  .team-section-3__content {
    padding: 15px;
    padding-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-3__content {
    padding: 20px;
  }
}

.team-section-3__position {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

.team-section-3__dec {
  font-weight: 400;
  font-size: 16px;
  max-width: 270px;
  line-height: 24px;
  margin-top: 20px;
  margin-bottom: 23px;
  color: var(--body_text);
}

.team-section-3__bar .progress-outer {
  margin-left: 10px;
}

.team-section-3__bar .progress-outer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.team-section-3__bar .progress-outer__top label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.team-section-3__bar .progress-outer__top .progress-num {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.team-section-3__bar .progress-outer .progress {
  height: 9px;
  border-radius: 500px;
  background-color: var(--white);
}

.team-section-3__bar .progress-outer .progress-bar {
  border-radius: 500px;
  background-color: var(--primary);
}

.team-section-4__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 57px;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .team-section-4__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-4__top {
    margin-bottom: 30px;
  }
}

.team-section-4__top .section-heading-2__wrap {
  margin-bottom: 0;
}

.team-section-4__wrap {
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  padding-bottom: 25px;
  background-color: var(--white);
}

.team-section-4__wrap:hover .team-section-4__thumb img {
  clip-path: ellipse(70% 78% at 50% 0%);
}

@media only screen and (max-width: 1399px) {
  .team-section-4__wrap:hover .team-section-4__thumb img {
    clip-path: ellipse(70% 73% at 50% 0%);
  }
}

@media only screen and (max-width: 767px) {
  .team-section-4__wrap:hover .team-section-4__thumb img {
    clip-path: ellipse(75% 80% at 50% 0%);
  }
}

@media (max-width: 575px) {
  .team-section-4__wrap:hover .team-section-4__thumb img {
    clip-path: ellipse(70% 73% at 50% 0%);
  }
}

.team-section-4__wrap:hover .team-section-4__thumb::before {
  height: 100%;
}

.team-section-4__wrap:hover .team-section-4__thumb::after {
  height: 100%;
}

.team-section-4__bg {
  background-color: #F3DDDD;
}

.team-section-4__thumb {
  z-index: 9;
  overflow: hidden;
  position: relative;
}

.team-section-4__thumb::before {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 0;
  position: absolute;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(49, 9, 12, 0) 34.06%, #31090C 100%);
}

.team-section-4__thumb::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  position: absolute;
  background: #D9D9D9;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}

.team-section-4__thumb img {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 15px 15px 0 0;
  transition: clip-path 0.3s ease-in-out;
  clip-path: ellipse(100% 100% at 50% 50%);
}

.team-section-4__info {
  margin-top: 26px;
}

.team-section-4__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--secondary);
}

.team-section-4__name a:hover {
  color: var(--primary);
}

.team-section-4__position {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
}

.team-section-4__social {
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 18px;
  margin: 0 auto;
  position: absolute;
  width: fit-content;
}

.team-section-4__social ul {
  gap: 8px;
  display: flex;
  list-style: none;
  align-items: center;
}

.team-section-4__social ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 500px;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.team-section-4__social ul li a i {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
}

.team-section-4__btn .rr-btn {
  background-color: var(--white);
}

.team-section-4__btn .rr-btn .btn-wrap .text-one {
  color: var(--secondary);
}

.team-section-4__btn .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.team-section-4__btn .rr-btn::before {
  background-color: var(--primary);
}

.car-type-4__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 57px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .car-type-4__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .car-type-4__top {
    margin-bottom: 30px;
  }
}

.car-type-4__top .section-heading-2__wrap {
  margin-bottom: 0;
}

.car-type-4__btn .rr-btn {
  padding: 12px 27.4px;
}

.car-type-4__thumb {
  overflow: hidden;
  position: relative;
}

.car-type-4__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.05);
}

.car-type-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.car-type-4__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--secondary);
  text-transform: uppercase;
}

.car-type-4__dec {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--secondary);
}

.car-type-4__info {
  right: 10px;
  left: 10px;
  bottom: 10px;
  display: flex;
  position: absolute;
  padding: 20.5px 25px;
  align-items: center;
  border-radius: 15px;
  background-color: var(--white);
  justify-content: space-between;
}

.car-type-4__info .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}

.car-type-4__info .icon i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
}

.brand-section-3__wrapper {
  padding: 8px 0;
}

.brand-section-3__wrapper .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-section-3__wrapper .swiper-wrapper .swiper-slide {
  width: auto;
}

.brand-section-3__active {
  padding: 19px 0;
  border: 1px dashed var(--white);
  border-left: none;
  border-right: none;
}

.brand-section-3__item h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}

.brand-section-4__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 57px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .brand-section-4__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .brand-section-4__top {
    margin-bottom: 30px;
  }
}

.brand-section-4__top .section-heading-2__wrap {
  margin-bottom: 0;
}

.brand-section-4__item {
  width: 230px;
  height: 230px;
  display: flex;
  margin: 0 auto;
  margin-bottom: 24px;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  background-color: var(--white);
}

@media only screen and (max-width: 1599px) {
  .brand-section-4__item {
    width: 210px;
    height: 210px;
  }
}

@media only screen and (max-width: 767px) {
  .brand-section-4__item {
    width: 150px;
    height: 150px;
  }
}

.brand-section-4__btn .rr-btn {
  padding: 14.5px 42.4px;
}

.brand-section-4__logo {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .brand-section-4__logo img {
    width: 65%;
  }
}

.skill-section-5__wrapper {
  background: var(--primary);
}

.skill-section-5__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .skill-section-5__wrap {
    flex-wrap: wrap;
    padding: 40px 0px;
  }
}

.skill-section-5__item {
  padding: 120px 114px;
  border-right: 1px solid #F63B3B;
}

@media only screen and (max-width: 1399px) {
  .skill-section-5__item {
    padding: 120px 79px;
  }
}

@media only screen and (max-width: 1199px) {
  .skill-section-5__item {
    padding: 120px 53px;
  }
}

@media only screen and (max-width: 991px) {
  .skill-section-5__item {
    padding: 120px 25px;
  }
}

@media (max-width: 575px) {
  .skill-section-5__item {
    padding: 0 25px;
    border: none;
    margin-bottom: 30px;
  }
}

.skill-section-5__item:last-child {
  border-right: none;
  margin-bottom: 0;
}

.skill-section-5__item h2 {
  line-height: 1;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 11px;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 991px) {
  .skill-section-5__item h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .skill-section-5__item h2 {
    font-size: 23px;
    text-align: center;
  }
}

.skill-section-5__item h2 .odometer.odometer-auto-theme,
.skill-section-5__item h2 .odometer.odometer-theme-default {
  font-family: var(--font_inter);
  line-height: 0.8;
}

.skill-section-5__item p {
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font_inter);
}

.faq-section__wrap .accordion-button {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  border-radius: 5px;
  padding: 22.5px 21px;
  color: var(--secondary);
  background: var(--light_bg);
  transition: all 0.3s ease-in-out;
}

.faq-section__wrap .accordion-button:focus {
  z-index: 3;
  border-color: inherit;
  outline: 0;
  box-shadow: inherit;
}

.faq-section__wrap .accordion-button:not(.collapsed) {
  color: var(--white);
  box-shadow: inherit;
  background-color: var(--primary);
}

.faq-section__wrap .accordion-button::after {
  display: none !important;
}

.faq-section__wrap .accordion-button span {
  width: 35px;
  height: 35px;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  margin-right: 16px;
  align-items: center;
  border-radius: 100%;
  color: var(--primary);
  justify-content: center;
  background: var(--white);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .faq-section__wrap .accordion-button span {
    display: none;
  }
}

.faq-section__wrap .accordion-button .icon-arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 16px;
  color: var(--bs-accordion-color);
}

@media (max-width: 575px) {
  .faq-section__wrap .accordion-button .icon-arrow {
    top: 40%;
  }
}

.faq-section__wrap .accordion-button:not(.collapsed) .icon-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: white;
}

.faq-section__wrap .accordion-body {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #74787C;
  line-height: 26px;
  align-items: center;
  background: #F6F6F6;
  padding: 17px 20px 18px 25px;
  font-family: var(--font_inter);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media (max-width: 575px) {
  .faq-section__wrap .accordion-body {
    padding: 17px 15px 18px 15px;
  }
}

.faq-section__accordion-item {
  margin-bottom: 20px;
}

.faq-section__accordion-item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .faq-section__content {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .faq-section__content .section-heading__wrap .section__title {
    font-size: 25px;
  }
}

.faq-section__thumb {
  text-align: right;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .faq-section__thumb {
    width: 100%;
    object-fit: cover;
  }
}

.faq-section__thumb .main-image {
  overflow: hidden;
  position: relative;
}

.faq-section__thumb .img-one {
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

@media only screen and (max-width: 991px) {
  .faq-section__thumb .img-one {
    clip-path: none;
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 575px) {
  .faq-section__thumb .img-one {
    height: 100%;
  }
}

.faq-section__thumb .img-two {
  left: 0;
  z-index: 2;
  max-width: 100%;
  bottom: -70px;
  position: absolute;
}

@media only screen and (max-width: 1399px) {
  .faq-section__thumb .img-two {
    left: -24px;
    bottom: -80px;
  }
}

@media only screen and (max-width: 991px) {
  .faq-section__thumb .img-two {
    left: 0;
    bottom: -70px;
  }
}

.faq-section__bg-shape-1 {
  left: 68px;
  bottom: -22px;
  height: 904.9px;
  width: 115.88px;
  position: absolute;
  transform: matrix(0.95, 0.32, -0.25, 0.97, 0, 0);
  clip-path: polygon(32% 0, 100% 0%, 100% 100%, 80% 100%);
  background: linear-gradient(180deg, #DF0A0A 0%, rgba(90, 0, 0, 0.64) 100%);
}

@media only screen and (max-width: 1399px) {
  .faq-section__bg-shape-1 {
    left: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .faq-section__bg-shape-1 {
    display: none;
  }
}

.faq-section__bg-shape-2 {
  top: -310px;
  right: 0;
  width: 172.9px;
  height: 569.93px;
  position: absolute;
  mix-blend-mode: plus-darker;
  transform: matrix(-0.51, 0.86, 0.82, 0.57, 0, 0);
  background: linear-gradient(180deg, rgba(223, 10, 10, 0.6) 0%, rgba(90, 0, 0, 0.384) 100%);
}

@media only screen and (max-width: 991px) {
  .faq-section__bg-shape-2 {
    display: none;
  }
}

.contact-page__wrapper {
  background: var(--light_bg);
}

.contact-page__info {
  margin-bottom: 78px;
}

@media only screen and (max-width: 767px) {
  .contact-page__info {
    margin-bottom: 40px;
  }
}

.contact-page__wrap {
  position: relative;
}

.contact-page__address {
  gap: 40px;
  display: grid;
  padding-left: 60px;
  border-radius: 10px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  grid-template-columns: 369px 388px 305px;
}

@media only screen and (max-width: 1399px) {
  .contact-page__address {
    gap: 25px;
    padding-left: 33px;
  }
}

@media only screen and (max-width: 1199px) {
  .contact-page__address {
    gap: 13px;
    padding-left: 17px;
    grid-template-columns: 294px 321px 307px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-page__address {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .contact-page__address {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-page__address-item {
  gap: 20px;
  display: flex;
  align-items: center;
  padding: 60px 0px;
  border-right: 1px solid var(--border);
}

.contact-page__address-item:first-child {
  padding-left: 0;
}

@media only screen and (max-width: 767px),
(max-width: 575px) {
  .contact-page__address-item:first-child {
    padding-top: 20px;
  }
}

.contact-page__address-item:last-child {
  border: none;
}

@media only screen and (max-width: 991px) {
  .contact-page__address-item {
    padding: 20px 0px;
  }
}

@media only screen and (max-width: 767px),
(max-width: 575px) {
  .contact-page__address-item {
    padding-top: inherit;
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .contact-page__address-item {
    display: block;
  }
}

.contact-page__address-icon {
  min-width: 60px;
  height: 60px;
  display: flex;
  object-fit: cover;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  background: var(--light_bg);
}

@media (max-width: 575px) {
  .contact-page__address-icon {
    display: inline-flex;
    margin-bottom: 20px;
  }
}

.contact-page__address-icon i {
  color: var(--primary);
}

.contact-page__address-text-title {
  display: flex;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  align-items: center;
  margin-bottom: 5px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.contact-page__address-text a {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .contact-page__address-text a {
    padding-right: 10px;
  }
}

.contact-page__address-text a:hover {
  color: var(--primary);
}

.contact-page__address-text span {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.contact-page__address-text span cite {
  font-style: normal;
  color: var(--primary);
}

.contact-page__map span {
  position: relative;
}

.contact-page__map span iframe {
  width: 100%;
  height: 653px;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .contact-page__map span iframe {
    height: 400px;
  }
}

.contact-page__contact-from {
  top: 40px;
  left: 40px;
  bottom: 40px;
  position: absolute;
  padding: 52px 60px;
  padding-bottom: 44px;
  max-width: 700px;
  border-radius: 10px;
  background: var(--white);
}

@media only screen and (max-width: 991px) {
  .contact-page__contact-from {
    left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page__contact-from {
    left: 0px;
    margin: 0 15px;
    padding: 55px 20px 60px 20px;
  }
}

@media (max-width: 575px) {
  .contact-page__contact-from {
    margin: 0;
    position: inherit;
    padding: 55px 15px 60px 15px;
  }
}

.contact-page__contact-from form button {
  width: 100%;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 18px 0px;
  border-radius: 5px;
  background: var(--primary);
  justify-content: center;
  font-family: var(--font_inter);
}

.contact-page__contact-from .ajax-response {
  margin-top: 15px;
}

.contact-page__contact-from .ajax-response.error {
  color: var(--primary);
}

.contact-page__contact-from .ajax-response.success {
  color: #198754;
}

.contact-page__title {
  display: flex;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 11px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.contact-page__desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.contact-page__form-group {
  gap: 20px;
  display: flex;
  margin-top: 35px;
  align-items: center;
}

@media (max-width: 575px) {
  .contact-page__form-group {
    gap: 0;
    flex-wrap: wrap;
  }
}

.contact-page__input {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.contact-page__input input {
  width: 100%;
  border: none;
  height: 55px;
  border-radius: 5px;
  background: var(--light_bg);
  transition: all 0.3s ease-in-out;
  padding: 17.5px 47px 17.5px 25px;
  border: 1px solid var(--light_bg);
}

.contact-page__input input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.contact-page__input input:focus {
  background-color: var(--white);
  border-color: var(--secondary);
}

.contact-page__icon i {
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
}

.contact-page__select {
  position: relative;
  margin-bottom: 20px;
}

.contact-page__select i {
  top: 20px;
  left: 20px;
  display: block;
  position: absolute;
  color: var(--primary);
}

.contact-page__select .nice-select {
  float: inherit;
  height: 55px;
  border: none;
  position: relative;
  background-color: var(--light_bg);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--light_bg);
}

.contact-page__select .nice-select .icon {
  position: absolute;
  top: 0%;
  right: 56px;
  font-size: 20px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.contact-page__select .nice-select .icon i {
  font-size: 12px;
  color: var(--body_text);
}

.contact-page__select .nice-select.open {
  background-color: var(--white);
  border-color: var(--secondary);
}

.contact-page__select .nice-select.open .icon i {
  transform: rotate(180deg);
}

.contact-page__select .nice-select::after {
  display: none;
}

.contact-page__select .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  padding: 20px 20px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.contact-page__select .nice-select:focus {
  outline: none;
}

.contact-page__select .nice-select .list {
  width: 100%;
}

.contact-page__icon {
  top: 17px;
  right: 24px;
  position: absolute;
}

.contact-page__icon i {
  color: var(--body_text);
}

.contact-page__textarea textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  margin-bottom: 17px;
  background: var(--light_bg);
  padding: 17px 24px 78px 24px;
  border: 1px solid var(--light_bg);
}

.contact-page__textarea textarea:focus {
  background-color: var(--white);
  border-color: var(--secondary);
}

.car-listing__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 57px;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .car-listing__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .car-listing__top {
    margin-bottom: 30px;
  }
}

.car-listing__top .section-heading-2__wrap {
  margin-bottom: 0;
}

.car-listing__tab {
  gap: 15px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .car-listing__tab {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.car-listing__tab button {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 11px 24.7px;
  border-radius: 500px;
  color: var(--white);
  font-family: var(--font_inter);
  border: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
}

.car-listing__tab button:hover,
.car-listing__tab button.active {
  border-color: var(--primary);
  background-color: var(--primary);
}

.car-listing-2__tab button {
  font-weight: 600;
  padding: 16px 24.7px;
  color: var(--secondary);
}

.car-listing-2__tab button:hover,
.car-listing-2__tab button.active {
  color: var(--white);
}

.car-listing__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.car-listing__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.car-listing__thumb img:hover {
  transform: scale(1.1);
}

.car-listing__thumb span {
  top: 0;
  left: 0;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  position: absolute;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 6.5px 22px;
  margin: 10px 0px 0px 10px;
  border-radius: 100px;
  background: var(--primary);
  font-family: var(--font_inter);
}

.car-listing__content {
  padding: 25px 20px 17px 20px;
}

@media only screen and (max-width: 1199px) {
  .car-listing__content {
    padding: 25px 0 17px 0;
  }
}

.car-listing__item {
  border-radius: 15px;
  background: var(--white);
  padding: 10px;
  border: 1px solid var(--border);
}

.car-listing__title a {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 5px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
}

.car-listing__title a:hover {
  color: var(--primary);
}

.car-listing__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.car-listing__icon-box {
  display: flex;
  margin-top: 20px;
  align-items: center;
  padding: 23px 0 24px 0px;
  border-top: 1px dashed #D5D5D5;
  justify-content: space-around;
}

@media only screen and (max-width: 1199px) {
  .car-listing__icon-box {
    padding: 0px;
  }
}

.car-listing__icon-box-item {
  text-align: center;
  padding: 0px 20px;
  border-right: 1px dashed #D5D5D5;
}

.car-listing__icon-box-item:first-child {
  padding-left: 0;
}

.car-listing__icon-box-item:last-child {
  padding-right: 0;
  border-right: none;
}

@media only screen and (max-width: 1199px) {
  .car-listing__icon-box-item {
    padding: 25px 0 17px 0;
    border: none;
  }
}

.car-listing__icon-box span {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  align-items: center;
  text-align: center;
  padding-top: 4px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.car-listing__wrap {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 6px 7px 7px 20px;
  border: 1px solid var(--border);
  justify-content: space-between;
}

.car-listing__price {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.car-listing__btn .rr-btn-3 {
  padding: 13px 23px;
  font-size: 14px;
}

.car-listing__sidebar {
  margin-right: 6px;
  border-radius: 10px;
  background: var(--light_bg);
  padding: 36px 40px 38px 40px;
  box-shadow: 0px 1px 0px #E6E9F4;
}

@media only screen and (max-width: 1199px) {
  .car-listing__sidebar {
    padding: 36px 20px 38px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .car-listing__sidebar {
    padding: 36px 15px 38px 15px;
  }
}

.car-listing__form-group {
  margin: 25px 0px 28px 0px;
}

.car-listing__form-group:first-child {
  margin-top: 0;
}

.car-listing__form-group h4 {
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 13px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.car-listing__form-selector {
  margin-bottom: 20px;
  position: relative;
}

.car-listing__form-selector input {
  width: 100%;
  border-radius: 5px;
  background: var(--white);
  padding: 17px 18px 16px 50px;
  border: 1px solid var(--border);
}

.car-listing__form-selector input::placeholder {
  display: flex;
  font-size: 16px;
  color: #74787C;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  font-family: var(--font_inter);
}

.car-listing__form-selector input:focus {
  outline: none;
}

.car-listing__form-selector i {
  top: 20px;
  left: 20px;
  position: absolute;
  display: block;
  color: var(--primary);
}

.car-listing__form-selector .nice-select {
  float: inherit;
  height: 55px;
  padding: 20px 20px;
  border-radius: 8px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
}

.car-listing__form-selector .nice-select:focus {
  border: 1px solid var(--border);
}

.car-listing__form-selector .nice-select .icon {
  top: 0%;
  right: 56px;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.car-listing__form-selector .nice-select .icon i {
  font-weight: 900;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--body_text);
  font-family: Font Awesome 7 Pro;
}

.car-listing__form-selector .nice-select.open .icon i {
  transform: rotate(180deg);
}

.car-listing__form-selector .nice-select::after {
  display: none;
}

.car-listing__form-selector .nice-select .current {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.car-listing__form-selector .nice-select:focus {
  outline: none;
}

.car-listing__form-selector .nice-select .list {
  width: 100%;
  padding: 20px 0px;
}

.car-listing__form-selector .nice-select .list li {
  margin-bottom: 20px;
  min-height: inherit;
}

.car-listing__form-selector .nice-select .list li:last-child {
  margin-bottom: 0;
}

.car-listing__form-selector .nice-select .list .option {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.car-listing__checkbox {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
}

.car-listing__checkbox input {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.4s ease-in-out;
  position: relative;
  display: inline-block;
}

.car-listing__checkbox input:checked {
  display: block;
  background: var(--primary);
  border: 1px solid var(--primary);
}

.car-listing__checkbox input:checked:after {
  top: 50%;
  left: 50%;
  font-size: 12px;
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  color: var(--white);
  transform: translate(-50%, -50%);
  font-family: var(--font_awesome);
}

.car-listing__checkbox label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.car-listing__checkbox-label label {
  margin-bottom: 23px;
}

.car-listing__range-concider {
  margin-bottom: 23px;
}

.car-listing__range-concider h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 11px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.car-listing__range-concider .range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 999px;
  background: #ddd;
  outline: none;
  cursor: pointer;
}

.car-listing__range-concider .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--white);
  border: 3px solid #e61b1b;
  margin-top: 0px;
}

.car-listing__range-concider .range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 3px solid #e61b1b;
  border-radius: 50%;
  cursor: pointer;
}

.car-listing__range-inputs {
  margin-bottom: 12px;
}

.car-listing__range-inputs .minVal {
  width: 25px;
  height: 23px;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  margin-right: 3px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  font-family: var(--font_inter);
}

.car-listing__range-inputs .minVal:focus {
  outline: none;
}

.car-listing__range-inputs .minVal::-webkit-inner-spin-button,
.car-listing__range-inputs .minVal::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.car-listing__range-inputs .maxVal {
  width: 64px;
  height: 23px;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 4px;
  margin: 0 4px 0px 5px;
  border: 1px solid #E2E2E2;
  font-family: var(--font_inter);
}

.car-listing__range-inputs .maxVal:focus {
  outline: none;
}

.car-listing__range-inputs .maxVal::-webkit-inner-spin-button,
.car-listing__range-inputs .maxVal::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.car-listing__range-inputs span {
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font_inter);
}

.car-listing__sidebar-btn .rr-btn-3 {
  border-radius: 5px;
  padding: 13.5px 25.1px;
}

.car-listing__more-page {
  margin-top: 50px;
}

@media only screen and (max-width: 991px) {
  .car-listing__more-page {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .car-listing__more-page {
    margin-top: 30px;
  }
}

.car-listing__more-page ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.car-listing__more-page ul li {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-listing__more-page ul li:last-of-type {
  width: auto;
}

.car-listing__more-page ul li img {
  margin-left: 9px;
}

.car-listing__more-page ul li a {
  width: 45px;
  height: 45px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 500px;
  color: var(--secondary);
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.car-listing__more-page ul li a:hover,
.car-listing__more-page ul li a.active {
  color: var(--white);
  background-color: var(--primary);
}

.car-listing-5__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .car-listing-5__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .car-listing-5__top {
    margin-bottom: 30px;
  }
}

.car-listing-5__top .section-heading-2__wrap {
  margin-bottom: 0;
}

.car-listing-5__top__button .rr-btn {
  padding: 17px 42.4px;
}

.car-listing-5__item {
  gap: 30px;
  display: flex;
  padding: 10px;
  max-width: 750px;
  border-radius: 15px;
  align-items: center;
  background-color: var(--bg-3);
}

@media only screen and (max-width: 1399px) {
  .car-listing-5__item {
    gap: 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .car-listing-5__item {
    display: block;
  }
}

.car-listing-5__thumb {
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .car-listing-5__thumb {
    margin-bottom: 20px;
  }
}

.car-listing-5__thumb span {
  top: 10px;
  left: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  color: var(--white);
  border-radius: 500px;
  padding: 6.5px 17.43px;
  background-color: var(--primary);
}

.car-listing-5__thumb cite {
  top: 10px;
  right: 10px;
  position: absolute;
}

.car-listing-5__thumb cite a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  color: var(--secondary);
  justify-content: center;
  background-color: var(--white);
}

.car-listing-5__thumb cite a i {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}

.car-listing-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.car-listing-5__content {
  padding: 18px 20px 20px 0px;
}

@media only screen and (max-width: 1399px) {
  .car-listing-5__content {
    padding: 8px;
    padding-left: 0;
  }
}

.car-listing-5__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .car-listing-5__title {
    font-size: 19px;
  }
}

.car-listing-5__title a:hover {
  color: var(--primary);
}

.car-listing-5__dec {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--body_text);
}

.car-listing-5__icon-item i,
.car-listing-5__icon-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: block;
  color: var(--white);
}

.car-listing-5__icon-item span {
  font-weight: 500;
  margin-top: 5px;
}

.car-listing-5__icon {
  display: flex;
  padding-top: 25px;
  margin-top: 24px;
  align-items: center;
  padding-bottom: 25px;
  border-top: 1px dashed #3A4050;
}

.car-listing-5__icon-item {
  text-align: center;
  margin-right: 34px;
  padding-right: 35px;
  border-right: 1px dashed #3A4050;
}

@media only screen and (max-width: 1399px) {
  .car-listing-5__icon-item {
    margin-right: 20px;
    padding-right: 20px;
  }
}

.car-listing-5__icon-item:last-of-type {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.car-listing-5__wrap {
  display: flex;
  align-items: center;
  border-radius: 500px;
  padding: 7px 8px 8px 20px;
  background-color: var(--white);
  justify-content: space-between;
}

.car-listing-5__price {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--secondary);
}

.car-listing-5__btn .rr-btn {
  font-size: 14px;
  padding: 13px 23.55px;
}

.car-recommendation-4__wrapper {
  gap: 20px;
  display: flex;
  position: relative;
  border-radius: 15px;
  align-items: center;
  padding: 80px 80px 80px 100px;
  border: 1px solid var(--border);
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .car-recommendation-4__wrapper {
    padding: 80px 15px 80px 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .car-recommendation-4__wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .car-recommendation-4__wrapper {
    padding: 80px 10px 80px 10px;
  }
}

.car-recommendation-4__wrapper .deal {
  top: 29px;
  left: 29px;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 22px;
  text-align: center;
  position: absolute;
  border-radius: 100px;
  color: var(--white);
  background: var(--primary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .car-recommendation-4__wrapper .deal {
    left: 20px;
  }
}

.car-recommendation-4__item {
  gap: 57px;
  display: flex;
  align-items: center;
}

.car-recommendation-4__item .nav {
  flex-direction: column;
}

@media (max-width: 575px) {
  .car-recommendation-4__item .nav {
    gap: 10px;
    flex-direction: row !important;
  }
}

.car-recommendation-4__item .nav .nav-link {
  padding: 0;
  color: inherit;
  background: none;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.car-recommendation-4__item .nav .nav-link:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .car-recommendation-4__item .nav .nav-link {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.car-recommendation-4__item .nav .nav-link .thumb {
  width: 94px;
  height: 94px;
  display: inline-block;
}

@media (max-width: 575px) {
  .car-recommendation-4__item .nav .nav-link .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
}

.car-recommendation-4__item .nav .nav-link .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.car-recommendation-4__item button.nav-link.active {
  border: 1px solid var(--primary);
}

@media only screen and (max-width: 991px) {
  .car-recommendation-4__item:nth-child(2) {
    width: 100%;
    display: inline-block;
  }
}

@media only screen and (max-width: 1399px) {
  .car-recommendation-4__item {
    gap: 0;
  }
}

@media (max-width: 575px) {
  .car-recommendation-4__item {
    flex-wrap: wrap;
  }
}

.car-recommendation-4__content {
  max-width: 440px;
  text-align: center;
  border-radius: 15px;
  padding: 36px 40px 40px 40px;
  background: var(--light_bg);
}

@media only screen and (max-width: 991px) {
  .car-recommendation-4__content {
    max-width: inherit;
    padding: 36px 15px 40px 15px;
  }
}

@media (max-width: 575px) {
  .car-recommendation-4__content {
    padding: 25px 13px 17px 12px;
  }
}

.car-recommendation-4__content-one {
  padding: 30px;
}

.car-recommendation-4__title {
  line-height: 1;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .car-recommendation-4__title {
    font-size: 23px;
  }
}

.car-recommendation-4__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  max-width: 378px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 991px) {
  .car-recommendation-4__desc {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .car-recommendation-4__desc {
    width: 100%;
    font-size: 15px;
  }
}

.car-recommendation-4__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0 26px 0px;
}

.car-recommendation-4__icon-box-item {
  text-align: center;
  padding: 0px 20px;
  border-right: 1px dashed #D5D5D5;
}

.car-recommendation-4__icon-box-item:first-child {
  padding-left: 0;
}

.car-recommendation-4__icon-box-item:last-child {
  padding-right: 0;
  border-right: none;
}

@media only screen and (max-width: 1199px) {
  .car-recommendation-4__icon-box-item {
    padding: 25px 15px 17px 15px;
    border: none;
  }
}

@media (max-width: 575px) {
  .car-recommendation-4__icon-box-item {
    padding: 25px 13px 17px 12px;
  }
}

.car-recommendation-4__icon-box span {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  align-items: center;
  text-align: center;
  padding-top: 4px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.car-recommendation-4__amount-wrap {
  display: flex;
  align-items: center;
  border-radius: 100px;
  box-sizing: border-box;
  background: var(--white);
  padding: 6px 9px 7px 20px;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.car-recommendation-4__amount {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.car-recommendation-4__btn .rr-btn {
  font-size: 14px;
  padding: 13px 23px;
}

.browser-types-5 .section-heading-2__wrap {
  margin-bottom: 102px;
}

@media only screen and (max-width: 991px) {
  .browser-types-5 .section-heading-2__wrap {
    margin-bottom: 82px;
  }
}

@media only screen and (max-width: 767px) {
  .browser-types-5 .section-heading-2__wrap {
    margin-bottom: 72px;
  }
}

.browser-types-5__wrapper {
  gap: 30px;
  display: flex;
  align-items: center;
}

.browser-types-5__wrapper:last-child {
  margin-bottom: -70px;
}

@media (max-width: 575px) {
  .browser-types-5__wrapper:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .browser-types-5__wrapper {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 1199px) {
  .browser-types-5__wrapper {
    gap: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .browser-types-5__wrapper {
    gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .browser-types-5__wrapper {
    justify-content: center;
  }
}

.browser-types-5__item {
  display: flex;
  align-items: center;
  border-radius: 24px;
  margin-bottom: 70px;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  padding: 0px 51px 30px 51px;
  border: 1px solid var(--border);
  box-shadow: 0px 11px 32px 0px rgba(0, 0, 0, 0.0901960784);
}

@media (max-width: 575px) {
  .browser-types-5__item:last-child {
    margin-bottom: 0;
  }
}

.browser-types-5__item span {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.browser-types-5__icon {
  width: 100px;
  height: 100px;
  display: flex;
  margin-top: -52px;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  background: var(--light_bg);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--light_bg);
}

.browser-types-5__icon:hover {
  background: var(--white);
  border-color: var(--border);
}

.browser-types-5__icon:hover svg [fill="#141414"] {
  fill: var(--primary);
}

.browser-types-5__title {
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 24px 0 11px 0;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__filter-buttons {
  gap: 46px;
  display: flex;
  align-items: center;
  padding: 19px 30px;
  border-radius: 5px;
  margin: 40px 0 20px 0;
  border: 1px solid #D3D3D3;
}

.listing-details__filter-buttons button {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  position: relative;
  font-family: var(--font_inter);
  transition: all 0.5s ease-in-out;
}

.listing-details__filter-buttons button::before {
  content: "";
  left: 0;
  width: 0;
  height: 2px;
  bottom: -21px;
  position: absolute;
  display: inline-block;
  background: var(--primary);
  transition: all 0.3s ease-in-out;
}

.listing-details__filter-buttons button::after {
  content: "";
  width: 1px;
  right: -23px;
  bottom: -2px;
  height: 20px;
  position: absolute;
  display: inline-block;
  background: #D3D3D3;
  transition: all 0.3s ease-in-out;
}

.listing-details__filter-buttons button:first-child {
  padding-left: 0;
}

.listing-details__filter-buttons button:first-child::before {
  left: 0;
}

.listing-details__filter-buttons button:last-child {
  border: none;
  padding-right: 0;
}

.listing-details__filter-buttons button:last-child::after {
  display: none;
}

.listing-details__filter-buttons button.active {
  color: var(--primary);
}

.listing-details__filter-buttons button.active::before {
  width: 100%;
}

.listing-details__filter-buttons button:hover::before {
  width: 100%;
}

.listing-details__grid {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.listing-details__element-item {
  margin: 10px;
  font-size: 16px;
}

.listing-details__wrapper {
  margin-bottom: 40px;
}

.listing-details__content {
  border-radius: 10px;
  background: var(--white);
  padding: 27px 0px 20px 0px;
  border: 1px solid var(--border);
}

.listing-details__content .one {
  padding-bottom: 14px;
}

.listing-details__content .two {
  padding-top: 13px;
  padding-bottom: 18px;
}

.listing-details__content .three {
  padding-top: 19px;
}

.listing-details__item {
  display: flex;
  margin-left: 25px;
  padding-right: 28px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .listing-details__item {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .listing-details__item {
    margin-left: 15px;
    padding-right: 10px;
  }
}

.listing-details__item:last-child {
  border-bottom: none;
}

.listing-details__subtext {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
  font-family: var(--font_inter);
}

.listing-details__textwrap {
  margin-bottom: 15px;
}

.listing-details__title {
  line-height: 1;
  font-size: 30px;
  font-weight: 700;
  margin: 7px 0px 16px 0px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 991px) {
  .listing-details__title {
    font-size: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .listing-details__title {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .listing-details__title {
    font-size: 20px;
    line-height: 27px;
  }
}

.listing-details__list {
  gap: 24px;
  display: flex;
  align-items: center;
}

.listing-details__list li {
  gap: 10px;
  display: flex;
  line-height: 1;
  font-size: 16px;
  list-style: none;
  font-weight: 400;
  align-items: center;
  font-family: var(--font_inter);
}

.listing-details__list li i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  border: 1px solid var(--border);
}

.listing-details__location {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.listing-details__location i {
  margin-right: 3px;
}

.listing-details__catagory {
  gap: 10px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .listing-details__catagory {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .listing-details__catagory {
    flex-wrap: wrap;
  }
}

.listing-details__catagory span {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  padding: 9px 17.2px;
  background: #F1F1F1;
  font-family: var(--font_inter);
}

.listing-details__catagory span i {
  font-size: 14px;
  margin-right: 7px;
}

.listing-details__catagory span svg {
  font-size: 14px;
  margin-right: 5px;
}

.listing-details__rating {
  gap: 4px;
  display: flex;
  align-items: center;
}

.listing-details__rating li {
  list-style: none;
}

.listing-details__rating li i {
  color: #FFB321;
}

.listing-details__rating li span i {
  color: #E5E5E5;
}

.listing-details__price-wrap {
  display: flex;
  align-items: center;
}

.listing-details__price-wrap li {
  list-style: none;
}

.listing-details__price-wrap .amount-one {
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  margin-right: 12px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .listing-details__price-wrap .amount-one {
    font-size: 17px;
  }
}

.listing-details__price-wrap .amount-two {
  line-height: 1;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 767px) {
  .listing-details__price-wrap .amount-two {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .listing-details__price-wrap .amount-two {
    font-size: 20px;
  }
}

.listing-details__btn {
  gap: 10px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .listing-details__btn {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .listing-details__btn {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.listing-details__btn .rr-btn {
  font-weight: 600;
}

.listing-details__btn .btn-one .rr-btn {
  border-radius: 5px;
  padding: 17px 23.8px;
}

.listing-details__btn .btn-two .rr-btn {
  border-radius: 5px;
  padding: 17px 25px;
  background-color: rgba(231, 16, 16, 0.1);
}

.listing-details__btn .btn-two .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.listing-details__description {
  margin-top: 40px;
}

.listing-details__description-item-2 .one {
  margin-bottom: 28px;
}

.listing-details__description-title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__description-desc {
  font-size: 16px;
  font-weight: 400;
  max-width: 850px;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.listing-details__description .description-btn {
  margin-top: 22px;
  margin-bottom: 30px;
}

.listing-details__description-list {
  display: flex;
  padding-bottom: 26px;
  border-bottom: 1px solid #E2E2E2;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .listing-details__description-list {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .listing-details__description-list .item {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .listing-details__description-list .item:last-child {
    margin-bottom: 0;
  }
}

.listing-details__description-list .item li {
  list-style: none;
  margin-bottom: 21px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.listing-details__description-list .item li:last-child {
  margin-bottom: 0;
}

.listing-details__description-list .item li span {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__description-list .item li i {
  margin-right: 11px;
}

.listing-details__locations {
  margin-top: 38px;
}

.listing-details__locations__title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__locations__address {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.listing-details__locations__map {
  margin-top: 28px;
  margin-bottom: 37px;
}

.listing-details__locations__map iframe {
  width: 850px;
  height: 450px;
  display: block;
  border-radius: 15px;
}

@media only screen and (max-width: 1199px) {
  .listing-details__locations__map iframe {
    width: 100%;
  }
}

.listing-details__calculator {
  padding: 27px 0 29px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.listing-details__calculator__title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__calculator form {
  margin-top: 20px;
}

.listing-details__calculator__btn .rr-btn {
  border-radius: 5px;
  padding: 17px 23.7px;
}

.listing-details__form-group {
  gap: 21px;
  display: flex;
  margin: 22px 0px 20px 0px;
  align-items: center;
}

@media (max-width: 575px) {
  .listing-details__form-group {
    flex-wrap: wrap;
  }
}

.listing-details__input {
  width: 100%;
}

.listing-details__input label {
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font_inter);
}

.listing-details__input input {
  width: 100%;
  border-radius: 5px;
  padding: 16.5px 20px;
  border: 1px solid var(--border);
}

.listing-details__input input:focus {
  outline: 0;
}

.listing-details__reviews-summary {
  margin-top: 28px;
}

.listing-details__reviews__wrap {
  display: flex;
  margin-bottom: 29px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .listing-details__reviews__wrap {
    flex-wrap: wrap;
  }
}

.listing-details__reviews__title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .listing-details__reviews__title {
    margin-bottom: 20px;
  }
}

.listing-details__overall-rating .rating-number {
  line-height: 1;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .listing-details__overall-rating .rating-number {
    font-size: 40px;
  }
}

.listing-details__overall-rating .stars {
  margin: 11px 0 12px 0px;
}

.listing-details__overall-rating .stars li {
  display: inline-flex;
  align-items: center;
}

.listing-details__overall-rating .stars li i {
  line-height: 1;
  font-size: 16px;
  font-weight: 900;
  color: #FFB321;
}

.listing-details__overall-rating .reviews-count {
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary);
  white-space: nowrap;
  font-family: var(--font_inter);
}

.listing-details__overall-rating .reviews-count span {
  margin-right: 5px;
}

.listing-details__review-wrap {
  gap: 110px;
  display: flex;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 26px 30px 29px 30px;
  border: 1px solid var(--border);
}

@media only screen and (max-width: 991px) {
  .listing-details__review-wrap {
    gap: 50px;
  }
}

@media (max-width: 575px) {
  .listing-details__review-wrap {
    flex-wrap: wrap;
    padding: 26px 15px 29px 15px;
  }
}

.listing-details__rating-details {
  gap: 30px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .listing-details__rating-details {
    flex-wrap: wrap;
  }
}

.listing-details__rating-details-wrap {
  width: 100%;
}

.listing-details__rating-details-item {
  gap: 120px;
  display: flex;
  white-space: nowrap;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

@media only screen and (max-width: 1199px) {
  .listing-details__rating-details-item {
    gap: 170px;
  }
}

@media only screen and (max-width: 991px) {
  .listing-details__rating-details-item {
    gap: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .listing-details__rating-details-item {
    gap: inherit;
    justify-content: space-between;
  }
}

.listing-details__rating-details-item:last-child {
  margin-bottom: 0;
}

.listing-details__rating-details-item span {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__rating-details-item span i {
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
  padding-right: 6px;
  color: var(--primary);
}

.listing-details__rating-details-item .text {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__review-comments {
  gap: 20px;
  display: flex;
  padding-top: 30px;
  position: relative;
  padding-bottom: 30px;
  border-top: 1px solid var(--border);
}

@media (max-width: 575px) {
  .listing-details__review-comments {
    flex-wrap: wrap;
  }
}

.listing-details__review-comments:last-child {
  border-bottom: 1px solid var(--border);
}

.listing-details__review-comments .thumb {
  width: 70px;
  height: 70px;
}

.listing-details__review-comments .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.listing-details__review-comments__author .name {
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__review-comments__author .date {
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.listing-details__review-comments__author .star {
  margin: 17px 0 10px 0;
  display: flex;
  align-items: center;
}

.listing-details__review-comments__author .star li {
  list-style: none;
}

.listing-details__review-comments__author .star li i {
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  color: #FFB321;
  margin-right: 3px;
}

.listing-details__review-comments__author .like {
  top: 30px;
  right: 0;
  line-height: 1;
  display: block;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  padding: 12px 21.5px;
  border-radius: 100px;
  color: var(--body_text);
  border: 1px solid var(--border);
  font-family: var(--font_inter);
}

.listing-details__review-comments__author .like i {
  margin-left: 4px;
}

@media (max-width: 575px) {
  .listing-details__review-comments__author .like {
    position: inherit;
    margin-top: 15px;
  }
}

.listing-details__slider {
  position: relative;
}

.listing-details__slider .swiper-slide {
  width: 100%;
}

.listing-details__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.listing-details__slider-wrap {
  margin-top: 10px;
}

.listing-details__slider-wrap .swiper-slide__item {
  position: relative;
}

.listing-details__slider-wrap .swiper-slide__item img {
  max-width: 100%;
  border-radius: 5px;
}

.listing-details__slider-wrap .swiper-slide__item::before {
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  display: block;
  position: absolute;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--primary);
}

.listing-details__slider-wrap .swiper-slide__item .see-more__btn {
  right: 0;
  z-index: 9;
  opacity: 0;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 16px;
  visibility: hidden;
  color: var(--white);
  position: absolute;
  border-radius: 5px;
  text-align: center;
  line-height: 140px;
  background-color: rgba(0, 0, 0, 0.7);
}

.listing-details__slider-wrap .swiper-slide__item .see-more__btn i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  margin-left: 2px;
}

.listing-details__slider-wrap .swiper-slide.swiper-slide-active .swiper-slide__item::before {
  left: 0;
  width: 100%;
}

.listing-details__slider-wrap .swiper-wrapper:last-child .swiper-slide__item .see-more__btn {
  opacity: 1;
  visibility: visible;
}

.listing-details__slider .slider-btn-wrap {
  top: 0;
  right: 0;
  gap: 10px;
  z-index: 2;
  display: flex;
  margin-top: 30px;
  margin-right: 23px;
  align-items: center;
  position: absolute;
}

@media (max-width: 575px) {
  .listing-details__slider .slider-btn-wrap {
    margin-top: 17px;
    margin-right: 14px;
  }
}

.listing-details__slider .slider-btn-wrap .video-btn a {
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 5px;
  background: var(--white);
  text-transform: uppercase;
  font-family: var(--font_inter);
}

.listing-details__slider .slider-btn-wrap .video-btn a i {
  margin-right: 7px;
}

.listing-details__slider .slider-btn-wrap .gallery a {
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 5px;
  background: var(--white);
  text-transform: uppercase;
  font-family: var(--font_inter);
}

.listing-details__slider .slider-btn-wrap .gallery a i {
  margin-right: 7px;
}

.listing-details__sidebar {
  padding: 30px;
  margin-top: 32px;
  margin-left: 4px;
  border-radius: 10px;
  background: #F6F6F6;
}

@media only screen and (max-width: 1399px) {
  .listing-details__sidebar {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .listing-details__sidebar {
    margin-left: 0;
  }
}

.listing-details__sidebar-item {
  gap: 20px;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

@media (max-width: 575px) {
  .listing-details__sidebar-item {
    flex-wrap: wrap;
  }
}

.listing-details__sidebar-thumb {
  width: 100px;
  height: 100px;
}

@media only screen and (max-width: 1399px) {
  .listing-details__sidebar-thumb {
    width: 80px;
    height: 80px;
  }
}

.listing-details__sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.listing-details__sidebar-title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.listing-details__sidebar-subtitle {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  font-family: var(--font_inter);
}

.listing-details__sidebar-subtitle i {
  margin-right: 6px;
}

.listing-details__sidebar-contact-info li {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 52px;
  text-align: right;
  align-items: center;
  border-top: 1px solid #E2E2E2;
  color: var(--secondary);
  font-family: var(--font_inter);
  justify-content: space-between;
}

.listing-details__sidebar-contact-info li:last-child {
  border-bottom: 1px solid #E2E2E2;
}

.listing-details__sidebar-contact-info li span {
  font-size: 16px;
  font-weight: 400;
  line-height: 52px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.listing-details__sidebar-btn {
  margin-top: 20px;
}

.listing-details__sidebar-btn .rr-btn {
  width: 100%;
  font-weight: 600;
  border-radius: 5px;
  padding: 17px 23px;
  font-family: var(--font_inter);
}

.fun-fact-3__bg {
  position: relative;
  padding-bottom: 238px;
}

@media only screen and (max-width: 1399px) {
  .fun-fact-3__bg {
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .fun-fact-3__bg {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .fun-fact-3__bg {
    padding-bottom: 70px;
  }
}

.fun-fact-3__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, #17151F 0%, rgba(23, 21, 31, 0.85) 108.06%);
}

.fun-fact-3__bg-shape {
  left: 0;
  bottom: -1px;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .fun-fact-3__bg-shape {
    display: none;
  }
}

.fun-fact-3__wrapper {
  gap: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .fun-fact-3__wrapper {
    justify-content: center;
  }
}

.fun-fact-3__item {
  text-align: center;
  max-width: 242px;
}

.fun-fact-3__icon {
  width: 110px;
  height: 110px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--white);
}

.fun-fact-3__count h2 {
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font_inter);
}

.fun-fact-3__count h2 .odometer.odometer-auto-theme,
.fun-fact-3__count h2 .odometer.odometer-theme-default {
  font-family: var(--font_inter);
  line-height: 1;
}

.fun-fact-3__dec {
  font-weight: 500;
  max-width: 238px;
}

.how-we-works-3__wrapper {
  gap: 22px;
  display: flex;
  margin: 0 120px;
  align-items: center;
}

@media only screen and (max-width: 1700px) {
  .how-we-works-3__wrapper {
    margin: 0 80px;
  }
}

@media only screen and (max-width: 1599px) {
  .how-we-works-3__wrapper {
    margin: 0 50px;
  }
}

@media only screen and (max-width: 1399px) {
  .how-we-works-3__wrapper {
    margin: 0 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .how-we-works-3__wrapper {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .how-we-works-3__wrapper {
    justify-content: center;
  }
}

.how-we-works-3__item {
  gap: 25px;
  display: flex;
  max-width: 544px;
  position: relative;
  padding: 50px 52px;
  align-items: start;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #E9E9E9;
  box-shadow: 0px 12px 55px rgba(24, 14, 9, 0.11);
}

@media (min-width: 1600px) and (max-width: 1806px) {
  .how-we-works-3__item {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 1599px) {
  .how-we-works-3__item {
    gap: 20px;
    padding: 30px;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1399px) {
  .how-we-works-3__item {
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .how-we-works-3__item {
    padding: 22px;
  }
}

.how-we-works-3__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--secondary);
}

@media only screen and (max-width: 1399px) {
  .how-we-works-3__title {
    font-size: 19px;
  }
}

.how-we-works-3__title span {
  color: var(--primary);
}

.how-we-works-3__dec {
  margin-top: 10px;
  max-width: 345px;
  margin-bottom: 15px;
}

.how-we-works-3__btn a {
  gap: 4px;
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  align-items: center;
  color: var(--secondary);
}

.how-we-works-3__btn a i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.how-we-works-3__share-icon {
  top: 50%;
  z-index: 1;
  right: -41px;
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid #E9E9E9;
  transform: translateY(-50%);
  background-color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .how-we-works-3__share-icon {
    top: 15px;
    right: -10px;
  }
}

.how-we-works-3__share-icon .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--primary);
}

.features-section__item {
  border-radius: 10px;
  background: var(--light_bg);
  border: 1px solid var(--border);
  padding: 33.5px 36.5px 39.5px 38.5px;
}

@media only screen and (max-width: 991px) {
  .features-section__item {
    padding: 33.5px 20.5px;
    padding-bottom: 39.5px;
  }
}

.features-section__subtitle {
  display: flex;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  border-bottom: 1px solid var(--primary);
  display: inline-block;
  padding-bottom: 7px;
  align-items: center;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font_inter);
}

.features-section__desc {
  display: flex;
  margin: 22px 0 23px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 991px) {
  .features-section__desc {
    font-size: 16px;
  }
}

.features-section__btn .rr-btn {
  padding: 14.5px 30.2px;
}

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

.unique-features__wrapper::before {
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: rgba(246, 246, 246, 0.7);
}

.unique-features__content {
  margin-right: 89px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .unique-features__content {
    margin-right: 0;
  }
}

.unique-features__content .section-heading__wrap {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .unique-features__content .section-heading__wrap {
    margin-bottom: 20px;
  }
}

.unique-features__wrap {
  margin-top: 40px;
}

@media only screen and (max-width: 1199px) {
  .unique-features__wrap {
    margin-top: 25px;
  }
}

.unique-features__item {
  gap: 25px;
  display: flex;
  margin-bottom: 32px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .unique-features__item {
    gap: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .unique-features__item {
    flex-wrap: wrap;
  }
}

.unique-features__item:last-child {
  margin-bottom: 0;
}

.unique-features__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--body_text);
  line-height: 26px;
  font-family: var(--font_inter);
}

.unique-features__title {
  display: flex;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 24px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.unique-features__icon {
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  background: #EDE5E5;
  justify-content: center;
}

.unique-features__btn {
  margin-top: 40px;
}

.unique-features__btn .rr-btn {
  padding: 19.5px 42.6px;
}

.unique-features__thumb {
  z-index: 2;
  position: relative;
  border-radius: 20px;
  width: fit-content;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 991px) {
  .unique-features__thumb {
    width: 100%;
    margin-top: 30px;
  }
}

.unique-features__thumb img {
  border-radius: 20px;
}

@media only screen and (max-width: 991px) {
  .unique-features__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.appointment-section__wrap {
  z-index: 1;
  padding: 40px;
  margin: 0 auto;
  max-width: 850px;
  position: relative;
  border-radius: 30px;
  margin-bottom: -182px;
  background-color: var(--light_bg);
}

@media only screen and (max-width: 991px) {
  .appointment-section__wrap {
    margin-bottom: -150px;
  }
}

@media (max-width: 575px) {
  .appointment-section__wrap {
    padding: 20px;
  }
}

.appointment-section__form {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
  .appointment-section__form {
    grid-template-columns: repeat(1, 1fr);
  }
}

.appointment-section__input input {
  max-width: 375px;
  width: 100%;
  height: 50px;
  padding: 19px 20px;
  border-radius: 500px;
  background: var(--white);
  border: 1px solid var(--border);
}

@media only screen and (max-width: 767px) {
  .appointment-section__input input {
    max-width: 100%;
  }
}

.appointment-section__input input:focus {
  outline: none;
}

.appointment-section__input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--body_text);
}

.appointment-section__btn {
  margin-top: 20px;
}

.appointment-section__btn .rr-btn {
  width: 100%;
  padding: 17px 33.8px;
}

.appointment-section__bg {
  top: 51px;
  width: 67px;
  height: 105.5px;
  position: absolute;
}

@media only screen and (max-width: 991px) {
  .appointment-section__bg {
    display: none;
  }
}

.appointment-section__bg_1 {
  left: -67px;
  background: #212121;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  clip-path: polygon(0 0, 0% 100%, 100% 91%);
}

.appointment-section__bg_2 {
  left: -67px;
  height: 100.5px;
  background: var(--primary);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  clip-path: polygon(0 0, 68% 100%, 100% 95%);
}

.appointment-section__bg_3 {
  right: -67px;
  background: #212121;
  clip-path: polygon(0 0, 0% 100%, 100% 91%);
}

.appointment-section__bg_4 {
  right: -67px;
  height: 100.5px;
  background: var(--primary);
  clip-path: polygon(0 0, 68% 100%, 100% 95%);
}

.appointment-page__wrapper {
  position: relative;
  padding-top: 117.5px;
}

.appointment-page__wrapper::before {
  content: "";
  top: 0;
  z-index: 1;
  left: 110px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  border-radius: 10px;
  background: var(--light_bg);
}

@media only screen and (max-width: 991px) {
  .appointment-page__wrapper::before {
    left: 0;
  }
}

.appointment-page__thumb {
  z-index: 2;
  position: relative;
}

.appointment-page__thumb>img {
  overflow: hidden;
}

.appointment-page__thumb>img:nth-of-type(2) {
  border-radius: 10px;
}

.appointment-page__thumb .img-one {
  margin-top: 138px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .appointment-page__thumb .img-one {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .appointment-page__thumb .img-one {
    margin-bottom: 28px;
    margin-top: 0;
  }
}

.appointment-page__thumb .img-two {
  top: 0;
  right: 14px;
  display: block;
  position: absolute;
  border: 5px solid var(--white);
}

.appointment-page__thumb .img-two img {
  border: 10px;
}

@media only screen and (max-width: 991px) {
  .appointment-page__thumb .img-two {
    right: 0;
  }
}

@media (max-width: 575px) {
  .appointment-page__thumb .img-two {
    position: inherit;
  }
}

.appointment-page__info {
  top: 157px;
  left: 19px;
  max-width: 200px;
  position: absolute;
  z-index: 2;
  border-radius: 10px;
  background: var(--primary);
  padding: 29px 30px 25px 30px;
}

@media only screen and (max-width: 991px) {
  .appointment-page__info {
    top: 70px;
  }
}

@media (max-width: 575px) {
  .appointment-page__info {
    left: 0;
    top: 0;
    margin-top: 30px;
    max-width: 100%;
    position: inherit;
  }
}

@media (max-width: 575px) {
  .appointment-page__icon {
    text-align: center;
  }
}

.appointment-page__contact {
  z-index: 2;
  margin-left: 10px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .appointment-page__contact {
    margin-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .appointment-page__contact {
    padding: 0 15px;
    margin-top: 50px;
    padding-bottom: 20px;
  }
}

.appointment-page__number {
  font-size: 44px;
  font-weight: 700;
  line-height: 53px;
  color: var(--white);
  padding: 20px 0px 5px 0px;
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .appointment-page__number {
    justify-content: center;
  }
}

.appointment-page__number .odometer.odometer-auto-theme,
.appointment-page__number .odometer.odometer-theme-default {
  font-family: var(--font_inter);
  line-height: 1;
}

.appointment-page__desc {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--white);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .appointment-page__desc {
    justify-content: center;
  }
}

.appointment-page__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_inter);
}

.appointment-page__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: var(--secondary);
  margin: 16px 0px 39px 0px;
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .appointment-page__title {
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
  }
}

.appointment-page__form-input {
  margin-bottom: 20px;
  position: relative;
}

.appointment-page__form-input input {
  width: 100%;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 17px 18px 16px 50px;
}

.appointment-page__form-input input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.appointment-page__form-input input:focus {
  outline: none;
}

.appointment-page__form-input i {
  top: 20px;
  left: 20px;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  color: var(--primary);
}

.appointment-page__form-input .nice-select {
  float: inherit;
  transition: all 0.3s ease-in-out;
  height: 55px;
  position: relative;
}

.appointment-page__form-input .nice-select .icon {
  top: 0%;
  left: -5px;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.appointment-page__form-input .nice-select.open .icon i {
  transform: rotate(180deg);
}

.appointment-page__form-input .nice-select::after {
  display: none;
}

.appointment-page__form-input .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.appointment-page__form-input .nice-select:focus {
  outline: none;
}

.appointment-page__form-input .nice-select .list {
  width: 100%;
}

.appointment-page__form-textarea {
  position: relative;
}

.appointment-page__form-textarea textarea {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 0;
  border: 1px solid var(--border);
  padding: 21px 18px 67px 50px;
}

.appointment-page__form-textarea textarea:focus {
  outline: none;
}

.appointment-page__form-textarea i {
  top: 25px;
  left: 22px;
  position: absolute;
  color: var(--primary);
}

.appointment-page__form-button {
  margin-top: 4px;
  text-align: left;
  margin-top: 26px;
}

@media only screen and (max-width: 1399px) {
  .appointment-page__form-button {
    margin-top: 31px;
  }
}

.appointment-page__form-button .rr-btn {
  padding: 19.5px 37.6px;
  background: var(--primary);
}

.appointment-page__form-button .rr-btn::before {
  background: var(--secondary);
}

.appointment-page__form-button .rr-btn .btn-wrap .text-one {
  color: var(--white);
}

/* === Testimonial section 2 scss (index 02) === */
.testimonial-section__area {
  background: var(--secondary);
}

.testimonial-section__thumb {
  height: 100%;
  margin-right: -315px;
  display: inline-block;
}

@media only screen and (max-width: 1399px) {
  .testimonial-section__thumb {
    margin-right: -54px;
  }
}

@media only screen and (max-width: 1199px),
only screen and (max-width: 991px) {
  .testimonial-section__thumb {
    margin-right: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section__thumb {
    margin-left: -15px;
  }
}

.testimonial-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0 100%);
}

@media only screen and (max-width: 1399px) {
  .testimonial-section__thumb img {
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0 100%);
  }
}

@media only screen and (max-width: 1199px) {
  .testimonial-section__thumb img {
    clip-path: polygon(13% 0%, 100% 0%, 100% 100%, 0 100%);
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section__thumb img {
    clip-path: none;
  }
}

.testimonial-section__wrapper {
  position: relative;
  z-index: 3;
}

.testimonial-section__wrapper .section-heading__wrap {
  margin-bottom: 55px;
}

@media only screen and (max-width: 991px) {
  .testimonial-section__wrapper .section-heading__wrap {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section__wrapper .section-heading__wrap {
    margin-bottom: 30px;
  }
}

.testimonial-section__star {
  margin-bottom: 31px;
}

@media only screen and (max-width: 991px) {
  .testimonial-section__star {
    margin-bottom: 20px;
  }
}

.testimonial-section__star i {
  color: var(--primary);
}

.testimonial-section__desc {
  display: flex;
  font-size: 18px;
  color: #A39D9B;
  font-weight: 400;
  line-height: 30px;
  margin-right: 72px;
  align-items: center;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .testimonial-section__desc {
    margin-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section__desc {
    max-width: 569px;
  }
}

.testimonial-section__author {
  gap: 42px;
  display: flex;
  margin-top: 31px;
  align-items: center;
}

.testimonial-section__author__thumb {
  width: 80px;
  height: 80px;
  border-radius: 500px;
  position: relative;
}

.testimonial-section__author__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section__author__thumb .icon {
  top: 18px;
  right: -20px;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 3px solid #F6F6F6;
  background: var(--primary);
}

.testimonial-section__author__thumb .icon i {
  font-size: 18px;
  color: var(--white);
}

.testimonial-section__author__name {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 8px;
  align-items: center;
  color: var(--white);
  font-family: var(--font_inter);
}

.testimonial-section__author__desgn {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  color: var(--primary);
  font-family: var(--font_inter);
}

.testimonial-section__arrow {
  gap: 11px;
  z-index: 4;
  display: flex;
  margin-left: 50%;
  position: relative;
  align-items: center;
  justify-content: center;
  transform: translateY(-60px);
}

@media only screen and (max-width: 1199px) {
  .testimonial-section__arrow {
    margin-left: 79%;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section__arrow {
    margin-left: 46%;
  }
}

@media (max-width: 575px) {
  .testimonial-section__arrow {
    margin-bottom: 27px;
    justify-content: inherit;
    transform: translateY(26px);
  }
}

.testimonial-section__button-next {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

.testimonial-section__button-next:hover {
  background: var(--primary);
}

.testimonial-section__button-next:hover i {
  color: var(--white);
}

.testimonial-section__button-next i {
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.testimonial-section__button-prev {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

.testimonial-section__button-prev:hover {
  background: var(--primary);
}

.testimonial-section__button-prev:hover i {
  color: var(--white);
}

.testimonial-section__button-prev i {
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.testimonial-section-2__wrapper {
  z-index: 1;
  margin: 0 43px;
  position: relative;
  border-radius: 20px;
  margin-bottom: -250px;
  border: 1px solid var(--border);
  background-color: var(--light_bg);
}

@media only screen and (max-width: 1399px) {
  .testimonial-section-2__wrapper {
    margin: 0px;
    margin-bottom: -250px;
  }
}

.testimonial-section-2__thumb {
  gap: 30px;
  display: grid;
  grid-template-columns: auto auto;
}

@media only screen and (max-width: 991px) {
  .testimonial-section-2__thumb {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-2__thumb {
    grid-template-columns: repeat(1, 1fr);
  }
}

.testimonial-section-2__thumb .image img {
  border-radius: 15px;
}

@media only screen and (max-width: 991px) {
  .testimonial-section-2__thumb .image img {
    width: 100%;
  }
}

.testimonial-section-2__quote i {
  width: 65px;
  height: 65px;
  display: flex;
  font-size: 35px;
  margin-bottom: 31px;
  align-items: center;
  border-radius: 500px;
  color: var(--primary);
  background: #F3EDED;
  justify-content: center;
}

@media (max-width: 575px) {
  .testimonial-section-2__quote i {
    margin-bottom: 20px;
  }
}

.testimonial-section-2__dec {
  font-weight: 600;
  font-size: 20px;
  max-width: 700px;
  line-height: 32px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .testimonial-section-2__dec {
    font-size: 16px;
    line-height: 28px;
  }
}

.testimonial-section-2__author {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

@media (max-width: 575px) {
  .testimonial-section-2__author {
    margin-top: 15px;
    padding-top: 15px;
  }
}

.testimonial-section-2__author .name {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 7px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .testimonial-section-2__author .name {
    font-size: 25px;
  }
}

.testimonial-section-2__author .position {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.testimonial-section-2__button {
  gap: 10px;
  display: flex;
  margin-top: 80px;
  align-items: center;
  justify-content: center;
}

.testimonial-section-2__button span {
  width: 71px;
  height: 1px;
  display: inline-block;
  background: #E9E9E9;
}

.testimonial-section-2__arrow {
  width: 50px;
  height: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
}

.testimonial-section-2__arrow i {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  color: var(--secondary);
}

.testimonial-section-2__arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.testimonial-section-2__arrow:hover i {
  color: var(--white);
}

.testimonial-section-2__custom-pagination {
  bottom: 0;
  right: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.testimonial-section-2__custom-pagination span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
}

.testimonial-section-3__wrapper {
  gap: 20px;
  padding: 20px;
  display: grid;
  padding-bottom: 19px;
  background-color: #F2F2F2;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .testimonial-section-3__wrapper {
    grid-template-columns: auto;
  }
}

@media (max-width: 575px) {
  .testimonial-section-3__wrapper {
    padding: 0;
  }
}

.testimonial-section-3__content {
  width: 825px;
  padding: 80px 100px;
  border-radius: 20px;
  background-color: var(--white);
}

@media only screen and (max-width: 1599px) {
  .testimonial-section-3__content {
    width: 100%;
    padding: 60px 70px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-section-3__content {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-3__content {
    padding: 0 15px;
    border-radius: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-section-3__content .section-heading__wrap {
    margin-bottom: 35px;
  }
}

.testimonial-section-3__author {
  padding: 10px;
  display: flex;
  padding-right: 0;
  overflow: hidden;
  align-items: center;
  position: relative;
  border-radius: 14px;
  justify-content: space-between;
  background-color: var(--light_bg);
}

.testimonial-section-3__author .thumb {
  width: 130px;
  height: 130px;
}

.testimonial-section-3__author .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.testimonial-section-3__author .author-info {
  gap: 30px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .testimonial-section-3__author .author-info {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.testimonial-section-3__author .author-info .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--secondary);
}

.testimonial-section-3__author .author-info .position {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
}

.testimonial-section-3__author .author-car {
  top: -4px;
  bottom: -6px;
  right: -51px;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .testimonial-section-3__author .author-car {
    top: 0;
    bottom: 0;
    right: 0;
    position: inherit;
  }
}

@media (max-width: 575px) {
  .testimonial-section-3__author .author-car {
    display: none;
  }
}

.testimonial-section-3__author .author-car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section-3__dec {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
  color: var(--body_text);
}

@media only screen and (max-width: 767px) {
  .testimonial-section-3__dec {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-3__dec {
    font-size: 16px;
    line-height: 28px;
  }
}

.testimonial-section-3__review {
  gap: 15px;
  display: flex;
  margin-top: 30px;
  padding-top: 20px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #E5E5E5;
}

@media (max-width: 575px) {
  .testimonial-section-3__review {
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.testimonial-section-3__review .review-site {
  gap: 8px;
  align-items: center;
  display: inline-flex;
  border-radius: 100px;
  padding: 4.43px 14.8px;
  background: #F5F5F5;
  border: 1px solid #EBECF5;
}

.testimonial-section-3__review .review-site span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--secondary);
}

.testimonial-section-3__review .review-site_2 {
  border: none;
  padding: 6px 26.8px;
  background-color: #FFE9EB;
}

.testimonial-section-3__review .review-site_2 span {
  color: var(--primary);
}

.testimonial-section-3__thumb {
  height: 100%;
  position: relative;
  border-radius: 20px;
}

.testimonial-section-3__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial-section-3__quote {
  top: 40px;
  left: 40px;
  position: absolute;
}

.testimonial-section-3__quote span {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--primary);
  border: 8px solid var(--white);
}

.testimonial-section-3__quote span i {
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: var(--white);
}

.testimonial-section-4__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .testimonial-section-4__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section-4__top {
    margin-bottom: 30px;
  }
}

.testimonial-section-4__top .section-heading-2__wrap {
  margin-bottom: 0;
}

.testimonial-section-4__item {
  padding: 50px;
  max-width: 750px;
  border-radius: 15px;
  background: var(--white);
}

@media only screen and (max-width: 991px) {
  .testimonial-section-4__item {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section-4__item {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-4__item {
    padding: 20px;
  }
}

.testimonial-section-4__content {
  gap: 20px;
  display: flex;
  align-items: start;
  padding-bottom: 17px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 575px) {
  .testimonial-section-4__content {
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

.testimonial-section-4__quate span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--white);
  border: 5px solid var(--primary);
}

.testimonial-section-4__quate span i {
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
}

.testimonial-section-4__dec {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 545px;
  color: var(--secondary);
  transform: translateY(-5px);
}

@media (max-width: 575px) {
  .testimonial-section-4__dec {
    font-size: 17px;
    line-height: 27px;
  }
}

.testimonial-section-4__info {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.testimonial-section-4__author {
  gap: 15px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .testimonial-section-4__author {
    gap: 0px;
    flex-wrap: wrap;
  }
}

.testimonial-section-4__author .author-thumb {
  width: 60px;
  height: 60px;
}

.testimonial-section-4__author .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

.testimonial-section-4__author .author-text .name {
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
  color: var(--secondary);
}

.testimonial-section-4__author .author-text .position {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--body_text);
}

.testimonial-section-4__review {
  gap: 5px;
  display: flex;
  align-items: center;
}

.testimonial-section-4__review i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  color: #FFB400;
}

.testimonial-section-4__button {
  gap: 10px;
  display: flex;
  align-items: center;
}

.testimonial-section-4__arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
}

.testimonial-section-4__arrow:hover {
  background-color: var(--secondary);
}

.testimonial-section-4__arrow i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}

.testimonial-section-5__item {
  padding: 40px;
  position: relative;
  padding-bottom: 21px;
  border-radius: 15px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 69% 100%, 69% 75%, 68% 73%, 65% 72%, 0 72%);
}

@media only screen and (max-width: 1599px) {
  .testimonial-section-5__item {
    padding: 30px;
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-5__item {
    clip-path: none;
    padding: 20px;
    padding-bottom: 5px;
    border-radius: 15px 15px 0 0;
  }
}

.testimonial-section-5__quote {
  gap: 12px;
  display: flex;
  align-items: start;
  margin-bottom: 23px;
}

@media only screen and (max-width: 991px) {
  .testimonial-section-5__quote {
    margin-bottom: 15px;
  }
}

.testimonial-section-5__quote span {
  width: 17.5px;
  height: 35px;
  display: inline-block;
  background: rgba(231, 16, 16, 0.2);
  clip-path: polygon(0 0, 100% 0%, 100% 50%, 0% 100%);
}

.testimonial-section-5__dec {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--secondary);
}

@media only screen and (max-width: 1199px) {
  .testimonial-section-5__dec {
    font-size: 17px;
    line-height: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section-5__dec {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-5__dec {
    font-size: 17px;
    line-height: 28px;
  }
}

.testimonial-section-5__review {
  max-width: 104px;
  text-align: center;
  margin: 0 0 0 auto;
  margin-top: 44px;
  border-radius: 15px;
  margin-right: -15px;
  border: 1px solid var(--border);
}

@media only screen and (max-width: 1599px) {
  .testimonial-section-5__review {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-section-5__review {
    max-width: 90px;
  }
}

@media only screen and (max-width: 1199px) {
  .testimonial-section-5__review {
    max-width: 104px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section-5__review {
    max-width: 90px;
    margin-top: 25px;
    margin-right: -20px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section-5__review {
    max-width: 104px;
    margin-top: 30px;
    margin-right: -15px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-5__review {
    margin: 0;
    margin-top: 15px;
    margin-right: 0;
  }
}

.testimonial-section-5__review span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  padding: 11px 0;
  display: inline-block;
  color: var(--secondary);
}

.testimonial-section-5__review .star {
  gap: 2px;
  display: flex;
  padding: 8.5px 0;
  align-items: center;
  justify-content: center;
  background-color: var(--light_bg);
  border-top: 1px solid var(--border);
}

.testimonial-section-5__review .star i {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
}

.testimonial-section-5__author {
  left: 0;
  gap: 15px;
  bottom: 0;
  display: flex;
  padding: 15px;
  max-width: 67%;
  width: 100%;
  position: absolute;
  border-radius: 15px;
  align-items: center;
  background-color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .testimonial-section-5__author {
    padding: 12px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-5__author {
    max-width: 100%;
    width: 100%;
    position: inherit;
    border-radius: 0 0 15px 15px;
  }
}

.testimonial-section-5__author .author__thumb {
  width: 60px;
  height: 60px;
}

.testimonial-section-5__author .author__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

.testimonial-section-5__author .author__info .author__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 3px;
  color: var(--secondary);
}

.testimonial-section-5__author .author__info .author__designation {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--body_text);
}

.testimonial-section-5__bg-radius {
  width: 15px;
  height: 15px;
  position: absolute;
  display: inline-block;
  background: var(--primary);
  background: radial-gradient(circle at 0 0, var(--white) 70%, var(--light_bg) 70%);
}

@media (max-width: 575px) {
  .testimonial-section-5__bg-radius {
    display: none;
  }
}

.testimonial-section-5__bg-radius_1 {
  bottom: 28%;
  left: 0;
  transform: rotate(90deg);
}

.testimonial-section-5__bg-radius_2 {
  bottom: 0;
  right: 138px;
  transform: rotate(90deg);
}

@media only screen and (max-width: 1599px) {
  .testimonial-section-5__bg-radius_2 {
    right: 121px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-section-5__bg-radius_2 {
    right: 102px;
  }
}

@media only screen and (max-width: 1199px) {
  .testimonial-section-5__bg-radius_2 {
    right: 130px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section-5__bg-radius_2 {
    right: 96px;
  }
}

.testimonial-section-5__arrow {
  top: 50%;
  left: 72px;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}

@media (min-width: 1699px) and (max-width: 1850px) {
  .testimonial-section-5__arrow {
    left: 20px;
  }
}

@media only screen and (max-width: 1700px) {
  .testimonial-section-5__arrow {
    display: none;
  }
}

.testimonial-section-5__arrow i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}

.testimonial-section-5__arrow-next {
  left: auto;
  right: 73px;
}

@media (min-width: 1700px) and (max-width: 1850px) {
  .testimonial-section-5__arrow-next {
    right: 20px;
  }
}

.testimonial-section-5__arrow:hover {
  background-color: var(--secondary);
}

.blog-details__wrapper .blog-list__content {
  padding-bottom: 32px;
}

.blog-details__wrapper .blog-list__dec {
  margin-bottom: 24px;
}

.blog-details__content .blog-list__title {
  margin-top: 0;
}

.blog-details__gallery {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 20px;
}

@media (max-width: 575px) {
  .blog-details__gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blog-details__content {
  padding: 40px;
  padding-top: 35px;
  padding-bottom: 25px;
}

@media (max-width: 575px) {
  .blog-details__content {
    padding: 20px;
    padding-top: 25px;
  }
}

.blog-details__category {
  margin: 0 40px;
  display: flex;
  padding: 25px 0px;
  align-items: center;
  padding-bottom: 40px;
  justify-content: space-between;
  border-top: 1px solid #EBEBEB;
}

@media (max-width: 575px) {
  .blog-details__category {
    gap: 15px;
    margin: 0 20px;
    flex-wrap: wrap;
    padding: 15px 0px;
    padding-bottom: 30px;
  }
}

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

.blog-details__tag ul {
  list-style: none;
}

.blog-details__tag ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  display: inline-block;
  font-family: var(--font_inter);
}

.blog-details__tag-title,
.blog-details__share-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.blog-details__share {
  gap: 20px;
  display: flex;
  align-items: center;
}

.blog-details__share ul {
  gap: 20px;
  display: flex;
  list-style: none;
  align-items: center;
}

.blog-details__share ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
}

.blog-details__page-prev,
.blog-details__page-next {
  gap: 20px;
  display: flex;
  align-items: center;
}

.blog-details__page-prev .image,
.blog-details__page-next .image {
  width: 80px;
  height: 80px;
}

.blog-details__page-prev .image img,
.blog-details__page-next .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-details__page-prev a,
.blog-details__page-next a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.blog-details__page-prev a:hover,
.blog-details__page-next a:hover {
  color: var(--primary);
}

.blog-details__page {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 30px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EBEBEB;
}

@media (max-width: 575px) {
  .blog-details__page {
    gap: 15px;
  }
}

.blog-details__page-dot {
  width: 38px;
  height: 38px;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 575px) {
  .blog-details__page-dot {
    display: none;
  }
}

.blog-details__page-dot span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #EBEBEB;
}

.blog-details__author {
  gap: 30px;
  display: flex;
  margin-top: 60px;
  margin-bottom: 55px;
  padding: 30px 34px;
  align-items: center;
  border-radius: 10px;
  background: #F6F6F6;
}

@media only screen and (max-width: 767px) {
  .blog-details__author {
    gap: 19px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px 20px;
  }
}

@media (max-width: 575px) {
  .blog-details__author {
    flex-wrap: wrap;
  }
}

.blog-details__author-thumb {
  min-width: 189px;
  height: 189px;
}

@media (max-width: 575px) {
  .blog-details__author-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.blog-details__author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-details__author-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.blog-details__author-position {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  padding-top: 8px;
  padding-bottom: 15px;
  display: inline-block;
  color: var(--primary);
  font-family: var(--font_inter);
}

.blog-details__author-dec {
  font-weight: 400;
  font-size: 16px;
  max-width: 521px;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-details__comment-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 35px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.blog-details__comment__author {
  gap: 25px;
  display: flex;
  padding: 30px 0;
  align-items: center;
  border-bottom: 1px solid rgba(25, 41, 41, 0.1);
}

@media only screen and (max-width: 767px),
(max-width: 575px) {
  .blog-details__comment__author {
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .blog-details__comment__author {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.blog-details__comment__author .author_thumb {
  min-width: 110px;
  height: 110px;
}

.blog-details__comment__author .author_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-details__comment__author .author_info {
  display: flex;
  margin-bottom: 11px;
  align-items: center;
  justify-content: space-between;
}

.blog-details__comment__author .author_info .name {
  font-weight: 700;
  font-size: 20px;
  margin-top: 6px;
  line-height: 20px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.blog-details__comment__author .author_info .date {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-details__comment__author .author_info .reply a {
  gap: 10px;
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  align-items: center;
  color: var(--primary);
  font-family: var(--font_inter);
}

.blog-details__comment__author .author_info .reply a:hover {
  color: var(--secondary);
}

.blog-details__comment__author .author_info .reply a i {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}

.blog-details__comment__author .comment {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-details__comment ul {
  list-style: none;
}

.blog-details__comment ul li:first-of-type .blog-details__comment__author {
  padding-top: 0;
}

.blog-details__comment ul li:last-of-type .blog-details__comment__author {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-details__comment ul li .comment_reply .blog-details__comment__author {
  padding-left: 135px;
}

@media only screen and (max-width: 1199px) {
  .blog-details__comment ul li .comment_reply .blog-details__comment__author {
    padding-left: 40px;
  }
}

@media only screen and (max-width: 767px),
(max-width: 575px) {
  .blog-details__comment ul li .comment_reply .blog-details__comment__author {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .blog-details__comment ul li .comment_reply .blog-details__comment__author {
    padding-left: 0px;
  }
}

.blog-details__comment-form {
  padding: 60px;
  margin-top: 60px;
  padding-top: 55px;
  border-radius: 10px;
  background: #F6F6F6;
}

@media only screen and (max-width: 767px) {
  .blog-details__comment-form {
    padding: 30px;
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .blog-details__comment-form {
    padding: 20px;
    margin-top: 30px;
  }
}

.blog-details__form-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.blog-details__form-dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  margin-bottom: 37px;
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .blog-details__form-dec {
    line-height: 1.3;
  }
}

.blog-details__form-input {
  position: relative;
  margin-bottom: 20px;
}

.blog-details__form-input input {
  width: 100%;
  height: 60px;
  padding: 10px 25px;
  padding-right: 41px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #EBEBEB;
}

.blog-details__form-input input:focus {
  outline: none;
}

.blog-details__form-input input::placeholder {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-details__form-input .icon {
  top: 50%;
  right: 25px;
  position: absolute;
  transform: translateY(-50%);
}

.blog-details__form-input .icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

.blog-details__form-textarea {
  position: relative;
  margin-bottom: 25px;
}

.blog-details__form-textarea textarea {
  width: 100%;
  height: 160px;
  padding: 20px 25px;
  padding-right: 46px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #EBEBEB;
}

.blog-details__form-textarea textarea:focus {
  outline: none;
}

.blog-details__form-textarea textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-details__form-textarea .icon {
  top: 22px;
  right: 25px;
  position: absolute;
}

.blog-details__form-textarea .icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

.blog-details__form-select .nice-select {
  width: 100%;
  height: 60px;
  display: flex;
  margin-bottom: 20px;
  padding: 20px 25px;
  align-items: center;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #EBEBEB;
}

.blog-details__form-select .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.blog-details__form-select .nice-select .icon {
  top: 50%;
  right: 25px;
  line-height: 1;
  position: absolute;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.blog-details__form-select .nice-select .icon i {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
}

.blog-details__form-select .nice-select .list {
  width: 100%;
  background-color: var(--white);
}

.blog-details__form-select .nice-select .option {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--body_text);
  padding: 12px 10px;
  font-family: var(--font_inter);
}

.blog-details__form-select .nice-select .option:hover {
  color: var(--primary);
}

.blog-details__form-select .nice-select .option.selected {
  font-weight: 600;
  color: var(--secondary);
}

.blog-details__form-select .nice-select:after {
  display: none;
}

.blog-details__form-select .nice-select.open .icon {
  transform: translateY(-50%) rotate(180deg);
}

.blog-details__form-button .rr-btn {
  line-height: 1.1;
  padding: 18.71px 34.8px;
}

.team-details__thumb {
  overflow: hidden;
  border-radius: 10px;
}

.team-details__thumb img {
  max-width: inherit;
}

@media only screen and (max-width: 991px) {
  .team-details__thumb img {
    width: 100%;
  }
}

.team-details__content {
  margin-left: 40px;
}

@media only screen and (max-width: 1199px) {
  .team-details__content {
    margin-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .team-details__content {
    margin-top: 30px;
  }
}

.team-details__title {
  display: flex;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .team-details__title {
    font-size: 31px;
  }
}

.team-details__subtitle {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  align-items: center;
  color: var(--primary);
  margin: 10px 0px 24px 0px;
  font-family: var(--font_inter);
}

.team-details__desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #74787C;
  line-height: 26px;
  align-items: center;
  font-family: var(--font_inter);
}

.team-details__social {
  gap: 10px;
  display: flex;
  margin: 33px 0px;
  align-items: center;
}

.team-details__social li {
  list-style: none;
}

.team-details__social li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  background: #F6F6F6;
  color: var(--primary);
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.team-details__social li a:hover {
  background: var(--primary);
  color: var(--white);
}

.team-details__info {
  gap: 73px;
  display: flex;
  margin-bottom: 54px;
  border-radius: 10px;
  border: 1px solid #EBEBEB;
}

@media only screen and (max-width: 1199px) {
  .team-details__info {
    gap: 29px;
  }
}

@media only screen and (max-width: 991px) {
  .team-details__info {
    gap: 122px;
  }
}

@media only screen and (max-width: 767px) {
  .team-details__info {
    gap: 50px;
  }
}

@media (max-width: 575px) {
  .team-details__info {
    gap: 0px;
    flex-wrap: wrap;
  }
}

.team-details__info__item {
  padding: 38px 40px 30px 40px;
}

@media only screen and (max-width: 1399px) {
  .team-details__info__item {
    padding: 38px 35px 30px 36px;
  }
}

@media only screen and (max-width: 1199px) {
  .team-details__info__item {
    padding: 38px 15px 30px 15px;
  }
}

@media only screen and (max-width: 991px) {
  .team-details__info__item {
    padding: 38px 15px 30px 58px;
  }
}

@media only screen and (max-width: 767px) {
  .team-details__info__item {
    padding: 38px 15px 30px 18px;
  }
}

.team-details__info__item:nth-of-type(2) {
  border-left: 1px solid #EBEBEB;
}

.team-details__info__title {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  align-items: center;
  color: var(--secondary);
  margin: 22px 0px 6px 0px;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 767px) {
  .team-details__info__title {
    white-space: nowrap;
  }
}

.team-details__info__content a {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #74787C;
  line-height: 26px;
  align-items: center;
  font-family: var(--font_inter);
}

.team-details__info__content a:hover {
  color: var(--primary);
}

.team-details__icon {
  width: 60px;
  height: 60px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  background: #F6F6F6;
  justify-content: center;
}

.team-details__icon i {
  color: var(--primary);
}

.team-details__skill__title {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 13px;
  align-items: center;
  color: var(--font_inter);
  font-family: var(--font_inter);
}

.team-details__skill__desc {
  display: flex;
  font-size: 16px;
  color: #74787C;
  font-weight: 400;
  line-height: 26px;
  align-items: center;
  font-family: var(--font_inter);
}

.team-details__progress {
  margin-top: 34px;
}

.team-details__progress__wrap {
  width: 100%;
}

.team-details__progress__wrap label {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 8px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.team-details__progress__wrap .progress-outer {
  position: relative;
}

.team-details__progress__wrap .progress-outer .progress-num {
  top: -30px;
  right: 0;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  position: absolute;
  align-items: center;
  justify-content: end;
  color: var(--primary);
  font-family: var(--font_inter);
}

.team-details__progress__wrap .progress-outer .progress {
  height: 7px;
  background: var(--white);
}

.team-details__progress__wrap .progress-outer .progress .progress-bar {
  color: var(--white);
  border-radius: 10px;
  background: var(--primary);
}

.team-details__progress__item {
  gap: 30px;
  padding: 5px;
  display: flex;
  padding-right: 25px;
  border-radius: 5px;
  margin-bottom: 15px;
  align-items: center;
  background: #F6F6F6;
}

@media (max-width: 575px) {
  .team-details__progress__item {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}

.team-details__progress__item:last-child {
  margin-bottom: 0;
}

.team-details__progress__item .icon {
  display: flex;
  padding: 18px 18px;
  border-radius: 5px;
  align-items: center;
  background: #FFFFFF;
  justify-content: center;
}

@media (max-width: 575px) {
  .team-details__progress__item .icon {
    padding: 12px 12px;
  }
}

.service-details__thumb {
  border-radius: 10px;
}

.service-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media only screen and (max-width: 1199px) {
  .service-details__thumb img {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .service-details__thumb img {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .service-details__thumb img {
    margin-bottom: 40px;
  }
}

.service-details__title {
  display: flex;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin: 33px 0px 17px 0;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 1199px) {
  .service-details__title {
    margin: 0px 0px 17px 0;
  }
}

@media only screen and (max-width: 991px) {
  .service-details__title {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .service-details__title {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .service-details__title {
    font-size: 22px;
    line-height: 34px;
  }
}

.service-details__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.service-details__desc-one {
  margin-bottom: 25px;
}

.service-details__desc-two {
  margin-top: -7px;
}

.service-details__wrapper {
  margin: 33px 0px 0px 0px;
}

.service-details__wrap {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
  .service-details__wrap {
    display: flex;
    gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .service-details__wrap {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .service-details__wrap {
    display: block;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .service-details__wrap-one {
    margin-bottom: 20px;
  }
}

.service-details__item {
  gap: 20px;
  display: flex;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--white);
  padding: 29px 37px 29px 38px;
  border: 1px solid var(--border);
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1);
}

@media only screen and (max-width: 1399px) {
  .service-details__item {
    padding: 23px 20px 22px 24px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-details__item {
    margin-bottom: 0;
  }
}

.service-details__item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .service-details__item {
    padding: 23px 15px 15px 24px;
  }
}

@media only screen and (max-width: 767px) {
  .service-details__item {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .service-details__item {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .service-details__item .content {
    text-align: center;
  }
}

.service-details__item .content .title {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 11px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .service-details__item .content .title {
    font-size: 18px;
    justify-content: center;
  }
}

.service-details__item .content .desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.service-details__sidebar__item {
  border-radius: 10px;
  margin-bottom: 30px;
  background: var(--light_bg);
  padding: 36px 40px 40px 40px;
}

@media only screen and (max-width: 1199px) {
  .service-details__sidebar__item {
    padding: 36px 20px 35px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .service-details__sidebar__item {
    margin-top: 30px;
  }
}

.service-details__sidebar__title {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  position: relative;
  align-items: center;
  margin-bottom: 29px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
  font-family: var(--font_inter);
}

.service-details__sidebar__title::before {
  content: "";
  bottom: -1px;
  width: 66px;
  height: 1px;
  position: absolute;
  background: var(--primary);
}

.service-details__sidebar__list li {
  list-style: none;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.service-details__sidebar__list li:last-child {
  margin-bottom: 0;
}

.service-details__sidebar__list li a {
  display: flex;
  font-size: 16px;
  list-style: none;
  font-weight: 600;
  line-height: 19px;
  align-items: center;
  padding: 15.5px 20px;
  border-radius: 5px;
  color: var(--secondary);
  background: var(--white);
  font-family: var(--font_inter);
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
}

.service-details__sidebar__list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.service-details__sidebar__thumb {
  position: relative;
  z-index: 1;
}

.service-details__sidebar__thumb img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .service-details__sidebar__content {
    margin-top: -160px;
  }
}

@media only screen and (max-width: 767px) {
  .service-details__sidebar__content {
    margin-top: -103px;
  }
}

@media (max-width: 575px) {
  .service-details__sidebar__content {
    margin-top: -93px;
  }
}

.service-details__sidebar__icon {
  left: 43px;
  z-index: 2;
  width: 80px;
  height: 80px;
  bottom: 47px;
  display: flex;
  margin-top: -42px;
  position: absolute;
  border-radius: 100%;
  align-items: center;
  background: var(--white);
  justify-content: center;
  border: 10px solid var(--primary);
}

@media only screen and (max-width: 991px) {
  .service-details__sidebar__icon {
    left: 122px;
    bottom: 138px;
  }
}

@media only screen and (max-width: 767px) {
  .service-details__sidebar__icon {
    left: 84px;
    bottom: 138px;
  }
}

@media (max-width: 575px) {
  .service-details__sidebar__icon {
    left: 52px;
    bottom: 147px;
  }
}

.service-details__sidebar__wrap {
  bottom: -120px;
  position: absolute;
  background: var(--primary);
  padding: 57.5px 40px 32px 40px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  clip-path: polygon(0 21%, 21% 0%, 100% 37%, 100% 100%, 0 100%);
}

@media only screen and (max-width: 1199px) {
  .service-details__sidebar__wrap {
    padding: 57.5px 20px 32px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .service-details__sidebar__wrap {
    position: inherit;
  }
}

@media (max-width: 575px) {
  .service-details__sidebar__wrap {
    clip-path: polygon(0 21%, 30% 0%, 100% 37%, 100% 100%, 0 100%);
  }
}

.service-details__sidebar__title-two {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  align-items: center;
  color: var(--white);
  padding: 25px 0px 10px 0px;
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .service-details__sidebar__title-two {
    font-size: 22px;
  }
}

.service-details__sidebar__desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  align-items: center;
  color: var(--white);
  font-family: var(--font_inter);
}

.why-choose-us__wrapper .section-heading__wrap {
  margin-bottom: 48px;
}

@media only screen and (max-width: 991px) {
  .why-choose-us__wrapper .section-heading__wrap {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-us__wrapper .section-heading__wrap {
    margin-bottom: 30px;
  }
}

.why-choose-us__thumb {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.why-choose-us__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.why-choose-us__content {
  margin-left: 11px;
  margin-right: 3px;
}

@media only screen and (max-width: 1199px) {
  .why-choose-us__content {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  .why-choose-us__content {
    margin-top: 30px;
  }
}

.why-choose-us__dec {
  max-width: 570px;
}

.why-choose-us__list ul {
  list-style: none;
  margin-top: 29px;
}

@media only screen and (max-width: 1199px) {
  .why-choose-us__list ul {
    margin-top: 20px;
  }
}

.why-choose-us__list ul li {
  gap: 14px;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 14px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--body_text);
}

@media (max-width: 575px) {
  .why-choose-us__list ul li {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.why-choose-us__list ul li:last-of-type {
  margin-bottom: 0;
}

.why-choose-us__list ul li i {
  width: 30px;
  height: 30px;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  line-height: 26px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}

.why-choose-us__btn {
  gap: 22px;
  display: flex;
  padding-top: 31px;
  margin-top: 33px;
  align-items: center;
  border-top: 1px solid var(--border);
}

@media only screen and (max-width: 1199px) {
  .why-choose-us__btn {
    margin-top: 25px;
    padding-top: 25px;
  }
}

@media (max-width: 575px) {
  .why-choose-us__btn {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
  }
}

.why-choose-us__btn .btn-one .rr-btn {
  padding: 19.5px 37.43px;
}

.why-choose-us__btn .btn-two .rr-btn {
  line-height: 1.1;
  padding: 18.71px 40.8px;
  background-color: var(--light_bg);
}

.why-choose-us__btn .btn-two .rr-btn .btn-wrap .text-one {
  color: var(--secondary);
}

.brand-section__active .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-section__active .swiper-wrapper .swiper-slide {
  width: auto;
}

.brand-section__item {
  width: 304px;
  height: 140px;
  display: flex;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  background-color: var(--light_bg);
}

@media only screen and (max-width: 767px) {
  .brand-section__item {
    width: 250px;
    height: 110px;
  }
}

@media (max-width: 575px) {
  .brand-section__item {
    width: 190px;
    height: 90px;
  }
}

@media (max-width: 575px) {
  .brand-section__item img {
    width: 75px;
  }
}

.why-choose-us-2__title {
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  text-align: center;
  margin-bottom: 105px;
  color: var(--primary);
  text-transform: uppercase;
}

@media only screen and (max-width: 1599px) {
  .why-choose-us-2__title {
    font-size: 80px;
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-2__title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-2__title {
    font-size: 50px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-us-2__title {
    font-size: 30px;
    text-align: start;
    margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-2__title {
    font-size: 27px;
  }
}

.why-choose-us-2__content .section-heading__wrap {
  max-width: 608px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-2__content .section-heading__wrap {
    margin-bottom: 15px;
  }
}

.why-choose-us-2__dec {
  font-weight: 400;
  font-size: 18px;
  max-width: 680px;
  line-height: 28px;
  color: var(--body_text);
}

.why-choose-us-2__list {
  margin-top: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D9D9D9;
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-2__list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}

.why-choose-us-2__list ul {
  list-style: none;
}

.why-choose-us-2__list ul li {
  gap: 17px;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  align-items: center;
  color: var(--secondary);
}

.why-choose-us-2__list ul li i {
  font-weight: 900;
  font-size: 16px;
  line-height: 32px;
  color: var(--primary);
}

.why-choose-us-2__thumb {
  text-align: end;
  margin-right: -315px;
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-2__thumb {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-2__thumb {
    margin-top: 30px;
  }
}

.why-choose-us-2__thumb img {
  mask-image: url(../img/why-choose-us/why-choose-us-2_01.png);
  mask-size: 100%, 100%;
}

.why-choose-us-3__wrapper {
  gap: 20px;
  margin: 0 40px;
  display: grid;
  padding-top: 50px;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-3__wrapper {
    margin: 0 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-3__wrapper {
    padding-top: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .why-choose-us-3__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-us-3__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.why-choose-us-3__card {
  padding: 0 50px;
  max-width: 445px;
  text-align: center;
  position: relative;
  border-radius: 15px;
  padding-bottom: 42px;
  background-color: var(--light_bg);
}

@media only screen and (max-width: 1599px) {
  .why-choose-us-3__card {
    padding: 20px 30px;
    padding-top: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-3__card {
    padding: 20px 25px;
  }
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-3__card {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-us-3__card {
    margin: 0 auto;
  }
}

.why-choose-us-3__icon {
  width: 100px;
  height: 100px;
  display: flex;
  margin: 0 auto;
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  transform: translateY(-50px);
  background-color: var(--primary);
}

@media only screen and (max-width: 767px) {
  .why-choose-us-3__icon {
    width: 80px;
    height: 80px;
    transform: translateY(-10px);
  }
}

.why-choose-us-3__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-top: 7px;
  margin-bottom: 14px;
  color: var(--secondary);
}

@media only screen and (max-width: 1599px) {
  .why-choose-us-3__title {
    font-size: 23px;
  }
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-3__title {
    font-size: 20px;
  }
}

.why-choose-us-3__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 340px;
  margin: 0 auto;
  color: var(--body_text);
}

.why-choose-us-3__bg-spape {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
}

.why-choose-us__item {
  border-radius: 10px;
  padding: 30px 30px 22px 30px;
}

@media only screen and (max-width: 991px) {
  .why-choose-us__item {
    padding: 30px 20px 22px 20px;
  }
}

.why-choose-us__item .icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-choose-us__item span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  align-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  border: 5px solid #EBEBEB;
  font-family: var(--font_inter);
}

.why-choose-us__title {
  display: flex;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  align-items: center;
  color: var(--secondary);
  margin: 23px 0px 9px 0px;
  font-family: var(--font_inter);
}

@media only screen and (max-width: 991px) {
  .why-choose-us__title {
    font-size: 21px;
  }
}

.why-choose-us__desc {
  display: flex;
  font-size: 16px;
  color: #74787C;
  font-weight: 400;
  line-height: 26px;
  align-items: center;
  font-family: var(--font_inter);
}

.why-choose-us-4 .section-heading-2__wrap {
  margin-bottom: 73px;
}

@media only screen and (max-width: 991px) {
  .why-choose-us-4 .section-heading-2__wrap {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-us-4 .section-heading-2__wrap {
    margin-bottom: 30px;
  }
}

.why-choose-us-4__wrap {
  padding: 60px 45px;
  text-align: center;
  border-radius: 15px;
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-4__wrap {
    padding: 30px 20px;
  }
}

.why-choose-us-4__wrap:hover {
  border-color: var(--bg-3);
  background-color: var(--bg-3);
  transform: translateY(-20px);
}

@media only screen and (max-width: 991px) {
  .why-choose-us-4__wrap:hover {
    transform: translateY(0);
  }
}

.why-choose-us-4__wrap:hover .why-choose-us-4__icon {
  background-color: var(--white);
}

.why-choose-us-4__wrap:hover .why-choose-us-4__title {
  color: var(--white);
}

.why-choose-us-4__icon {
  width: 120px;
  height: 120px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--light_bg);
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-4__icon {
    width: 100px;
    height: 100px;
  }
}

.why-choose-us-4__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-top: 37px;
  margin-bottom: 18px;
  color: var(--secondary);
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-4__title {
    margin-top: 20px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-us-4__title {
    font-size: 22px;
  }
}

.why-choose-us-4__title a:hover {
  color: var(--primary);
}

.why-choose-us-4__dec {
  margin: 0 auto;
  max-width: 380px;
}

.why-choose-us-4__btn {
  margin-top: 33px;
}

.why-choose-us-4__btn .rr-btn {
  padding: 12px 27.4px;
}

.why-choose-us-4__btn .rr-btn .btn-wrap .text-two {
  color: var(--primary);
}

.why-choose-us-4_5__wrap:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}

.why-choose-us-4_5__wrap:hover .why-choose-us-4__dec {
  color: var(--white);
}

.why-choose-us-4_5__wrap:hover .why-choose-us-4__btn .rr-btn {
  background-color: var(--white);
}

.why-choose-us-4_5__wrap:hover .why-choose-us-4__btn .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.why-choose-us-4_5__wrap:hover .why-choose-us-4__btn .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.why-choose-us-4_5__wrap .why-choose-us-4__title a:hover {
  color: var(--secondary);
}

.why-choose-us-4_5__wrap .why-choose-us-4__btn .rr-btn {
  padding: 17px 32.41px;
}

.why-choose-us-5-2 {
  margin-top: -98px;
  position: relative;
  border-radius: 100px 100px 0 0;
}

@media only screen and (max-width: 991px) {
  .why-choose-us-5-2 {
    margin-top: 0;
    border-radius: 0;
  }
}

.why-choose-us-5__wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 614px 437px 479px;
}

@media only screen and (max-width: 1599px) {
  .why-choose-us-5__wrapper {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 1199px) {
  .why-choose-us-5__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .why-choose-us-5__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.why-choose-us-5__content .section-heading-2__wrap {
  max-width: 500px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-5__content .section-heading-2__wrap {
    margin-bottom: 20px;
  }
}

.why-choose-us-5__content .section-heading-2__wrap .section__title {
  line-height: 1.2;
}

.why-choose-us-5__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  max-width: 503px;
  color: var(--secondary);
}

@media only screen and (max-width: 1599px) {
  .why-choose-us-5__text br {
    display: none;
  }
}

.why-choose-us-5__dec {
  margin-top: 25px;
  margin-bottom: 32px;
  max-width: 530px;
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-5__dec {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

.why-choose-us-5__btn .rr-btn {
  padding: 17px 42.4px;
}

.why-choose-us-5__thumb img {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

@media only screen and (max-width: 767px) {
  .why-choose-us-5__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.why-choose-us-5__card {
  margin-left: 56px;
  padding-bottom: 33px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E4E4E4;
}

@media only screen and (max-width: 1599px) {
  .why-choose-us-5__card {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-5__card {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.why-choose-us-5__card:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.why-choose-us-5__card p {
  max-width: 408px;
}

.why-choose-us-5__icon {
  width: 80px;
  height: 80px;
  display: flex;
  border-radius: 500px;
  align-items: center;
  justify-content: center;
  background-color: #EED9DB;
}

.why-choose-us-5__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-top: 36px;
  margin-bottom: 13px;
  color: var(--secondary);
}

@media only screen and (max-width: 1399px) {
  .why-choose-us-5__title {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-5__title {
    font-size: 18px;
  }
}

.work-process__item {
  text-align: center;
}

.work-process__icon {
  width: 130px;
  height: 130px;
  display: flex;
  margin: 0 auto;
  border-radius: 500px;
  align-items: center;
  outline-offset: -10px;
  justify-content: center;
  background: var(--white);
  outline: 1px dashed var(--primary);
  box-shadow: 0px 9px 39px rgba(0, 0, 0, 0.13);
}

.work-process__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-top: 38px;
  margin-bottom: 13px;
  color: var(--secondary);
}

.work-process__dec {
  max-width: 310px;
  margin: 0 auto;
}

.how-we-are__btn {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.how-we-are__btn .rr-btn {
  line-height: 1.1;
  padding: 18.71px 40.93px;
}

.how-we-are__btn .rr-btn .btn-wrap .text-one,
.how-we-are__btn .rr-btn .btn-wrap .text-two {
  gap: 4px;
}

.how-we-are__btn .rr-btn .btn-wrap .text-one i,
.how-we-are__btn .rr-btn .btn-wrap .text-two i {
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.how-we-are__btn .btn-two .rr-btn {
  padding: 18.71px 39.2px;
  background-color: var(--white);
}

.how-we-are__btn .btn-two .rr-btn::before {
  background-color: var(--primary);
}

.how-we-are__btn .btn-two .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}

.how-we-are__btn .btn-two .rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.how-we-are__thumb {
  position: relative;
  clip-path: polygon(0% 0%, 50% 15%, 100% 0, 100% 100%, 0% 100%);
}

.how-we-are__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(22, 25, 33, 0.81);
}

.how-we-are__thumb img {
  width: 100%;
  height: 789px;
  object-fit: cover;
}

@media only screen and (max-width: 1199px) {
  .how-we-are__thumb img {
    height: 720px;
  }
}

@media only screen and (max-width: 991px) {
  .how-we-are__thumb img {
    height: 580px;
  }
}

@media only screen and (max-width: 767px) {
  .how-we-are__thumb img {
    height: 540px;
  }
}

@media (max-width: 575px) {
  .how-we-are__thumb img {
    height: 620px;
  }
}

.how-we-are__content {
  bottom: 134px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}

@media only screen and (max-width: 1199px) {
  .how-we-are__content {
    margin: 0 15px;
    bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .how-we-are__content {
    bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .how-we-are__content {
    bottom: 70px;
  }
}

.how-we-are__content .section-heading__wrap {
  margin-bottom: 57px;
}

@media only screen and (max-width: 991px) {
  .how-we-are__content .section-heading__wrap {
    margin-bottom: 30px;
  }
}

.how-we-are__content .section-heading__wrap .section__subtitle {
  margin-bottom: 23px;
}

.how-we-are__title {
  margin: 0 auto;
  font-weight: 600;
  font-size: 54px;
  max-width: 980px;
  line-height: 64px;
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .how-we-are__title {
    font-size: 38px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .how-we-are__title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .how-we-are__title {
    font-size: 24px;
    line-height: 34px;
  }
}

.our-experience__wrapper {
  background: linear-gradient(180deg, #F4F4F4 0%, rgba(244, 244, 244, 0) 100%);
}

@media only screen and (max-width: 991px) {
  .our-experience__content {
    margin-bottom: 30px;
  }
}

.our-experience__content .section-heading__wrap {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .our-experience__content .section-heading__wrap {
    margin-bottom: 30px;
  }
}

.our-experience__text {
  font-size: 20px;
  max-width: 660px;
  font-weight: 600;
  line-height: 30px;
  color: var(--secondary);
}

.our-experience__dec {
  max-width: 630px;
  margin-top: 15px;
  margin-bottom: 33px;
}

.our-experience__btn .rr-btn {
  line-height: 1.2;
  padding: 15.41px 35.7px;
}

.our-experience__slide {
  max-width: 336px;
  overflow: hidden;
  border-radius: 15px;
}

.our-experience__active .swiper-wrapper .swiper-slide {
  width: 336px !important;
  height: 420px !important;
  border-radius: 15px;
}

@media only screen and (max-width: 1199px) {
  .our-experience__active .swiper-wrapper .swiper-slide {
    width: 305px !important;
    height: 380px !important;
  }
}

@media (max-width: 575px) {
  .our-experience__active .swiper-wrapper .swiper-slide {
    width: 245px !important;
    height: 305px !important;
  }
}

.our-experience__active .swiper-wrapper .swiper-slide.swiper-slide-active .our-experience__thumb::before {
  opacity: 1;
  visibility: visible;
}

.our-experience__active .swiper-wrapper .swiper-slide.swiper-slide-active .our-experience__thumb::after {
  opacity: 1;
  visibility: visible;
}

.our-experience__active .swiper-wrapper .swiper-slide.swiper-slide-active .our-experience__thumb img {
  filter: grayscale(1);
}

.our-experience__active .swiper-wrapper .swiper-slide.swiper-slide-active .our-experience__info {
  opacity: 1;
  visibility: visible;
}

.our-experience__thumb {
  position: relative;
  border-radius: 15px;
  border: 5px solid var(--white);
  box-shadow: 0px 12px 52px rgba(22, 10, 11, 0.17);
}

.our-experience__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  visibility: hidden;
  position: absolute;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(232, 28, 46, 0) 0%, #E81C2E 59.05%);
}

.our-experience__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 15px;
  background: #E81C2E;
  mix-blend-mode: multiply;
  transition: all 0.3s ease-in-out;
}

.our-experience__thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.our-experience__info {
  left: 35px;
  z-index: 1;
  bottom: 25px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .our-experience__info {
    left: 15px;
    bottom: 20px;
  }
}

.our-experience__info p {
  max-width: 250px;
  margin-bottom: 20px;
}

.our-experience__icon {
  width: 99px;
  height: 99px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--white);
}

@media (max-width: 575px) {
  .our-experience__icon {
    width: 80px;
    height: 80px;
  }
}

.our-experience__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-top: 105px;
  margin-bottom: 10px;
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .our-experience__title {
    margin-top: 65px;
  }
}

@media (max-width: 575px) {
  .our-experience__title {
    margin-top: 20px;
  }
}

.our-experience__button a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  position: relative;
  color: var(--white);
}

.our-experience__button a::before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  position: absolute;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}

.our-experience__button a:hover::before {
  left: 0;
  width: 0;
}

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