/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
}

.main-slider-three .swiper-slide {
  position: relative;
  height: 85vh;
}

.main-slider-three .container {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
  z-index: 30;
}

.image-layer-three {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-three .swiper-slide-active .image-layer-three {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-three:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(17, 29, 50, .60);
  z-index: -1;
}

.main-slider-three__content {
  position: relative;
  display: block;
}

.main-slider-three__title {
  position: relative;
  font-size: 3.75em;
  color: var(--logi-white);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 19px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-7.5em);
  transform: translateY(-7.5em);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__text {
  font-size: 1.25em;
  color: var(--logi-white);
  font-weight: 500;
  letter-spacing: var(--logi-letter-spacing);
  line-height: 1.5;
  padding-bottom: 2.5em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(7.5em);
  transform: translateY(7.5em);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__text {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(7.5em);
  transform: translateY(7.5em);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three__nav {
  width: 100%;
  max-width: 65vw;
  padding-left: 1em;
  padding-right: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}


.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 3.125em;
  height: 3.125em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15em;
  color: rgba(var(--logi-white-rgb), .20);
  border: 2px solid rgba(var(--logi-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  color: rgba(var(--logi-white-rgb), 1);
  border: 2px solid rgba(var(--logi-white-rgb), 1);
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}

.main-slider-three__nav .swiper-button-prev {
  margin-bottom: 10px;
}
/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  display: block;
  padding: 0 0 0.8rem;
  margin-top: -1.875em;
  z-index: 2;
}

.feature-three-shape {
  position: absolute;
  top: 1.875em;
  right: -1.875em;
  z-index: -1;
}

.feature-three-shape img {
  width: auto;
}

.feature-three__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 1.25em 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--logi-bdr-radius);
  padding: 1.25em 1.25em 1.25em;
  margin-bottom: 1.875em;
  z-index: 1;
}

.feature-three__single:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  border-radius: var(--logi-bdr-radius);
  background-color: var(--logi-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.feature-three__single:hover:after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.feature-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5em;
  width: 5em;
  background-color: var(--logi-extra);
  border-radius: 0.2rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__icon {
  background-color: var(--logi-primary);
}

.feature-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 2.5em;
  color: var(--logi-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__icon span {
  color: var(--logi-white);
}

.feature-three__content {
  position: relative;
  margin-left: 1.25em;
}

.feature-three__sub-title {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__sub-title {
  color: var(--logi-white);
}

.feature-three__title {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: var(--logi-letter-spacing);
  line-height: 1.5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__title {
  color: var(--logi-primary);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 0 0 7.5em;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 2.625em;
}

.about-two__left .section-title {
  margin-bottom: 2.375em;
}

.about-two__text {
  font-size: 1.15em;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}

.about-two__points {
  position: relative;
  display: block;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.about-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li+li {
  margin-top: 8px;
}

.about-two__points li .icon {
  height: 1.5em;
  width: 1.5em;
  background-color: var(--logi-primary);
  font-size: 0.75em;
  color: var(--logi-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__points li .text {
  margin-left: 1.25em;
}

.about-two__points li .text p {
  font-size: 1.15em;
  color: var(--logi-black);
  font-weight: 700;
  letter-spacing: var(--logi-letter-spacing);
}

.about-two__middle {
  position: relative;
  display: block;
  margin-right: 2.5em;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
  border-radius: 0.24rem;
}

.about-two__awards-box {
  position: absolute;
  bottom: -0.24rem;
  right: -0.24rem;
  background-color: #f8b500;
  box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0.24rem;
  padding: 0.05rem;
  z-index: 1;
}


.about-two__awards-inner {
  position: relative;
  display: block;
  background-color: var(--logi-black);
  border-radius: 0.2rem;
  padding-top: 17px;
  padding-bottom: 1.25em;
  padding-left: 25px;
  padding-right: 2.5em;
  overflow: hidden;
}

.about-two__awards-shape-2 {
  position: absolute;
  top: -2.125em;
  right: -2.375em;
}

.about-two__awards-shape-2 img {
  width: auto;
}

.about-two__awards-year {
  font-size: 4.5em;
  color: var(--logi-white);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}

.about-two__awards-content {
  font-size: 1.25em;
  color: var(--logi-white);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}

.about-two__dots {
  position: absolute;
  bottom: 225px;
  right: -80px;
  z-index: -1;
}

.about-two__dots img {
  width: auto;
  opacity: .20;
}

.about-two__counter {
  position: relative;
  display: block;
  text-align: right;
  margin-left: -1.25em;
  margin-top: -8px;
}

.about-two__counter-list {
  position: relative;
  display: block;
}

.about-two__counter-list li {
  position: relative;
  display: block;
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.about-two__counter-list li:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 14px;
  right: 0;
  background-color: var(--logi-bdr-color);
  height: 2px;
}

.about-two__counter-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-two__counter-list li:last-child:before {
  display: none;
}

.about-two__counter-single {
  position: relative;
  display: block;
}

.about-two__counter-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-two__counter-count h3 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2 !important;
  color: var(--logi-base);
  font-family: var(--logi-font) !important;
  letter-spacing: var(--logi-letter-spacing);
}

.about-two__counter-percent {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2 !important;
  color: var(--logi-base);
  font-family: var(--logi-font) !important;
  letter-spacing: var(--logi-letter-spacing);
}

.about-two__counter-text-1 {
  font-size: 1.25em;
  color: var(--logi-black);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
  margin-top: 1em;
  margin-bottom: 4px;
}

.about-two__counter-text-2 {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}

.about-two__counter .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
  position: relative;
  display: block;
  padding: 0.8rem 0 1.2rem;
  background-color: #e5eff2;
  z-index: 1;
}

.services-four:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34.375em;
  background-color: var(--logi-white);
  z-index: -1;
}

.services-four__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: soft-light;
  opacity: .60;
  z-index: -1;
}

.services-four .container {
  max-width: 143.75em;
}

.services-four__carousel {
  position: relative;
  display: block;
}

.services-four__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;

}

.services-four__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.services-four__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.services-four__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -3.75em;
  left: 0;
  right: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
}

.services-four__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 185px;
  height: 3px;
  border-radius: 0px;
  background-color: #e5eff2;
  margin: 0;
  padding: 0 !important;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.services-four__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
  margin-left: 10px;
}

.services-four__carousel.owl-carousel .owl-dot.active {
  background-color: var(--logi-black);
  opacity: 1;
}

.services-four__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.services-four__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.services-four__single {
  position: relative;
  display: block;
}

.services-four__img-box {
  position: relative;
  display: block;
  z-index: 2;
}

.services-four__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 2;
}

