/* transform */
:root {
  /**
  @font family declaration
  */
  --mt-ff-body: Open Sans;
  --mt-ff-heading: Hanken Grotesk;
  --mt-ff-jost: Jost;
  --mt-ff-rajdhani: Rajdhani;
  --mt-ff-poppins: Poppins;
  --mt-ff-montserrat: Montserrat;
  --mt-ff-p: Open Sans;
  --mt-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --mt-common-white: #FFFFFF;
  --mt-common-white-2: #F8F8F8;
  --mt-common-black: #000000;
  --mt-common-black-1: #0A0B0C;
  --mt-common-black-2: #070707;
  --mt-common-black-3: #000B04;
  --mt-common-black-4: #001005;
  --mt-common-black-5: #042552;
  --mt-grey-1: #F5F5F5;
  --mt-grey-2: #DCDCDC;
  --mt-grey-3: #F8F8F8;
  --mt-grey-4: #f7dfc4;
  --mt-text-body: #6B7280;
  --mt-text-p: #6B7280;
  --mt-text-2: #374151;
  --mt-theme-1: #CCFF02;
  --mt-theme-2: #E0F7F4;
  --mt-theme-3: #FF2E00;
  --mt-theme-4: #2555FF;
  --mt-theme-5: #C4D6B0;
  --mt-theme-6: #16a34a;
  --mt-theme-7: #FD5B38;
  --mt-border-1: #212121;
  --mt-border-2: #C8C8C8;
  --mt-border-3: #8b8b8b;
  --mt-gradient-1: linear-gradient(266deg, #CCFF02 7.19%, #68FFB3 98.22%);
  --mt-gradient-2: linear-gradient(266deg, #68FFB3 7.19%, #CCFF02 98.22%);
  --mt-gradient-3: linear-gradient(90deg, #FD5B38 0%, #3F2BB8 100%);
  --mt-gradient-4: linear-gradient(90deg, #3F2BB8 0%, #FD5B38 100%);
  --mt-gradient-5: linear-gradient(82deg, #D4FBF9 0%, #D5ECD8 48.74%, #F0C4F8 100%);
  --mt-gradient-6: linear-gradient(91deg, #EE7824 1.21%, #F6C107 101.83%);
  --mt-badge-1: #f9e8e5;
}

/*----------------------------------------*/
/*  Utility Classes
/*----------------------------------------*/
.d-flex {
  display: flex;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.d-flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

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

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

.p-50 {
  padding: 50px;
}

.p-30 {
  padding: 30px;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.fw-700 {
  font-weight: 700;
}

@media (max-width: 767px) {
  .mt-service-area {
    padding-top: 50px;
  }
}
.mt-service-item {
  border: 1px solid var(--mt-theme-1);
  text-align: center;
  padding: 30px;
  padding-top: 50px;
  border-radius: 2px;
  transition: 0.4s;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-service-item {
    padding: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-service-item {
    padding: 13px;
  }
}
.mt-service-item h3 {
  color: var(--mt-common-white);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.mt-service-item-icon {
  background-color: var(--mt-common-white);
  display: inline-block;
  padding: 15px;
  border-radius: 50px;
  margin: 15px 0;
}
.mt-service-item-icon i {
  font-size: 30px;
  color: var(--mt-common-black-2);
  font-weight: 300;
}
.mt-service-item::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0.7);
  content: "";
  position: absolute;
  background: var(--mt-gradient-1);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.mt-service-item.active::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.mt-service-item.active .mt-service-item-icon {
  background-color: var(--mt-common-black);
  z-index: 2;
  position: relative;
}
.mt-service-item.active .mt-service-item-icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.mt-service-item.active .mt-service-arrow {
  z-index: 2;
  position: relative;
}
.mt-service-item.active .mt-service-arrow a {
  background: var(--mt-common-black);
}
.mt-service-item.active .mt-service-arrow a span {
  display: inline-block;
  opacity: 1;
  visibility: visible;
  color: var(--mt-common-white);
}
.mt-service-item.active .mt-service-arrow a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.mt-service-item.active h3 {
  color: var(--mt-common-black);
  z-index: 2;
  position: relative;
}
.mt-service-item.active p {
  color: var(--mt-common-black);
  z-index: 2;
  position: relative;
}
.mt-service-2-item {
  padding-bottom: 0;
  border-radius: 10px;
  background: var(--mt-common-black-1);
  transition: 0.4s;
}
.mt-service-2-item:hover .mt-service-2-icon span {
  background: var(--mt-theme-2);
}
.mt-service-2-item:hover .mt-service-2-number {
  background: radial-gradient(42.24% 2817.5% at 52.45% 54.17%, rgb(255, 234, 0) 0%, rgb(15, 16, 18) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mt-service-2-item:hover .mt-service-2-icon img {
  transform: rotateY(180deg);
}
.mt-service-2-img img {
  border-radius: 0px 112px 0px 10px;
}
.mt-service-2-icon {
  margin-left: 30px;
  position: relative;
}
.mt-service-2-icon img {
  margin-top: 25px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}
.mt-service-2-icon span {
  width: 100%;
  height: 1px;
  background: var(--mt-text-2);
  display: inline-block;
  margin-left: 20px;
  margin-top: 30px;
}
.mt-service-2-text h4 {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
}
.mt-service-2-text .mtserbtn {
  color: var(--mt-common-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
}
.mt-service-2-text .mtserbtn i {
  margin-left: 5px;
}
.mt-service-2-number {
  text-align: center;
  background: radial-gradient(42.24% 2817.5% at 52.45% 54.17%, rgb(117, 122, 134) 0%, rgb(15, 16, 18) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
  transform: rotate(90deg);
  position: absolute;
  right: -75px;
  bottom: 90px;
  transition: 0.4s;
}
.mt-service-2-img img {
  width: 85%;
}
.mt-service-3-item {
  background-color: var(--mt-common-black);
  padding: 30px;
  padding-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-service-3-item {
    justify-content: space-between;
  }
}
.mt-service-3-item:hover .mt-service-3-title a {
  background-size: 0% 2px, 100% 2px;
}
.mt-service-3-img img {
  border-radius: 500px 0px 0px 500px;
}
.mt-service-3-content {
  padding-right: 30px;
}
.mt-service-3-title {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}
.mt-service-3-title a {
  background-repeat: no-repeat;
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.4s linear;
  background-image: linear-gradient(var(--mt-common-white), var(--mt-text-2)), linear-gradient(var(--mt-text-2), var(--mt-common-white));
}
.mt-service-3-skilltitle {
  color: var(--mt-text-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}
.mt-service-3-value {
  position: absolute;
  top: -38px;
  right: -8px;
  font-size: 14px;
  font-weight: 600;
}
.mt-service-3-value span {
  color: var(--mt-common-white);
}
.mt-service-4-content p {
  color: var(--mt-text-2);
}
.mt-service-4-item {
  border: 1px solid var(--mt-border-2);
  border-radius: 15px;
  padding: 33px;
}
.mt-service-4-item:hover .mt-service-4-btn a {
  background-color: var(--mt-theme-2);
}
.mt-service-4-item:hover .mt-service-4-btn a i {
  color: var(--mt-common-white);
}
.mt-service-4-item.service-5-item {
  transition: 0.4s;
}
.mt-service-4-item.service-5-item:hover {
  background-color: var(--mt-theme-5);
}
.mt-service-4-item.service-5-item:hover .service-5-btn a {
  background: inherit;
}
.mt-service-4-item.service-5-item:hover .service-5-btn span {
  color: var(--mt-common-black);
  transition: 0.4s;
  margin-left: 0;
  margin-right: 20px;
}
.mt-service-4-item.service-5-item:hover .service-5-btn img {
  margin-left: 0;
}
.mt-service-4-icon.service-5-icon span {
  background: var(--mt-common-white);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  display: inline-block;
  margin-right: -40px;
  margin-bottom: -10px;
}
.mt-service-4-content h3 {
  font-size: 24px;
  color: var(--mt-common-black);
}
.mt-service-4-btn a {
  height: 50px;
  padding: 10px 24px;
  background-color: var(--mt-common-white);
  border-radius: 50px;
  transition: 0.3s;
}
.mt-service-4-btn a i {
  color: var(--mt-common-black);
  font-size: 20px;
}
.mt-service-4-btn.service-5-btn a {
  height: inherit;
  background: inherit;
  padding: inherit;
  border-radius: inherit;
}
.mt-service-4-btn.service-5-btn a span {
  color: var(--mt-common-black);
  transition: 0.4s;
  margin-left: -120px;
  margin-right: 20px;
  font-weight: 700;
}
.mt-service-4-btn.service-5-btn a img {
  margin-left: 10px;
  padding: 14px;
  background: var(--mt-common-black);
}
.mt-service-5 .mt-service-item {
  border: 1px solid var(--mt-border-2);
  border-radius: 15px;
  padding: 33px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-align: start;
}
.mt-service-5 .mt-service-item:hover {
  background-color: var(--mt-common-white);
  border: 1px solid var(--mt-common-white);
}
.mt-service-5 .mt-service-item:hover .mt-service-btn a {
  background-color: var(--mt-theme-4);
  color: var(--mt-common-white);
}
.mt-service-5 .mt-service-item:hover .mt-service-btn a span {
  margin-left: 0px;
  color: var(--mt-common-white);
  margin-right: 10px;
}
.mt-service-5 .mt-service-title {
  font-size: 24px;
  color: var(--mt-common-black);
  text-align: start;
}
.mt-service-5 .mt-service-content p {
  color: var(--mt-text-2);
}
.mt-service-5 .mt-service-btn a {
  height: 50px;
  line-height: 50px;
  padding: 0px 24px;
  background-color: var(--mt-common-white);
  border-radius: 50px;
  transition: 0.3s;
  display: inline-block;
  color: var(--mt-common-black);
  font-size: 17px;
}
.mt-service-5 .mt-service-btn a span {
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-left: -110px;
  margin-right: 20px;
}
.mt-service-6 .mt-service-title {
  font-size: 24px;
  color: var(--mt-common-black);
}
.mt-service-6 .mt-service-content p {
  color: var(--mt-text-2);
}
@media (max-width: 767px) {
  .mt-service-payment .mt-service-mobile {
    margin-top: 0;
  }
}
.mt-service-payment .mt-service-item {
  border: 1px solid var(--mt-border-2);
  border-radius: 15px;
  padding: 33px;
  text-align: start;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mt-service-payment .mt-service-item:hover {
  background-color: var(--mt-common-white);
  box-shadow: 0px 15px 45px -2px rgba(4, 37, 82, 0.1);
}
.mt-service-payment .mt-service-title {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--mt-ff-rajdhani);
  color: var(--mt-common-black-5);
  text-align: start;
}
.mt-service-payment .mt-service-content p {
  color: var(--mt-text-2);
}
.mt-service-sport .mt-service-main-wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 290px 24px 10px 24px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  height: 452px;
  overflow: hidden;
}
.mt-service-sport .mt-service-main-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(var(--mt-common-black-rgb), 0) 32.12%, var(--mt-common-black) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.mt-service-sport .mt-service-main-wrapper:hover {
  padding-top: 220px;
}
.mt-service-sport .mt-service-main-wrapper:hover .mt-service-icon {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.mt-service-sport .mt-service-main-wrapper:hover .mt-service-icon.mthover {
  opacity: 1;
  visibility: visible;
  display: block;
}
.mt-service-sport .mt-service-main-wrapper:hover .mt-service-item {
  margin-bottom: 0;
}
.mt-service-sport .mt-service-main-wrapper:hover .mt-service-title {
  margin-bottom: 15px;
}
.mt-service-sport .mt-service-item {
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: -95px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 2;
  position: relative;
}
.mt-service-sport .mt-service-item:hover {
  background-color: transparent;
}
.mt-service-sport .mt-service-icon {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.mt-service-sport .mt-service-icon.mthover {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.mt-service-sport .mt-service-icon.mthover span {
  background-color: var(--mt-theme-7);
}
.mt-service-sport .mt-service-icon span {
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  background-color: var(--mt-common-white);
  border-radius: 50px;
  text-align: center;
}
.mt-service-sport .mt-service-title {
  color: var(--mt-common-white);
  margin-bottom: 40px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-service-sport .mt-service-title {
    font-size: 20px;
  }
}
.mt-service-sport .mt-service-content p {
  color: var(--mt-common-white);
}
.mt-service-sport .mt-service-dots {
  position: absolute;
  left: 50% !important;
  bottom: -1% !important;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-service-sport .mt-service-dots {
    left: 40% !important;
  }
}
@media (max-width: 767px) {
  .mt-service-sport .mt-service-dots {
    left: 25% !important;
  }
}
.mt-service-sport .mt-service-dots span {
  width: 15px;
  height: 15px;
  background-color: rgba(253, 91, 56, 0.1);
  opacity: 1;
}
.mt-service-sport .mt-service-dots span.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 100px;
  background-color: var(--mt-theme-7);
}
.mt-service-elearing .mt-service-item {
  height: 325px;
  padding: 30px 30px 0px 30px;
  background: var(--mt-common-white);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
  border: 0;
  border-radius: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin: 20px 0;
}
.mt-service-elearing .mt-service-item::before {
  display: none;
}
.mt-service-elearing .mt-service-item:hover {
  background-color: var(--mt-theme-4);
}
.mt-service-elearing .mt-service-item:hover .mt-service-btn {
  opacity: 1;
  visibility: visible;
  display: block;
  padding-bottom: 30px;
}
.mt-service-elearing .mt-service-item:hover .mt-service-btn a {
  background-color: var(--mt-common-white);
  color: var(--mt-common-black);
}
.mt-service-elearing .mt-service-item:hover .mt-service-icon {
  padding-bottom: 20px;
}
.mt-service-elearing .mt-service-item:hover .mt-service-title {
  color: var(--mt-common-white);
}
.mt-service-elearing .mt-service-item:hover .mt-service-content p {
  color: var(--mt-common-white);
}
.mt-service-elearing .mt-service-icon {
  padding-bottom: 40px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mt-service-elearing .mt-service-icon span {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--mt-grey-3);
  display: inline-block;
  border-radius: 50px;
}
.mt-service-elearing .mt-service-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--mt-common-black);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-service-elearing .mt-service-content p {
  color: var(--mt-common-black);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mt-service-elearing .mt-service-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: none;
}
.mt-service-elearing .mt-service-btn a {
  height: 50px;
  line-height: 50px;
  padding: 0px 24px;
  background-color: var(--mt-common-white);
  border-radius: 50px;
  transition: 0.3s;
  display: inline-block;
  color: var(--mt-common-black);
  font-size: 17px;
  background-color: var(--mt-common-white);
}
.mt-service-elearing .mt-service-shape {
  position: absolute;
  right: 23%;
  top: 14%;
  animation: mttranslateX2 4s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-service-elearing .mt-service-shape {
    right: 10%;
    top: 10%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-service-elearing .mt-service-shape {
    right: 1%;
  }
}
@media (max-width: 767px) {
  .mt-service-elearing .mt-service-shape {
    display: none;
  }
}
.mt-service-elearing .mt-service-shape-2 {
  position: absolute;
  left: 20%;
  top: 15%;
  animation: mttranslateX2 3s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-service-elearing .mt-service-shape-2 {
    left: 10%;
    top: 10%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-service-elearing .mt-service-shape-2 {
    left: 1%;
  }
}
@media (max-width: 767px) {
  .mt-service-elearing .mt-service-shape-2 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-service-mobile {
    padding-top: 80px !important;
  }
}
@media (max-width: 767px) {
  .mt-service-mobile {
    padding-top: 60px !important;
  }
  .mt-service-mobile .mt-service-2 {
    text-align: left !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

.mt-service-trans-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.mt-service-trans-title {
  -webkit-text-stroke: 1px rgb(180, 180, 180);
  -webkit-text-fill-color: transparent;
  font-size: clamp(64px, 24vw, 340px);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  white-space: nowrap;
}

.mt-service-3-skill .progress {
  position: relative;
  height: 5px;
  background-color: rgba(102, 102, 102, 0.5);
  border-radius: 0;
  overflow: visible;
  margin-top: 15px;
  border-radius: 50px;
}
.mt-service-3-skill .progress .progress-bar {
  background-color: var(--mt-common-white);
  height: 5px;
  margin: 0;
  border-radius: 50px;
  overflow: visible;
  position: relative;
  margin-top: 0;
}

.mt-service-arrow {
  margin-top: 35px;
  margin-bottom: 30px;
}
.mt-service-arrow a {
  font-size: 14px;
  border-radius: 50px;
  background: var(--mt-gradient-1);
  padding: 12px 24px;
  transition: 0.5s;
  padding-bottom: 14px;
}
.mt-service-arrow a span {
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: 0.5s;
  color: var(--mt-common-black);
}
.mt-service-arrow a i {
  font-size: 20px;
  line-height: 1;
  color: var(--mt-text-2);
  font-weight: 500;
  transform: translateY(2px);
}

.mt-service-active .mtservice-pagination {
  text-align: center;
  position: absolute;
  z-index: 2;
}
.mt-service-active .mtservice-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: var(--mt-common-black-1);
  border: 1px solid var(--mt-common-black-1);
  opacity: 1;
}
.mt-service-active .mtservice-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  border-radius: 100px;
  background-color: var(--mt-theme-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-service-all-btn {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtservice {
    margin-top: 50px;
    margin-right: 0px;
  }
}
.mtservice__bg {
  background: var(--mt-common-black);
  position: relative;
  z-index: 2;
}
.mtservice__item {
  border: 1px solid var(--mt-text-2);
  padding: 50px 30px;
}
.mtservice__meta span {
  font-size: 16px;
  font-family: var(--mt-ff-heading);
  margin-right: 15px;
}
.mtservice__meta span i {
  margin-right: 5px;
}
.mtservice__title {
  font-size: 24px;
  color: var(--mt-common-white);
}
.mtservice__content p {
  margin-bottom: 0;
}
.mtservice__box {
  background: var(--mt-common-black-2);
  padding: 30px 16px;
}
.mtservice-thumb-small {
  position: relative;
  z-index: 2;
}
.mtservice-thumb-small img {
  border: 2px solid var(--mt-common-white);
}
.mtservice-thumb-small-2 {
  position: absolute;
  right: 0px;
  bottom: -8px;
  z-index: 1;
}
.mtservice__shape {
  position: absolute;
  left: 0;
  top: 23%;
  z-index: -1;
  animation: mttranslateY2 3s infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtservice__shape {
    bottom: -9%;
    top: inherit;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtservice__shape {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtservice__shape {
    bottom: -9%;
    top: inherit;
  }
}

.mtservice-transfer-title {
  -webkit-text-stroke: 1px rgb(234, 234, 239);
  -webkit-text-fill-color: transparent;
  font-size: 516px;
  opacity: 0.1;
  margin-bottom: -160px;
  z-index: 1;
  position: relative;
  line-height: 1;
}
@media only screen and (min-width: 1700px) and (max-width: 1850px) {
  .mtservice-transfer-title {
    font-size: 465px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .mtservice-transfer-title {
    font-size: 440px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mtservice-transfer-title {
    font-size: 380px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtservice-transfer-title {
    font-size: 327px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtservice-transfer-title {
    font-size: 270px;
    margin-bottom: -85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtservice-transfer-title {
    font-size: 200px;
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .mtservice-transfer-title {
    font-size: 100px;
    margin-bottom: 0;
  }
}

.mtservice__thumb-large {
  margin-top: -200px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtservice__thumb-large {
    margin-top: -80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtservice__thumb-large {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtservice__thumb-large {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .mtservice__thumb-large {
    margin-top: 50px;
  }
}
.mtservice__thumb-large-6 .mt-service-item-6-icon span {
  color: var(--mt-common-black);
  display: inline-block;
}
.mtservice__thumb-large-6 .mt-service-item-6-icon span svg {
  display: block;
}
.mtservice__thumb-large-6 .mt-service-item-6-icon span svg path, .mtservice__thumb-large-6 .mt-service-item-6-icon span svg circle, .mtservice__thumb-large-6 .mt-service-item-6-icon span svg rect {
  stroke: var(--mt-common-black);
}
.mtservice__thumb-large-6 .mt-service-item-6-icon span svg path[fill=none], .mtservice__thumb-large-6 .mt-service-item-6-icon span svg circle[fill=none], .mtservice__thumb-large-6 .mt-service-item-6-icon span svg rect[fill=none] {
  fill: none;
}
.mtservice__thumb-large-6 .mt-service-item-6-icon span svg path[fill=currentColor], .mtservice__thumb-large-6 .mt-service-item-6-icon span svg circle[fill=currentColor], .mtservice__thumb-large-6 .mt-service-item-6-icon span svg rect[fill=currentColor] {
  fill: var(--mt-common-black);
}
.mtservice__thumb-large-6 .mt-service-item-6-title {
  font-size: 24px;
  color: var(--mt-common-black);
}
.mtservice__thumb-large-6 .mt-service-item-6-title a {
  color: var(--mt-common-black);
}
.mtservice__thumb-large-6 .mt-service-item-6 p {
  color: var(--mt-text-2);
}
.mtservice__thumb-large-6 p {
  color: var(--mt-text-2);
}

.mt-services-widget {
  border: 1px solid var(--mt-border-1);
  padding: 32px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-services-widget {
    padding: 30px;
  }
}
.mt-services-widget ul li {
  margin-bottom: 15px;
  list-style: none;
}
.mt-services-widget ul li a {
  color: var(--mt-border-3);
  display: block;
  padding: 20px 25px;
  line-height: 1;
  position: relative;
  background-color: var(--mt-border-1);
  border: 1px solid var(--mt-text-2);
  border-radius: 5px;
}
.mt-services-widget ul li a:hover {
  background-color: var(--mt-theme-2);
  color: var(--mt-common-black);
  border-color: var(--mt-theme-2);
}
.mt-services-widget ul li a:after {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
}
.mt-services-widget ul li:last-child {
  margin-bottom: 0;
}
.mt-services-widget-title span {
  height: 10px;
  width: 10px;
  border-radius: 30px;
  background: var(--mt-theme-1);
  display: inline-block;
  margin-right: 5px;
  transform: translateY(-3px);
}

.mt-services-widget-banner-text {
  position: absolute;
  bottom: 50px;
  left: 40px;
  right: 40px;
  text-align: center;
}

.mt-services-details-list-item span {
  color: var(--mt-common-white);
}
.mt-services-details-list-title {
  color: var(--mt-common-white);
}
@media (max-width: 767px) {
  .mt-services-details-list-title {
    font-size: 20px;
  }
}

.mt-service-details-wrap {
  background: var(--mt-common-black);
  padding: 20px 15px;
}
.mt-service-details-list ul li {
  list-style: none;
  padding: 10px 0px;
  width: 48%;
  float: left;
}
.mt-service-details-list ul li span {
  margin-right: 10px;
}
.mt-service-details-social a {
  border: 1px solid var(--mt-text-2);
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  color: var(--mt-common-white);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  display: inline-block;
  transition: 0.3s;
  margin-right: 5px;
}
.mt-service-details-social a:hover {
  background: var(--mt-theme-3);
  border-color: var(--mt-theme-3);
}

.mtshowcase__number span {
  color: var(--mt-common-white);
}
.mtshowcase__title {
  color: var(--mt-common-white);
}

.mt-service-args-grid {
  display: grid;
  grid-template-columns: 1fr 33.334% 1fr;
  grid-template-rows: repeat(var(--args-rows, 3), auto);
  margin-top: 80px;
}
.mt-service-args-grid .mt-sai-center {
  grid-column: 2;
  grid-row: 1/-1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px 15px 0;
}
.mt-service-args-grid .mt-sai-center img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.mt-service-args-grid .mt-sai-center .mt-sai-chat-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 16px;
}
.mt-service-args-grid .mt-sai-center .mt-sai-chat-frame {
  flex: 1;
  width: 100%;
  min-height: 700px;
  background: var(--mt-common-white);
  border-radius: 2rem;
  box-shadow: 0 0 0 8px var(--mt-common-black, #111), 0 30px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.mt-service-args-grid .mt-sai-center .mt-sai-chat-frame iframe {
  flex: 1;
  width: 100%;
  border: 0;
  border-radius: 0 0 2rem 2rem;
  display: block;
}
.mt-service-args-grid .mt-sai-center .mt-sai-chat-notch {
  background: var(--mt-common-black, #111);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mt-service-args-grid .mt-sai-center .mt-sai-chat-notch::after {
  content: "";
  width: 72px;
  height: 10px;
  background: #2a2a2a;
  border-radius: 20px;
}
.mt-service-args-grid .mt-sai-center .mt-sai-chat-label {
  font-size: 13px;
  color: var(--mt-text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.7;
}
.mt-service-args-grid > .mt-sai-left {
  grid-column: 1;
  text-align: right;
  padding-right: 40px;
  padding-bottom: 30px;
}
.mt-service-args-grid > .mt-sai-right {
  grid-column: 3;
  padding-left: 40px;
  padding-bottom: 30px;
}
.mt-service-args-grid .mt-sai-icon {
  display: flex;
  margin-bottom: 12px;
}
.mt-service-args-grid .mt-sai-icon span {
  display: inline-flex;
  align-items: center;
}
.mt-service-args-grid .mt-sai-left .mt-sai-icon {
  justify-content: flex-end;
}
.mt-service-args-grid .mt-sai-right .mt-sai-icon {
  justify-content: flex-start;
}
.mt-service-args-grid .mt-sai-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--mt-common-black);
  line-height: 1.35;
  margin: 0 0 12px;
}
.mt-service-args-grid .mt-sai-para {
  color: var(--mt-text-2);
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-service-args-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
  }
  .mt-service-args-grid .mt-sai-center {
    flex: 0 0 100%;
    order: -1;
    padding: 12px 0 40px;
  }
  .mt-service-args-grid .mt-sai-center .mt-sai-chat-frame {
    max-width: 420px;
    margin: 0 auto;
    min-height: 600px;
  }
  .mt-service-args-grid > .mt-sai-left,
  .mt-service-args-grid > .mt-sai-right {
    flex: 0 0 50%;
    text-align: left;
    padding: 0 20px 30px;
  }
  .mt-service-args-grid .mt-sai-icon {
    justify-content: flex-start !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-service-args-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
  }
  .mt-service-args-grid .mt-sai-center {
    flex: 0 0 100%;
    order: -1;
    padding: 12px 0 40px;
  }
  .mt-service-args-grid .mt-sai-center .mt-sai-chat-frame {
    max-width: 380px;
    margin: 0 auto;
    min-height: 580px;
  }
  .mt-service-args-grid > .mt-sai-left,
  .mt-service-args-grid > .mt-sai-right {
    flex: 0 0 50%;
    text-align: left;
    padding: 0 20px 30px;
  }
  .mt-service-args-grid .mt-sai-icon {
    justify-content: flex-start !important;
  }
}
@media (max-width: 767px) {
  .mt-service-args-grid {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  .mt-service-args-grid .mt-sai-center {
    order: -1;
    padding: 12px 0 40px;
  }
  .mt-service-args-grid .mt-sai-center .mt-sai-chat-frame {
    max-width: 340px;
    margin: 0 auto;
    min-height: 560px;
  }
  .mt-service-args-grid > .mt-sai-left,
  .mt-service-args-grid > .mt-sai-right {
    text-align: left;
    padding: 0 0 20px;
  }
  .mt-service-args-grid .mt-sai-icon {
    justify-content: flex-start !important;
  }
}

.mt-sai-stack {
  display: block;
  width: 100%;
}
.mt-sai-stack .mt-sai-chat-frame {
  background: var(--mt-common-white);
  border-radius: 2rem;
  box-shadow: 0 0 0 8px #111, 0 24px 80px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mt-sai-stack .mt-sai-chat-frame iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: 0;
}
.mt-sai-stack .mt-sai-chat-notch {
  background: #111;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-sai-stack .mt-sai-chat-notch::after {
  content: "";
  width: 72px;
  height: 10px;
  background: #2a2a2a;
  border-radius: 20px;
}
.mt-sai-stack .mt-sai-chat-label {
  font-size: 13px;
  color: var(--mt-text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0 0;
  opacity: 0.6;
}
.mt-sai-stack-demo {
  display: block;
  padding: 12px 10px 0;
  margin-bottom: 70px;
}
.mt-sai-stack-demo .mt-sai-chat-frame {
  width: 100%;
}
.mt-sai-stack-args {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.mt-sai-stack .mt-sai-col--right {
  padding-right: 40px;
  padding-bottom: 30px;
}
.mt-sai-stack .mt-sai-icon--right {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.mt-sai-stack .mt-sai-icon--right span {
  display: inline-flex;
  align-items: center;
  color: var(--mt-common-black);
}
.mt-sai-stack .mt-sai-icon--right span svg {
  width: 36px;
  height: 36px;
}
.mt-sai-stack .mt-sai-title--right {
  font-size: 20px;
  font-weight: 600;
  color: var(--mt-common-black);
  line-height: 1.35;
  margin: 0 0 12px;
  text-align: right;
}
.mt-sai-stack .mt-sai-para--right {
  color: var(--mt-text-2);
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  text-align: right;
}
.mt-sai-stack-item .mt-sai-icon {
  display: flex;
  margin-bottom: 14px;
}
.mt-sai-stack-item .mt-sai-icon span {
  display: inline-flex;
  align-items: center;
  color: var(--mt-common-black);
}
.mt-sai-stack-item .mt-sai-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--mt-common-black);
  line-height: 1.35;
  margin: 0 0 10px;
}
.mt-sai-stack-item .mt-sai-para {
  color: var(--mt-text-2);
  font-size: 15px;
  line-height: 26px;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-sai-stack-demo .mt-sai-chat-frame iframe {
    height: 580px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-sai-stack-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 10px 0;
  }
  .mt-sai-stack-demo .mt-sai-chat-frame {
    width: 400px;
  }
  .mt-sai-stack-demo .mt-sai-chat-frame iframe {
    height: 600px;
  }
  .mt-sai-stack-args {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mt-sai-stack-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 10px 0;
  }
  .mt-sai-stack-demo .mt-sai-chat-frame {
    width: 360px;
  }
  .mt-sai-stack-demo .mt-sai-chat-frame iframe {
    height: 580px;
  }
  .mt-sai-stack-args {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
@media (max-width: 767px) {
  .mt-sai-stack-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 10px 0;
  }
  .mt-sai-stack-demo .mt-sai-chat-frame {
    width: 320px;
  }
  .mt-sai-stack-demo .mt-sai-chat-frame iframe {
    height: 560px;
  }
  .mt-sai-stack-args {
    grid-template-columns: 1fr;
  }
}

.mt-testimonial-2-wrapper {
  border-radius: 100px 0px 0px 0px;
  background: var(--mt-common-black);
  padding: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-testimonial-2-wrapper {
    padding: 70px;
  }
}
@media (max-width: 767px) {
  .mt-testimonial-2-wrapper {
    padding: 30px;
    padding-top: 90px;
    border-radius: 0px;
  }
}
.mt-testimonial-2-star i {
  color: var(--mt-theme-2);
}
.mt-testimonial-2-item p {
  color: var(--mt-common-white);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 34px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-2-item p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .mt-testimonial-2-item p {
    font-size: 18px;
  }
}
.mt-testimonial-2-author i {
  width: 50px;
  height: 50px;
  background: var(--mt-common-white);
  font-size: 30px;
  color: var(--mt-text-2);
  border-radius: 50px;
  padding: 10px;
  line-height: 1;
}
.mt-testimonial-2-author h6 {
  color: var(--mt-common-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.mt-testimonial-2-author span {
  color: var(--mt-text-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mt-testimonial-2-video a {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  border: 1px solid var(--mt-common-black);
  background: var(--mt-theme-2);
  display: inline-block;
  line-height: 1;
}
.mt-testimonial-2-video a i {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  padding: 30px;
  color: var(--mt-common-black);
}
.mt-testimonial-3-thumb {
  position: absolute;
  top: -80px;
  right: 0;
  left: auto;
  z-index: 2;
  height: 100%;
  width: 36%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-testimonial-3-thumb {
    position: static;
    height: 600px;
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .mt-testimonial-3-thumb {
    position: static;
    height: 400px;
    width: 100%;
    margin-bottom: 50px;
  }
}
.mt-testimonial-3-rottitle {
  position: absolute;
  left: 20%;
  bottom: 36%;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-testimonial-3-rottitle {
    left: inherit;
    right: 0;
    top: 59%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-3-rottitle {
    display: none;
  }
}
.mt-testimonial-3-rottitle h3 {
  color: var(--mt-common-white);
  font-size: 32px;
  font-weight: 700;
  transform: rotate(90deg);
  text-align: center;
}
@media (max-width: 767px) {
  .mt-testimonial-3-rottitle h3 {
    font-size: 22px;
  }
}
.mt-testimonial-3-rottitle h3 span {
  margin-right: 10px;
}
.mt-testimonial-3-countrating span {
  margin: 0 5px;
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}
@media (max-width: 767px) {
  .mt-testimonial-3-countrating span {
    font-size: 18px;
  }
}
.mt-testimonial-3-countrating span i {
  color: var(--mt-theme-3);
}
.mt-testimonial-3-countrating img {
  margin-right: 10px;
}
.mt-testimonial-3-countrating p {
  margin-bottom: 0;
  padding-left: 10px;
}
.mt-testimonial-3-slide p {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}
.mt-testimonial-3-author {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}
.mt-testimonial-3-text h4 {
  color: var(--mt-common-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
}
.mt-testimonial-4-item {
  border: 1px solid var(--mt-border-2);
  border-radius: 20px;
  padding: 30px;
}
.mt-testimonial-4-item p {
  color: var(--mt-text-2);
}
.mt-testimonial-4-quete {
  position: absolute;
  top: -25px;
  right: 30px;
}
.mt-testimonial-4-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--mt-common-black);
}
.mt-testimonial-4-content span {
  color: var(--mt-text-2);
}
.mt-testimonial-4-text span {
  color: var(--mt-border-1);
  margin-bottom: 5px;
  display: block;
}
.mt-testimonial-4-text h5 {
  font-size: 24px;
  color: var(--mt-common-black);
}
.mt-testimonial-4-star span {
  width: 30px;
  height: 30px;
  background-color: var(--mt-theme-4);
  border-radius: 50px;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--mt-common-white);
}
.mt-testimonial-5-quote span {
  width: 86px;
  height: 86px;
  background-color: var(--mt-theme-5);
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  line-height: 86px;
}
.mt-testimonial-5-slide p {
  color: var(--mt-text-2);
  font-size: 24px;
  line-height: 34px;
}
.mt-testimonial-5-author h4 {
  color: var(--mt-common-black);
  font-size: 18px;
  margin-bottom: 0;
}
.mt-testimonial-5-author span {
  color: var(--mt-text-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-testimonial-5-thumb {
    text-align: center;
  }
}
.mt-testimonial-5-arrow {
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: 2;
}
.mt-testimonial-5-arrow .mt-testimonial-5-button.active {
  background: var(--mt-theme-5);
  margin-left: 5px;
}
.mt-testimonial-5-arrow .mt-testimonial-5-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--mt-theme-5);
  line-height: 30px;
}
@media (max-width: 767px) {
  .mt-testimonial-6-area .mt-section-content {
    margin-right: 0px;
  }
}
.mt-testimonial-6-item {
  padding: 30px;
  background-color: var(--mt-grey-3);
}
.mt-testimonial-6-item p {
  color: var(--mt-text-2);
}
.mt-testimonial-6-quete {
  position: absolute;
  top: 5px;
  right: 30px;
}
.mt-testimonial-6-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.mt-testimonial-6-content span {
  color: var(--mt-text-2);
}
.mt-testimonial-6-text span {
  color: var(--mt-border-1);
  margin-bottom: 5px;
  display: block;
}
.mt-testimonial-6-text h5 {
  font-size: 24px;
}
.mt-testimonial-6-star span {
  width: 30px;
  height: 30px;
  background-color: var(--mt-theme-4);
  border-radius: 50px;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--mt-common-white);
  font-size: 14px;
}
@media (max-width: 767px) {
  .mt-testimonial-6-star span {
    font-size: 13px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}
.mt-testimonial-6-shape {
  position: absolute;
  top: -20%;
  left: 0;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-11 {
    padding-top: 0;
  }
}
.mt-testimonial-11 .mt-testimonial-items {
  background-color: var(--mt-common-white);
  padding: 32px;
}
.mt-testimonial-11 .mt-testimonial-star span {
  color: var(--mt-theme-7);
}
.mt-testimonial-11 .mt-testimonial-author h5 {
  font-size: 16px;
  color: var(--mt-common-black);
}
.mt-testimonial-11 .mt-testimonial-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-11 .mt-testimonial-thumb {
    position: static;
    width: inherit;
    margin-bottom: 30px;
  }
}
.mt-testimonial-11 .mt-testimonial-dots {
  position: absolute;
  left: 49% !important;
  bottom: -1% !important;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-testimonial-11 .mt-testimonial-dots {
    left: 40% !important;
  }
}
@media (max-width: 767px) {
  .mt-testimonial-11 .mt-testimonial-dots {
    left: 30% !important;
  }
}
.mt-testimonial-11 .mt-testimonial-dots span {
  width: 15px;
  height: 15px;
  background-color: rgba(253, 91, 56, 0.1);
  opacity: 1;
}
.mt-testimonial-11 .mt-testimonial-dots span.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 100px;
  background-color: var(--mt-theme-7);
}
.mt-testimonial-9 {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-9 .mt-testimonial-content-wrap {
    margin-bottom: 90px;
    margin-right: 0px;
  }
}
.mt-testimonial-9 .mt-testimonial-thumb {
  position: absolute;
  top: -50px;
  left: 0;
}
@media (max-width: 767px) {
  .mt-testimonial-9 .mt-testimonial-thumb {
    position: static;
    margin-bottom: 20px;
  }
}
.mt-testimonial-9 .mt-testimonial-slide {
  background-color: var(--mt-common-white);
  padding: 30px 0px 0px 30px;
  border-radius: 20px;
  z-index: 3;
  margin-left: 235px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-testimonial-9 .mt-testimonial-slide {
    margin-left: 80px;
  }
}
@media (max-width: 767px) {
  .mt-testimonial-9 .mt-testimonial-slide {
    margin-left: 0px;
  }
}
.mt-testimonial-9 .mt-testimonial-slide p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: var(--mt-common-black);
}
.mt-testimonial-9 .mt-testimonial-veryfied {
  border-right: 1px solid var(--mt-border-2);
}
.mt-testimonial-9 .mt-testimonial-veryfied h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--mt-common-black);
}
.mt-testimonial-9 .mt-testimonial-veryfied span {
  color: var(--mt-border-1);
}
.mt-testimonial-9 .mt-testimonial-star span {
  color: var(--mt-theme-7);
}
.mt-testimonial-9 .mt-testimonial-author-content h5 {
  color: var(--mt-common-black);
}
.mt-testimonial-9 .mt-testimonial-author-content span {
  color: var(--mt-text-2);
}
.mt-testimonial-9 .mt-testimonial-author-img {
  background-color: var(--mt-theme-4);
  padding: 10px;
  border-radius: 30px 0px 17px 0px;
}
.mt-testimonial-9 .mt-testimonial-author-img img {
  border-radius: 20px;
}
.mt-testimonial-9 .mt-testimonial-shape {
  top: 15%;
  left: 9%;
  animation: mttranslateY2 4s infinite alternate;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-testimonial-9 .mt-testimonial-shape {
    top: 3%;
  }
}
@media (max-width: 767px) {
  .mt-testimonial-9 .mt-testimonial-shape {
    display: none;
  }
}
.mt-testimonial-9 .mt-testimonial-shape-2 {
  position: absolute;
  bottom: 8%;
  right: 16%;
  animation: mt__scalingAnimation 9s infinite alternate;
}
@media (max-width: 767px) {
  .mt-testimonial-9 .mt-testimonial-shape-2 {
    display: none;
  }
}
.mt-testimonial-9 .mt-testimonial-shape-3 {
  position: absolute;
  right: 16%;
  top: 10%;
  animation: mttranslateY2 3s infinite alternate;
}
@media (max-width: 767px) {
  .mt-testimonial-9 .mt-testimonial-shape-3 {
    display: none;
  }
}
.mt-testimonial-9 .mt-testimonial-arrow {
  position: absolute;
  z-index: 1;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  left: -3%;
}
@media (max-width: 767px) {
  .mt-testimonial-9 .mt-testimonial-arrow {
    display: none;
  }
}
.mt-testimonial-9 .mt-testimonial-button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  background: rgba(253, 91, 56, 0.5);
  display: block;
  color: var(--mt-common-white);
}
.mt-testimonial-9 .mt-testimonial-button.active {
  background-color: var(--mt-theme-7);
  margin-top: 10px;
}

.mttestimonial__wrapper {
  background: var(--mt-common-black-2);
  padding: 50px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__item {
    padding: 0px;
  }
}
.mttestimonial__payment .mttestimonial__thumb > img {
  border-radius: 178.98px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__payment .mttestimonial__thumb {
    margin-right: 0px;
  }
}
.mttestimonial__payment .mttestimonial__quote {
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__payment .mttestimonial__quote {
    right: -20px;
    top: -10px;
  }
}
.mttestimonial__payment .mttestimonial__content p {
  font-size: 24px;
  color: var(--mt-common-black-3);
  line-height: 34px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__payment .mttestimonial__content p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__payment .mttestimonial__content {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.mttestimonial__payment .mttestimonial__author-name {
  position: relative;
}
.mttestimonial__payment .mttestimonial__author-name cite {
  width: 20px;
  height: 1px;
  background-color: var(--mt-common-black-3);
  display: inline-block;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  margin-right: 5px;
}
.mttestimonial__payment .mttestimonial__author-name {
  font-size: 16px;
  color: var(--mt-text-body);
}
.mttestimonial__payment .mttestimonial__author-name span {
  font-size: 18px;
  color: var(--mt-common-black-3);
}
.mttestimonial__payment .mttestimonial__shape {
  position: absolute;
  right: 17%;
  top: 40%;
  animation: mt__scalingAnimation 9s linear infinite;
}
.mttestimonial__payment .mttestimonial__arrows {
  text-align: end;
  margin-top: -130px;
  margin-bottom: 48px;
  margin-right: 55px;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__payment .mttestimonial__arrows {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.mttestimonial__payment .mttestimonial__button {
  width: 62px;
  height: 62px;
  font-size: 20px;
  background-color: var(--mt-text-2);
  border: 1px solid var(--mt-border-3);
  border-radius: 50px;
  color: var(--mt-common-white);
  border-radius: 61px;
  box-shadow: 0px 20px 55px -3px rgba(14, 49, 119, 0.25);
}
.mttestimonial__payment .mttestimonial__button.active {
  background: var(--mt-gradient-1);
}

.mttestimonial__wrappers .mttestimonial__dots {
  text-align: center;
  margin-left: -150px;
  display: inline-block;
  z-index: 3;
  position: relative;
  -webkit-transform: translateY(-70px);
  -moz-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  -o-transform: translateY(-70px);
  transform: translateY(-70px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__wrappers .mttestimonial__dots {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    margin-left: 30px;
    width: 30%;
  }
}
.mttestimonial__wrappers .mttestimonial__dots .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid var(--mt-theme-4);
  opacity: 1;
}
.mttestimonial__wrappers .mttestimonial__dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 100px;
  background: var(--mt-gradient-3);
}

.mttestimonial__button-main {
  position: absolute;
  left: -25px;
  top: 15px;
}
.mttestimonial__button-next {
  left: auto;
  right: -25px;
}
.mttestimonial__shape {
  position: absolute;
  right: 0;
  top: -190px;
  animation: mttranslateY2 3s infinite alternate;
}

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

.mt-testimonial-thumb-active .swiper-slide img {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  width: 100px;
  transition: 0.3s;
}
.mt-testimonial-thumb-active .swiper-slide.swiper-slide-active img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  border: 2px solid var(--mt-theme-1);
}
.mt-testimonial-thumb-active .swiper-slide.swiper-slide-active {
  position: relative;
}

.mt-swiper-test-button {
  display: flex;
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--mt-common-white);
  position: absolute;
  right: 21%;
  bottom: 0;
  z-index: 9;
  font-size: 30px;
  color: var(--mt-text-2);
  line-height: 30;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-swiper-test-button {
    right: 14%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-swiper-test-button {
    right: 14%;
  }
}
@media (max-width: 767px) {
  .mt-swiper-test-button {
    display: none;
  }
}
.mt-swiper-test-button-next {
  left: auto;
  right: 29%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-swiper-test-button-next {
    right: 0%;
  }
}

.mt-testimonial-author-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-testimonial-author-name {
  color: var(--mt-common-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.mt-testimonial-author-name span {
  width: 16px;
  height: 1px;
  background: var(--mt-common-white);
  display: inline-block;
  transform: translateY(-5px);
  margin-right: 8px;
}
.mt-testimonial-author-desig {
  color: var(--mt-text-p);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.mt-testimonial-button-prev {
  position: absolute;
  left: -100px;
  top: 50%;
  z-index: 1;
  font-size: 52px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-button-prev {
    left: 0px;
    top: inherit;
    bottom: 0;
  }
}
.mt-testimonial-button-next {
  position: absolute;
  left: auto;
  right: -100px;
  top: 50%;
  z-index: 1;
  font-size: 52px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-button-next {
    right: 0px;
    top: inherit;
    bottom: 0;
  }
}

.mt-swiper-test-2-button img {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--mt-common-black);
  border-radius: 50px;
}
.mt-swiper-test-2-button.swiper-button-disabled {
  border-radius: 50px;
  border: 1px solid var(--mt-theme-1);
}

.mt-testimonial-3-item .swiper-pagination.mt-testi-pagination {
  transform: rotate(90deg);
  position: absolute;
  left: -64%;
  top: 0;
}

.mt-testimonial-active .swiper-pagination.mt-testi-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--mt-common-black-1);
  border: 1px solid var(--mt-common-black-1);
  opacity: 1;
}

.mt-testimonial-3-item .swiper-pagination.mt-testi-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 100px;
  background-color: var(--mt-theme-3);
}

.mt-testimonial-3-item .mttestimonial-pagination,
.mt-testimonial-active .mttestimonial-pagination {
  position: absolute;
  z-index: 2;
  left: -13%;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-testimonial-3-item .mttestimonial-pagination,
  .mt-testimonial-active .mttestimonial-pagination {
    display: none;
  }
}
.mt-testimonial-3-item .mttestimonial-pagination .swiper-pagination-bullet,
.mt-testimonial-active .mttestimonial-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: var(--mt-common-black-1);
  border: 1px solid var(--mt-common-black-1);
  opacity: 1;
  display: block;
  margin: 10px;
}
.mt-testimonial-3-item .mttestimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.mt-testimonial-active .mttestimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 50px;
  border-radius: 100px;
  background-color: var(--mt-theme-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .brand-space {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}

.mt-video {
  z-index: -1;
}
.mt-video-bg {
  padding-top: 425px;
  padding-bottom: 425px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 305px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-video-bg {
    margin-left: 0;
  }
}
.mt-video-playicon {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-video-playicon {
    left: 40%;
  }
}
@media (max-width: 767px) {
  .mt-video-playicon {
    left: 35%;
  }
}
.mt-video-playicon a {
  width: 110px;
  height: 110px;
  background: var(--mt-common-white);
  display: inline-block;
  border-radius: 50px;
  line-height: 110px;
  text-align: center;
  font-size: 30px;
  color: var(--mt-common-black);
  position: relative;
}
.mt-video-playicon a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.247);
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
}
.mt-video-playicon a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.205);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}
.mt-video-playicon.video-icon a {
  width: 110px;
  height: 110px;
  background: red;
  display: inline-block;
  border-radius: 50px;
  line-height: 110px;
  text-align: center;
  font-size: 30px;
  color: var(--mt-common-white);
  position: relative;
}
.mt-video-playicon.video-icon a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.247);
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
}
.mt-video-playicon.video-icon a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 0, 0, 0.205);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}
.mt-video-play {
  position: absolute;
  left: 45%;
  top: 40%;
  transform: translate(6%, 0);
}
@media (max-width: 767px) {
  .mt-video-play {
    left: 30%;
  }
}
.mt-video-play a span {
  display: inline-block;
  width: 160px;
  height: 160px;
  background: var(--mt-common-black);
  border-radius: 100px;
  line-height: 160px;
  text-align: center;
  font-size: 30px;
  color: var(--mt-theme-2);
}
.mt-video-2-bg {
  padding-top: 370px;
  padding-bottom: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: -300px;
  z-index: 3;
}
.mt-video-2-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
}
.mt-video-2 .mt-video-play {
  position: absolute;
  left: 45%;
  top: 40%;
  -webkit-transform: translate(6%, 0);
  -moz-transform: translate(6%, 0);
  -ms-transform: translate(6%, 0);
  -o-transform: translate(6%, 0);
  transform: translate(6%, 0);
}
@media (max-width: 767px) {
  .mt-video-2 .mt-video-play {
    left: 35%;
  }
}
.mt-video-2 .mt-video-play a {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
  background: var(--mt-common-black);
  border-radius: 100px;
  line-height: 160px;
  text-align: center;
  font-size: 30px;
  color: var(--mt-common-white);
}
@media (max-width: 767px) {
  .mt-video-2 .mt-video-play a {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}
.mt-video-2 .mt-video-play a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.247);
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
}
.mt-video-2 .mt-video-play a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.205);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}
.mt-video-2 .mt-video-trans-wrap {
  padding-top: 60px;
}
.mt-video-2 .mt-video-trans-title {
  -webkit-text-stroke: 1px rgb(235, 235, 235);
  -webkit-text-fill-color: transparent;
  font-size: 200px;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-video-2 .mt-video-trans-title {
    font-size: 180px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-video-2 .mt-video-trans-title {
    font-size: 145px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-video-2 .mt-video-trans-title {
    font-size: 105px;
  }
}
@media (max-width: 767px) {
  .mt-video-2 .mt-video-trans-title {
    font-size: 50px;
  }
}
.mt-video-7 .mt-video-bg {
  padding-top: 425px;
  padding-bottom: 425px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0;
}
.mt-video-7 .mt-video-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.mt-video-7 .mt-video-trans-title {
  font-size: 160px;
  -webkit-text-stroke: 1px rgb(161, 161, 161);
  -webkit-text-fill-color: rgba(var(--mt-common-black-rgb), 0.21);
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-video-7 .mt-video-trans-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-video-7 .mt-video-trans-title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .mt-video-7 .mt-video-trans-title {
    font-size: 50px;
  }
}
.mt-video-7 .mt-video-play a {
  position: relative;
  display: inline-block;
  width: 132px;
  height: 132px;
  background: var(--mt-common-white);
  border-radius: 100px;
  line-height: 132px;
  text-align: center;
  font-size: 20px;
  color: var(--mt-common-black);
}
.mt-video-7 .mt-video-scroll {
  position: absolute;
  bottom: -350px;
  left: 0;
}
.mt-video-7 .mt-video-scroll-title {
  font-size: 24px;
  color: var(--mt-common-white);
}
.mt-video-7 .mt-video-scroll-title span {
  margin-left: 5px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid var(--mt-theme-1);
  display: inline-block;
  border-radius: 50px;
  color: var(--mt-theme-1);
}
.mt-video-popular-img {
  padding: 32px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mt-video-popular-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--mt-common-black-1) 0%, rgba(var(--mt-common-black-rgb), 0) 30%, rgba(var(--mt-common-black-rgb), 0) 60%, var(--mt-common-black) 100%);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mt-video-popular-img.two {
  padding: 0;
  flex: 0 0 auto;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mt-video-popular-img.two {
    margin-right: 0px;
    flex: auto;
  }
}
.mt-video-popular-img.two img {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
@media (max-width: 767px) {
  .mt-video-popular-img.two img {
    width: 100%;
  }
}
.mt-video-popular-img.two:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.mt-video-popular-title {
  font-size: 24px;
  line-height: 34px;
  color: var(--mt-common-black);
}
.mt-video-popular-count span {
  color: var(--mt-common-white);
}
.mt-video-popular-count span i {
  margin-right: 5px;
}
.mt-video-popular-play a {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--mt-theme-7);
  color: var(--mt-common-white);
  border-radius: 50px;
  display: inline-block;
  text-align: center;
}
.mt-video-popular-duration span {
  color: var(--mt-common-white);
  font-weight: 700;
}
.mt-video-popular-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}
.mt-video-popular-cat span {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 20px;
  color: var(--mt-common-white);
}
@media (max-width: 767px) {
  .mt-video-popular-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.mt-video-popular-list-play {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.mt-video-popular-list-play a {
  width: 24px;
  height: 24px;
  line-height: 19px;
  border-radius: 50px;
  border: 1px solid var(--mt-common-white);
  display: inline-block;
  text-align: center;
  color: var(--mt-common-white);
}
.mt-video-popular-list-play a i {
  font-size: 10px;
}
.mt-video-popular-list-duration {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.mt-video-popular-list-duration span {
  color: var(--mt-common-white);
}
.mt-video-popular-list-count span {
  margin-right: 15px;
  color: var(--mt-text-2);
}
.mt-video-popular-list-count cite {
  width: 6px;
  height: 6px;
  background-color: var(--mt-text-2);
  border-radius: 50px;
  display: inline-block;
  -webkit-transform: translate(-3px, -3px);
  -moz-transform: translate(-3px, -3px);
  -ms-transform: translate(-3px, -3px);
  -o-transform: translate(-3px, -3px);
  transform: translate(-3px, -3px);
  margin-right: 10px;
}
.mt-video-box-space {
  padding-top: 320px;
}
.mt-video-box-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 24px;
  padding-top: 188px;
}
.mt-video-box-content {
  border-radius: 70px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(25px);
  padding: 10px 15px;
}
.mt-video-box-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--mt-common-white);
}
.mt-video-box-text span {
  color: var(--mt-common-white);
}
.mt-video-box-text span i {
  margin: 0 5px;
}
.mt-video-box-play {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.mt-video-box-play a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--mt-theme-4);
  border-radius: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--mt-common-white);
}
.mt-video-box-live {
  position: absolute;
  top: 5%;
  right: 5%;
}
.mt-video-box-live span {
  color: var(--mt-common-white);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  padding: 2px 10px;
  display: inline-block;
}
.mt-video-box-live span i {
  margin-right: 5px;
}
.mt-video-box-shape {
  position: absolute;
  bottom: 10%;
  left: 10%;
  animation: mt__scalingAnimation 9s infinite alternate;
}
@media (max-width: 767px) {
  .mt-video-box-shape {
    display: none;
  }
}
.mt-video-box-shape-2 {
  position: absolute;
  right: 10%;
  bottom: 10%;
  animation: mttranslateX2 4s infinite alternate;
}
@media (max-width: 767px) {
  .mt-video-box-shape-2 {
    display: none;
  }
}
.mt-video-6 {
  margin-bottom: -290px;
  z-index: 3;
  position: relative;
}
.mt-video-6 .mt-video-bg {
  padding-top: 300px;
  padding-bottom: 300px;
  margin-left: 0;
}
.mt-video-6 .mt-video-play a {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: var(--mt-theme-4);
  border-radius: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 30px;
  color: var(--mt-common-white);
}

.mt-brand-slide-img {
  width: 256px;
  height: 80px;
  border-radius: 80px;
  background: var(--mt-common-black-1);
  text-align: center;
  margin: 0 10px;
}
.mt-brand-slide-img img {
  padding: 30px;
  width: 140px;
}
.mt-brand-slide-img.brand-color {
  border-radius: 80px;
  padding: 28px;
  width: inherit;
  height: inherit;
  margin: 0px;
  margin-bottom: 10px;
}
.mt-brand-slide-img.brand-color img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  padding: 0;
}
.mt-brand-slide-img.brand-color h3 {
  display: inline-block;
  margin-bottom: 0;
  color: var(--mt-common-white);
  border-radius: 80px;
  padding: 5px 7px;
  font-size: 17px;
}
.mt-brand-slide-3-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .mt-brand-slide-3-area {
    padding-bottom: 80px;
  }
}
.mt-brand-slide-4-wrapper {
  border: 1px solid var(--mt-border-2);
  border-radius: 30px;
}
.mt-brand-slide-4-title {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
}
.mt-brand-slide-4-title h4 {
  display: inline-block;
  background: var(--mt-common-white);
}
.mt-brand-slide-5 .mt-brand-slide-border {
  border: 1px solid var(--mt-border-2);
  border-radius: 30px;
}
.mt-brand-slide-5 .mt-brand-slide-title {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
}
.mt-brand-slide-5 .mt-brand-slide-title h4 {
  display: inline-block;
  background: var(--mt-common-white);
  color: var(--mt-common-black);
}
@media (max-width: 767px) {
  .mt-brand-slide-5 .mt-brand-slide-title h4 {
    font-size: 18px;
  }
}
.mt-brand-slide-6 .mt-brand-slide-title h4 {
  color: var(--mt-common-black);
}

.mt-brand-section-title {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}
.mt-brand-section-title strong {
  width: 196px;
  height: 1px;
  background: var(--mt-common-black-1);
  display: inline-block;
  transform: translateY(-5px);
  margin-left: 5px;
}
@media (max-width: 767px) {
  .mt-brand-section-title strong {
    width: 80px;
  }
}
.mt-brand-section-title span {
  width: 196px;
  height: 1px;
  background: var(--mt-common-black-1);
  display: inline-block;
  transform: translateY(-5px);
  margin-right: 5px;
}
@media (max-width: 767px) {
  .mt-brand-section-title span {
    width: 80px;
  }
}

.mt-bg-rot {
  transform: rotate(3deg);
  z-index: 3;
  position: absolute;
  bottom: 168px;
}

.mt-bg-rot-2 {
  background: var(--mt-common-black-1);
}

.mt-brand-img.rotate img {
  transform: rotate(-4deg);
  overflow: hidden;
}

.vs-currency-switcher {
  display: inline-flex;
  gap: 4px;
  background: var(--mt-grey-3);
  border: 1px solid var(--mt-border-2);
  border-radius: 50px;
  padding: 4px;
}
.vs-currency-switcher__btn {
  border: none;
  background: transparent;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-common-black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.vs-currency-switcher__btn:hover:not(.active) {
  background: var(--mt-grey-1);
}
.vs-currency-switcher__btn.active {
  background: var(--mt-common-black);
  color: var(--mt-common-white);
}

.vs-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--mt-grey-3);
  border: 1px solid var(--mt-border-2);
  border-radius: 50px;
  padding: 4px;
}
.vs-billing-toggle__option {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}
.vs-billing-toggle__input {
  display: none;
}
.vs-billing-toggle__label {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mt-common-black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
  user-select: none;
}
.vs-billing-toggle__input:checked + .vs-billing-toggle__label {
  background: var(--mt-common-black);
  color: var(--mt-common-white);
  font-weight: 600;
}
.vs-billing-toggle__save {
  font-size: 11px;
  font-weight: 500;
  color: inherit;
  opacity: 0.7;
}

.vs-pricing-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .vs-pricing-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .vs-pricing-cards__grid {
    grid-template-columns: 1fr;
  }
}
.vs-pricing-cards__enterprise {
  position: relative;
  background: var(--mt-common-white);
  border: 1px solid var(--mt-border-2);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 32px;
  align-items: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.vs-pricing-cards__enterprise:hover {
  border-color: var(--mt-theme-4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .vs-pricing-cards__enterprise {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.vs-pricing-cards__enterprise-mid {
  border-left: 1px solid var(--mt-border-2);
  border-right: 1px solid var(--mt-border-2);
  padding: 0 32px;
}
@media (max-width: 767px) {
  .vs-pricing-cards__enterprise-mid {
    border: none;
    padding: 0;
  }
}
.vs-pricing-cards__enterprise-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vs-pricing-cards__card {
  position: relative;
  background: var(--mt-common-white);
  border: 1px solid var(--mt-border-2);
  border-radius: 16px;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.vs-pricing-cards__card:hover {
  border-color: var(--mt-theme-4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.vs-pricing-cards__card--popular {
  border-color: var(--mt-theme-4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.vs-pricing-cards__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mt-theme-4);
  color: var(--mt-common-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vs-pricing-cards__subtitle {
  font-size: 11px;
  font-weight: 500;
  color: var(--mt-text-body);
  font-style: italic;
  margin-bottom: 6px;
  margin-top: 0;
}
.vs-pricing-cards__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--mt-common-black);
  margin-bottom: 4px;
}
.vs-pricing-cards__desc {
  font-size: 12px;
  color: var(--mt-text-body);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 0;
}
.vs-pricing-cards__price {
  margin-bottom: 14px;
}
.vs-pricing-cards__amount-wrap {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 2px;
}
.vs-pricing-cards__amount {
  font-size: 48px;
  font-weight: 600;
  color: var(--mt-common-black);
  line-height: 1;
}
.vs-pricing-cards__symbol {
  font-size: 18px;
  font-weight: 600;
  color: var(--mt-common-black);
  align-self: flex-start;
  margin-top: 8px;
  margin-right: 1px;
  line-height: 1;
}
.vs-pricing-cards__price-label {
  font-size: 22px;
  font-weight: 700;
  color: var(--mt-common-black);
  display: block;
}
.vs-pricing-cards__billing {
  display: block;
  font-size: 11px;
  color: var(--mt-text-body);
  margin-top: 3px;
}
.vs-pricing-cards__highlights {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}
.vs-pricing-cards__highlights li {
  font-size: 12px;
  color: var(--mt-text-2);
  padding: 5px 0;
  border-bottom: 1px solid var(--mt-border-2);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}
.vs-pricing-cards__highlights li:last-child {
  border-bottom: none;
}
.vs-pricing-cards__highlights li i {
  color: var(--mt-theme-6);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}
.vs-pricing-cards__highlights--row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin: 0;
}
.vs-pricing-cards__highlights--row li {
  border-bottom: none;
  padding: 4px 0;
  width: auto;
}
.vs-pricing-cards__cta {
  margin-top: auto;
}
.vs-pricing-cards__cta a {
  display: block;
  text-align: center;
  width: 100%;
}
.vs-pricing-cards__cta a span {
  display: block;
}
.vs-pricing-cards__cta--primary a {
  background: var(--mt-theme-4) !important;
  border-color: var(--mt-theme-4) !important;
}
.vs-pricing-cards__cta--primary a span {
  color: var(--mt-common-white) !important;
}

@media (max-width: 767px) {
  .vs-pt__desktop-only {
    display: none;
  }
}

.vs-pt__mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .vs-pt__mobile-only {
    display: block;
  }
}

.vs-pt__scroll-wrapper {
  -webkit-overflow-scrolling: touch;
  position: relative;
}
@media (max-width: 767px) {
  .vs-pt__scroll-wrapper {
    overflow-x: auto;
  }
  .vs-pt__scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
  }
}

.vs-ptm {
  border: 1px solid var(--mt-border-2);
  font-size: 13px;
}
.vs-ptm__header {
  display: flex;
  position: sticky;
  top: calc(var(--vs-nav-h, 72px) + 1px);
  z-index: 10;
  background: var(--mt-common-white);
  border-bottom: 2px solid var(--mt-border-2);
}
.vs-ptm__plan-col {
  flex: 1;
  text-align: center;
  padding: 10px 4px 8px;
  border-left: 1px solid var(--mt-border-2);
}
.vs-ptm__plan-col:first-child {
  border-left: none;
}
.vs-ptm__plan-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--mt-common-black);
  margin-bottom: 2px;
}
.vs-ptm__plan-starts {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: var(--mt-text-body);
  margin-bottom: 1px;
}
.vs-ptm__plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  gap: 1px;
}
.vs-ptm__plan-currency {
  font-size: 9px;
  font-weight: 600;
  color: var(--mt-common-black);
  margin-top: 3px;
}
.vs-ptm__plan-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--mt-common-black);
  line-height: 1;
}
.vs-ptm__plan-amount--custom {
  font-size: 13px;
  align-self: center;
  margin-top: 2px;
}
.vs-ptm__section {
  padding: 8px 14px 7px;
  background: var(--mt-grey-1);
  border-top: 1px solid var(--mt-border-2);
  border-bottom: 1px solid var(--mt-border-2);
}
.vs-ptm .vs-ptm__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mt-text-2);
}
.vs-ptm__feature {
  border-bottom: 1px solid var(--mt-border-2);
}
.vs-ptm__feature-name {
  padding: 7px 14px 5px;
  background: var(--mt-common-white);
  border-bottom: 1px solid var(--mt-border-2);
  display: flex;
  align-items: center;
}
.vs-ptm__feature-name .vs-ptm__feature-label {
  font-size: 12px;
  color: var(--mt-text-2);
  line-height: 1.4;
}
.vs-ptm__values {
  display: flex;
}
.vs-ptm__value {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border-left: 1px solid var(--mt-border-2);
}
.vs-ptm__value:first-child {
  border-left: none;
}
.vs-ptm__value .vs-pt__check i {
  color: #16a34a;
  font-size: 18px;
}
.vs-ptm__value .vs-pt__cross i {
  color: var(--mt-border-3);
  font-size: 16px;
}
.vs-ptm__value .vs-pt__value {
  font-size: 12px;
  color: var(--mt-common-black);
  line-height: 1.3;
}

.vs-pt {
  width: 100%;
  min-width: 660px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  table-layout: fixed;
  border-left: 1px solid var(--mt-border-2);
  border-right: 1px solid var(--mt-border-2);
}
.vs-pt colgroup col:first-child {
  width: 28%;
}
@media (max-width: 991px) {
  .vs-pt colgroup col:first-child {
    width: 36%;
  }
}
.vs-pt__head tr {
  background: var(--mt-common-white);
}
.vs-pt__head-label {
  padding: 20px 20px 18px;
  text-align: left;
  background: var(--mt-common-white);
  vertical-align: middle;
  position: sticky;
  top: calc(var(--vs-nav-h, 72px) + 1px);
  z-index: 31;
  box-shadow: -1px 0 0 0 var(--mt-border-2), 0 1px 0 0 var(--mt-border-2), 0 -1px 0 0 var(--mt-border-2), 0 2px 0 0 var(--mt-border-2);
}
.vs-pt__head-label-text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--mt-common-black);
  line-height: 1.2;
}
.vs-pt__head-plan {
  text-align: center;
  padding: 14px 10px 12px;
  background: var(--mt-common-white);
  vertical-align: bottom;
  position: sticky;
  top: calc(var(--vs-nav-h, 72px) + 1px);
  z-index: 30;
  box-shadow: 0 1px 0 0 var(--mt-border-2), 0 -1px 0 0 var(--mt-border-2), 0 2px 0 0 var(--mt-border-2);
}
.vs-pt__head-plan:last-child {
  box-shadow: 1px 0 0 0 var(--mt-border-2), 0 1px 0 0 var(--mt-border-2), 0 -1px 0 0 var(--mt-border-2), 0 2px 0 0 var(--mt-border-2);
}
.vs-pt__head-plan-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.vs-pt__plan-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-common-black);
}
@media (max-width: 767px) {
  .vs-pt__plan-name {
    font-size: 11px;
  }
}
.vs-pt__plan-name {
  margin-bottom: 2px;
}
.vs-pt__plan-starts {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--mt-text-body);
  margin-bottom: 1px;
}
.vs-pt__plan-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  line-height: 1;
}
.vs-pt__plan-currency {
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-common-black);
  margin-top: 5px;
  margin-right: 3px;
  line-height: 1;
}
.vs-pt__plan-amount {
  font-size: 34px;
  font-weight: 700;
  color: var(--mt-common-black);
  line-height: 1;
  align-self: flex-start;
}
.vs-pt__plan-amount--custom {
  font-size: 22px;
  align-self: center;
}
.vs-pt__plan-billing {
  display: block;
  font-size: 11px;
  color: var(--mt-text-body);
  line-height: 1.3;
  margin-top: 3px;
  min-height: 46px;
}
.vs-pt__section-row td {
  background: var(--mt-grey-1);
  padding: 9px 20px 8px;
  border-top: 1px solid var(--mt-border-2);
  border-bottom: 1px solid var(--mt-border-2);
}
.vs-pt__section-row td:not(:first-child) {
  border-left: 1px solid var(--mt-border-2);
}
.vs-pt__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mt-text-2);
}
.vs-pt__feature-row:hover td {
  background: var(--mt-grey-3);
}
.vs-pt__feature-row:hover .vs-pt__feature-row__feature-name {
  background: var(--mt-grey-3);
}
.vs-pt__feature-row:last-child td {
  border-bottom: 1px solid var(--mt-border-2);
}
.vs-pt__feature-name {
  padding: 11px 20px;
  text-align: left;
  border-bottom: 1px solid var(--mt-border-2);
  position: sticky;
  left: 0;
  background: var(--mt-common-white);
  z-index: 5;
  transition: background 0.15s ease;
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
}
.vs-pt__feature-label {
  font-size: 13px;
  color: var(--mt-text-2);
  line-height: 1.4;
  display: inline;
}
.vs-pt__tooltip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0 0 0 6px;
  cursor: pointer;
  color: var(--mt-text-3);
  font-size: 16px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  line-height: 0;
  transition: opacity 0.15s ease;
  opacity: 0.55;
}
.vs-pt__tooltip-btn i {
  font-size: 16px;
  width: 16px;
  height: 16px;
  display: block;
}
.vs-pt__tooltip-btn:hover, .vs-pt__tooltip-btn:focus {
  opacity: 1;
  outline: none;
}
.vs-pt__cell {
  text-align: center;
  padding: 11px 6px;
  border-bottom: 1px solid var(--mt-border-2);
  border-left: 1px solid var(--mt-border-2);
  vertical-align: middle;
  transition: background 0.15s ease;
}
.vs-pt__cell--popular {
  background: rgba(0, 0, 0, 0.02);
}
.vs-pt__feature-row:hover .vs-pt__cell--popular {
  background: var(--mt-grey-3);
}
.vs-pt__check i {
  color: #16a34a;
  font-size: 18px;
}
.vs-pt__cross i {
  color: var(--mt-border-3);
  font-size: 13px;
}
.vs-pt__soon i {
  color: var(--mt-theme-7);
  font-size: 13px;
}
.vs-pt__value {
  font-size: 11px;
  font-weight: 500;
  color: var(--mt-text-2);
  display: inline-block;
  max-width: 88px;
  line-height: 1.3;
  text-align: center;
}
.vs-pt__tooltip-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0 0 0 4px;
  cursor: pointer;
  position: relative;
  color: var(--mt-border-3);
  font-size: 11px;
  transition: color 0.15s ease;
  vertical-align: middle;
}
.vs-pt__tooltip-btn:hover {
  color: var(--mt-theme-4);
}
.vs-pt__tooltip-btn:hover .vs-pt__tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateY(0);
}
.vs-pt__tooltip-text {
  position: absolute;
  left: 110%;
  top: 50%;
  transform: translateY(-50%) translateY(4px);
  background: var(--mt-common-black);
  color: var(--mt-common-white);
  font-size: 11px;
  line-height: 1.45;
  padding: 7px 10px;
  border-radius: 6px;
  width: 190px;
  text-align: left;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  font-weight: 400;
  white-space: normal;
}
@media (max-width: 991px) {
  .vs-pt__tooltip-text {
    left: auto;
    right: 110%;
  }
}

