@import "/assets/fonts/fonts.css";
@font-face {
  src: url("/assets/fonts/LosAndesLotaGrotesqueBlack.otf") format("opentype");
}
@font-face {
  src: url("/assets/fonts/LosAndesLotaGrotesqueBold.otf") format("opentype");
}
@font-face {
  src: url("/assets/fonts/LosAndesLotaGrotesqueLight.otf") format("opentype");
}
@font-face {
  src: url("/assets/fonts/LosAndesLotaGrotesqueRegular.otf") format("opentype");
}
@font-face {
  src: url("/assets/fonts/LosAndesLotaGrotesqueAlt1Regular.otf")
    format("opentype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lota", sans-serif;
}
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  min-width: 100px;
  z-index: 99;
  display: none;
  flex-direction: column;
}

.dropdown-menu.active {
  display: flex;
}

.dropdown-menu button {
  padding: 8px 12px;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
}

.dropdown-menu button:hover {
  background: #f0f0f0;
}
body {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
}
body .button-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  padding: 14px 16px;
  background-color: #0074c8;
  transition: 450ms ease;
}
body .button-item p {
  color: #fbfbfb;
  font-weight: 400;
  font-size: 16px;
}
body .button-item .img-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
  overflow: hidden;
}
body .button-item .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  transition: transform 450ms ease;
}
body .button-item .img-wrapper img:first-child {
  transform: translateY(0);
  z-index: 2;
}
body .button-item .img-wrapper img:last-child {
  transform: translateY(-100%);
  z-index: 1;
}
body .button-item:hover {
  background-color: #e3a72f;
}
body .button-item:hover .img-wrapper img:first-child {
  transform: translateY(100%);
}
body .button-item:hover .img-wrapper img:last-child {
  transform: translateY(0);
}

.header-wrapper {
  width: 100%;
  padding: 24px 40px;
}
.header-wrapper .header {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .header .icon-wrapper {
  width: 117px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header-wrapper .header .icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header-wrapper .header .section-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
}
.header-wrapper .header .section-right .navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}
.header-wrapper .header .section-right .navbar .nav-item {
  transition: 450ms ease;
  padding: 14px 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 36px;
  box-shadow: inset 0px 0px 6px 0px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}
.header-wrapper .header .section-right .navbar .nav-item:hover {
  background-color: white;
  color: black;
}
.header-wrapper .header .section-right .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
}
.header-wrapper .header .section-right .right .tel-item {
  min-width: 52px;
  width: 52px;
  min-height: 52px;
  height: 52px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: 450ms ease;
  outline: none !important;
  border: none;
}
.header-wrapper .header .section-right .right .tel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.header-wrapper .header .section-right .right .tel-item:hover {
  background-color: #e3a72f;
}
.header-wrapper.with_hero {
  background-color: transparent;
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 24px;
}

