
/* Banner One Widget Styles - Scoped under .banner-wrapper */
.banner-wrapper {
  font-family: var(--primary_font);
  overflow: hidden;
}

.banner-wrapper a {
  text-decoration: none;
}

/* Keyframes */
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(217, 2, 2, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 2, 2, 0);
  }
}

@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes topBottom {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Thm Btn Styles */
.banner-wrapper .thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--primary_color);
  color: #ffffff;
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.banner-wrapper .thm-btn>span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_color_font);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s linear;
}

.banner-wrapper .thm-btn:hover>span {
  background-color: #ffffff;
  color: var(--primary_color);
}

.banner-wrapper .thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--primary_color_font);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.banner-wrapper .thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.banner-wrapper .thm-btn::after {
  position: absolute;
  background-color: var(--primary_color_font);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.banner-wrapper .thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.banner-wrapper .thm-btn:hover {
  color: #ffffff;
}

.banner-wrapper .banner-one__btn-box .thm-btn::before,
.banner-wrapper .banner-one__btn-box .thm-btn::after {
  background-color: #ffffff;
}

.banner-wrapper .banner-one__btn-box .thm-btn:hover {
  color: var(--primary_color);
}

.banner-wrapper .banner-one__btn-box .thm-btn:hover>span {
  background-color: var(--primary_color);
  color: #ffffff;
}

/* Banner One Styles */
.banner-wrapper .banner-one {
  position: relative;
  display: block;
  padding: 324px 0 184px;
  background-color: var(--primary_color_font);
  overflow: hidden;
  z-index: 5;
}

.banner-wrapper .banner-one__bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.banner-wrapper .banner-one__shape-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -115px;
  width: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .90;
  z-index: -1;
}

.banner-wrapper .banner-one__shape-4 {
  position: absolute;
  top: 160px;
  right: 30px;
  z-index: -1;
}

.banner-wrapper .banner-one__shape-4 img {
  width: auto;
}

.banner-wrapper .banner-one__shape-5 {
  position: absolute;
  bottom: 125px;
  right: 70px;
  z-index: -1;
}

.banner-wrapper .banner-one__shape-5 img {
  width: auto;
}

.banner-wrapper .banner-one__inner {
  position: relative;
  display: block;
}

.banner-wrapper .banner-one__left {
  position: relative;
  display: block;
  margin-right: -50px;
  z-index: 3;
}

.banner-wrapper .banner-one__title-box {
  position: relative;
  display: block;
}

.banner-wrapper .banner-one__sub-title {
  position: relative;
  display: block;
}

.banner-wrapper .banner-one__sub-title p {
  position: relative;
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
}

.banner-wrapper .banner-one__title {
  position: relative;
  font-size: 60px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 24px;
}

.banner-wrapper .banner-one__title span {
  color: var(--primary_color);
}

.banner-wrapper .banner-one__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 44px;
}

.banner-wrapper .banner-one__thm-and-other-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.banner-wrapper .banner-one__btn-box {
  position: relative;
  display: block;
}

.banner-wrapper .banner-one__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
}

.banner-wrapper .banner-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  background-color: var(--primary_color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.banner-wrapper .banner-one__video-icon:hover {
  background-color: #ffffff;
  color: var(--primary_color);
}

.banner-wrapper .banner-one__video-link .ripple,
.banner-wrapper .banner-one__video-icon .ripple:before,
.banner-wrapper .banner-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(217, 2, 2, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(217, 2, 2, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(217, 2, 2, 0.6);
  box-shadow: 0 0 0 0 rgba(217, 2, 2, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.banner-wrapper .banner-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.banner-wrapper .banner-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.banner-wrapper .banner-one__video-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1em;
}

.banner-wrapper .banner-one__right {
  position: absolute;
  bottom: -185px;
  right: 0;
}

.banner-wrapper .banner-one__img-box {
  position: relative;
  display: block;
}

.banner-wrapper .banner-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.banner-wrapper .banner-one__img>img {
  width: 100%;
  animation: topBottom 3s ease-in-out infinite;
}

.banner-wrapper .banner-one__img-shape-box {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 552px;
  height: 552px;
  background: rgba(217, 2, 2, 0.40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: -1;
}

.banner-wrapper .banner-one__img-shape-1 {
  position: relative;
  width: 451px;
  height: 451px;
  background: rgba(217, 2, 2, 0.40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-wrapper .banner-one__img-shape-2 {
  position: relative;
  width: 368px;
  height: 368px;
  background: rgba(217, 2, 2, 0.40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-wrapper .banner-one__shape-1 {
  position: absolute;
  top: 51px;
  left: 0;
}

.banner-wrapper .banner-one__shape-1 img {
  width: auto;
}

.banner-wrapper .banner-one__shape-2 {
  position: absolute;
  top: 126px;
  left: 0;
}

.banner-wrapper .banner-one__shape-2 img {
  width: auto;
}

.banner-wrapper .banner-one__shape-3 {
  position: absolute;
  top: 32px;
  right: 0;
}

.banner-wrapper .banner-one__shape-3 img {
  width: auto;
}

.banner-wrapper .banner-one__client-review {
  position: absolute;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 25px 15px 25px;
  max-width: 200px;
  width: 100%;
  bottom: 80px;
  left: -170px;
}

.banner-wrapper .banner-one__client-review-img {
  position: absolute;
  top: -16px;
  right: -12px;
  max-width: 56px;
  border-radius: 50%;
}

.banner-wrapper .banner-one__client-review-img img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--primary_color);
}

.banner-wrapper .banner-one__client-review-text {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.banner-wrapper .banner-one__client-review-text h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  color: var(--primary_color_font);
}

.banner-wrapper .banner-one__client-review-client-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.banner-wrapper .banner-one__client-review-client-name {
  font-size: 16px;
  color: var(--secondary_color_font);
  font-weight: 600;
  line-height: 16px;
}

.banner-wrapper .banner-one__client-review-star {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
}

.banner-wrapper .banner-one__client-review-star span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--primary_color);
}

.banner-wrapper .banner-one__happy-customer {
  position: absolute;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px 15px 15px;
  max-width: 200px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  top: 100px;
  right: -110px;
  animation: leftRight 4s ease-in-out infinite;
}

.banner-wrapper .banner-one__happy-customer-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-wrapper .banner-one__happy-customer-list li+li {
  margin-left: -10px;
}

.banner-wrapper .banner-one__happy-customer-img {
  position: relative;
  display: block;
  max-width: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.banner-wrapper .banner-one__happy-customer-img img {
  width: 100%;
  border-radius: 50%;
  border: 1px solid var(--primary_color);
}

.banner-wrapper .banner-one__happy-customer-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--primary_color);
  color: #ffffff;
  z-index: -1;
}

.banner-wrapper .banner-one__happy-customer-count-box {
  position: relative;
  display: block;
  margin-top: 15px;
}

.banner-wrapper .banner-one__happy-customer-count-box-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.banner-wrapper .banner-one__happy-customer-count-box-inner p {
  font-size: 30px;
  color: var(--primary_color);
  font-weight: 700;
  line-height: 30px;
}

.banner-wrapper .banner-one__happy-customer-count-box-inner span {
  font-size: 30px;
  color: var(--primary_color);
  font-weight: 700;
  line-height: 30px;
}

.banner-wrapper .banner-one__happy-customer-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary_color_font);
  margin-top: 3px;
}

/* Responsive Styles */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .banner-wrapper .banner-one__title {
    font-size: 50px;
  }

  .banner-wrapper .banner-one__happy-customer {
    right: -40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-wrapper .banner-one__shape-bg {
    display: none;
  }

  .banner-wrapper .banner-one__right {
    right: -155px;
  }

  .banner-wrapper .banner-one__left {
    max-width: 600px;
    margin: 0;
  }

  .banner-wrapper .banner-one__title {
    font-size: 50px;
  }

  .banner-wrapper .banner-one__client-review {
    bottom: 45px;
  }

  .banner-wrapper .banner-one__happy-customer {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-wrapper .banner-one__shape-bg {
    display: none;
  }

  .banner-wrapper .banner-one__right {
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 600px;
    margin-top: 60px;
  }

  .banner-wrapper .banner-one__left {
    max-width: 600px;
    margin: 0;
  }

  .banner-wrapper .banner-one__title {
    font-size: 50px;
  }

  .banner-wrapper .banner-one__client-review {
    bottom: 45px;
    left: -25px;
  }

  .banner-wrapper .banner-one__happy-customer {
    right: -40px;
  }

  .banner-wrapper .banner-one {
    padding: 288px 0 0px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-wrapper .banner-one__shape-bg,
  .banner-wrapper .banner-one__shape-4 {
    display: none;
  }

  .banner-wrapper .banner-one__right {
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 500px;
    margin-top: 40px;
  }

  .banner-wrapper .banner-one__left {
    max-width: 500px;
    margin: 0;
  }

  .banner-wrapper .banner-one__sub-title p {
    font-size: 14px;
  }

  .banner-wrapper .banner-one__title {
    font-size: 25px;
    line-height: 1.3em;
  }

  .banner-wrapper .banner-one__text br {
    display: none;
  }

  .banner-wrapper .banner-one__client-review {
    display: none;
  }

  .banner-wrapper .banner-one__happy-customer {
    display: none;
  }

  .banner-wrapper .banner-one {
    padding: 188px 0 0px;
  }

  .banner-wrapper .banner-one__thm-and-other-btn-box {
    flex-direction: column;
    align-items: baseline;
  }
}


/* Video One Widget Styles - Scoped under .video-wrapper */
.video-wrapper {
  overflow: hidden;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes swing-x {
  0% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.video-wrapper a {
  text-decoration: none;
}

.video-wrapper .video-one {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--primary_color_font);
  z-index: 1;
}

.video-wrapper .video-one__inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 120px 0 120px;
}

.video-wrapper .video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .30;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-wrapper .video-one__video-link {
  position: relative;
  display: block;
}

.video-wrapper .video-one__video-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 20px;
  color: var(--primary_color);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

.video-wrapper .video-one__video-icon:hover {
  background-color: var(--primary_color);
  color: rgba(255, 255, 255, 1);
}

.video-wrapper .video-one__video-icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  z-index: -1;
}

.video-wrapper .video-one__video-link .ripple,
.video-wrapper .video-one__video-icon .ripple:before,
.video-wrapper .video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: ripple 3s infinite;
}

.video-wrapper .video-one__video-icon .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-wrapper .video-one__video-icon .ripple:after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-wrapper .video-one__title {
  font-size: 40px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.25em;
  font-weight: 700;
  text-transform: capitalize;
  margin: 40px 0 25px;
}

.video-wrapper .video-one__btn-box {
  position: relative;
  display: inline-block;
}

.video-wrapper .video-one__btn-box .thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  outline: none !important;
  background-color: var(--primary_color);
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.video-wrapper .video-one__btn-box .thm-btn>span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_color_font);
  border-radius: 50%;
  color: rgba(255, 255, 255, 1);
  transition: all 0.5s linear;
}