.vs-addons-section {
  background: var(--mt-grey-3);
}
.vs-addons-section__sub {
  color: var(--mt-text-body);
}

.vs-addon-card {
  background: var(--mt-common-white);
  border-radius: 14px;
  padding: 28px 24px 22px;
  border: 1px solid var(--mt-border-2);
  position: relative;
  overflow: visible;
  margin-top: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.vs-addon-card:hover {
  border-color: var(--mt-theme-4);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.vs-addon-card--featured {
  border-color: var(--mt-theme-4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.vs-addon-card__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mt-theme-1);
  color: var(--mt-common-black);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vs-addon-card__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--mt-common-black);
  margin-bottom: 0;
}
.vs-addon-card__price {
  font-size: 34px;
  font-weight: 800;
  color: var(--mt-common-black);
  line-height: 1.1;
}
.vs-addon-card__visitors {
  color: var(--mt-text-2);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.vs-addon-card__rate {
  color: var(--mt-text-body);
  font-size: 13px;
}

.vs-pricing-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mt-common-black);
  border: 1px solid var(--mt-border-2);
  border-radius: 6px;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.vs-pricing-view-all:hover {
  background: var(--mt-grey-3);
  color: var(--mt-common-black);
}

.vs-addon-card {
  background: var(--mt-common-white);
  border: 1px solid var(--mt-border-2);
  border-radius: 16px;
  padding: 32px 36px;
}
.vs-addon-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.vs-addon-card__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vs-addon-card__icon {
  font-size: 24px;
  color: var(--mt-theme-4);
}
.vs-addon-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--mt-common-black);
}
.vs-addon-card__badge {
  background: var(--mt-theme-6);
  color: var(--mt-common-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.vs-addon-card__desc {
  color: var(--mt-text-2);
  font-size: 15px;
  margin-bottom: 20px;
}
.vs-addon-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vs-addon-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--mt-common-black);
}
.vs-addon-card__features li i {
  color: var(--mt-theme-4);
  font-size: 13px;
  flex-shrink: 0;
}
.vs-addon-card__availability {
  margin-bottom: 28px;
}
.vs-addon-card__availability span {
  background: rgba(37, 85, 255, 0.08);
  color: var(--mt-theme-4);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}
