/* 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: #01D2A1;
  --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;
  }
}

.mt-service-trans-wrap {
  position: absolute;
  top: -225%;
}
@media (max-width: 767px) {
  .mt-service-trans-wrap {
    top: -90%;
  }
}
.mt-service-trans-title {
  -webkit-text-stroke: 1px rgb(180, 180, 180);
  -webkit-text-fill-color: transparent;
  font-size: 340px;
  font-weight: 700;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-service-trans-title {
    font-size: 265px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-service-trans-title {
    font-size: 200px;
  }
}
@media (max-width: 767px) {
  .mt-service-trans-title {
    font-size: 98px;
  }
}

.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-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;
}

.mt-pricing-2__item {
  background-color: var(--mt-common-black);
  padding: 50px 30px;
  text-align: center;
  border-radius: 20px;
}
.mt-pricing-2__item:hover .mt-pricing-2__btn a {
  background: var(--mt-theme-3);
}
.mt-pricing-2__item:hover .mt-pricing-2__btn a span {
  color: var(--mt-common-white);
}
.mt-pricing-2__item-2 {
  border-radius: 0;
  transition: 0.4s;
}
.mt-pricing-2__item-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--mt-gradient-1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.mt-pricing-2__item-2 .mt-pricing-2__price {
  border: none;
}
.mt-pricing-2__item-2 .mt-pricing-2__price h4 {
  font-size: 50px;
}
.mt-pricing-2__item-2 .mt-pricing-2__price h4 i {
  font-size: 18px;
  margin-left: -10px;
}
.mt-pricing-2__item-2 .mt-pricing-2__title-border::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
  width: 54px;
  height: 1px;
  background: var(--mt-gradient-1);
  transition: 0.4s;
}
.mt-pricing-2__item-2 .mt-pricing-2__btn .small-btn {
  border-radius: 50px;
  border: 1px solid var(--mt-theme-3);
  border: 1px solid var(--mt-theme-3);
}
.mt-pricing-2__item-2:hover::before {
  visibility: visible;
  opacity: 1;
}
.mt-pricing-2__item-2:hover .mt-pricing-2__title-border::before {
  background: var(--mt-common-white);
}
.mt-pricing-2__item-2:hover .mt-pricing-2__text {
  position: relative;
  z-index: 2;
}
.mt-pricing-2__item-2:hover .mt-pricing-2__btn a {
  background: var(--mt-common-black);
  border: 1px solid var(--mt-common-black);
  z-index: 2;
  position: relative;
}
.mt-pricing-2__item-2:hover .mt-pricing-2__list {
  position: relative;
  z-index: 2;
}
.mt-pricing-2__item-2:hover .mt-pricing-2__list ul li {
  color: var(--mt-common-white);
  border-bottom: 1px solid var(--mt-common-white);
}
.mt-pricing-2__item-2.active::before {
  visibility: visible;
  opacity: 1;
}
.mt-pricing-2__item-2.active .mt-pricing-2__title-border::before {
  background: var(--mt-common-white);
}
.mt-pricing-2__item-2.active .mt-pricing-2__text {
  position: relative;
  z-index: 2;
}
.mt-pricing-2__item-2.active .mt-pricing-2__btn a {
  background: var(--mt-common-black);
  border: 1px solid var(--mt-common-black);
  z-index: 2;
  position: relative;
}
.mt-pricing-2__item-2.active .mt-pricing-2__list {
  position: relative;
  z-index: 2;
}
.mt-pricing-2__item-2.active .mt-pricing-2__list ul li {
  color: var(--mt-common-white);
  border-bottom: 1px solid var(--mt-common-white);
}
.mt-pricing-2__item .wow-disabled {
  animation: none !important;
}
.mt-pricing-2__item .wow-animated-once {
  animation: none !important;
}
.mt-pricing-2__list ul {
  list-style: none;
}
.mt-pricing-2__list ul li {
  color: var(--mt-common-black-3);
  border-bottom: 1px solid var(--mt-common-black-2);
  padding: 10px 0;
}
.mt-pricing-2__list ul li span {
  margin-left: 6px;
}
.mt-pricing-2__title {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.mt-pricing-2__text {
  margin-bottom: 50px;
}
.mt-pricing-2__text p {
  font-size: 16px;
  font-weight: 400;
}
.mt-pricing-2__price {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
.mt-pricing-2__price h4 {
  color: var(--mt-common-white);
  font-size: 96px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .mt-pricing-2__price h4 {
    font-size: 60px;
  }
}
.mt-pricing-2__price h4 i {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 700;
  margin-left: -23px;
}
@media (max-width: 767px) {
  .mt-pricing-2__price h4 i {
    margin-left: -15px;
  }
}
.mt-pricing-2__btn a {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 46px;
  display: inline-block;
}
.mt-pricing-2__btn a span {
  margin-right: 10px;
  color: var(--mt-common-white);
}
.mt-pricing-2__shape {
  position: absolute;
  left: 150px;
  animation: mttranslateY2 3s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-pricing-2__shape {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-pricing-2__shape {
    left: 0;
    top: 0;
  }
}

.mt-price-space {
  padding-bottom: 500px;
  height: 1000px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-price-space {
    height: 1700px;
  }
}
@media (max-width: 767px) {
  .mt-price-space {
    height: 1720px;
  }
}
.mt-price-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--mt-grey-3);
  padding: 30px 10px 25px 10px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mt-price-item:hover {
  background-color: var(--mt-theme-5);
}
.mt-price-title {
  position: relative;
}
.mt-price-title span {
  width: 20%;
  left: 40%;
  bottom: -11px;
  height: 1px;
  background: var(--mt-common-black);
  display: inline-block;
  margin: 0 auto;
  position: absolute;
}
.mt-price-number {
  font-size: 52px;
}
.mt-price-number span {
  font-size: 16px;
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  transform: translateX(-15px);
  display: inline-block;
}
.mt-price-link {
  position: relative;
}
.mt-price-link a {
  border-radius: 50px;
  background: var(--mt-common-black);
  padding: 15px 40px;
  display: inline-block;
  text-align: center;
  color: var(--mt-common-white);
}
.mt-price-list-wrapper {
  position: absolute;
  top: 54%;
  left: 16%;
  right: 16%;
  margin: 0 auto;
}
@media only screen and (min-width: 1700px) and (max-width: 1850px) {
  .mt-price-list-wrapper {
    left: 12%;
    right: 12%;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .mt-price-list-wrapper {
    left: 10%;
    right: 10%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mt-price-list-wrapper {
    left: 5%;
    right: 5%;
  }
}
@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-price-list-wrapper {
    left: 30px;
    right: 30px;
    bottom: 17%;
    top: inherit;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-price-list-wrapper {
    bottom: 7%;
  }
}
@media (max-width: 767px) {
  .mt-price-list-wrapper {
    bottom: 3%;
  }
}
.mt-price-list-item {
  border-bottom: 1px solid var(--mt-border-2);
  padding: 15px 0;
}
.mt-price-list-item p {
  color: var(--mt-common-black);
  font-family: var(--mt-ff-heading);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
  width: 350px;
}
.mt-price-list-item span {
  font-size: 30px;
  color: var(--mt-common-black);
}
@media (max-width: 767px) {
  .mt-price-list-item span {
    margin: 0 6px;
  }
}
.mt-price-switch-tab {
  border: 1px solid var(--mt-border-2);
  border-radius: 10px;
  padding: 16px 16px 24px 16px;
}
.mt-price-2 .mt-mtblog-content .active .mt-price-item-heading {
  background: var(--mt-gradient-5);
}
.mt-price-2 .mt-price-item {
  border: 1px solid var(--mt-grey-3);
  background-color: var(--mt-grey-3);
  padding: 30px 24px;
}
.mt-price-2 .mt-price-item-heading {
  background: var(--mt-grey-3);
  padding: 24px 25px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.mt-price-2 .mt-price-top-box p {
  color: var(--mt-common-black);
  padding-bottom: 5px;
}
.mt-price-2 .mt-price-middle-number {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  color: var(--mt-common-black);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .mt-price-2 .mt-price-middle-number {
    font-size: 27px;
  }
}
.mt-price-2 .mt-price-middle-number span {
  font-size: 24px;
  margin-left: -10px;
}
@media (max-width: 767px) {
  .mt-price-2 .mt-price-middle-number span {
    font-size: 17px;
    margin-left: 0;
  }
}
.mt-price-2 .mt-price-item-heading .mt-price-middle-number {
  font-size: 32px;
}
@media (max-width: 767px) {
  .mt-price-2 .mt-price-item-heading .mt-price-middle-number {
    font-size: 20px;
  }
}
.mt-price-2 .mt-price-item-heading .mt-price-middle-number span {
  font-size: 18px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .mt-price-2 .mt-price-item-heading .mt-price-middle-number span {
    font-size: 14px;
  }
}
.mt-price-2 .mt-price-title {
  font-size: 24px;
  color: var(--mt-common-black);
}
@media (max-width: 767px) {
  .mt-price-2 .mt-price-title {
    font-size: 20px;
  }
}
.mt-price-2 .mt-price-title span {
  width: inherit;
  left: inherit;
  bottom: inherit;
  height: inherit;
  background: var(--mt-badge-1);
  display: inline-block;
  margin: 0 auto;
  position: inherit;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--mt-common-black);
  font-weight: 600;
}
.mt-price-2 .mt-price-list ul li {
  border-bottom: 1px solid var(--mt-border-2);
  padding: 15px 0;
  list-style: none;
}
.mt-price-2 .mt-price-list ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mt-price-2 .mt-price-list ul li i {
  float: right;
  color: var(--mt-theme-4);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
}
.mt-price-2 .mt-price-list ul li span {
  color: var(--mt-text-2);
}
.mt-price-shape {
  position: absolute;
  right: 0;
  bottom: 0%;
}

.mt-price-switch-tab button {
  display: block;
  color: var(--mt-common-black);
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  padding: 7px 0;
}

.mt-price-switch-tab button.active {
  padding: 7px 0;
}
.mt-price-switch-tab button.active span {
  border: 4px solid var(--mt-common-black);
}

.mt-price-discund span {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
  padding: 11px 15px;
  border-radius: 50px;
}

.mt-price-discund {
  position: absolute;
  right: 15%;
  bottom: 24%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-price-discund {
    right: 9%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-price-discund {
    right: -10%;
    bottom: 0%;
  }
}

.mt-price-switch-tab button span {
  border: 1px solid var(--mt-border-2);
  border-radius: 50px;
  width: 18px;
  height: 18px;
  display: inline-block;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  margin-right: 10px;
}

.mt-price-tab {
  text-align: center;
  position: relative;
}
.mt-price-tab span {
  font-weight: 700;
  color: var(--mt-common-black);
}
.mt-price-tab ul {
  background-color: var(--mt-theme-1);
  border-radius: 20px;
  padding: 5.5px;
  display: inline-flex;
  margin: 0 10px;
}
.mt-price-tab ul li button {
  width: 28px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  display: inline-block;
}
.mt-price-tab ul li button.active {
  background-color: var(--mt-theme-3);
}
.mt-price-tab .mt-price-discund {
  position: absolute;
  right: 32%;
  bottom: 34%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-price-tab .mt-price-discund {
    right: 32%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-price-tab .mt-price-discund {
    right: 27%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-price-tab .mt-price-discund {
    right: 19%;
  }
}
@media (max-width: 767px) {
  .mt-price-tab .mt-price-discund {
    right: 0%;
    bottom: 100%;
  }
}
.mt-price-tab .mt-price-discund span {
  background-color: var(--mt-theme-2);
  color: var(--mt-common-white);
  padding: 5px 15px;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .mtprice__top-wrap {
    margin-bottom: 10px;
  }
}

.mt-price-toggle-container {
  display: inline-block;
  position: relative;
  background: var(--mt-grey-3);
  border: 2px solid var(--mt-border-2);
  border-radius: 25px;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.mt-price-toggle-container:hover {
  border-color: var(--mt-border-3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.mt-price-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--mt-common-black);
  border-radius: 22px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.mt-price-toggle-slider.yearly-active {
  transform: translateX(100%);
}

.mt-price-toggle-btn {
  background: transparent;
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 20px;
  min-width: 80px;
}
.mt-price-toggle-btn.active {
  color: var(--mt-common-white);
  font-weight: 700;
}
.mt-price-toggle-btn:not(.active) {
  color: var(--mt-common-black);
}
.mt-price-toggle-btn:hover:not(.active) {
  color: var(--mt-theme-4);
  background: rgba(var(--mt-theme-4-rgb), 0.08);
  border-radius: 18px;
}
.mt-price-toggle-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--mt-theme-4-rgb), 0.2);
}

.mtprice__bg {
  background-repeat: no-repeat;
}
.mtprice__wrapper {
  background-color: var(--mt-border-2);
  padding: 50px 50px 20px 50px;
  border-radius: 20px;
  position: relative;
  fill: var(--mt-common-white);
  stroke-width: 1px;
  stroke: var(--mt-border-2);
  filter: drop-shadow(0px 15px 45px rgba(4, 37, 82, 0.1));
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtprice__wrapper {
    padding: 50px 15px 20px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtprice__wrapper {
    padding: 50px 0px 20px 0px;
  }
}
@media (max-width: 767px) {
  .mtprice__wrapper {
    padding: 50px 10px 20px 10px;
  }
}
.mtprice__wrapper::after {
  content: "";
  position: absolute;
  background-color: var(--mt-common-black);
  bottom: 20px;
  width: 97%;
  height: 400px;
  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%);
}
.mtprice__item {
  padding: 40px;
  border-radius: 22px;
  background: var(--mt-common-white);
  border: 2px solid var(--mt-common-white);
  box-shadow: -9px 34px 200px 10px rgba(19, 8, 4, 0.2);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtprice__item {
    padding: 15px;
  }
}
.mtprice__item.active {
  border: 2px solid var(--mt-theme-2);
  margin-top: -60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtprice__item.active {
    margin-top: 0px;
  }
}
.mtprice__item.active .mtprice__top-box span {
  color: var(--mt-theme-2);
}
.mtprice__item.active .mtprice__list ul li i {
  background-color: rgba(var(--mt-theme-6-rgb), 0.15);
  color: var(--mt-theme-2);
}
.mtprice__item:hover {
  border: 2px solid var(--mt-theme-2);
}
.mtprice__item:hover .mtprice__top-box span {
  color: var(--mt-theme-2);
}
.mtprice__item:hover .mtprice__list ul li i {
  background-color: rgba(var(--mt-theme-6-rgb), 0.15);
  color: var(--mt-theme-2);
}
.mtprice__top-border {
  border-bottom: 2px solid var(--mt-theme-7);
  padding-bottom: 20px;
}
.mtprice__top-box span {
  font-size: 30px;
  color: var(--mt-common-black-5);
  font-family: var(--mt-ff-rajdhani);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mtprice__top-box p {
  color: rgba(4, 37, 82, 0.8);
  font-size: 18px;
  font-family: var(--mt-ff-rajdhani);
  font-weight: 400;
}
.mtprice__middle-number {
  font-size: 40px;
  color: var(--mt-common-black-5);
  font-family: var(--mt-ff-rajdhani);
  font-weight: 700;
  display: inline-block;
  margin-right: -3px;
}
.mtprice__middle-number > span {
  font-size: 25px;
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
  display: inline-block;
  margin-right: 6px;
  color: rgba(4, 37, 82, 0.8);
}
.mtprice__middle-box > span {
  font-size: 17px;
  display: inline-block;
  color: rgba(4, 37, 82, 0.8);
  font-family: var(--mt-ff-rajdhani);
}
.mtprice__list ul li {
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--mt-common-black-5);
  font-family: var(--mt-ff-rajdhani);
  padding: 8px 0;
}
.mtprice__list ul li i {
  background-color: var(--mt-border-3);
  color: var(--mt-common-black);
  border-radius: 100%;
  padding: 5.5px 6px;
  font-size: 17px;
  margin-right: 15px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mtprice__plan-left h5 {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  color: var(--mt-common-black-5);
  font-family: var(--mt-ff-rajdhani);
}
.mtprice__plan-left h5 i {
  rotate: 45deg;
}
.mtprice__tab {
  background-color: var(--mt-theme-1);
  padding: 10px 30px;
  border-radius: 57px;
  width: 630px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .mtprice__tab {
    width: auto;
  }
}
.mtprice__tab ul li button {
  font-size: 25px;
  text-transform: uppercase;
  color: var(--mt-common-black-5);
  font-family: var(--mt-ff-rajdhani);
  font-weight: 600;
  padding: 20px 26px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtprice__tab ul li button {
    font-size: 20px;
  }
}
.mtprice__tab ul li button span {
  margin-right: 7px;
}
.mtprice__tab ul li button.active {
  border-radius: 45.6px;
  background: var(--mt-common-white);
  color: var(--mt-theme-2);
  box-shadow: 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.05), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.04), 0px 2.767px 2.214px 0px rgba(0, 0, 0, 0.02);
}
.mtprice__2 {
  border-radius: 12px;
  z-index: 1;
}
@media (max-width: 767px) {
  .mtprice__2 {
    padding-top: 90px;
    padding-bottom: 50px;
  }
}
.mtprice__2::after {
  content: "";
  width: 50%;
  height: 50%;
  border-radius: 16px;
  opacity: 0.5;
  background: var(--mt-theme-3);
  filter: blur(116.5px);
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtprice__2 .mtprice__tab-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.mtprice__2 .mtprice__item {
  padding: 33px 35px;
  border-radius: 14px;
  background: var(--mt-common-white);
  border: 2px solid var(--mt-common-white);
  box-shadow: -9px 34px 200px 10px rgba(19, 8, 4, 0.2);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mtprice__2 .mtprice__list ul li {
  list-style: none;
  font-size: 16px;
}
.mtprice__2 .mt-price-tab span {
  color: var(--mt-common-white);
}
.mtprice__3 .mtprice__item {
  padding: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  box-shadow: none;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 2;
  position: relative;
}
.mtprice__3 .mtprice__top-box span {
  border: 1px solid var(--mt-theme-3);
  color: var(--mt-theme-3);
  display: inline-block;
  border-radius: 30px;
  padding: 5px 20px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}
.mtprice__3 .mtprice__middle-box p {
  margin-bottom: 0;
}
.mtprice__3 .mtprice__middle-box-number {
  font-size: 66px;
}
.mtprice__3 .mtprice__middle-box-number span {
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
}
.mtprice__3 .mtprice__list {
  border-top: 1px solid var(--mt-border-2);
  padding-top: 20px;
}
.mtprice__3 .mtprice__list ul li i {
  background-color: var(--mt-border-3);
  color: var(--mt-common-black);
  border-radius: 0;
  padding: 5.5px 6px;
  font-size: 17px;
  margin-right: 15px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mtprice__black .mtprice__item {
  background: rgba(255, 255, 255, 0.7);
}
.mtprice__black .mtprice__item:hover .mtprice__top-box span {
  color: var(--mt-common-black);
}
.mtprice__black .mtprice__item:hover .mtprice__list ul li i {
  background-color: var(--mt-border-3);
  color: var(--mt-common-black);
}
.mtprice__black .mtprice__top-box span {
  border: 1px solid var(--mt-border-3);
  color: var(--mt-common-black);
}
.mtprice__black .mtprice__middle-box p {
  color: var(--mt-common-black);
}

.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-contact-form-4 .mt-contact-form-main-wrap {
  background: var(--mt-grey-3);
  padding: 50px 40px;
}

.mt-contact-box-icon span {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  background-color: var(--mt-grey-3);
  color: var(--mt-common-black);
  width: 80px;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}

.mt-contact-box-text span {
  font-family: var(--mt-ff-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--mt-common-black);
}

.mt-contact-box-text h4 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: var(--mt-text-body);
}

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

.mt-text-body {
  color: var(--mt-text-body);
}

@media (max-width: 767px) {
  .mt-contact-box-text h4 {
    font-size: 25px;
  }
}
.mt-contact-form-4 .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.mt-contact-form-4 .form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid var(--mt-border-3) !important;
  border-radius: 100% !important;
  background-color: transparent;
  cursor: pointer;
  float: none;
  margin: 0;
  flex-shrink: 0;
}
.mt-contact-form-4 .form-check-input:checked {
  background-color: var(--mt-text-body) !important;
  border-color: var(--mt-text-body) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m5 10 4 4 6-7'/%3e%3c/svg%3e") !important;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.mt-contact-form-4 .form-check-label {
  cursor: pointer;
  font-size: 14px;
  color: var(--mt-text-2);
  padding-left: 0;
  margin: 0;
  line-height: 1.4;
  user-select: none;
}

.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;
  }
}

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