.video-wrapper .video-one__btn-box .thm-btn:hover>span {
  background-color: rgba(255, 255, 255, 1);
  color: var(--primary_color);
}

.video-wrapper .video-one__btn-box .thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.video-wrapper .video-one__btn-box .thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.video-wrapper .video-one__btn-box .thm-btn::after {
  position: absolute;
  background-color: rgba(255, 255, 255, 1);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.video-wrapper .video-one__btn-box .thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.video-wrapper .video-one__btn-box .thm-btn:hover {
  color: var(--primary_color);
}

.video-wrapper .video-one__shape-1 {
  position: absolute;
  right: -90px;
  bottom: -50px;
  animation: swing-x 1s ease-in-out 1s forwards infinite alternate;
}

.video-wrapper .video-one__shape-1 img {
  width: auto;
}

/* Responsive Styles */
@media only screen and (max-width: 767px) {
  .video-wrapper .video-one__title br {
    display: none;
  }

  .video-wrapper .video-one__title {
    font-size: 35px;
  }

  .video-wrapper .video-one__shape-1 {
    display: none;
  }

  .video-wrapper .video-one__inner {
    padding: 80px 0 80px;
  }
}


﻿/* Why Choose One Widget Styles - Scoped under .why-choose-wrapper */
.why-choose-wrapper {
  overflow: hidden;
}

.why-choose-wrapper a {
  text-decoration: none;
}

.why-choose-wrapper .why-choose-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.why-choose-wrapper .why-choose-one__right-bg-color {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -19px;
  width: calc((100% - -243px) / 2);
  background-color: var(--primary_color);
  z-index: -1;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 73% 100%, 73% 93%, 6% 93%, 0 70%);
}

.why-choose-wrapper .why-choose-one__right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% - -197px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -1;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 74.5% 100%, 74.5% 93%, 5.5% 93%, 0 72%);
}

.why-choose-wrapper .why-choose-one__sliding-text-list {
  position: absolute;
  top: -58px;
  left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
  z-index: -1;
}

.why-choose-wrapper .why-choose-one__sliding-text-list li {
  position: relative;
  display: flex;
  float: left;
  margin-left: 60px;
}

.why-choose-wrapper .why-choose-one__sliding-text-title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 150px;
  line-height: 1.5em;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(217, 2, 2, .10) 0%, rgba(217, 2, 2, 0) 67.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-wrapper .why-choose-one__left {
  position: relative;
  display: block;
  z-index: 2;
}

.why-choose-wrapper .why-choose-one__left .section-title {
  margin-bottom: 28px;
}

.why-choose-wrapper .why-choose-one__points-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin: 27px 0 25px;
}

.why-choose-wrapper .why-choose-one__points-list {
  position: relative;
  display: block;
}

.why-choose-wrapper .why-choose-one__points-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-choose-wrapper .why-choose-one__points-list li .icon {
  position: relative;
  display: inline-block;
}

.why-choose-wrapper .why-choose-one__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--primary_color);
}

.why-choose-wrapper .why-choose-one__points-list li+li {
  margin-top: 12px;
}

.why-choose-wrapper .why-choose-one__points-list li p {
  font-weight: 600;
  color: var(--primary_color_font);
}

.why-choose-wrapper .why-choose-one__points-list-shape-1 {
  position: absolute;
  top: 50%;
  left: 259px;
  height: 150px;
  width: 1px;
  background-color: #e6e6e6;
  transform: translateY(-50%);
}