.vs-addon-card__options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.vs-addon-card__pricing-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--mt-border-1);
  background: transparent;
}
.vs-addon-card__pricing-row--highlight {
  background: var(--mt-bg-4);
}
.vs-addon-card__pricing-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--mt-text-1);
}
.vs-addon-card__price {
  font-size: 15px;
  font-weight: 400;
  color: var(--mt-common-black);
  line-height: 1;
}
.vs-addon-card__price-amount {
  font-size: 36px;
  font-weight: 700;
}
.vs-addon-card__price-currency {
  margin-right: 4px;
}
.vs-addon-card__price-suffix {
  font-size: 14px;
  color: var(--mt-text-2);
}
.vs-addon-card__price-suffix--alt {
  font-weight: 500;
}
.vs-addon-card__savings {
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-theme-6);
  margin-top: 4px;
  display: none;
}
.vs-addon-card__savings.is-visible {
  display: block;
}
.vs-addon-card__btn--alt {
  color: var(--mt-text-1) !important;
}

.mt-light-version-bg-1 {
  background-color: var(--mt-grey-3);
}
.mt-light-version-bg-2 {
  background-color: var(--mt-grey-3);
}
.mt-light-version .header-sticky .mt-header-logo .mt-logo-white {
  display: none !important;
}
.mt-light-version .header-sticky .mt-header-logo .mt-logo-black {
  display: block !important;
}
.mt-light-version .header-sticky .mt-header-menu ul li > a {
  color: var(--mt-common-white);
}
.mt-light-version .header-sticky .mt-header-menu ul li.has-dropdown:after {
  color: var(--mt-common-white);
}
.mt-light-version .header-sticky .mt-header-menu ul li .sub-menu li a {
  color: var(--mt-common-black);
}
.mt-light-version .header-sticky .mt-header-search input {
  border: 1px solid rgba(var(--mt-common-white-rgb), 0.3);
}
.mt-light-version .header-sticky .mt-header-btn a.mtlogin {
  color: var(--mt-common-white);
}
.mt-light-version.mt-brand-slide-5 .mt-brand-slide-title h4 {
  background: var(--mt-common-black-4);
  color: var(--mt-common-white);
  padding: 2px 8px;
}
.mt-light-version.mt-brand-slide-6 .mt-brand-slide-title h4 {
  color: var(--mt-common-white);
}
.mt-light-version.mt-brand-slide-5 .mt-brand-slide-border {
  border: 1px solid var(--mt-border-1);
}
.mt-light-version .mtabout__list ul li {
  color: var(--mt-common-white);
}
.mt-light-version .mtabout__box {
  border-top: 1px solid var(--mt-border-1);
}
.mt-light-version.mt-service-5 .mt-service-item {
  border: 1px solid var(--mt-border-1);
}
.mt-light-version.mt-service-5 .mt-service-item:hover .mt-service-title {
  color: var(--mt-common-black);
}
.mt-light-version.mt-service-5 .mt-service-title {
  font-size: 24px;
  color: var(--mt-common-white-2);
  text-align: start;
}
.mt-light-version .mt-process-2-item {
  border: 1px solid var(--mt-border-2);
  background-color: var(--mt-grey-3);
}
.mt-light-version .mt-fact-count span {
  color: var(--mt-text-body);
}
.mt-light-version .mt-fact-content span {
  color: var(--mt-common-white-2);
}
.mt-light-version .mt-fact-content p {
  color: var(--mt-text-body);
}
.mt-light-version .mt-fact-wraper {
  border-top: 1px solid var(--mt-border-1);
  border-bottom: 1px solid var(--mt-border-1);
}
.mt-light-version .mt-fact-wraper.border-right::before {
  background-color: var(--mt-border-1);
}
.mt-light-version .mt-fact-wraper.border-right::after {
  background-color: var(--mt-border-1);
}
.mt-light-version .mt-team-2-item {
  border: 1px solid var(--mt-border-1);
}
.mt-light-version .mt-team-2-content h3 {
  color: var(--mt-common-white);
}
.mt-light-version .mt-team-2-img h5 {
  color: rgba(var(--mt-grey-3-rgb), 0.07);
}
.mt-light-version .mt-testimonial-4-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--mt-common-white);
}
.mt-light-version .mt-testimonial-4-item {
  border: 1px solid var(--mt-border-1);
}
.mt-light-version .mt-testimonial-4-item p {
  color: var(--mt-text-body);
}
.mt-light-version .mt-testimonial-4-text span {
  color: var(--mt-text-body);
}
.mt-light-version .mt-testimonial-4-text h5 {
  color: var(--mt-common-white);
}
.mt-light-version .mt-blog-6-item {
  transition: 0.4s;
  border: 1px solid var(--mt-border-1);
}
.mt-light-version .mt-blog-6-item:hover {
  border: 1px solid var(--mt-border-2);
  box-shadow: 0px 5px 30px 0px rgba(var(--mt-common-black-rgb), 0.05);
  border-radius: 20px;
}
.mt-light-version .mt-blog-6-arrow button {
  color: var(--mt-common-white);
}
.mt-light-version .mt-blog-6-title {
  color: var(--mt-common-white);
}
.mt-light-version .mt-blog-6-btn span {
  color: var(--mt-common-white);
}
.mt-light-version .mt-blog-6-btn i {
  color: var(--mt-common-white);
}
.mt-light-version.mt-cta-3-bg {
  background: linear-gradient(266deg, var(--mt-common-black-3) 7.19%, var(--mt-common-black-4) 98.22%);
}
.mt-light-version .mt-cta-3-title {
  color: var(--mt-common-white);
}
.mt-light-version .mt-cta-3-subtitle {
  -webkit-text-stroke: 1px var(--mt-common-white);
  -webkit-text-fill-color: transparent;
}
.mt-light-version .mt-footer-4-widget {
  padding: 0 10px;
}
.mt-light-version .mt-footer-4-title {
  color: var(--mt-common-black);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mt-light-version .mt-footer-4-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mt-light-version .mt-footer-4-list ul li {
  margin-bottom: 6px;
  padding: 0;
}
.mt-light-version .mt-footer-4-list ul li a {
  color: var(--mt-text-2);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-left: -8px;
}
.mt-light-version .mt-footer-4-list ul li a:hover {
  color: var(--mt-common-black);
  background: color-mix(in srgb, var(--mt-theme-4) 8%, transparent);
}
.mt-light-version .mt-footer-4-content {
  color: var(--mt-text-2);
  font-size: 14px;
  line-height: 1.6;
}
.mt-light-version .mt-footer-4-content p {
  margin-bottom: 0;
}
.mt-light-version.mt-service-6 .mt-service-trans-title {
  -webkit-text-stroke: 1px rgba(var(--mt-common-white-rgb), 0.5);
  font-weight: 700;
}
.mt-light-version .mtprocess__icon span {
  border: 1px solid var(--mt-border-1);
  border-radius: 30px;
  padding: 37px 33px;
  display: inline-block;
  font-size: 32px;
  color: var(--mt-common-white);
  font-weight: 700;
}
.mt-light-version .mtprocess__icon.active span {
  background: var(--mt-common-white);
  color: var(--mt-common-black);
}
.mt-light-version.mtabout__2 .mtabout__box-btn-play {
  color: var(--mt-common-white);
}
.mt-light-version.mtabout__2 .mtabout__box-btn-play i {
  background: var(--mt-common-white);
  color: var(--mt-common-black);
}
.mt-light-version .mt-price-tab span {
  font-weight: 700;
  color: var(--mt-common-white);
}
.mt-light-version.mtcta__bg {
  z-index: inherit;
}
.mt-light-version .mtblog__meta span {
  color: var(--mt-border-2);
}
.mt-light-version .mtblog__meta a {
  color: var(--mt-border-2);
}
.mt-light-version .mtblog__content:hover .mtblog__meta span {
  color: var(--mt-common-white);
}

.mt-process-trans {
  margin-bottom: -85px;
}
.mt-process-transtitle {
  -webkit-text-stroke: 1px var(--mt-common-white);
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 138px;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.2;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-process-transtitle {
    font-size: 115px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-process-transtitle {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-process-transtitle {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .mt-process-transtitle {
    font-size: 35px;
  }
}
.mt-process-transtitle:before {
  content: "";
  background: rgba(var(--mt-common-white-rgb), 0.33);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-process-transtitle:before {
    bottom: 10px;
  }
}
@media (max-width: 767px) {
  .mt-process-transtitle:before {
    bottom: 5px;
  }
}
.mt-process-content i {
  width: 24px;
  height: 24px;
  background: var(--mt-theme-7);
  display: inline-block;
  border-radius: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-process-content i {
    margin-top: 10px;
  }
}
.mt-process-number {
  color: var(--mt-common-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}
.mt-process-text h4 {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}
.mt-process-text p {
  color: var(--mt-text-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mt-process-2-item {
  border: 1px solid var(--mt-border-2);
  padding: 30px 25px;
  border-radius: 15px;
}
.mt-process-2-icon img {
  width: 100px;
}
.mt-process-2-text h4 {
  color: var(--mt-common-black);
}
.mt-process-2-text p {
  color: var(--mt-text-2);
  margin-bottom: 0;
}
.mt-process-2-shape {
  position: absolute;
  bottom: -20px;
  left: 0;
}
.mt-process-2-shape-2 {
  position: absolute;
  top: 30%;
  left: 39%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-process-2-shape-2 {
    top: 23%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-process-2-shape-2 {
    top: 20%;
    left: inherit;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .mt-process-2-shape-2 {
    top: 20%;
    left: inherit;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .mt-process-2-shape-2 {
    top: 20%;
    left: inherit;
    right: 15px;
  }
}

.mtprocess {
  padding: 10px 37px;
  z-index: 2;
  position: relative;
}
.mtprocess__area {
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtprocess__area {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.mtprocess__space {
  padding-top: 350px;
}
.mtprocess__title {
  color: var(--mt-common-black);
}
.mtprocess__icon span {
  border: 1px solid var(--mt-border-2);
  border-radius: 30px;
  padding: 37px 33px;
  display: inline-block;
  font-size: 32px;
  color: var(--mt-common-black);
  font-weight: 700;
}
.mtprocess__icon.active span {
  background: var(--mt-common-black);
  color: var(--mt-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtprocess__shape-wrap {
    display: none;
  }
}
.mtprocess__shape {
  position: absolute;
  left: 0;
  top: -16%;
  z-index: 0;
}
.mtprocess__shape-2 {
  position: absolute;
  bottom: 42%;
  left: 34%;
  z-index: 0;
  animation: mttranslateX2 3s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtprocess__shape-2 {
    left: 24%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtprocess__shape-2 {
    left: 24%;
    bottom: 45%;
  }
}
.mtprocess__shape-3 {
  position: absolute;
  bottom: 42%;
  right: 34%;
  z-index: 0;
  animation: mttranslateX2 4s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtprocess__shape-3 {
    right: 25%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtprocess__shape-3 {
    right: 26%;
    bottom: 45%;
  }
}
.mtprocess__shape-4 {
  position: absolute;
  right: 0;
  bottom: 0%;
  z-index: -1;
}
.mtprocess__content p {
  color: var(--mt-text-2);
}
.mtprocess__6 .mtprocess__item-6 .mtprocess__title {
  color: var(--mt-common-black);
}
.mtprocess__6 .mtprocess__item-6 .mtprocess__title a {
  color: var(--mt-common-black);
}
.mtprocess__6 .mtprocess__item-6 p {
  color: var(--mt-text-2);
}

.mt-cta-bg {
  margin-bottom: -125px;
  z-index: 2;
  margin-top: -125px;
}
.mt-cta-bgs {
  margin-bottom: -110px;
}

.mtcta__area {
  position: relative;
  z-index: 1;
}
.mtcta__main-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 5;
}

.mt-cta-wrap {
  border-radius: 30px;
  padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-cta-wrap {
    padding: 30px 40px;
  }
}
@media (max-width: 767px) {
  .mt-cta-wrap {
    padding: 20px 30px;
  }
}
.mt-cta-left span {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--mt-common-black);
}
.mt-cta-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--mt-common-black);
  line-height: 1.1;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-cta-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .mt-cta-title {
    font-size: 25px;
  }
}
.mt-cta-icon {
  position: absolute;
  right: 0;
  bottom: 10px;
}
.mt-cta-button span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin-left: 10px;
  color: var(--mt-common-black);
}
.mt-cta-check {
  width: 22px;
  height: 22px;
  border: 1px solid var(--mt-border-2);
  transform: translateY(5px);
}
.mt-cta-2-wrap {
  padding: 118px 50px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .mt-cta-2-wrap {
    padding: 0px;
  }
}
.mt-cta-2-left img {
  border-radius: 20px;
}
.mt-cta-2-right img {
  border-radius: 20px;
}
.mt-cta-3-bg {
  background: linear-gradient(266deg, #FFF4D8 7.19%, #FFE0CE 98.22%); /* Custom gradient - consider adding to _colors.scss */
}
.mt-cta-3-title {
  color: var(--mt-common-black);
  font-size: 156px;
  font-weight: 700;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-cta-3-title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-cta-3-title {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .mt-cta-3-title {
    font-size: 60px;
  }
}
.mt-cta-3-subtitle {
  -webkit-text-stroke: 1px var(--mt-common-black);
  -webkit-text-fill-color: transparent;
  font-size: 156px;
  font-weight: 700;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-cta-3-subtitle {
    font-size: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-cta-3-subtitle {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .mt-cta-3-subtitle {
    font-size: 60px;
  }
}
.mt-cta-3-btn {
  text-align: end;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-cta-3-btn {
    text-align: center;
    margin-top: 20px;
  }
}
.mt-cta-3-btn a {
  width: 150px;
  height: 150px;
  line-height: 160px;
  background-color: var(--mt-common-white);
  display: inline-block;
  text-align: center;
  border: 1px solid var(--mt-border-1);
  border-radius: 100px;
  transition: 0.5s;
}
.mt-cta-3-btn a i {
  font-size: 32px;
  color: var(--mt-common-black);
  transform: rotate(45deg);
}
.mt-cta-3-btn a:hover {
  background-color: var(--mt-theme-1);
  border-color: var(--mt-theme-1);
}
.mt-cta-3-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: mttranslateY2 3s infinite alternate;
}
.mt-cta-3-shape-2 {
  position: absolute;
  left: 40%;
  top: 10%;
  z-index: 1;
  animation: mt__scalingAnimation 25s linear infinite;
}
.mt-cta-3-shape-3 {
  position: absolute;
  bottom: 15%;
  left: 9%;
  z-index: 1;
  animation: mt__scalingAnimation 10s linear infinite;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .mt-cta-3-shape-3 {
    bottom: 0%;
    left: 0%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mt-cta-3-shape-3 {
    bottom: 0%;
    left: 0%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-cta-3-shape-3 {
    bottom: 0%;
    left: 0%;
  }
}
.mt-cta-3-shape-4 {
  position: absolute;
  top: 15%;
  right: 28%;
  z-index: 1;
  animation: mt__scalingAnimation 9s linear infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-cta-3-shape-4 {
    top: 5%;
    right: 18%;
  }
}
.mt-cta-6 .mt-cta-title {
  color: var(--mt-common-black);
  font-size: 76px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-cta-6 .mt-cta-title {
    font-size: 58px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-cta-6 .mt-cta-title {
    font-size: 40px;
  }
}
.mt-cta-6 .mt-cta-title span {
  margin-left: 16px;
}

.mtcta__bg {
  margin-bottom: -260px;
  z-index: 2;
}
.mtcta__area .mtcta__wrapper {
  padding: 80px;
  padding-bottom: 20px;
  padding-top: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtcta__area .mtcta__wrapper {
    padding: 80px 20px;
  }
}
.mtcta__content span {
  margin-top: 10px;
  font-weight: 700;
  display: block;
  color: var(--mt-common-white);
}
.mtcta__thumb {
  margin-top: -150px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtcta__btn {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtcta__payment {
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.mtcta__payment .mtcta__thumb {
  margin-top: 0px;
  margin-left: 100px;
  margin-right: -70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtcta__payment .mtcta__thumb {
    width: 81%;
    margin-right: -200px;
    margin-left: 187px;
  }
}
.mtcta__payment .mtcta__thumb-small {
  position: absolute;
  left: -26px;
  bottom: 0;
  width: 300px;
  animation: mttranslateX2 3s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtcta__payment .mtcta__thumb-small {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .mtcta__payment .mtcta__thumb-small {
    width: 180px;
  }
}
.mtcta__2 {
  margin-bottom: -190px;
}
.mtcta__2 .mtcta__main-wrap {
  border-radius: 24px;
  background: var(--mt-common-white);
  box-shadow: 6px 0px 60px -3px rgba(5, 20, 39, 0.14);
  position: relative;
  z-index: 2;
}
.mtcta__2 .mtcta__main-wrap::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.12);
  bottom: -26px;
  width: 95%;
  height: 200px;
  border-radius: 30px;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.mtcta__2 .mtcta__thumb {
  margin-top: -50px;
}
.mtcta__2 .mtcta__wrapper {
  padding: 50px;
}
.mtcta__2 .mtcta__wrapper .mt-section-content {
  border-bottom: 1px solid var(--mt-border-2);
}
.mtcta__2 .mtcta__wrapper .mt-section-title {
  color: var(--mt-common-black-5);
  font-family: var(--mt-ff-rajdhani);
  font-size: 40px;
}
@media (max-width: 767px) {
  .mtcta__2 .mtcta__wrapper .mt-section-title {
    font-size: 30px;
  }
}

.mt-bg-grey {
  background: var(--mt-grey-3);
}

.mt-cta-bg-2 {
  background: url("/assets/img/cta/bg-2.jpg") no-repeat center/cover;
}

/*# sourceMappingURL=home.css.map */