.hero-wrapper {
  width: 100%;
  height: 100vh;
  background-color: transparent;
  position: relative;
}
.hero-wrapper .hero {
  width: 100%;
  position: relative;
  height: 100%;
  background-color: white;
}
.hero-wrapper .hero .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-wrapper .hero .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-wrapper .hero .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.hero-wrapper .hero .swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-wrapper .hero .swiper .swiper-slide .text-content {
  z-index: 10;
  width: 100%;
  max-width: 957px;
  margin: 0 auto;
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-wrapper .hero .swiper .swiper-slide .text-content h1 {
  color: #ffffff;
  font-weight: 600;
  font-size: 54px;
  line-height: 78px;
  text-align: center;
  width: 100%;
  max-width: 900px;
}
.hero-wrapper .hero .swiper .swiper-slide .text-content .button-content {
  width: 100%;
  max-width: 643px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero-wrapper .hero .swiper .swiper-slide .text-content .button-content p {
  color: #f4f4f4;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  width: 100%;
  max-width: 643px;
}
.hero-wrapper .hero .swiper .swiper-pagination {
  bottom: 28px;
  .swiper-pagination-bullet {
    width: 12px;
    min-width: 12px;
    height: 8px;
    border-radius: 8px;
    box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 1);
    transform: scale(1);
    background: transparent;
  }
  .swiper-pagination-bullet-active {
    width: 27px;
    border: none !important;
  }
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button {
  transition: 450ms ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  overflow: hidden;
  padding: 6px 16px;
  background: #ffffff;
  border-radius: 20px;
  gap: 50px;
  position: relative;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button
  p {
  position: relative;
  transition: 450ms ease;
  color: #282828;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button
  .wrap-icon {
  position: relative;
  z-index: 1;
  transition: 450ms ease;
  min-width: 40px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0074c8;
  border-radius: 100px;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button
  .wrap-icon
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button::after {
  content: "";
  transition: 450ms ease;
  min-width: 40px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  background-color: #0074c8;
  border-radius: 100px;
  position: absolute;
  right: 16px;
  z-index: 0;
  pointer-events: none;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button:hover {
  background-color: #0074c8;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button:hover
  .wrap-icon {
  opacity: 0;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button:hover
  p {
  color: white;
  z-index: 10;
  transform: translateX(43%);
}
.hero-wrapper
  .hero
  .swiper
  .swiper-slide
  .text-content
  .button-content
  .get-button:hover::after {
  width: 100%;
  height: 100%;
  min-width: unset;
  min-height: unset;
  border-radius: 20px;
}
.hero-wrapper .hero .swiper .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-wrapper .hero .swiper .swiper-pagination-bullet {
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  min-width: 12px;
  height: 8px;
  min-height: 8px;
  width: 12px;
  border-radius: 8px;
}
.hero-wrapper
  .hero
  .swiper
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-radius: 8px;
  min-width: 27px;
  width: 27px;
  height: 8px;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    143.59deg,
    rgba(0, 0, 0, 0.4) 13.57%,
    rgba(0, 0, 0, 0.1) 50.86%,
    rgba(0, 0, 0, 0.4) 88.15%
  );
}

.reliable-partner-wrapper {
  width: 100%;
  margin-top: 100px;
  padding: 0 40px;
}
.reliable-partner-wrapper .reliable-partner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.reliable-partner-wrapper .reliable-partner .left-image-container {
  max-width: 670px;
  width: 100%;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.reliable-partner-wrapper .reliable-partner .left-image-container .main-image {
  width: 100%;
  position: relative;
  z-index: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.reliable-partner-wrapper .reliable-partner .left-image-container .effect {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -1px;
  min-width: 276px;
  width: 276px;
  height: 160px;
  min-height: 160px;
}
.reliable-partner-wrapper
  .reliable-partner
  .left-image-container
  .text-content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  max-width: 245px;
  width: 100%;
  padding: 20px 20px;
  border-radius: 20px;
  background: rgba(0, 116, 200, 0.8196078431);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.reliable-partner-wrapper
  .reliable-partner
  .left-image-container
  .text-content
  .left-image {
  min-width: 70px;
  width: 70px;
  min-height: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 20px;
}
.reliable-partner-wrapper
  .reliable-partner
  .left-image-container
  .text-content
  .left-image
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.reliable-partner-wrapper
  .reliable-partner
  .left-image-container
  .text-content
  .mini-text {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.reliable-partner-wrapper
  .reliable-partner
  .left-image-container
  .text-content
  .mini-text
  .spec {
  font-weight: bold;
}
.reliable-partner-wrapper .reliable-partner .text-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 34px;
}
.reliable-partner-wrapper .reliable-partner .text-container .top-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .spec-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 0;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .spec-title
  img {
  min-width: 24px;
  width: 24px;
  min-height: 24px;
  height: 24px;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .spec-title
  h4 {
  color: #09002a;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  text-align: left;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  h2 {
  color: #1d1d1d;
  font-weight: 700;
  font-size: 50px;
  line-height: 70px;
  text-align: left;
  max-width: 500px;
  width: 100%;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .desc {
  color: #757575;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  max-width: 630px;
  width: 100%;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .items-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .items-grid
  .item-grid {
  width: 100%;
  gap: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .items-grid
  .item-grid
  .icon-wrapping {
  min-width: 70px;
  width: 70px;
  height: 70px;
  min-height: 70px;
  background: #fefefe;
  border: 0.8px solid #ededed;
  box-shadow: 0px 4px 4px 0px rgba(204, 204, 204, 0.2509803922);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .items-grid
  .item-grid
  .icon-wrapping
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .items-grid
  .item-grid
  .texts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
  max-width: 211px;
  width: 100%;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .items-grid
  .item-grid
  .texts
  h5 {
  color: #282828;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.reliable-partner-wrapper
  .reliable-partner
  .text-container
  .top-container
  .title-content-main
  .items-grid
  .item-grid
  .texts
  p {
  color: #acacac;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  max-width: 211px;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.areas-of-our-work-wrapper {
  width: 100%;
  margin-top: 130px;
  background: #f6f8fa;
  padding: 80px 40px;
}
.areas-of-our-work-wrapper .areas-of-our-work {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 52px;
}
.areas-of-our-work-wrapper .areas-of-our-work .top-title-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
.areas-of-our-work-wrapper .areas-of-our-work .top-title-area .title-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  gap: 10px;
}
.areas-of-our-work-wrapper .areas-of-our-work .top-title-area .title-text img {
  min-width: 24px;
  width: 24px;
  height: 24px;
  min-height: 24px;
}
.areas-of-our-work-wrapper .areas-of-our-work .top-title-area .title-text p {
  color: #09002a;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
}
.areas-of-our-work-wrapper .areas-of-our-work .top-title-area h3 {
  max-width: 568px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1d1d1d;
  font-weight: 700;
  font-size: 50px;
  line-height: 70px;
}
.areas-of-our-work-wrapper .areas-of-our-work .grid-card-content {
  width: 100%;
  gap: 20px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
}
.areas-of-our-work-wrapper .areas-of-our-work .grid-card-content .card-item {
  width: 100%;
  position: relative;
  background-color: transparent;
  transition: 450ms ease;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top {
  width: 100%;
  min-height: 300px;
  height: 300px;
  background-image: url("/assets/images/s.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  border-radius: 20px;
  padding: 42px 30px;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top
  .top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e7ea;
  gap: 24px;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top
  .top
  .icon-wrap-main {
  transition: 450ms ease;
  min-width: 70px;
  width: 70px;
  min-height: 70px;
  height: 70px;
  border-radius: 16px;
  background: #0074c8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top
  .top
  .icon-wrap-main
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top
  .top
  h6 {
  color: #282828;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  text-align: left;
  max-width: 212px;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top
  .text-content-mini {
  min-height: 106px;
  height: 106px;
  margin-top: 20px;
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 14px;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top
  .text-content-mini
  p {
  color: #7c7c7c;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  max-width: 380px;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .main-top
  .text-content-mini
  .time {
  color: #7c7c7c;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  line-height: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .get-button-arrow {
  right: 62px;
  bottom: -21px;
  position: absolute;
  min-width: 70px;
  width: 70px;
  min-height: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
  background: #fefefe;
  border: 0.8px solid #ededed;
  box-shadow: 0px 4px 4px 0px rgba(204, 204, 204, 0.2509803922);
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .get-button-arrow
  .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 450ms ease;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .get-button-arrow
  .img-wrapper
  img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  transition: transform 450ms ease;
  left: 0;
  top: 0;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .get-button-arrow
  .img-wrapper
  img:first-child {
  transform: translateY(0);
  z-index: 2;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .get-button-arrow
  .img-wrapper
  img:last-child {
  transform: translateY(100%);
  z-index: 1;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item
  .vecone {
  position: absolute;
  z-index: 0;
  right: 28px;
  bottom: 30px;
  background-color: transparent;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item:hover
  .main-top
  .icon-wrap-main {
  background-color: #e3a72f;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item:hover
  .main-top
  .get-button-arrow
  .img-wrapper {
  background-color: #0074c8;
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item:hover
  .main-top
  .get-button-arrow
  .img-wrapper
  img:first-child {
  transform: translateY(-100%);
}
.areas-of-our-work-wrapper
  .areas-of-our-work
  .grid-card-content
  .card-item:hover
  .main-top
  .get-button-arrow
  .img-wrapper
  img:last-child {
  transform: translateY(0);
}

.results-wrapper {
  width: 100%;
  margin-top: 130px;
  padding: 0 40px;
}
.results-wrapper .results {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.results-wrapper .results .top-result-title-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.results-wrapper .results .top-result-title-container h2 {
  max-width: 640px;
  font-size: 50px;
  line-height: 70px;
  color: #1d1d1d;
  text-align: left;
}
.results-wrapper .results .top-result-title-container p {
  max-width: 386px;
  padding-left: 62px;
  border-left: 1.5px solid #0074c8;
  color: #7c7c7c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.results-wrapper .results .grid-for-gallery {
  margin-top: 90px;
  display: flex;
  gap: 20px;
  height: 530px;
}
.results-wrapper .results .grid-for-gallery .card {
  flex: 0.7;
  padding: 30px;
  background: transparent;
  transition: all 500ms ease;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
}
.results-wrapper .results .grid-for-gallery .card img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 0;
  filter: brightness(70%);
}
.results-wrapper .results .grid-for-gallery .card .text-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  transition: all 900ms ease;
  pointer-events: none;
}
.results-wrapper .results .grid-for-gallery .card .text-content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
  color: #fff;
  text-wrap: nowrap;
  writing-mode: sideways-lr;
  transition: writing-mode 0.5s ease-in-out;
}
.results-wrapper .results .grid-for-gallery .card .text-content p {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateX(100px);
  color: white;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: transform 0.5s ease-in-out;
}
.results-wrapper .results .grid-for-gallery .card .button-for-get {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1000;
  background: rgba(82, 82, 82, 0.56);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 70px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.results-wrapper .results .grid-for-gallery .card .button-for-get img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  filter: none;
}

.results-wrapper .results .grid-for-gallery .card:hover {
  flex: 1.5;
}
.results-wrapper .results .grid-for-gallery .card:hover .text-content,
.results-wrapper .results .grid-for-gallery .card:hover .button-for-get {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.results-wrapper .results .grid-for-gallery .card:hover .text-content h2 {
  writing-mode: horizontal-tb;
  font-size: 50px;
  line-height: 70px;
  color: #fff;
  text-wrap: wrap;
}
.results-wrapper .results .grid-for-gallery .card:hover .text-content p {
  opacity: 1;
  font-size: 16px;
  visibility: visible;
  max-height: 96px;
  transform: translateX(0);
}
.results-wrapper .results .grid-for-gallery .card:first-child {
  flex: 1.5;
}
.results-wrapper .results .grid-for-gallery .card:first-child .text-content h2 {
  writing-mode: horizontal-tb;
  font-size: 50px;
  line-height: 70px;
  color: #fff;
  text-wrap: wrap;
}
.results-wrapper .results .grid-for-gallery .card:first-child .text-content p {
  opacity: 1;
  font-size: 16px;
  visibility: visible;
  max-height: 96px;
  transform: translateX(0);
}
.results-wrapper .results .grid-for-gallery:hover .card {
  flex: 0.5;
}
.results-wrapper .results .grid-for-gallery .card:hover {
  flex: 1.5;
}
.results-wrapper
  .results
  .grid-for-gallery:hover
  .card:first-child:not(:hover)
  .text-content {
  pointer-events: none;
}
.results-wrapper
  .results
  .grid-for-gallery:hover
  .card:first-child:not(:hover)
  .text-content
  p {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateX(100px);
  color: white;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: transform 0.5s ease-in-out;
}
.results-wrapper
  .results
  .grid-for-gallery:hover
  .card:first-child:not(:hover)
  .text-content
  h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
  color: #fff;
  text-wrap: nowrap;
  writing-mode: sideways-lr;
  transition: writing-mode 0.5s ease-in-out;
}
.results-wrapper
  .results
  .grid-for-gallery:hover
  .card:first-child:not(:hover)
  .button-for-get {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.best-service-package-wrapper {
  width: 100%;
  margin-top: 130px;
  padding: 0 40px;
}
.best-service-package-wrapper .best-service-package {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.best-service-package-wrapper
  .best-service-package
  .top-result-title-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.best-service-package-wrapper
  .best-service-package
  .top-result-title-container
  h2 {
  max-width: 640px;
  font-size: 50px;
  line-height: 70px;
  color: #1d1d1d;
  text-align: left;
}
.best-service-package-wrapper
  .best-service-package
  .top-result-title-container
  .righted {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
  max-width: 550px;
  width: 100%;
}
.best-service-package-wrapper
  .best-service-package
  .top-result-title-container
  .righted
  h6 {
  color: #e3a72f;
  font-weight: 600;
  font-size: 28px;
  line-height: normal;
  text-align: left;
  width: 100%;
  max-width: 500px;
}
.best-service-package-wrapper
  .best-service-package
  .top-result-title-container
  .righted
  p {
  max-width: 546px;
  color: #7c7c7c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.best-service-package-wrapper .best-service-package .packages-container {
  width: 100%;
  padding: 0 40px;
  max-width: 1280px;
  margin: 100px auto auto auto;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 50px;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package {
  width: 100%;
  background: #fafafa;
  border-radius: 32px;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  transition: all 550ms ease;
  gap: 30px;
  border-radius: 32px;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  h2 {
  width: 100%;
  color: #0074c8;
  font-weight: 600;
  font-size: 50px;
  line-height: 70px;
  text-align: left;
  max-width: 330px;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .text-content-main {
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .text-content-main_top {
  max-width: 320px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 11px;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .text-content-main_top
  h3 {
  color: #334047;
  font-weight: 600;
  font-size: 26px;
  line-height: normal;
  text-align: left;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .text-content-main_top
  p {
  color: #45565f;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  text-align: left;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .text-content-main_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .text-content-main_list
  li {
  color: #404040;
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  text-align: left;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .text-content-main_list
  li::marker {
  color: #0074c8;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .button-area {
  transition: 200ms ease;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .button-area
  .button-t {
  transition: 500ms ease;
  cursor: pointer;
  text-decoration: none;
  padding: 13px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 200ms ease;
  border-radius: 20px;
  background: #e3a72f;
  outline: none;
  border: none;
  position: relative;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .button-area
  .button-t
  .b-t {
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  position: relative;
  z-index: 10;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .button-area
  .button-t::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: #0074c8;
  border-radius: 20px;
  transition: 500ms ease;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 0;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .button-area
  .button-t:hover {
  color: white;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .button-area
  .button-t:hover::after {
  width: 100%;
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package
  .button-area:active {
  transform: scale(0.98);
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package:hover {
  background: #e7f5ff;
  box-shadow: 2px 2px 4px 0px rgba(193, 193, 193, 0.2509803922);
}
.best-service-package-wrapper
  .best-service-package
  .packages-container
  .packages
  .item-package:hover
  .button-area {
  opacity: 1;
  pointer-events: all;
}

.prices-content-wrapper {
  width: 100%;
  margin-top: 130px;
  padding: 0 40px;
}
.prices-content-wrapper .prices-content {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  gap: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.prices-content-wrapper .prices-content h4 {
  color: #282828;
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
  text-align: left;
  width: 100%;
}
.prices-content-wrapper .prices-content .grid-price {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 30px;
}
.prices-content-wrapper .prices-content .grid-price .item-price {
  width: 100%;
  padding-top: 0;
  padding: 30px 0;
  border-bottom: 1px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prices-content-wrapper .prices-content .grid-price .item-price h5 {
  color: #282828;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  text-align: left;
}
.prices-content-wrapper .prices-content .grid-price .item-price .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.prices-content-wrapper .prices-content .grid-price .item-price .right p {
  color: #282828;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  text-align: right;
}
.prices-content-wrapper .prices-content .grid-price .item-price .right .price {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  min-width: 200px;
  background: #0074c8;
  border: 0.5px solid #e2ebf1;
  box-shadow: 2px 2px 4px 0px rgba(160, 160, 160, 0.2509803922);
  border-radius: 20px;
  width: 200px;
}
.prices-content-wrapper
  .prices-content
  .grid-price
  .item-price
  .right
  .price
  span {
  color: #fbfbfb;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  text-align: center;
}
.prices-content-wrapper .prices-content .formore {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prices-content-wrapper .prices-content .formore .more-button {
  transition: 450ms ease;
  border: 0.3px solid #bfbfbf;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  overflow: hidden;
  padding: 6px 16px;
  background: #ffffff;
  border-radius: 20px;
  gap: 50px;
  position: relative;
}
.prices-content-wrapper .prices-content .formore .more-button p {
  position: relative;
  transition: 450ms ease;
  color: #282828;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}
.prices-content-wrapper .prices-content .formore .more-button .wrap-icon {
  position: relative;
  z-index: 1;
  transition: 450ms ease;
  min-width: 40px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0074c8;
  border-radius: 100px;
}
.prices-content-wrapper .prices-content .formore .more-button .wrap-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.prices-content-wrapper .prices-content .formore .more-button::after {
  content: "";
  transition: 450ms ease;
  min-width: 40px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  background-color: #0074c8;
  border-radius: 100px;
  position: absolute;
  right: 16px;
  z-index: 0;
  pointer-events: none;
}
.prices-content-wrapper .prices-content .formore .more-button:hover {
  background-color: #0074c8;
}
.prices-content-wrapper .prices-content .formore .more-button:hover .wrap-icon {
  opacity: 0;
}
.prices-content-wrapper .prices-content .formore .more-button:hover p {
  color: white;
  z-index: 10;
  transform: translateX(50%);
}
.prices-content-wrapper .prices-content .formore .more-button:hover::after {
  width: 100%;
  height: 100%;
  min-width: unset;
  min-height: unset;
  border-radius: 20px;
}

.slider-galleries-wrapper {
  width: 100%;
  margin-top: 130px;
}
.slider-galleries-wrapper .slider-galleries {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 40px;
}
.slider-galleries-wrapper .slider-galleries_top-slide {
  width: 100%;
  min-height: 340px;
  height: 340px;
}
.slider-galleries-wrapper .slider-galleries_top-slide .swiper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-galleries-wrapper .slider-galleries_top-slide .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}
.slider-galleries-wrapper
  .slider-galleries_top-slide
  .swiper
  .swiper-slide
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.slider-galleries-wrapper .slider-galleries_bottom-slide {
  width: 100%;
  min-height: 340px;
  height: 340px;
}
.slider-galleries-wrapper .slider-galleries_bottom-slide .swiper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-galleries-wrapper .slider-galleries_bottom-slide .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}
.slider-galleries-wrapper
  .slider-galleries_bottom-slide
  .swiper
  .swiper-slide
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.slider-galleries-wrapper .slider-galleries .center-content {
  cursor: default;
  transition: 0.6s ease-in-out;
  min-width: 238px;
  width: 238px;
  min-height: 238px;
  height: 238px;
  transform: translate(-50%, -50%);
  left: 50%;
  right: 50%;
  top: 50%;
  position: absolute;
  z-index: 100;
  border-radius: 200px;
  background: #e3a72f;
  padding: 56px 44px;
}
.slider-galleries-wrapper .slider-galleries .center-content p {
  max-width: 150px;
  width: 100%;
  color: #fbfbfb;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  text-align: center;
}
.slider-galleries-wrapper .slider-galleries .center-content:hover {
  background-color: #0074c8;
}

.brands-wrapper {
  width: 100%;
  margin-top: 130px;
}
.brands-wrapper .brands {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-wrapper .brands .swiper {
  width: 100%;
  height: 100%;
}
.brands-wrapper .brands .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brands-wrapper .brands .swiper .swiper-slide img {
  filter: none;
  transition: 500ms ease;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.brands-wrapper .brands .swiper .swiper-slide:hover img {
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(-20deg)
    brightness(1.2);
}

.call-car-form-wrapper {
  width: 100%;
  margin-top: 100px;
  background-color: transparent;
}
.call-car-form-wrapper .call-car-form {
  width: 100%;
  max-width: calc(100% - 80px);
  margin: 0 auto;
  background-image: url("/assets/images/callform.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  height: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.call-car-form-wrapper .call-car-form .title-content {
  position: relative;
  z-index: 5;
  max-width: 447px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.call-car-form-wrapper .call-car-form .title-content h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 44px;
  line-height: 64px;
  text-align: center;
  width: 100%;
  max-width: 447px;
}
.call-car-form-wrapper .call-car-form .title-content p {
  color: rgba(255, 255, 255, 0.8980392157);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  text-align: center;
}
.call-car-form-wrapper .call-car-form .inputs {
  width: 100%;
  max-width: 630px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.call-car-form-wrapper .call-car-form .inputs .iti {
  width: 100%;
}
.call-car-form-wrapper .call-car-form .inputs .iti__country-list {
  z-index: 100;
}
.call-car-form-wrapper .call-car-form .inputs input {
  outline: none;
  width: 100%;
  padding: 15px 18px;
  cursor: pointer;
  transition: 200ms ease;
  border-radius: 10px;
  background: #fdfdfd;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 16px;
  border: 5px solid transparent;
  line-height: normal;
}
.call-car-form-wrapper .call-car-form .inputs input:focus {
  cursor: auto;
  border: 5px solid #0074c8;
}
.call-car-form-wrapper .call-car-form .inputs .tiptwo {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.call-car-form-wrapper .call-car-form .inputs .tiptwo label {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}
.call-car-form-wrapper .call-car-form .inputs .tiptwo select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/images/downed.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 32px !important;
  background-position: 98% !important;
  outline: none;
  width: 100%;
  padding: 15px 18px;
  cursor: pointer;
  transition: 200ms ease;
  border-radius: 10px;
  background: #fdfdfd;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 16px;
  border: 5px solid transparent;
  line-height: normal;
}
.call-car-form-wrapper .call-car-form .inputs .tiptwo select:focus {
  cursor: auto;
  border: 5px solid #0074c8;
}
.call-car-form-wrapper .call-car-form .inputs .flag-dropdown {
  background-color: transparent !important;
  border-radius: 6px 0 0 6px !important;
  padding: 5px 10px !important;
  border-right: 1px solid transparent !important;
}
.call-car-form-wrapper .call-car-form .inputs .selected-flag {
  padding: 0 10px !important;
}
.call-car-form-wrapper .call-car-form button[type="submit"] {
  transition: 500ms ease;
  position: relative;
  max-width: 306px;
  width: 100%;
  cursor: pointer;
  transition: 200ms ease;
  position: relative;
  z-index: 4 !important;
  padding: 11.5px 24px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffcc40;
  border-radius: 20px;
}
.call-car-form-wrapper .call-car-form button[type="submit"] p {
  position: relative;
  z-index: 10;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  transition: 300ms ease;
}
.call-car-form-wrapper .call-car-form button[type="submit"]:active {
  transform: scale(0.98);
}
.call-car-form-wrapper .call-car-form button[type="submit"]::after {
  content: "";
  width: 0;
  height: 100%;
  border-radius: 20px;
  transition: 500ms ease;
  left: 0;
  position: absolute;
}
.call-car-form-wrapper .call-car-form button[type="submit"]:hover::after {
  width: 100%;
  background-color: #0074c8;
}
.call-car-form-wrapper .call-car-form::after {
  content: "";
  width: 100%;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3019607843);
  position: absolute;
  z-index: 0;
  inset: 0;
}

.comments-wrapper {
  width: 100%;
  padding: 0 40px;
  margin-top: 130px;
}
.comments-wrapper .comments {
  width: 100%;
  height: auto;
  background-color: transparent;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 60px;
}
.comments-wrapper .comments .top-container-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comments-wrapper .comments .top-container-title .left-titles {
  max-width: 824px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
.comments-wrapper .comments .top-container-title .left-titles .spec-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  gap: 10px;
}
.comments-wrapper .comments .top-container-title .left-titles .spec-title img {
  min-width: 24px;
  width: 24px;
  height: 24px;
  min-height: 24px;
}
.comments-wrapper .comments .top-container-title .left-titles .spec-title p {
  color: #09002a;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
}
.comments-wrapper .comments .top-container-title .left-titles h2 {
  color: #1d1d1d;
  font-weight: 700;
  font-size: 50px;
  line-height: 70px;
  text-align: left;
}
.comments-wrapper .comments .top-container-title .left-titles h2 span {
  color: #0074c8;
  font-weight: 700;
  font-size: 50px;
}
.comments-wrapper .comments .top-container-title .custom-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.comments-wrapper
  .comments
  .top-container-title
  .custom-buttons
  button[type="button"] {
  transition: 600ms ease;
  outline: none;
  border: none;
  min-width: 50px;
  width: 50px;
  min-height: 50px;
  height: 50px;
  background: #0074c8;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: 200ms ease;
}
.comments-wrapper
  .comments
  .top-container-title
  .custom-buttons
  button[type="button"]
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.comments-wrapper
  .comments
  .top-container-title
  .custom-buttons
  button[type="button"]:hover {
  background: #35a1ee;
}
.comments-wrapper .comments .swiper {
  width: 100%;
  height: 323px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comments-wrapper .comments .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comments-wrapper .comments .swiper .swiper-slide .container-main {
  border-radius: 10px;
  width: 100%;
  min-height: 323px;
  height: 323px;
  background-color: transparent;
}
.comments-wrapper .comments .swiper .swiper-slide .container-main .top-main {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 296px;
  height: 296px;
  border-radius: 10px;
  background-color: #ffffff;
  gap: 20px;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .text-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .text-content
  .quote {
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .text-content
  .quote
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .text-content
  .comment {
  color: #282828;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  max-width: 364px;
  width: 100%;
  min-height: 120px;
  height: 120px;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .text-content
  .user-names {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .text-content
  .user-names
  .name {
  color: #282828;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .text-content
  .user-names
  .profession {
  color: #0074c8;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .sub-img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .profile-wrapper {
  position: absolute;
  min-width: 70px;
  width: 70px;
  min-height: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  bottom: 0;
  right: 40px;
  border-radius: 100px;
}
.comments-wrapper
  .comments
  .swiper
  .swiper-slide
  .container-main
  .top-main
  .profile-wrapper
  .user-profile {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100px;
}

.accordion-section-wrapper {
  width: 100%;
  padding: 0 80px;
  margin-top: 100px;
}
.accordion-section-wrapper .accordion-section {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.accordion-section-wrapper .accordion-section .left-text-section {
  max-width: 440px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.accordion-section-wrapper .accordion-section .left-text-section h2 {
  color: #111111;
  font-weight: 700;
  font-size: 44px;
  line-height: 64px;
  text-align: left;
  max-width: 738px;
}
.accordion-section-wrapper .accordion-section .left-text-section h2 span {
  color: #ffcc40;
  font-weight: 700;
  font-size: 44px;
  line-height: 64px;
}
.accordion-section-wrapper .accordion-section .left-text-section p {
  color: #827f7f;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  max-width: 600px;
  width: 100%;
}
.accordion-section-wrapper .accordion-section .right-accords {
  max-width: 805px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
.accordion-section-wrapper .accordion-section .right-accords .item-accordion {
  width: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion {
  padding: 12px 20px;
  cursor: pointer;
  transition: 450ms ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 0.5px solid #eaeaea;
  box-shadow: 2px 3px 4px 0px rgba(180, 180, 180, 0.2509803922);
  border-radius: 10px;
  gap: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion:hover
  .head-accordion
  .icon-wrap {
  background-color: #edb139 !important;
}

.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion.active
  .icon-wrap {
  background-color: #edb139 !important;
}

.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion
  h4 {
  color: #282828;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: left;
  width: 100%;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion
  .icon-wrap {
  min-width: 36px;
  width: 36px;
  height: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 200ms ease;
  color: white !important;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  background-color: #0074c8;
  border-radius: 100px;
  padding-bottom: 2px;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion
  .icon-wrap
  .plus {
  font-size: 24px;
  color: white;
  transition: 200ms;
}

.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion:active {
  transform: scale(0.98);
}

.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion.active
  .icon-wrap
  .plus {
  transform: rotate(45deg);
  color: white !important;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion:hover {
  background-color: #efefef;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .head-accordion:hover
  .icon-wrap {
  background-color: #e3a72f !important;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .content-accordion {
  width: 100%;
  transition: all 200ms ease !important;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .content-accordion
  p {
  color: #111111;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
.accordion-section-wrapper
  .accordion-section
  .right-accords
  .item-accordion
  .content-accordion.active {
  padding: 24px;
  height: auto;
  overflow: auto;
}
.footer-wrapper {
  width: 100%;
  max-width: calc(100% - 80px);
  margin: 130px auto auto auto;
  background-color: #001837;
  border-radius: 20px 20px 0 0;
  height: auto;
}
.footer-wrapper .footer {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 190px;
  padding: 60px 40px;
  padding-bottom: 30px;
}
.footer-wrapper .footer_top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.footer-wrapper .footer_top .left-icon {
  max-width: 300px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
}
.footer-wrapper .footer_top .left-icon p {
  max-width: 295px;
  width: 100%;
  text-align: left;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.footer-wrapper .footer_top .left-icon .icon {
  min-width: 160px;
  height: 126px;
  width: 160px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-wrapper .footer_top .left-icon .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-wrapper .footer_top .right-content-main {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 865px;
  width: 100%;
  gap: 50px;
}
.footer-wrapper .footer_top .right-content-main .top-maining {
  width: 100%;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.4823529412);
  padding-bottom: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-wrapper .footer_top .right-content-main .top-maining .title-maining {
  max-width: 320px;
  width: 100%;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
}
.footer-wrapper .footer_top .right-content-main .top-maining .email-button {
  min-width: 505px;
  width: 100%;
  position: relative;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  input {
  outline: none;
  border: 4px solid transparent;
  width: 100%;
  transition: 200ms ease;
  height: 52px;
  padding: 14px 14px;
  background: #ffffff;
  border-radius: 20px;
  font-weight: 500;
  font-size: 16px;
  padding-right: 170px;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  input::-moz-placeholder {
  font-size: 16px;
  color: #282828;
  font-weight: 400;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  input::placeholder {
  font-size: 16px;
  color: #282828;
  font-weight: 400;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  input:focus {
  border: 4px solid #0074c8;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  gap: 4px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  padding: 12px 16px;
  background-color: #e3a72f;
  transition: 450ms ease;
  right: 0;
  top: 0;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit
  p {
  color: #fbfbfb;
  font-weight: 400;
  font-size: 16px;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit
  .img-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
  overflow: hidden;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit
  .img-wrapper
  img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  transition: transform 450ms ease;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit
  .img-wrapper
  img:first-child {
  transform: translateY(0);
  z-index: 2;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit
  .img-wrapper
  img:last-child {
  transform: translateY(-100%);
  z-index: 1;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit:hover {
  background-color: #e3a72f;
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit:hover
  .img-wrapper
  img:first-child {
  transform: translateY(100%);
}
.footer-wrapper
  .footer_top
  .right-content-main
  .top-maining
  .email-button
  .button-item-submit:hover
  .img-wrapper
  img:last-child {
  transform: translateY(0);
}
.footer-wrapper .footer_top .right-content-main .navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}
.footer-wrapper .footer_top .right-content-main .navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: left;
  transition: 500ms ease;
}
.footer-wrapper .footer_top .right-content-main .navbar a:hover {
  color: #e3a72f;
}
.footer-wrapper .footer_bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wrapper .footer_bottom .social-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.footer-wrapper .footer_bottom .social-content .icon-social {
  min-width: 24px;
  width: 24px;
  height: 24px;
  min-height: 24px;
}
.footer-wrapper .footer_bottom .information-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50.5px;
}
.footer-wrapper .footer_bottom .information-content .info-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 9.5px;
}
.footer-wrapper .footer_bottom .information-content .info-item img {
  min-width: 20px;
  width: 20px;
  height: 20px;
  min-height: 20px;
}
.footer-wrapper .footer_bottom .information-content .info-item p {
  color: #fbfbfb;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}

.tip {
  width: 100%;
  background-color: transparent;
  color: white;
  font-family: Arial, sans-serif;
  position: relative;
}

.tip label {
  display: block;
  margin-bottom: 8px;
}

.tip input {
  background-color: transparent !important;
}

.tip input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
}

.tip input[type="range"]:focus {
  outline: none;
}

.tip input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: #ccc;
}

.tip input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: #3b83f6;
  border-radius: 50%;
  margin-top: -9px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.tip input[type="range"]::-webkit-slider-thumb:hover {
  background: #2563eb;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.current-value {
  display: none !important;
  position: absolute;
  top: -28px;
  left: calc((var(--value) - 1) / 9 * 100%);
  transform: translateX(-50%);
  background: #3b82f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  pointer-events: none;
}

@media screen and (max-width: 1360px) {
  .areas-of-our-work-wrapper .areas-of-our-work {
    max-width: 1200px !important;
  }
  .areas-of-our-work-wrapper
    .areas-of-our-work
    .grid-card-content
    .card-item
    .get-button-arrow {
    right: 50px;
    bottom: -10px;
  }
  .areas-of-our-work-wrapper .areas-of-our-work .grid-card-content {
    gap: 10px;
  }
  .hero-wrapper .hero .swiper .swiper-slide .text-content h1 {
    font-size: 36px;
    line-height: 48px;
    width: 100%;
    text-align: center;
  }
  .hero-wrapper .hero .swiper .swiper-slide .text-content {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1360px) {
  .hero-wrapper .hero .swiper .swiper-slide .text-content {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .comments-wrapper .comments {
    max-width: 1200px !important;
  }
  .comments-wrapper
    .comments
    .swiper
    .swiper-slide
    .container-main
    .top-main
    .profile-wrapper {
    right: -15px;
  }
}
@media only screen and (max-width: 1265px) {
  .comments-wrapper .comments {
    max-width: 1100px !important;
  }
  .comments-wrapper
    .comments
    .swiper
    .swiper-slide
    .container-main
    .top-main
    .profile-wrapper {
    right: 28px;
  }
}
@media screen and (min-width: 1400px) {
  .hero-wrapper .hero .swiper .swiper-slide .text-content {
    padding-top: 80px;
  }
} /*# sourceMappingURL=global.css.map */