.why-choose-wrapper .why-choose-one__author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-choose-wrapper .why-choose-one__author-img {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.why-choose-wrapper .why-choose-one__author-img img {
  width: 100%;
  border-radius: 50%;
}

.why-choose-wrapper .why-choose-one__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-wrapper .why-choose-one__author-content p {
  display: block;
  position: relative;
  margin-bottom: 5px;
}

.why-choose-wrapper .why-choose-one__author-content p>span {
  font-weight: 500;
  color: var(--primary_color_font);
}

.why-choose-wrapper .why-choose-one__author-content p {
  font-weight: 600;
}

.why-choose-wrapper .why-choose-one__author-content p a {
  color: var(--primary_color_font);
}

.why-choose-wrapper .why-choose-one__author-content p a:hover {
  color: var(--primary_color);
}

.why-choose-wrapper .why-choose-one__right {
  position: relative;
  display: block;
  margin-left: 120px;
  margin-right: -100px;
  margin-top: 50px;
}

.why-choose-wrapper .why-choose-one__count-single {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgba(17, 17, 17, 0.90);
  padding: 40px 40px 32px;
  border-radius: var(--general_border_radius);
  margin-bottom: 30px;
}

.why-choose-wrapper .why-choose-one__count-icon {
  position: relative;
  display: inline-block;
}

.why-choose-wrapper .why-choose-one__count-icon span {
  position: relative;
  display: inline-block;
  font-size: 52px;
  color: #fff;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-wrapper .why-choose-one__count-single:hover .why-choose-wrapper .why-choose-one__count-icon span {
  transform: scale(0.9);
}

.why-choose-wrapper .why-choose-one__count-content {
  position: relative;
  display: block;
}

.why-choose-wrapper .why-choose-one__count-count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 2px;
}

.why-choose-wrapper .why-choose-one__count-count-box h3 {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px !important;
  color: #fff;
  font-family: var(--primary_font) !important;
}

.why-choose-wrapper .why-choose-one__count-count-box span {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
  color: #fff;
  font-family: var(--primary_font) !important;
}

.why-choose-wrapper .why-choose-one__count-text {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  text-transform: capitalize;
}

.why-choose-wrapper .why-choose-one__text {
  margin-bottom: 27px;
  font-size: 16px;
  line-height: 26px;
}

/* Section Title Styles */
.why-choose-wrapper .section-title {
  position: relative;
  display: block;
  margin-top: -13px;
  margin-bottom: 48px;
  z-index: 1;
}

.why-choose-wrapper .section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.why-choose-wrapper .section-title__tagline {
  position: relative;
  display: block;
  color: var(--primary_color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.5px;
}

.why-choose-wrapper .section-title__tagline-border {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border: 1px solid var(--primary_color);
}

.why-choose-wrapper .section-title__shape-1 {
  position: absolute;
  right: -1px;
  top: -4px;
}

.why-choose-wrapper .section-title__shape-1>.section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.why-choose-wrapper .section-title__shape-2 {
  position: absolute;
  left: -1px;
  top: -4px;
}

.why-choose-wrapper .section-title__shape-2>.section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.why-choose-wrapper .section-title__title {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

.why-choose-wrapper .section-title__title span {
  color: var(--primary_color);
}

/* Responsive Styles */

/* 1200px - 1319px */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .why-choose-wrapper .why-choose-one__right {
    margin-left: 0;
    margin-right: 0;
  }

  .why-choose-wrapper .why-choose-one__right-bg-color {
    right: -105px;
  }

  .why-choose-wrapper .why-choose-one__right-bg {
    right: -90px;
  }

  .why-choose-wrapper .why-choose-one__count-single {
    padding: 40px 30px 32px;
  }
}

/* 1320px - 1500px */
@media only screen and (min-width: 1320px) and (max-width: 1500px) {
  .why-choose-wrapper .why-choose-one__right {
    margin-left: 0;
    margin-right: 0;
  }

  .why-choose-wrapper .why-choose-one__right-bg-color {
    right: -50px;
  }

  .why-choose-wrapper .why-choose-one__right-bg {
    right: -35px;
  }
}

/* 992px - 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-wrapper .why-choose-one__right-bg-color {
    display: none;
  }

  .why-choose-wrapper .why-choose-one__right-bg {
    display: none;
  }

  .why-choose-wrapper .why-choose-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .why-choose-wrapper .why-choose-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }

  .why-choose-wrapper .why-choose-one {
    padding: 120px 0 110px;
  }
}

/* 768px - 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-choose-wrapper .section-title__title {
    font-size: 35px;
    line-height: 1.2em;
  }

  .why-choose-wrapper .why-choose-one__right-bg-color {
    display: none;
  }

  .why-choose-wrapper .why-choose-one__right-bg {
    display: none;
  }

  .why-choose-wrapper .why-choose-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .why-choose-wrapper .why-choose-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }

  .why-choose-wrapper .why-choose-one {
    padding: 120px 0 110px;
  }
}

/* Mobile: max-width 767px */
@media only screen and (max-width: 767px) {
  .why-choose-wrapper .section-title__tagline-box {
    gap: 5px;
  }

  .why-choose-wrapper .section-title__tagline-border {
    width: 25px;
  }

  .why-choose-wrapper .section-title__title {
    font-size: 25px;
    line-height: 1.2em;
  }

  .why-choose-wrapper .section-title__title br {
    display: none;
  }

  .why-choose-wrapper .why-choose-one__right-bg-color {
    display: none;
  }

  .why-choose-wrapper .why-choose-one__right-bg {
    display: none;
  }

  .why-choose-wrapper .why-choose-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .why-choose-wrapper .why-choose-one__right {
    max-width: 600px;
    margin: 50px auto 0;
  }

  .why-choose-wrapper .why-choose-one__points-box {
    gap: 12px;
    margin: 27px 0 25px;
    flex-direction: column;
    align-items: baseline;
  }

  .why-choose-wrapper .why-choose-one__points-list-shape-1 {
    display: none;
  }

  .why-choose-wrapper .why-choose-one {
    padding: 120px 0 70px;
  }
}


/* ===== Gallery One ===== */

/* Base typography (replaces body defaults from template) */
.gallery-wrapper {
  font-family: var(--primary_font);
  color: var(--secondary_color_font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  overflow: hidden;
}

.gallery-wrapper .gallery-one {
  position: relative;
  display: block;
}

.gallery-wrapper .gallery-one .container {
  max-width: 1000px;
}

.gallery-wrapper .gallery-one__top-title-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-wrapper .gallery-one__top-title-box::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(17, 17, 17, 0.15);
}

.gallery-wrapper .gallery-one__top-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  color: var(--primary_color_font);
  background-color: #fff;
  width: 220px;
  margin: 0 auto;
}

.gallery-wrapper .gallery-one__carousel {
  position: relative;
  display: block;
}

.gallery-wrapper .gallery-one__single {
  position: relative;
  display: block;
}

.gallery-wrapper .gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--general_border_radius);
  z-index: 1;
}

.gallery-wrapper .gallery-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(17, 17, 17, 0.85);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.gallery-wrapper .gallery-one__single:hover .gallery-one__img:before {
  opacity: 1;
  transform: translateY(0px);
}