.services-four__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-four__single:hover .services-four__img img {
  transform: scale(1.05);
}

.services-four__content-box {
  position: relative;
  display: block;
  margin-top: -1.25em;
  z-index: 1;
}

.services-four__icon {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 3.5625em;
  width: 3.5625em;
  background-color: var(--logi-base);
  z-index: 2;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-four__single:hover .services-four__icon {
  background-color: var(--logi-black);
}

.services-four__icon span {
  position: relative;
  display: inline-block;
  font-size: 2em;
  color: var(--logi-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-four__single:hover .services-four__icon span {
  transform: scale(0.9);
}

.services-four__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 3.75em 0px rgba(0, 0, 0, 0.07);
  padding: 2.625em 1.25em 2.125em;
}

.services-four__title {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: var(--logi-letter-spacing);
  line-height: 1.5;
  margin-bottom: 14px;
}

.services-four__title a {
  color: var(--logi-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-four__title a:hover {
  color: var(--logi-base);
}

.services-four__text {
  letter-spacing: var(--logi-letter-spacing);
}
/*--------------------------------------------------------------
# Testimonial Four
--------------------------------------------------------------*/
.testimonial-four {
  position: relative;
  display: block;
  background-color: #000;
  padding: 0.8rem 0;
  z-index: 1;
}

.testimonial-four__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.testimonial-four__left {
  position: relative;
  display: block;
  z-index: 15;
}

.testimonial-four__left .section-title-two__sub-title {
  color: #fff;
}

.testimonial-four__left .section-title-two__title {
  color: var(--logi-white);
}

.testimonial-four__right {
  position: relative;
  display: block;
}

.testimonial-four__carousel {
  position: relative;
  display: block;
}

.testimonial-four__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-four__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-four__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-four__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: -9px;
  left: -398px;
}

.testimonial-four__carousel.owl-theme .owl-nav .owl-next {
  height: 3.125em;
  width: 3.125em;
  line-height: 1.5;
  border-radius: 50%;
  color: var(--logi-white);
  border: 0;
  background-color: #012f42;
  font-size: 1em;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-four__carousel.owl-theme .owl-nav .owl-prev {
  height: 3.125em;
  width: 3.125em;
  line-height: 1.5;
  border-radius: 50%;
  color: var(--logi-white);
  border: 0;
  background-color: #012f42;
  font-size: 1em;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-four__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-four__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-four__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-four__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-four__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-four__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--logi-white);
  color: var(--logi-base);
}

.testimonial-four__single {
  position: relative;
  display: block;
  box-shadow: 0px 10px 3.75em 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.testimonial-four__single-inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  padding: 2.375em 3.125em 2.625em;
  overflow: hidden;
  z-index: 1;
}



.testimonial-four__shape-1 {
  position: absolute;
  top: -23.125em;
  right: -200px;
  border-radius: 50%;

  width: 408px;
  height: 408px;
  z-index: -1;
}

.testimonial-four__text {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}

.testimonial-four__client-info-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.testimonial-four__client-info {
  position: relative;
  display: block;
}

.testimonial-four__client-name {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: var(--logi-letter-spacing);
  line-height: 1.5;
  margin-bottom: 5px;
}

.testimonial-four__client-sub-title {
  letter-spacing: var(--logi-letter-spacing);
}

.testimonial-four__rating {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 11.875em;
}

.testimonial-four__rating i {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1em;
  color: var(--logi-base);
}

.testimonial-four__rating i+i {
  margin-left: 4px;
}

.testimonial-four__client-img {
  position: absolute;
  bottom: -1.875em;
  right: 3.75em;
  width: 80.5em;
  z-index: 2;
}

.testimonial-four__client-img img {
  border: 7px solid var(--logi-base);
}

/* Section Title Three Start */
.section-title-three {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 3em;
}

.section-title-three__sub-title-box {
  position: relative;
  display: inline-block;
}

.section-title-three__shape {
  position: absolute;
  top: 13px;
  left: -3.375em;
  width: 2.8em;
  height: 2px;
  background-color: var(--logi-base);
}

.section-title-three__shape:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 0.5em;
  width: 0.5em;
  background-color: var(--logi-base);
  border-radius: 50%;
}

.section-title-three__title {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--logi-letter-spacing);
  margin-top: 4px;
}
/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: #272837;
  padding: 0.8rem 0;
  overflow: hidden;
  z-index: 1;
}
.whychooseus-back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}
.why img {
  width: 100%;
}
.why-choose-one-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.02;
  z-index: -1;
}

.why-choose-one-shape-2 {
  position: absolute;
  right: 590.5em;
  top: -21em;
  z-index: 2;
}

.why-choose-one-shape-2 img {
  width: auto;
}

.why-choose-one-shape-3 {
  position: absolute;
  top: -23.75em;
  right: 13.125em;
}

.why-choose-one-shape-3 img {
  width: auto;
}

.why-choose-one-shape-4 {
  position: absolute;
  top: -81px;
  right: 0;
}

.why-choose-one-shape-4 img {
  width: auto;
}

.why-choose-one-shape-5 {
  position: absolute;
  bottom: -21em;
  right: 0;
  z-index: 1;
}

.why-choose-one-shape-5 img {
  width: auto;
}

.why-choose-one-shape-6 {
  position: absolute;
  bottom: -295px;
  right: 13.75em;
}

.why-choose-one-shape-6 img {
  width: auto;
}

.why-choose-one-img {
  position: absolute;
  top: -111px;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.why-choose-one-img img {
  width: auto;
}

.why-choose-one__left {
  position: relative;
  display: block;
}

.why-choose-one__left .section-title {
  margin-bottom: 31px;
}

.why-choose-one__left .section-sub-title {
  color: var(--logi-white);
}

.why-choose-one__left .section-title__title {
  color: var(--logi-white);
}

.why-choose-one__text {
  color: #fff;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}

.why-choose-one__list-box {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 0.4rem;
}

.why-choose-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: 0;
}

.why-choose-one__list li {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  text-align: center;
  margin-bottom: 1.25em;
  padding-left: .625em;
  padding-right: .625em;
}

.why-choose-one__single {
  position: relative;
  display: block;
  background-color: #111d32;
  padding: 2.125em 1.25em 2em;
  overflow: hidden;
}

.why-choose-one__list-icon {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.why-choose-one__list-icon span {
  font-size: 3em;
  color: #f8b500;
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-one__single:hover .why-choose-one__list-icon span {
  transform: scale(.9);
}

.why-choose-one__list-title-box {
  position: relative;
  display: block;
}

.why-choose-one__list-title-inner {
  position: relative;
  display: block;
  transform: translateY(0%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: visible;
  opacity: 1;
  padding-top: 0.12rem;
}

.why-choose-one__single:hover .why-choose-one__list-title-inner {
  transform: translateY(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
}

.why-choose-one__list-title {
  font-size: 1.15em;
  color: var(--logi-white);
  line-height: 1.2;
  letter-spacing: var(--logi-letter-spacing);
}

.why-choose-one__list-text-box {
  position: absolute;
  top: -0.5em;
  left: 0;
  right: 0;
  transform: translateY(-100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  padding-top: 0.12rem;
}

.why-choose-one__single:hover .why-choose-one__list-text-box {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.why-choose-one__list-text {
  font-size: 1em;
  color: #fff;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}


/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  position: relative;
  display: block;
  padding: 0.8rem 0;
}

.team-three__single {
  position: relative;
  display: block;
  margin-bottom: 1.875em;
}

.team-three__img-box {
  position: relative;
  display: block;
  margin-left: 1em;
  margin-right: 1em;
  z-index: 1;
}

.team-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.team-three__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--logi-black-rgb), .50);
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.team-three__single:hover .team-three__img:before {
  -webkit-transform: perspective(400px) rotateX(360deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(360deg) scaleY(1.0);
  transform: perspective(400px) rotateX(360deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.team-three__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 500ms ease;
}

.team-three__single:hover .team-three__img img {
  transform: scale(1.05);
}

.team-three__social-two {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--logi-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.team-three__social-two li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5em;
  width: 2.5em;
  font-size: 1em;
  color: var(--logi-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-three__social-two li a:hover {
  color: var(--logi-primary);
}

.team-three__social {
  position: absolute;
  left: 0;
  bottom: 4.75em;
  background-color: var(--logi-white);
  text-align: center;
  padding: 1.25em 12.5px;
  transform: scaleY(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: top center;
  z-index: 2;
}

.team-three__single:hover .team-three__social {
  transform: scaleY(1.0);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.team-three__social li+li {
  margin-top: 1.25em;
}

.team-three__social li a {
  font-size: 1em;
  color: var(--logi-black);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-three__social li a:hover {
  color: var(--logi-base);
}

.team-three__content {
  position: relative;
  display: block;
  background-image: -moz-linear-gradient(90deg, rgb(244 67 54 / 8%) 0%, rgb(255, 255, 255) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(244 67 54 / 8%) 0%, rgb(255, 255, 255) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(244 67 54 / 8%) 0%, rgb(255, 255, 255) 100%);
  padding:11.56em 1.875em 1.25em;
  margin-top: -10.8em;
  text-align: center;
}

.team-three__name {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 0.375em;
}

.team-three__name a {
  color: var(--logi-black);
  transition: all 500ms ease;
}

.team-three__name a:hover {
  color: var(--logi-base);
}

.team-three__sub-title {
  font-size: 0.75em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.about-six__right .section-title-three {
  margin-bottom: 2em;
}
.why-choose-four__left .section-title-three {
  margin-bottom: 31px;
}

.why-choose-four__left .section-title-three__sub-title {
  color: #ffe1e1;
}

.why-choose-four__left .section-title-three__title {
  color: var(--logi-white);
}
/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  background-color: #212c65;
  padding: 79px 0 71px;
}

.counter-one-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .20;
}

.counter-one-shape-1 img {
  width: auto;
}

.counter-one-shape-2 {
  position: absolute;
  bottom: -35px;
  right: 0;
  opacity: .20;
}

.counter-one-shape-2 img {
  width: auto;
}

.counter-one__single {
  position: relative;
  display: block;
}

.counter-one__top {
  position: relative;
  display: flex;
  margin-bottom: 0.75em;
}

.counter-one__icon {
  position: relative;
  display: block;
}

.counter-one__icon span {
  position: relative;
  display: flex;
  font-size: 3.75em;
  color: #f8b500;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
  color: var(--logi-white);
  transform: scale(.9);
}
.float-left {
  float: left;
}
.counter-one__count-box {
  position: relative;
  margin-left: 16px;
  margin-top: 27px;
}

.counter-one__count-box:before {
  position: absolute;
  top: -26px;
  left: 0;
  height: 4px;
  width: 40px;
  border-radius: 2px;
  content: "";
  background: #f8b500;

}

.counter-one__count-box-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__count-box-inner h3 {
  color: var(--logi-white);
  font-weight: 700;
  line-height: 1.2 !important;
  font-family: var(--logi-font) !important;
  letter-spacing: var(--logi-letter-spacing);
  font-size: 2.25em;
}
.counter-one__plus {
  color: var(--logi-white);
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.2 !important;
  font-family: var(--logi-font) !important;
  letter-spacing: var(--logi-letter-spacing);
}

.counter-one__text {
  font-size: 1.25em;
  color: #fff;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
}
/*--------------------------------------------------------------
# Tracking
--------------------------------------------------------------*/
.tracking {
  position: relative;
  display: block;
}

.tracking__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5625em 80px 3.5625em;
  background-color: #212c65;

  overflow: hidden;
}

.tracking-shape-1 {
  position: absolute;
  bottom: 0;
  left: -3.375em;
}

.tracking-shape-1 img {
  width: auto;
}

.tracking-shape-2 {
  position: absolute;
  top: 3.125em;
  left: -6.25em;
}

.tracking-shape-2 img {
  width: auto;
}

.tracking-shape-3 {
  position: absolute;
  top: -1em;
  right: -12em;
  z-index: 2;
}

.tracking-shape-3 img {
  width: auto;
}

.tracking-shape-4 {
  position: absolute;
  top: 3.125em;
  right: -3.375em;
}

.tracking-shape-4 img {
  width: auto;
}

.tracking__left {
  position: relative;
  display: flex;
}

.tracking__icon {
  position: relative;
  display: flex;
}

.tracking__icon span {
  font-size: 4.1em;
  color: var(--logi-white);
  position: relative;
  display: inline-block;
}

.tracking__content {
  position: relative;
  margin-left: 1.875em;
  top: -7px;
}

.tracking__sub-title {
  font-size: 0.875em;
  color: #c2dfff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: 500;
}

.tracking__title {
  font-size: 2.125em;
  color: var(--logi-white);
  font-weight: 700;
  letter-spacing: var(--logi-letter-spacing);
  line-height: 1.2;
}

.tracking__btn-box {
  position: relative;
  display: block;
  z-index: 2;
}

.tracking__btn {
  background-color: var(--logi-white);
  color: var(--logi-black);
}
/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.process {
  position: relative;
  display: block;
  padding:0.8rem 0;
}

.process .section-title {
  margin-bottom: 1.125em;
}

.process .section-sub-title-box {
  margin-left: 0;
}

.process__inner {
  position: relative;
  display: block;
  counter-reset: count;
}

.process-shape-1 {
  position: absolute;
  top: 0;
  left: 12.125em;
}

.process-shape-1 img {
  width: auto;
}

.process__single {
  position: relative;
  display: block;
  text-align: center;
  padding: 0 2.5em 0;
  margin-bottom: 22px;
}

.process__icon-box {
  position: relative;
  display: block;
  height: 10.25em;
  width: 10.25em;
  margin: 0 auto;
}

.process__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(223, 227, 231);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 3.5625em 0px rgba(0, 0, 0, 0.1);
  height: 10em;
  width: 10em;
  margin: 0 auto;
  z-index: 1;
}

.process__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--logi-base);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.process__single:hover .process__icon:before {
  transform: scaleX(1);
}

.process__icon span {
  position: relative;
  display: inline-block;
  font-size: 3.75em;
  color: var(--logi-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.process__single:hover .process__icon span {
  transform: scale(0.9);
  color: var(--logi-white);
}

.process__count {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5em;
  width: 2.5em;
  border-radius: 50%;
  background-color: var(--logi-primary);
  z-index: 2;
}

.process__count:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--logi-white);
  font-size: 1em;
  line-height: 2.5em;
  font-weight: 700;
  border-radius: 50%;
  counter-increment: count;
  content: counters(count, ".", decimal-leading-zero);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process__single:hover .process__count:before {
  background-color: var(--logi-black);
}

.process__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.process__title {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: var(--logi-letter-spacing);
  margin-bottom: 7px;
}

.process__text {
  font-size: 1em;
  letter-spacing: var(--logi-letter-spacing);
}

.process__bottom {
  position: relative;
  display: block;
  margin-top: 2.125em;
}

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

.process__input-box {
  position: relative;
  display: block;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}

.process__input-box input[type="text"] {
  height: 3.125em;
  width: 100%;
  border: 0;
  background-color: var(--logi-extra);
  border-radius: var(--logi-bdr-radius);
  font-size: 10.5em;
  font-weight: 500;
  color: var(--logi-gray);
  letter-spacing: var(--logi-letter-spacing);
  padding-left: 3.125em;
  padding-right: 195px;
  outline: none;
}

.process__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border: 0;
  width: 13.625em;
  background-color: var(--logi-base);
  font-size: 0.875em;
  color: var(--logi-white);
  font-weight: 700;
  letter-spacing: var(--logi-letter-spacing);
  border-top-right-radius: var(--logi-bdr-radius);
  border-bottom-right-radius: var(--logi-bdr-radius);
  text-align: center;
  transition: all 500ms ease;
}

.process__btn:hover {
  background-color: var(--logi-primary);
  color: var(--logi-black);
}

.process__single-2 {
  margin-top: 100px;
}

.process__single-2 .process__count {
  bottom: 0;
  right: 0;
  top: inherit;
  left: inherit;
}

.process__single-3 {
  margin-top: 3.125em;
}

.process__single-4 .process__count {
  bottom: 0;
  right: 0;
  top: inherit;
  left: inherit;
}