.gallery-wrapper .gallery-one__img img {
  width: 100%;
  border-radius: var(--general_border_radius);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.gallery-wrapper .gallery-one__single:hover .gallery-one__img img {
  transform: scale(1.1) rotate(2deg);
}

.gallery-wrapper .gallery-one__img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(100px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 2;
  text-decoration: none;
}

.gallery-wrapper .gallery-one__single:hover .gallery-one__img a {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.gallery-wrapper .gallery-one__img a:hover {
  color: var(--primary_color);
}


/* Hero Widget Styles - Scoped under .hero-wrapper */

.hero-wrapper {
  position: relative;
}

.hero-wrapper .main-slider-two {
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}

.hero-wrapper .main-slider-two__carousel {
  position: relative;
  width: 100%;
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter {
  position: absolute;
  top: 50%;
  left: 53px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 17px;
  z-index: 3;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter {
    left: 15px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter {
    display: none;
  }
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current {
  position: relative;
  font-size: 26px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current {
    font-size: 23px;
  }
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current::before {
  content: "";
  width: 33px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -53px;
  transform: translateY(-50%);
  background-color: var(--secondary_color);
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current::before {
    display: none;
  }
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__total {
  position: relative;
  font-size: 16px;
  color: #707882;
  font-weight: 600;
  line-height: 1;
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__total::before {
  content: "";
  width: 2px;
  height: calc(100% - 5px);
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%) rotate(20deg);
  background-color: #707882;
}

.hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 14px;
}

@media (min-width: 1200px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    flex-direction: column;
  }
}

@media (min-width: 1400px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
    right: 40px;
  }
}

.hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav button {
  background-color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--secondary_color);
  color: #FFFFFF;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
  }
}

.hero-wrapper .main-slider-two__item {
  position: relative;
  padding: 30px 141px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__item {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__item {
    padding: 15px 15px 0;
  }
}

.hero-wrapper .main-slider-two__item__shape {
  width: 100%;
  height: 270px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ECF0F5;
  z-index: 1;
}

.hero-wrapper .main-slider-two__item__shape__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.hero-wrapper .main-slider-two__wrapper {
  position: relative;
  padding-top: 191px;
  padding-bottom: 134px;
  overflow: hidden;
  border-radius: var(--general_border_radius);
  z-index: 2;
}

@media (max-width: 1599px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-bottom: 198px;
    padding-top: 153px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-bottom: 230px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-top: 133px;
    padding-bottom: 220px;
  }
}

@media (max-width: 390px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-top: 123px;
    padding-bottom: 210px;
  }
}

.hero-wrapper .main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: var(--general_border_radius);
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
}

.hero-wrapper .main-slider-two__bg::after {
  content: "";
  width: 100%;
  max-width: 1090px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary_color) 6.58%, rgba(0, 165, 241, 0.8) 43.94%, rgba(0, 165, 241, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-wrapper .main-slider-two .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .hero-wrapper .main-slider-two .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .hero-wrapper .main-slider-two .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .hero-wrapper .main-slider-two .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.hero-wrapper .main-slider-two__content {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-wrapper .main-slider-two__sub-title {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary_color);
  letter-spacing: 0.2em;
  line-height: 1.457;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-120px);
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__sub-title {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .hero-wrapper .main-slider-two__sub-title {
    letter-spacing: 0.05em;
  }
}

.hero-wrapper .main-slider-two__title {
  margin-bottom: 9px;
  display: inline-block;
  overflow: hidden;
  font-size: 80px;
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.125;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  opacity: 0;
  transform: translateX(300px);
  position: relative;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 50px;
  }
}

@media (max-width: 430px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 45px;
  }
}

.hero-wrapper .main-slider-two__title__overlay-group {
  display: block;
  position: relative;
}

.hero-wrapper .main-slider-two__title__overlay {
  background-color: var(--secondary_color);
  width: 16.66%;
  height: calc(100% - 10px);
  display: block;
  position: absolute;
  transition: top 1000ms cubic-bezier(0.65, 0, 0.076, 1), bottom 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
  z-index: 1;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(2),
.hero-wrapper .main-slider-two__title__overlay:nth-child(4),
.hero-wrapper .main-slider-two__title__overlay:nth-child(6) {
  top: 5px;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(2) {
  left: 16.66%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(4) {
  left: 49.98%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(6) {
  left: 83.3%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(1),
.hero-wrapper .main-slider-two__title__overlay:nth-child(3),
.hero-wrapper .main-slider-two__title__overlay:nth-child(5) {
  bottom: 5px;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(1) {
  left: 0;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(3) {
  left: 33.32%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(5) {
  left: 66.64%;
}

.hero-wrapper .main-slider-two__text {
  margin-bottom: 51px;
  max-width: 551px;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.666;
  opacity: 0;
  transform: translateX(-300px);
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__text {
    font-size: 16px;
  }
}

.hero-wrapper .main-slider-two__button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-wrapper .main-slider-two__button-1,
.hero-wrapper .main-slider-two__button-2 {
  opacity: 0;
  transform: translateY(120px);
}

.hero-wrapper .main-slider-two__button-1 .mediox-btn::before,
.hero-wrapper .main-slider-two__button-1 .mediox-btn::after {
  background-color: #FFFFFF;
}

.hero-wrapper .main-slider-two__button-1 .mediox-btn:hover,
.hero-wrapper .main-slider-two__button-1 .mediox-btn:hover .mediox-btn__icon {
  color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn {
  padding: 11px 20.5px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn::before,
.hero-wrapper .main-slider-two__button-2 .mediox-btn::after {
  content: "";
  background-color: var(--secondary_color);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn:hover {
  border-color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn:hover::before,
.hero-wrapper .main-slider-two__button-2 .mediox-btn:hover::after {
  width: calc(50% + 6px);
}

.hero-wrapper .main-slider-two__info {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--primary_color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 246.000000"><g transform="translate(0.000000,246.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M8964 2308 c-20 -94 -165 -246 -266 -280 -18 -6 -39 -16 -47 -22 -10 -8 -1085 -13 -3895 -17 -2546 -4 -3898 -9 -3931 -16 -124 -25 -263 -139 -326 -268 l-34 -70 -6 -615 c-4 -338 -11 -635 -16 -660 -15 -73 -64 -160 -123 -219 -75 -76 -92 -88 -190 -129 -18 -8 1284 -11 4423 -11 l4447 -1 0 1170 c0 1004 -2 1170 -14 1170 -8 0 -18 -14 -22 -32z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 246.000000"><g transform="translate(0.000000,246.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M8964 2308 c-20 -94 -165 -246 -266 -280 -18 -6 -39 -16 -47 -22 -10 -8 -1085 -13 -3895 -17 -2546 -4 -3898 -9 -3931 -16 -124 -25 -263 -139 -326 -268 l-34 -70 -6 -615 c-4 -338 -11 -635 -16 -660 -15 -73 -64 -160 -123 -219 -75 -76 -92 -88 -190 -129 -18 -8 1284 -11 4423 -11 l4447 -1 0 1170 c0 1004 -2 1170 -14 1170 -8 0 -18 -14 -22 -32z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__info {
    display: none;
  }
}

.hero-wrapper .main-slider-two__info__inner {
  padding: 70px 65.5px 29px 50.5px;
  display: flex;
  align-items: flex-start;
  gap: 110px;
  border-radius: 30px 0 30px 0;
  z-index: 1;
}

.hero-wrapper .main-slider-two__call {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-wrapper .main-slider-two__call::after {
  content: "";
  width: 1px;
  height: 37px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
}

.hero-wrapper .main-slider-two__call__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--secondary_color);
  background-color: #ECF0F5;
  transition: all 500ms ease;
}

.hero-wrapper .main-slider-two__call:hover .main-slider-two__call__icon {
  color: #FFFFFF;
  background-color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__call__title {
  margin-bottom: 4px;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.357;
}

.hero-wrapper .main-slider-two__call__number {
  margin: 0;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.35;
}

.hero-wrapper .main-slider-two__call__number:hover {
  color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__call__number a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.hero-wrapper .main-slider-two__call__number a:hover {
  background-size: 100% 1px;
}

.hero-wrapper .main-slider-two__social {
  margin-top: -6px;
}

.hero-wrapper .main-slider-two__social__title {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.357;
}

.hero-wrapper .main-slider-two__social__title::after {
  content: "";
  width: 37px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: -44px;
  transform: translateY(-50%);
}

.hero-wrapper .main-slider-two__social__links {
  display: flex;
  align-items: center;
  gap: 19px;
}

.hero-wrapper .main-slider-two__social__links a {
  display: inline-flex;
  font-size: 14px;
  color: #FFFFFF;
  transition: all 500ms ease;
  text-decoration: none;
}

.hero-wrapper .main-slider-two__social__links a:hover {
  color: var(--secondary_color);
}

/* Active slide animations */
.hero-wrapper .main-slider-two .item.active .main-slider-two__bg {
  transform: scale(1.2);
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 900ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 500ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(2),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(4),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(6) {
  top: 105%;
  transition: top 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(1),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(3),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(5) {
  bottom: 105%;
  transition: bottom 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__text {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 900ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__button-1,
.hero-wrapper .main-slider-two .item.active .main-slider-two__button-2 {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 1000ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__button-2 {
  transition-delay: 1100ms;
}

/* Mediox Button Styles */
.hero-wrapper .mediox-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--secondary_color);
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  line-height: 1.75;
  padding: 12px 20.5px;
  cursor: pointer;
  transition: 500ms;
  text-transform: capitalize;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
}

.hero-wrapper .mediox-btn::before,
.hero-wrapper .mediox-btn::after {
  content: "";
  background-color: var(--secondary_color_font);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.hero-wrapper .mediox-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.hero-wrapper .mediox-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.hero-wrapper .mediox-btn:hover::before,
.hero-wrapper .mediox-btn:hover::after {
  width: calc(50% + 6px);
}

.hero-wrapper .mediox-btn__icon {
  display: inline-flex;
  font-size: 11px;
  color: #FFFFFF;
  transition: all 500ms ease;
}

.hero-wrapper .mediox-btn:hover .mediox-btn__icon {
  transform: rotate(45deg);
}

/* Utility Classes */
.hero-wrapper .section-space-bottom {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .hero-wrapper .section-space-bottom {
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .section-space-bottom {
    padding-bottom: 80px;
  }
}

.hero-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .hero-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

.hero-wrapper .gutter-y-30 > * {
  margin-bottom: 30px;
}

.hero-wrapper .gutter-y-50 > * {
  margin-bottom: 50px;
}

/* Features One Section */
.hero-wrapper .features-one {
  padding-top: 60px;
  position: relative;
  background-color: #ECF0F5;
  margin-top: 0;
}

.hero-wrapper .features-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.hero-wrapper .features-one .container {
  position: relative;
  z-index: 1;
}

.hero-wrapper .features-one__card {
  position: relative;
  border-radius: var(--general_border_radius);
}

.hero-wrapper .features-one__card::after {
  content: "";
  width: 100%;
  height: calc(100% - 30px);
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0px 4px 50px rgba(0, 165, 241, 0.1);
}

.hero-wrapper .features-one__card__content {
  position: relative;
  padding: 0 30px 23px;
  z-index: 1;
}

.hero-wrapper .features-one__card__icon {
  margin-bottom: 19px;
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: var(--secondary_color);
  font-size: 40px;
  color: #FFFFFF;
  z-index: 1;
  transition: all 500ms ease;
}

.hero-wrapper .features-one__card__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background-color: var(--primary_color);
  transition: transform 400ms ease, opacity 400ms ease;
}

.hero-wrapper .features-one__card:hover .features-one__card__icon::after {
  opacity: 1;
  transform: scale(1);
}

.hero-wrapper .features-one__card__title {
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.388;
  text-transform: capitalize;
  color: var(--primary_color_font);
}

.hero-wrapper .features-one__card__text {
  margin: 0;
  line-height: 1.625;
  color: var(--primary_color_font);
}

/* About Two Section */
.hero-wrapper .about-two {
  position: relative;
  background-color: #FFFFFF;
  padding-top: 0;
  margin-top: 0;
}

.hero-wrapper .about-two .container {
  position: relative;
  z-index: 1;
}

.hero-wrapper .about-two__image {
  position: relative;
}

@media (max-width: 991px) {
  .hero-wrapper .about-two__image {
    max-width: 550px;
  }
}

.hero-wrapper .about-two__image__one {
  position: relative;
  display: table;
  z-index: 1;
}

.hero-wrapper .about-two__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: var(--general_border_radius);
}

.hero-wrapper .about-two__image__two {
  padding: 10px;
  display: table;
  position: absolute;
  top: 122px;
  right: -19px;
  background-color: #FFFFFF;
  border-radius: var(--general_border_radius);
  z-index: 1;
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__image__two {
    top: 180px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__image__two {
    margin-top: 30px;
    position: static;
  }
}

.hero-wrapper .about-two__image__two__inner {
  position: relative;
  padding: 60px 0 0 0;
  background-color: var(--secondary_color);
  border-radius: inherit;
}

.hero-wrapper .about-two__image__two__inner > img {
  position: relative;
  left: -37px;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__image__two__inner > img {
    left: -15px;
  }
}

.hero-wrapper .about-two__image__two__shape-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-wrapper .about-two__image__two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 31px;
  right: 29px;
  animation: rotate 4s linear infinite;
}

.hero-wrapper .about-two__image__two__bg-top {
  width: 223px;
  height: 223px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -66px;
  left: -71px;
  transform: rotate(-135deg);
  border-radius: 260px 260px 10px 260px;
  background-color: rgba(0, 165, 241, 0.1);
}

.hero-wrapper .about-two__image__two__bg-top__1 {
  width: 174px;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: rgba(0, 165, 241, 0.15);
}

.hero-wrapper .about-two__image__two__bg-top__2 {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background-color: rgba(0, 165, 241, 0.2);
}

.hero-wrapper .about-two__image__two__bg-bottom {
  width: 223px;
  height: 223px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -71px;
  bottom: -64px;
  transform: rotate(45deg);
  border-radius: 260px 260px 10px 260px;
  background-color: rgba(0, 165, 241, 0.1);
}

.hero-wrapper .about-two__image__two__bg-bottom__1 {
  width: 174px;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: rgba(0, 165, 241, 0.15);
}

.hero-wrapper .about-two__image__two__bg-bottom__2 {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background-color: rgba(0, 165, 241, 0.2);
}

.hero-wrapper .about-two__image__three {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 17px;
  right: 0;
  z-index: 1;
}

@media (max-width: 575px) {
  .hero-wrapper .about-two__image__three {
    display: none;
  }
}

.hero-wrapper .about-two__image__shape {
  width: 482px;
  height: 370px;
  position: absolute;
  left: -38px;
  bottom: -154px;
  background-color: #ECF0F5;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 690.000000"><g transform="translate(0.000000,690.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6610 6886 c0 -10 -19 -16 -67 -20 -134 -12 -425 -82 -583 -141 -161 -60 -422 -182 -527 -246 -35 -22 -65 -39 -68 -39 -12 0 -245 -165 -424 -299 -176 -132 -280 -207 -329 -236 -9 -6 -45 -29 -80 -53 -35 -23 -65 -42 -68 -42 -2 0 -23 -12 -47 -27 -55 -36 -72 -45 -197 -109 -305 -154 -642 -258 -1070 -328 -222 -36 -508 -76 -545 -76 -16 0 -77 -7 -135 -15 -58 -9 -154 -22 -215 -31 -285 -39 -364 -52 -525 -85 -30 -6 -75 -15 -100 -20 -58 -10 -157 -34 -201 -47 -19 -5 -61 -18 -94 -27 -33 -9 -71 -22 -85 -27 -14 -5 -57 -20 -96 -33 -40 -13 -80 -28 -90 -33 -11 -5 -55 -27 -99 -48 -259 -123 -444 -288 -620 -554 -78 -117 -174 -300 -210 -400 -41 -114 -77 -229 -84 -270 -5 -25 -13 -65 -19 -90 -25 -102 -32 -203 -32 -426 0 -129 5 -268 10 -307 19 -134 66 -338 100 -432 12 -33 25 -73 29 -90 26 -94 178 -338 100 -432z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 690.000000"><g transform="translate(0.000000,690.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6610 6886 c0 -10 -19 -16 -67 -20 -134 -12 -425 -82 -583 -141 -161 -60 -422 -182 -527 -246 -35 -22 -65 -39 -68 -39 -12 0 -245 -165 -424 -299 -176 -132 -280 -207 -329 -236 -9 -6 -45 -29 -80 -53 -35 -23 -65 -42 -68 -42 -2 0 -23 -12 -47 -27 -55 -36 -72 -45 -197 -109 -305 -154 -642 -258 -1070 -328 -222 -36 -508 -76 -545 -76 -16 0 -77 -7 -135 -15 -58 -9 -154 -22 -215 -31 -285 -39 -364 -52 -525 -85 -30 -6 -75 -15 -100 -20 -58 -10 -157 -34 -201 -47 -19 -5 -61 -18 -94 -27 -33 -9 -71 -22 -85 -27 -14 -5 -57 -20 -96 -33 -40 -13 -80 -28 -90 -33 -11 -5 -55 -27 -99 -48 -259 -123 -444 -288 -620 -554 -78 -117 -174 -300 -210 -400 -41 -114 -77 -229 -84 -270 -5 -25 -13 -65 -19 -90 -25 -102 -32 -203 -32 -426 0 -129 5 -268 10 -307 19 -134 66 -338 100 -432 12 -33 25 -73 29 -90 26 -94 178 -338 100 -432z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__image__shape {
    display: none;
  }
}

.hero-wrapper .about-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 293px;
  left: 139px;
  opacity: 0.25;
  animation: zump 2s linear infinite;
}

@media (max-width: 1799px) {
  .hero-wrapper .about-two__shape {
    left: 80px;
  }
}

@media (max-width: 1599px) {
  .hero-wrapper .about-two__shape {
    left: 10px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__shape {
    display: none;
  }
}

.hero-wrapper .about-two__content {
  padding-left: 51px;
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__content {
    padding-left: 0;
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .hero-wrapper .about-two__content {
    margin-top: 180px;
  }
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__content {
    margin-top: 0;
  }
}

.hero-wrapper .about-two .sec-title {
  margin-bottom: 21px;
}

.hero-wrapper .about-two__text {
  margin-bottom: 24px;
  font-weight: 400;
  color: var(--primary_color_font);
}

.hero-wrapper .about-two__list {
  margin-bottom: 43px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  list-style: none;
  padding: 0;
}

.hero-wrapper .about-two__list li {
  width: calc(50% - 60px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary_color_font);
  text-transform: capitalize;
  line-height: 1.875;
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__list li {
    width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .hero-wrapper .about-two__list li {
    width: 100%;
  }
}

.hero-wrapper .about-two__list__icon {
  position: relative;
  top: 1px;
  font-size: 16px;
  color: var(--secondary_color);
}

/* Section Title Styles */
.hero-wrapper .sec-title {
  margin-bottom: 21px;
}

.hero-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.hero-wrapper .sec-title__tagline {
  margin: 0;
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .hero-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.hero-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: var(--primary_color_font);
}

@media (max-width: 767px) {
  .hero-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes zump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


/* Scoped styles for mediox_team widget */
.team-wrapper {
  /* Section Space Two */
}

.team-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .team-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .team-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

/* Sec Title */
.team-wrapper .sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}

.team-wrapper .sec-title--center .sec-title__top {
  justify-content: center;
}

.team-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.team-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--primary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .team-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.team-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  font-family: var(--primary_font);
}

@media (max-width: 767px) {
  .team-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .team-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Team Two */
.team-wrapper .team-two {
  position: relative;
  background-color: #FFFFFF;
}

/* Social Links */
.team-wrapper .social-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.team-wrapper .social-links a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #707882;
  border: 1px solid rgba(217, 225, 235, 0.2);
  border-radius: 50%;
  text-decoration: none;
  transition: all 500ms ease;
}

.team-wrapper .social-links a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.team-wrapper .social-links a:hover {
  color: #FFFFFF;
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

/* Team Card Two */
.team-wrapper .team-card-two {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

@media (min-width: 576px) {
  .team-wrapper .team-card-two--top-identity {
    margin-top: 35px;
    flex-direction: column-reverse;
  }
}

.team-wrapper .team-card-two__image {
  position: relative;
  padding: 15px;
  width: 270px;
  height: 316px;
  background-color: var(--primary_color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

@media (min-width: 576px) and (max-width: 767px) {
  .team-wrapper .team-card-two__image {
    width: 240px;
    height: 277px;
  }
}

@media (max-width: 575px) {
  .team-wrapper .team-card-two__image {
    margin-left: auto;
    margin-right: auto;
  }
}

.team-wrapper .team-card-two__image::after {
  content: "";
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  z-index: 1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  transition: all 500ms ease;
}

.team-wrapper .team-card-two__image__inner {
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720.000000 819.000000"><g transform="translate(0.000000,819.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3395 8135 c-22 -8 -50 -15 -62 -15 -12 0 -34 -6 -50 -14 -15 -8 -55 -28 -88 -44 -66 -31 -124 -63 -170 -93 -16 -10 -39 -23 -50 -29 -11 -6 -33 -19 -50 -30 -16 -11 -40 -24 -53 -30 -12 -5 -50 -28 -83 -50 -33 -22 -67 -40 -74 -40 -8 0 -17 -5 -20 -11 -4 -5 -17 -15 -28 -20 -12 -5 -35 -18 -52 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -29 -11 -5 -37 -21 -58 -35 -21 -14 -42 -26 -48 -26 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -21 -11 -34 -18 -103 -62 -24 -16 -48 -28 -53 -28 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -5 -27 -14 -35 -19 -32 -20 -166 -98 -180 -104 -8 -4 -28 -16 -45 -27 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -29 -16 -11 -48 -29 -70 -41 -22 -12 -59 -35 -83 -51 -24 -16 -48 -29 -54 -29 -6 0 -19 -7 -28 -15 -15 -13 -72 -48 -125 -75 -11 -6 -33 -19 -50 -30 -16 -11 -41 -25 -55 -31 -14 -5 -39 -21 -57 -35 -17 -13 -36 -24 -42 -24 -6 0 -27 -12 -48 -26 -21 -14 -47 -30 -58 -35 -11 -5 -33 -18 -50 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -111 -56 -292 -222 -328 -300 -4 -8 -16 -28 -27 -45 -39 -60 -78 -163 -99 -265 -16 -76 -10 -3526 6 -3585 18 -66 34 -106 72 -183 57 -117 65 -127 182 -244 58 -57 112 -97 211 -155 73 -44 140 -83 148 -86 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 15 -7 251 -145 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -4 58 -32 110 -63 52 -31 102 -59 110 -63 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -3 56 -31 105 -61 50 -30 99 -58 110 -63 11 -5 34 -18 50 -29 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 12 -5 176 -100 230 -133 8 -5 49 -26 90 -46 41 -20 82 -40 92 -45 9 -4 54 -17 101 -28 115 -28 312 -29 412 -1 104 28 195 65 250 99 17 11 53 32 80 46 28 15 64 38 82 51 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 29 11 6 34 19 50 30 17 11 44 26 60 33 17 8 54 31 84 51 29 20 59 36 66 36 8 0 17 5 20 11 4 5 17 15 28 20 12 5 36 18 52 29 17 11 39 24 50 30 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 28 11 5 37 21 58 35 21 14 41 26 45 26 5 0 39 20 76 45 38 25 73 45 77 45 11 0 131 82 155 106 11 11 31 28 45 39 67 52 219 287 219 338 0 7 4 17 10 23 5 5 14 34 20 64 6 30 17 60 25 66 13 10 15 223 15 1758 0 1480 -2 1746 -14 1746 -15 0 -26 30 -26 71 0 14 -7 34 -15 45 -8 10 -15 27 -15 36 0 14 -40 98 -86 179 -13 23 -97 122 -134 158 -42 40 -162 127 -215 156 -27 14 -63 35 -80 46 -16 10 -39 23 -50 29 -11 5 -27 14 -35 19 -8 5 -62 37 -120 71 -58 33 -112 65 -120 70 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -16 7 -255 147 -280 163 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -17 7 -181 103 -225 131 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -11 5 -72 40 -135 78 -63 38 -122 72 -130 76 -8 4 -28 16 -45 27 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 29 -100 64 -281 151 -314 151 -10 0 -35 7 -54 15 -50 21 -334 20 -392 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720.000000 819.000000"><g transform="translate(0.000000,819.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3395 8135 c-22 -8 -50 -15 -62 -15 -12 0 -34 -6 -50 -14 -15 -8 -55 -28 -88 -44 -66 -31 -124 -63 -170 -93 -16 -10 -39 -23 -50 -29 -11 -6 -33 -19 -50 -30 -16 -11 -40 -24 -53 -30 -12 -5 -50 -28 -83 -50 -33 -22 -67 -40 -74 -40 -8 0 -17 -5 -20 -11 -4 -5 -17 -15 -28 -20 -12 -5 -35 -18 -52 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -29 -11 -5 -37 -21 -58 -35 -21 -14 -42 -26 -48 -26 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -21 -11 -34 -18 -103 -62 -24 -16 -48 -28 -53 -28 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -5 -27 -14 -35 -19 -32 -20 -166 -98 -180 -104 -8 -4 -28 -16 -45 -27 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -29 -16 -11 -48 -29 -70 -41 -22 -12 -59 -35 -83 -51 -24 -16 -48 -29 -54 -29 -6 0 -19 -7 -28 -15 -15 -13 -72 -48 -125 -75 -11 -6 -33 -19 -50 -30 -16 -11 -41 -25 -55 -31 -14 -5 -39 -21 -57 -35 -17 -13 -36 -24 -42 -24 -6 0 -27 -12 -48 -26 -21 -14 -47 -30 -58 -35 -11 -5 -33 -18 -50 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -111 -56 -292 -222 -328 -300 -4 -8 -16 -28 -27 -45 -39 -60 -78 -163 -99 -265 -16 -76 -10 -3526 6 -3585 18 -66 34 -106 72 -183 57 -117 65 -127 182 -244 58 -57 112 -97 211 -155 73 -44 140 -83 148 -86 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 15 -7 251 -145 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -4 58 -32 110 -63 52 -31 102 -59 110 -63 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -3 56 -31 105 -61 50 -30 99 -58 110 -63 11 -5 34 -18 50 -29 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 12 -5 176 -100 230 -133 8 -5 49 -26 90 -46 41 -20 82 -40 92 -45 9 -4 54 -17 101 -28 115 -28 312 -29 412 -1 104 28 195 65 250 99 17 11 53 32 80 46 28 15 64 38 82 51 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 29 11 6 34 19 50 30 17 11 44 26 60 33 17 8 54 31 84 51 29 20 59 36 66 36 8 0 17 5 20 11 4 5 17 15 28 20 12 5 36 18 52 29 17 11 39 24 50 30 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 28 11 5 37 21 58 35 21 14 41 26 45 26 5 0 39 20 76 45 38 25 73 45 77 45 11 0 131 82 155 106 11 11 31 28 45 39 67 52 219 287 219 338 0 7 4 17 10 23 5 5 14 34 20 64 6 30 17 60 25 66 13 10 15 223 15 1758 0 1480 -2 1746 -14 1746 -15 0 -26 30 -26 71 0 14 -7 34 -15 45 -8 10 -15 27 -15 36 0 14 -40 98 -86 179 -13 23 -97 122 -134 158 -42 40 -162 127 -215 156 -27 14 -63 35 -80 46 -16 10 -39 23 -50 29 -11 5 -27 14 -35 19 -8 5 -62 37 -120 71 -58 33 -112 65 -120 70 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -16 7 -255 147 -280 163 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -17 7 -181 103 -225 131 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -11 5 -72 40 -135 78 -63 38 -122 72 -130 76 -8 4 -28 16 -45 27 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 29 -100 64 -281 151 -314 151 -10 0 -35 7 -54 15 -50 21 -334 20 -392 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.team-wrapper .team-card-two__image__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(11, 34, 65, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all 500ms ease;
}

.team-wrapper .team-card-two__image__inner img {
  width: 100%;
  display: block;
}

.team-wrapper .team-card-two:hover .team-card-two__image__inner::after {
  opacity: 1;
}

.team-wrapper .team-card-two__social {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  z-index: 2;
  flex-wrap: nowrap;
  gap: 10px;
  transition: all 500ms ease;
}

@media (min-width: 576px) and (max-width: 767px) {
  .team-wrapper .team-card-two__social {
    gap: 8px;
  }
}

.team-wrapper .team-card-two__social a {
  width: 36px;
  height: 36px;
  color: #FFFFFF;
  border-color: #FFFFFF;
  opacity: 0;
  transform: translateY(70px);
}

.team-wrapper .team-card-two__social a:nth-child(1) {
  transition: all 500ms ease 50ms;
}

.team-wrapper .team-card-two__social a:nth-child(2) {
  transition: all 500ms ease 110ms;
}

.team-wrapper .team-card-two__social a:nth-child(3) {
  transition: all 500ms ease 170ms;
}

.team-wrapper .team-card-two__social a:nth-child(4) {
  transition: all 500ms ease 230ms;
}

.team-wrapper .team-card-two:hover .team-card-two__social a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 575px) {
  .team-wrapper .team-card-two__identity {
    text-align: center;
  }
}

.team-wrapper .team-card-two__name {
  margin: 0;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.388;
  font-family: var(--primary_font);
}

.team-wrapper .team-card-two__name:hover {
  color: var(--primary_color);
}

.team-wrapper .team-card-two__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  text-decoration: none;
}

.team-wrapper .team-card-two__name a:hover {
  background-size: 100% 1px;
}

.team-wrapper .team-card-two__designation {
  margin: 0;
  font-size: 12px;
  color: var(--primary_color);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
  font-family: var(--primary_font);
}

/* Owl Carousel */
.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: none !important;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #707882;
  transition: all 400ms ease;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  background-color: rgba(0, 165, 241, 0.1);
  transition: all 400ms ease;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--primary_color);
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}


/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

/* Section Title Styles */
.why-choose-wrapper .sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}

.why-choose-wrapper .sec-title--center .sec-title__top {
  justify-content: center;
}

.why-choose-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-choose-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.why-choose-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .why-choose-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.why-choose-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: var(--primary_color_font);
}

@media (max-width: 767px) {
  .why-choose-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .why-choose-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Section Space */
.why-choose-wrapper .section-space-top-two {
  padding-top: 118px;
}

@media (max-width: 767px) {
  .why-choose-wrapper .section-space-top-two {
    padding-top: 96px;
  }
}

@media (max-width: 575px) {
  .why-choose-wrapper .section-space-top-two {
    padding-top: 76px;
  }
}

/* Why Choose Two Styles */
.why-choose-wrapper .why-choose-two {
  position: relative;
  background-color: #ffffff;
}

.why-choose-wrapper .why-choose-two .container {
  position: relative;
  z-index: 1;
}

.why-choose-wrapper .why-choose-two__inner {
  position: relative;
  padding: 0 40px 78px;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__inner {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .why-choose-wrapper .why-choose-two__inner {
    padding: 30px;
  }
}

@media (max-width: 430px) {
  .why-choose-wrapper .why-choose-two__inner {
    padding: 30px 20px 20px;
  }
}

.why-choose-wrapper .why-choose-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ECF0F5;
  border-radius: inherit;
}

/* Commented out mask properties as per rules */
 @media (min-width: 1200px) {
  .why-choose-wrapper .why-choose-two__bg {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 396.000000"><g transform="translate(0.000000,396.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M140 3946 c0 -8 -10 -18 -22 -21 -33 -10 -87 -65 -104 -104 -12 -28 -14 -302 -14 -1852 0 -1380 3 -1825 12 -1846 17 -41 68 -92 107 -109 51 -21 8691 -21 8742 0 39 17 94 71 104 104 3 12 13 22 21 22 12 0 14 248 14 1830 0 1610 -2 1830 -15 1830 -8 0 -17 11 -21 24 -7 28 -70 91 -101 101 -13 3 -23 13 -23 21 0 12 -143 14 -1030 14 -854 0 -1030 -2 -1030 -13 0 -8 -11 -19 -24 -25 -36 -16 -73 -72 -81 -122 -16 -106 -46 -155 -115 -188 -32 -16 -186 -17 -2095 -17 -1988 0 -2061 1 -2094 19 -68 36 -101 88 -101 158 0 53 -34 116 -77 143 -18 11 -32 26 -33 33 0 9 -209 12 -1010 12 -870 0 -1010 -2 -1010 -14z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 396.000000"><g transform="translate(0.000000,396.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M140 3946 c0 -8 -10 -18 -22 -21 -33 -10 -87 -65 -104 -104 -12 -28 -14 -302 -14 -1852 0 -1380 3 -1825 12 -1846 17 -41 68 -92 107 -109 51 -21 8691 -21 8742 0 39 17 94 71 104 104 3 12 13 22 21 22 12 0 14 248 14 1830 0 1610 -2 1830 -15 1830 -8 0 -17 11 -21 24 -7 28 -70 91 -101 101 -13 3 -23 13 -23 21 0 12 -143 14 -1030 14 -854 0 -1030 -2 -1030 -13 0 -8 -11 -19 -24 -25 -36 -16 -73 -72 -81 -122 -16 -106 -46 -155 -115 -188 -32 -16 -186 -17 -2095 -17 -1988 0 -2061 1 -2094 19 -68 36 -101 88 -101 158 0 53 -34 116 -77 143 -18 11 -32 26 -33 33 0 9 -209 12 -1010 12 -870 0 -1010 -2 -1010 -14z"/> </g> </svg>');
      -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
} 

.why-choose-wrapper .why-choose-two__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.3;
  border-radius: inherit;
}

.why-choose-wrapper .why-choose-two__tab-box {
  position: relative;
  display: block;
  z-index: 1;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 1;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn {
  position: relative;
  padding: 3px 15px;
  display: inline-block;
  background-color: transparent;
  font-size: 16px;
  color: var(--primary_color_font);
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.75;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid #D9E1EB;
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::before,
.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::after {
  content: "";
  background-color: var(--secondary_color);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn:hover {
  color: #ffffff;
  border-color: var(--secondary_color);
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn:hover::before,
.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn:hover::after {
  width: calc(50% + 6px);
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn.active-btn {
  color: #ffffff;
  background-color: var(--secondary_color);
}

.why-choose-wrapper .why-choose-two__tab-box .tabs-content {
  margin-top: 65px;
  position: relative;
  display: block;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__tab-box .tabs-content {
    margin-top: 40px;
  }
}

.why-choose-wrapper .why-choose-two__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  transition: all 600ms ease;
  z-index: 10;
}

.why-choose-wrapper .why-choose-two__tab-box .tabs-content .tab.active-tab {
  display: block;
}

@media (min-width: 1200px) {
  .why-choose-wrapper .why-choose-two__tab-col-1 {
    flex: 0 0 auto;
    width: 54.643%;
  }

  .why-choose-wrapper .why-choose-two__tab-col-2 {
    flex: 0 0 auto;
    width: 45.357%;
  }
}

.why-choose-wrapper .why-choose-two__image {
  display: grid;
  grid-template-columns: 376px 176px;
  grid-gap: 30px;
}

@media (max-width: 767px) {
  .why-choose-wrapper .why-choose-two__image {
    grid-template-columns: 1fr;
  }
}

.why-choose-wrapper .why-choose-two__image img + img {
  margin-top: 30px;
}

.why-choose-wrapper .why-choose-two__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .why-choose-wrapper .why-choose-two__image__two {
    display: none;
  }
}

.why-choose-wrapper .why-choose-two__content {
  padding: 32px 40px;
  background-color: #ffffff;
  border-radius: 30px;
}

@media (max-width: 575px) {
  .why-choose-wrapper .why-choose-two__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 430px) {
  .why-choose-wrapper .why-choose-two__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.why-choose-wrapper .why-choose-two__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.666;
  color: var(--primary_color_font);
}

.why-choose-wrapper .why-choose-two__text {
  margin-bottom: 35px;
  font-weight: 400;
  color: var(--secondary_color_font);
}

.why-choose-wrapper .why-choose-two__list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}

.why-choose-wrapper .why-choose-two__list li {
  width: calc(50% - 15px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary_color_font);
  text-transform: capitalize;
  line-height: 1.875;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__list li {
    width: 100%;
  }
}

.why-choose-wrapper .why-choose-two__list__icon {
  position: relative;
  top: 1px;
  font-size: 16px;
  color: var(--secondary_color);
}

.why-choose-wrapper .why-choose-two__shape {
  width: 18px;
  height: 18px;
  position: absolute;
  animation: 3s rotate linear infinite;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__shape {
    display: none;
  }
}

.why-choose-wrapper .why-choose-two__shape--1 {
  right: -70px;
  bottom: 290px;
}

@media (max-width: 1399px) {
  .why-choose-wrapper .why-choose-two__shape--1 {
    right: -40px;
  }
}

.why-choose-wrapper .why-choose-two__shape--2 {
  top: 243px;
  right: 115px;
}

.why-choose-wrapper .why-choose-two__shape::before,
.why-choose-wrapper .why-choose-two__shape::after {
  content: "";
  width: 18px;
  height: 6px;
  background-color: rgba(51, 193, 237, 0.5);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.why-choose-wrapper .why-choose-two__shape::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.why-choose-wrapper .why-choose-two__shape-3 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

@media (max-width: 1399px) {
  .why-choose-wrapper .why-choose-two__shape-3 {
    left: -50px;
  }
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__shape-3 {
    display: none;
  }
}

.why-choose-wrapper .why-choose-two__shape-4 {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 91px;
  bottom: 371px;
  animation: shapeMover 3s linear infinite;
}

@media (max-width: 1599px) {
  .why-choose-wrapper .why-choose-two__shape-4 {
    right: 60px;
  }
}

@media (max-width: 1399px) {
  .why-choose-wrapper .why-choose-two__shape-4 {
    display: none;
  }
}

/* Utility Classes */
.why-choose-wrapper .gutter-y-40 {
  margin-top: -40px;
}

.why-choose-wrapper .gutter-y-40 > * {
  margin-top: 40px;
}

.why-choose-wrapper .list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

