@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700;800&amp;family=Rubik:wght@400;500;600;700;900&amp;display=swap");

:root {
  --mt-ff-body: "Rubik", sans-serif;
  --mt-ff-heading: "Poppins", serif;
  --mt-ff-p: "Rubik", sans-serif;
  --mt-fw-normal: normal;
  --mt-fw-thin: 100;
  --mt-fw-elight: 200;
  --mt-fw-light: 300;
  --mt-fw-regular: 400;
  --mt-fw-medium: 500;
  --mt-fw-sbold: 600;
  --mt-fw-bold: 700;
  --mt-fw-ebold: 800;
  --mt-fw-black: 900;
  --mt-fs-body: 16px;
  --mt-fs-p: 16px;
  --mt-fs-h1: 50px;
  --mt-fs-h2: 40px;
  --mt-fs-h3: 22px;
  --mt-fs-h4: 20px;
  --mt-fs-h5: 16px;
  --mt-fs-h6: 14px;
  --mt-color-common-white: #ffffff;
  --mt-color-common-black: #000000;
  --mt-color-common-pink: #ff8c91;
  --mt-color-common-green: #a6e155;
  --mt-color-common-purple: #f792ff;
  --mt-color-common-electric-blue: #f17c83;
  --mt-color-heading-primary: #292930;
  --mt-color-text-body: #636363;
  --mt-color-theme-primary: #175cff;
  --mt-color-theme-secondary: #ffc226;
  --mt-color-theme-bg: #fff1f1;
  --mt-color-grey-1: #f6f3fc;
  --mt-color-grey-2: #e6efff;
  --mt-color-grey-3: #a2a2a2;
  --mt-color-border-1: #ddd;
  --mt-color-border-2: #2f2f30;
  --mt-color-border-3: #171719;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--mt-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mt-ff-heading);
  color: var(--mt-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--mt-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--mt-fs-h1);
}

h2 {
  font-size: var(--mt-fs-h2);
}

h3 {
  font-size: var(--mt-fs-h3);
}

h4 {
  font-size: var(--mt-fs-h4);
}

h5 {
  font-size: var(--mt-fs-h5);
}

h6 {
  font-size: var(--mt-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--mt-ff-p);
  font-size: 16px;
  font-weight: var(--mt-fw-normal);
  color: var(--mt-color-text-body);
  margin-bottom: 15px;
  line-height: 25px;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

/* *::-moz-selection {
  background: var(--mt-color-common-black);
  color: var(--mt-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--mt-color-common-black);
  color: var(--mt-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--mt-color-common-black);
  color: var(--mt-color-common-white);
  text-shadow: none;
} */

*::-moz-placeholder {
  color: var(--mt-color-common-black);
  font-size: var(--mt-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--mt-color-common-black);
  font-size: var(--mt-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-radius {
  border-radius: 6px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

.pt-180 {
  padding-top: 180px;
}

/* Styling the scrollbar */
::-webkit-scrollbar {
  width: 10px;
  /* Set the width of the scrollbar */
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(241, 7, 7);
  position: relative;
}

@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

.learn-pt {
  padding-top: 130px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 992px) {
  .pt-100 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pt-90 {
  padding-top: 90px;
}

@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 50px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pt-70 {
  padding-top: 70px;
}

@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 50px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}

@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 992px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}

@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}

@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

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

.bg-dark-1 {
  background-color: #171719;
}

.container {
  max-width: 1194px;
}

.bd-bottom {
  border-bottom: 1px solid #edebf9;
}

.top-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 468px;
  height: 478px;
  position: absolute;
  top: -200px;
  left: -200px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .top-shape {
    top: -250px;
    left: -250px;
  }
}

@media only screen and (max-width: 992px) {
  .top-shape {
    display: none;
  }
}

.bottom-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  width: 468px;
  height: 478px;
  position: absolute;
  bottom: -200px;
  right: -200px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .bottom-shape {
    bottom: -250px;
    right: -250px;
  }
}

@media only screen and (max-width: 992px) {
  .bottom-shape {
    display: none;
  }
}

.bg-color-top {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.overflow-h {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.section-heading .sub-heading {
  font-family: var(--mt-fs-body);
  background-color: var(--mt-color-grey-2);
  color: var(--mt-color-theme-primary);
  font-size: 22px;
  font-weight: 500;
  display: inline-block;
  padding: 5px 20px 5px 40px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .section-heading .sub-heading {
    font-size: 16px;
  }
}

.section-heading .sub-heading:before {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 2px;
}

.section-heading .section-title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  /* text-transform: capitalize; */
  position: relative;
  background: linear-gradient(100deg,
      #ee2c3c 14.58%,
      #f7032e 32.1%,
      rgb(90 7 247));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}

.section-heading.white-content .sub-heading {
  background-color: var(--mt-color-common-white);
}

.section-heading.white-content p,
.section-heading.white-content .section-title {
  color: var(--mt-color-common-white);
}

/* Site Preloader */
.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  background: var(--mt-color-common-white);
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--mt-color-common-white);
  z-index: 999;
}

.sk-three-bounce {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--mt-color-common-white);
}

.sk-three-bounce .sk-child {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: rgb(241 7 7);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce.is-brick-red.sk-three-bounce .sk-child {
  background-color: rgb(241 7 7);
}

.sk-three-bounce.is-mainly-blue.sk-three-bounce .sk-child {
  background-color: rgb(241 7 7);
}

.sk-three-bounce.is-orange.sk-three-bounce .sk-child {
  background-color: rgb(241 7 7);
}

.sk-three-bounce.is-purple.sk-three-bounce .sk-child {
  background-color: rgb(241 7 7);
}

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-three-bounce {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .mt-cursor:before {
    background: var(--mt-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }

  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }

  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }

  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}

/**
    Buttons CSS
*/
.mt-primary-btn {
  background-color: var(--mt-color-theme-primary);
  font-family: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 14.5px 30px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mt-primary-btn:before {
  content: "";
  background-color: var(--mt-color-theme-primary);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.mt-primary-btn:after {
  content: "";
  background-color: var(--mt-color-theme-primary);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}

.mt-primary-btn:hover {
  color: var(--mt-color-common-white);
}

.mt-primary-btn:hover:before,
.mt-primary-btn:hover:after {
  width: 100%;
}

.mt-primary-btn.primary-2 {
  background-color: rgb(241 7 7);
  color: #fff;
}

.mt-primary-btn.primary-2:hover {
  color: var(--mt-color-common-white);
}

.mt-primary-btn.primary-2:after,
.mt-primary-btn.primary-2:before {
  background-color: var(--mt-color-theme-primary);
}



#whatsappBtn {
  background-color: #19df61 !important;
}

#whatsappBtn:after,
#whatsappBtn:before {
  background-color: #2bce66 !important;
}

#whatsappBtn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin-right: 2px;
  flex-shrink: 0;
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  /* background-color: transparent; */
  background: #000;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media only screen and (max-width: 992px) {
  .header {
    position: inherit;
  }
}

.header .header-container {
  /* max-width: 1420px; */
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}

.header .primary-header-inner {
  background-color: var(--mt-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 50px;
  border-radius: 0 0 15px 15px;
}

@media (max-width: 1170px) {
  .header .primary-header-inner {
    padding: 20px 0;
  }
}

.header .primary-header-inner .header-logo img {
  max-width: 150px;
  /* background-color: #f6f3fc; */
}

@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 130px;
  }
}

@media (max-width: 1170px) {
  .header .primary-header-inner .header-logo img {
    max-width: 110px;
  }

  .header .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 2px !important;
  }
}

.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}

.header .primary-header-inner .header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu {
    display: none;
  }
}

.header .primary-header-inner .header-menu-wrap .sub-menu li {
  display: inline-block;
  position: relative;
  margin: 0 5px;
}

@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 10px;
  }
}

.header .primary-header-inner .header-menu-wrap .sub-menu li a {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-heading-primary);
  display: block;
  font-size: 14px;
  padding: 52px 0;
  letter-spacing: 0;
  font-weight: 500;
  /* text-transform: capitalize; */
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li a i {
  font-size: 13px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li a:before {
  content: "";
  background-color: rgb(241 7 7);
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 48px;
  transform: skewX(30deg);
  transition: all 0.4s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li ul {
  background-color: var(--mt-color-common-white);
  display: block;
  width: 185px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  /* left: -45px; */
  top: 132px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li:last-child ul {
  width: 150px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li:hover>ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children>ul:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 25px;
  border: 7px solid;
  border-color: transparent transparent #fff transparent;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:not(:last-of-type) {
  border-bottom: 1px dashed var(--mt-color-border-1);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:last-child {
  margin: 0;
  border-bottom: none;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover {
  background-color: rgb(241 7 7);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li.active {
  background-color: rgb(241 7 7);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li.active>a {
  color: #fff !important;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li a {
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--mt-color-common-black);
  font-weight: 500;
  font-size: 14px;
  padding: 4px 0;
  letter-spacing: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li a:hover {
  /* padding-left: 10px; */
  color: var(--mt-color-common-white);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
  /* padding-left: 10px; */
  color: var(--mt-color-common-white);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li a:before {
  display: none;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li:hover a:before {
  width: 100%;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li ul {
  top: 0;
  left: 100%;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover a {
  color: var(--mt-color-common-white);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover li a {
  color: var(--mt-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover li a:hover {
  color: var(--mt-color-common-white);
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children {
  position: relative;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
  padding-right: 0px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu li.active>a {
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-color: rgb(241 7 7);
  text-decoration-thickness: 2px;
  border-width: 0px 0px 10px 0px;
  color: #fff;
}

@media (max-width: 1170px) {
  .header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
    padding-right: 15px;
  }
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li {
  margin: 0;
  padding-left: 15px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li a {
  padding-right: 0;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  /* content: "+"; */
  color: var(--mt-color-heading-primary);
  position: absolute;
  top: 51%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:hover:before {
  color: var(--mt-color-theme-primary);
}

.header .primary-header-inner .header-right {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-logo img {
    width: 90px;
  }
}

.header .primary-header-inner .header-right .header-btn {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
  margin-left: 20px;
}

.header .primary-header-inner .header-right .header-btn:hover {
  color: var(--mt-color-heading-primary);
}

.header .primary-header-inner .header-right .header-btn:after,
.header .primary-header-inner .header-right .header-btn:before {
  background-color: var(--mt-color-theme-secondary);
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-btn {
    margin-left: 0;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-btn {
    display: none;
  }
}

.header .primary-header-inner .header-right .sidebar-trigger {
  background-color: var(--mt-color-heading-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 5px;
  padding: 8px 5px;
  margin-left: 18px;
  border-radius: 3px;
}

@media (max-width: 1170px) {
  .header .primary-header-inner .header-right .sidebar-trigger {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .sidebar-trigger {
    display: none;
  }
}

.header .primary-header-inner .header-right .sidebar-trigger span {
  background-color: var(--mt-color-common-white);
  width: 30px;
  height: 3px;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-right .sidebar-trigger span:nth-child(2) {
  width: 20px;
}

.header .primary-header-inner .header-right .sidebar-trigger span:nth-child(3) {
  width: 25px;
}

.header .primary-header-inner .header-right .sidebar-trigger:hover span:nth-child(2) {
  width: 25px;
}

.header .primary-header-inner .header-right .sidebar-trigger:hover span:nth-child(3) {
  width: 20px;
}

.header .primary-header-inner .header-right .header-right-item {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-right-item {
    line-height: 1;
  }
}

.header .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--mt-color-heading-primary);
  font-size: 30px;
}

.header .primary-header-inner .header-right .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right .header-right-item .search-icon {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }

  .header .primary-header-inner .header-right {
    width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}

.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--mt-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

.side-menu-wrapper .side-menu-close {
  background-color: var(--mt-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}

.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--mt-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}

.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--mt-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--mt-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}

.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--mt-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--mt-color-border-6);
}

.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}

.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.html), auto;
}

@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.sticky-header-wrap {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 99;
}

.sticky-header-wrap.fixed {
  display: block;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
}

.sticky-header-wrap .header {
  background-color: var(--mt-color-common-white);
  position: relative;
  top: 0;
}

.sticky-header-wrap .header .top-bar {
  display: none;
}

.header-2 .sticky-header-wrap .header {
  background-color: #171719;
}

@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--mt-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 60%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    z-index: 999;
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .mobile-side-menu .side-menu-head a img {
    max-width: 120px;
  }

  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 35px;
    right: 40px;

    background-color: rgb(241 7 7);
    color: var(--mt-color-common-white);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mt-color-border-1);
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: #000;
    color: #fff;
  }

  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }

  .mobile-side-menu p {
    color: var(--mt-color-common-white);
    margin-bottom: 50px;
  }

  .mobile-side-menu .list-header {
    color: var(--mt-color-common-white);
    font-family: var(--mt-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }

  .mobile-side-menu .side-menu-list li {
    font-family: var(--mt-ff-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--mt-color-heading-primary);
  }

  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--mt-color-heading-primary);
    margin-left: 10px;
    font-size: 14px;
  }

  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }

  .mobile-side-menu .side-menu-social ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
    list-style: none;
  }

  .mobile-side-menu .side-menu-social ul li a {
    background-color: var(--mt-color-theme-bg-dark-deep);
    color: var(--mt-color-theme-primary);
    font-size: 18px;
    width: 50px;
    padding: 15px 0;
    line-height: 1;
    text-align: center;
    border-radius: 2px;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
  }

  .mobile-side-menu .side-menu-social ul li a:hover {
    background-color: var(--mt-color-theme-primary);
    color: var(--mt-color-common-white);
  }

  .mobile-side-menu .mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }

  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }

  .mobile-side-menu .mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul {
    display: block !important;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li:not(:last-of-type) {
    margin-bottom: 11px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--mt-color-border-1);
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a {
    color: var(--mt-color-heading-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
    background-color: rgb(241 7 7);
    color: var(--mt-color-common-white);
    position: absolute;
    padding: 0;
    top: -3px;
    right: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before,
  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand:after {
    font-size: 14px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before {
    content: "+";
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
    background-color: #000;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:after {
    content: "-";
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:before {
    display: none;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li a.mean-expand i {
    display: none;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li ul {
    padding: 0 0 0 20px;
    margin-top: 20px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li ul li a {
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav>ul li ul li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }

  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.html), auto;
  }
}

#popup-search-box {
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap {
  width: 100%;
  height: 100%;
}

#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}

#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 30px 30px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid #666;
}

#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 20px;
}

#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 20px;
}

#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 20px;
}

#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 20px;
}

#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}

#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.html), auto;
}

#popup-search-box .box-inner-wrap button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #444;
  font-size: 50px;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap button:hover {
  color: #ddd;
}

#popup-search-box .box-inner-wrap button:focus {
  outline: none;
}

#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

.header-2 .header-container {
  /* max-width: 1440px; */
}

.header-2 .top-bar-inner,
.header-2 .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid var(--mt-color-border-2);
}

.header-2 .top-bar-inner .top-bar-list,
.header-2 .top-bar .top-bar-list {
  list-style: none;
}

@media only screen and (max-width: 767px) {

  .header-2 .top-bar-inner .top-bar-list,
  .header-2 .top-bar .top-bar-list {
    display: none;
  }
}

.header-2 .top-bar-inner .top-bar-list li,
.header-2 .top-bar .top-bar-list li {
  font-family: var(--mt-ff-body);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--mt-color-grey-3);
}

.header-2 .top-bar-inner .top-bar-list li:not(:last-of-type),
.header-2 .top-bar .top-bar-list li:not(:last-of-type) {
  margin-right: 20px;
}

@media only screen and (max-width: 992px) {

  .header-2 .top-bar-inner .top-bar-list li:not(:last-of-type),
  .header-2 .top-bar .top-bar-list li:not(:last-of-type) {
    margin-right: 30px;
  }
}

.header-2 .top-bar-inner .top-bar-list li i,
.header-2 .top-bar .top-bar-list li i {
  margin-top: -2px;
  margin-right: 10px;
}

.header-2 .top-bar-inner .top-btn-list,
.header-2 .top-bar .top-btn-list {
  list-style: none;
}

.header-2 .top-bar-inner .top-btn-list li,
.header-2 .top-bar .top-btn-list li {
  display: inline-flex;
}

.header-2 .top-bar-inner .top-btn-list li:not(:last-of-type),
.header-2 .top-bar .top-btn-list li:not(:last-of-type) {
  padding-right: 5px;
}

.header-2 .top-bar-inner .top-btn-list li:not(:last-of-type):after,
.header-2 .top-bar .top-btn-list li:not(:last-of-type):after {
  content: "/";
  color: var(--mt-color-grey-3);
  right: -5px;
}

.header-2 .top-bar-inner .top-btn-list li a,
.header-2 .top-bar .top-btn-list li a {
  font-family: var(--mt-ff-body);
  font-size: 14px;
  color: var(--mt-color-grey-3);
}

.header-2 .top-bar-inner .top-btn-list li a:hover,
.header-2 .top-bar .top-btn-list li a:hover {
  color: var(--mt-color-theme-primary);
}

.header-2 .primary-header-inner {
  background-color: transparent;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .header-2 .primary-header-inner {
    padding: 20px 0;
  }
}

.header-2 .primary-header-inner .header-menu-wrap .sub-menu li a {
  color: var(--mt-color-common-white);
  padding: 18px 0;
}

.header-2 .primary-header-inner .header-menu-wrap .sub-menu li a:hover {
  /* color: rgb(247, 7, 123); */
}

.header-2 .primary-header-inner .header-menu-wrap .sub-menu li a:before {
  bottom: 14px;
}

.header-2 .primary-header-inner .header-menu-wrap .sub-menu li ul {
  top: 60px;
}

.header-2 .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:after {
  color: var(--mt-color-common-white);
}

.header-2 .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children:hover:after {
  color: #fff;
}

.header-2 .primary-header-inner .header-right .sidebar-trigger {
  background-color: rgb(241 7 7);
}

.header-2 .primary-header-inner .header-right .sidebar-trigger span {
  background-color: var(--mt-color-common-white);
}

@media only screen and (max-width: 992px) {
  .header-2 .header-container {
    padding: 0;
  }

  .header-2 .top-bar {
    background-color: var(--mt-color-common-black);
    padding: 20px 15px;
    border-bottom: 1px solid #222;
  }

  .header-2 .primary-header-inner {
    background-color: var(--mt-color-common-black);
    padding: 20px 15px;
    border-radius: 0;
    padding-left: 4px;
  }

  .header-2 .primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
    color: var(--mt-color-common-white);
  }
}

.header-4 .top-bar {
  background-color: #f5f1fe;
  /* padding: 0 20px; */
  border-bottom: none;
}

.header-4 .top-bar .top-bar-inner {
  border-bottom: 0;
}

.header-4 .top-bar .top-bar-inner .top-bar-list li {
  color: var(--mt-color-common-black);
}

.header-4 .top-bar .top-bar-inner .top-btn-list li:after {
  color: var(--mt-color-common-black);
}

.header-4 .top-bar .top-bar-inner .top-btn-list li a {
  color: var(--mt-color-common-black);
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--mt-color-common-white);
  border-left: 1px solid #eee;
  padding: 47px 30px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: scroll;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 50px;
  color: var(--grey-color);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(241 7 7);
  color: #fff;
  border: 1px solid var(--mt-color-border-1);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.sidebar-trigger.close:hover {
  box-shadow: 0 0 2px 0 rgba(247, 7, 123, 0.5);
  transition: 0.5s;
  background-color: #000;
  color: #fff;
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 200px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

@media (max-width: 767px) {
  .sidebar-area {
    width: 350px;
    padding: 60px 30px;
  }

  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }

  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
}

.side-menu-about {
  margin: 28px 0 28px 0;
}

.side-menu-about p {
  text-align: justify;
  margin-top: 0;
  margin-bottom: 25px;
}

.side-menu-header h3 {
  font-size: 22px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 10px;
}

.side-menu-list {
  margin-top: 15px;
}

.side-menu-list li {
  display: flex;
  /* align-items: center; */
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: rgb(241 7 7);
  font-size: 12px;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  /* border: 1px solid #dadddc; */
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
  background-color: #000;
  color: #fff;
}

.side-menu-list li p {
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  font-size: 16px;
  color: var(--mt-color-text-body);
  padding-left: 10px;
}

.side-menu-list li a:hover {
  color: rgb(241 7 7);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}

.side-menu-social li {
  display: inline-flex;
}

.side-menu-social li:not(:last-of-type) {
  margin-right: 10px;
}

.side-menu-social li a {
  background-color: transparent;
  font-size: 17px;
  color: var(--mt-color-heading-primary);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mt-color-border-1);
}

.side-menu-social li a:hover {
  background-color: rgb(241 7 7);
  color: var(--mt-color-common-white);
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.hero-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 930px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 130px;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .hero-section {
    height: auto;
    padding-top: 0;
    padding: 80px 0 60px 0;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section {
    padding: 60px 0;
  }
}

.hero-content.section-heading {
  margin-bottom: 0;
}

.hero-content .section-title {
  font-size: 50px;
  margin-bottom: 15px;
}

@media (max-width: 1170px) {
  .hero-content .section-title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .hero-content .section-title {
    max-width: 500px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content .section-title {
    font-size: 30px;
  }
}

.hero-content .section-title span {
  position: relative;
  display: inline-block;
}

.hero-content .section-title span:after {
  background-color: var(--mt-color-theme-primary);
  content: "";
  width: 45%;
  height: 3px;
  position: absolute;
  bottom: 9px;
  left: 4px;
}

@media only screen and (max-width: 767px) {
  .hero-content .section-title span:after {
    bottom: 5px;
  }
}

.hero-content .section-title span:before {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  width: 55%;
  height: 3px;
  position: absolute;
  bottom: 9px;
  right: 3px;
}

@media only screen and (max-width: 767px) {
  .hero-content .section-title span:before {
    bottom: 5px;
  }
}

.hero-content p {
  margin-top: 35px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 992px) {
  .hero-content p {
    max-width: 500px;
    width: 100%;
  }
}

.hero-img-wrap {
  width: 860px;
  height: 675px;
  position: absolute;
  left: 50%;
  top: calc(50% + 65px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1700px) {
  .hero-img-wrap {
    width: 760px;
    top: calc(50% + 100px);
  }
}

@media (max-width: 1600px) {
  .hero-img-wrap {
    width: 650px;
    top: calc(50% + 150px);
  }
}

@media (max-width: 1399px) {
  .hero-img-wrap {
    width: 580px;
    top: calc(50% + 170px);
  }
}

@media (max-width: 1170px) {
  .hero-img-wrap {
    width: 480px;
    top: calc(50% + 200px);
  }
}

@media only screen and (max-width: 992px) {
  .hero-img-wrap {
    position: relative;
    width: 90%;
    transform: inherit;
    margin-top: 40px;
    left: 0;
    height: 580px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-img-wrap {
    height: 292px;
  }
}

.hero-img-wrap .hero-shape {
  width: 350px;
  height: 320px;
  position: absolute;
  top: 0;
  right: 20%;
  object-fit: contain;
  object-position: center;
  z-index: -1;
}

@media (max-width: 1170px) {
  .hero-img-wrap .hero-shape {
    width: 175px;
    top: -80px;
    right: 24%;
  }
}

.hero-img-wrap .hero-circle {
  width: 330px;
  height: 330px;
  position: absolute;
  bottom: -60px;
  left: 60px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1700px) {
  .hero-img-wrap .hero-circle {
    bottom: -15px;
    left: 35px;
  }
}

@media (max-width: 1600px) {
  .hero-img-wrap .hero-circle {
    bottom: 40px;
    left: 9px;
  }
}

@media (max-width: 1399px) {
  .hero-img-wrap .hero-circle {
    bottom: 100px;
    left: -11px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-img-wrap .hero-circle {
    display: none;
  }
}

.hero-img-wrap .hero-img-inner img {
  width: 100%;
}

.hero-box {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 30px;
}

.hero-box img {
  height: 65px;
  width: 100px;
}

.hero-box ul {
  list-style: none;
}

.hero-box ul li {
  color: var(--mt-color-text-body);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.hero-box ul li:not(:last-of-type) {
  margin-bottom: 12px;
}

.hero-box ul li i {
  color: var(--mt-color-theme-primary);
  font-size: 16px;
  margin-right: 7px;
}

.hero-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.hero-btn-wrap .video-btn a {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.hero-btn-wrap .video-btn a .play-btn {
  background-color: var(--mt-color-heading-primary);
  height: 55px;
  width: 55px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-btn-wrap .video-btn a .play-btn:hover {
  background-color: var(--mt-color-theme-primary);
}

.hero-btn-wrap .video-btn a .play-btn img {
  position: absolute;
  width: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-btn-wrap .video-btn a span {
  font-family: var(--mt-ff-body);
  font-size: 18px;
  color: #222;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-btn-wrap .video-btn a span:hover {
  /* color: rgb(241 7 7); */
}

.mt-primary-btn {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
}

.mt-primary-btn:hover {
  color: var(--mt-color-common-white);
}

.hero-shape {
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .hero-shape {
    display: none;
  }
}

.hero-shape.shape-1 {
  top: 13%;
  left: 3%;
  animation: hero-anim 2s infinite linear alternate-reverse;
}

@media only screen and (max-width: 992px) {
  .hero-shape.shape-1 {
    display: none;
  }
}

.hero-shape.shape-2 {
  top: 10%;
  right: 3%;
  animation: hero-anim-2 2s infinite linear alternate-reverse;
}

.hero-shape.shape-3 {
  bottom: 10%;
  right: 5%;
  animation: hero-anim-3 2s infinite linear alternate-reverse;
}

@-webkit-keyframes hero-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@-moz-keyframes hero-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@-ms-keyframes hero-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@keyframes hero-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@-webkit-keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@-moz-keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@-ms-keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@-webkit-keyframes hero-anim-3 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@-moz-keyframes hero-anim-3 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@-ms-keyframes hero-anim-3 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@keyframes hero-anim-3 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

.hero-section-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 820px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .hero-section-2 {
    height: auto;
  }
}

.hero-section-2 .custom-container {
  max-width: 1440px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.hero-section-2 .overlay {
  background-color: rgba(37, 37, 45, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content.content-2 {
  position: relative;
  display: inline-block;
  padding-top: 175px;
}

@media only screen and (max-width: 992px) {
  .hero-content.content-2 {
    padding: 100px 0 100px 0;
  }
}

@media (max-width: 1700px) {
  .hero-content.content-2 {
    padding-left: 150px;
  }
}

@media only screen and (max-width: 992px) {
  .hero-content.content-2 {
    padding-left: 0;
  }
}

.hero-content.content-2 .shape {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 120px;
  height: 105px;
  position: absolute;
  top: 0;
  left: 50%;
}

@media only screen and (max-width: 992px) {
  .hero-content.content-2 .shape {
    display: none;
  }
}

.hero-content.content-2 .hero-sub-title {
  font-family: var(--mt-ff-body);
  font-style: italic;
  color: var(--mt-color-theme-secondary);
  font-size: 22px;
  font-weight: 700;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-content.content-2 .hero-sub-title:before {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 2px;
}

.hero-content.content-2 .hero-sub-title span {
  /* color: var(--mt-color-common-white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mt-color-common-white);
  text-transform: uppercase; */
}

.hero-content.content-2 .title {
  /* color: var(--mt-color-common-white); */
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 600px;
  width: 100%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
  .hero-content.content-2 .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content.content-2 .title {
    font-size: 32px;
  }
}

.hero-content.content-2 .title span {
  color: var(--mt-color-theme-primary);
  text-decoration: underline;
}

.hero-content.content-2 p {
  /* color: var(--mt-color-common-white); */
  max-width: 450px;
  width: 100%;
  margin-bottom: 45px;
}

.hero-content.content-2 .btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.hero-content.content-2 .btn-wrap .mt-primary-btn {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
}

.hero-content.content-2 .btn-wrap .mt-primary-btn:before,
.hero-content.content-2 .btn-wrap .mt-primary-btn:after {
  background-color: var(--mt-color-common-white);
}

.hero-content.content-2 .btn-wrap .mt-primary-btn.active {
  background-color: var(--mt-color-common-white);
}

.hero-content.content-2 .btn-wrap .mt-primary-btn.active:before,
.hero-content.content-2 .btn-wrap .mt-primary-btn.active:after {
  background-color: var(--mt-color-theme-secondary);
}

.hero-social {
  position: absolute;
  bottom: 260px;
  left: 60px;
}

@media only screen and (max-width: 992px) {
  .hero-social {
    display: none;
  }
}

.hero-social .social-list {
  list-style: none;
}

.hero-social .social-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.hero-social .social-list li a {
  color: #aaaaaa;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #aaaaaa;
}

.hero-social .social-list li a:hover {
  background-color: var(--mt-color-theme-primary);
  border: 1px solid var(--mt-color-theme-primary);
}

.hero-social .follow {
  /* color: var(--mt-color-common-white); */
  font-family: var(--mt-ff-body);
  font-size: 22px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  margin: 30px 0 0 8px;
}

.hero-3 {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .hero-3 {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-3 {
    padding-bottom: 0;
  }
}

.hero-3 .bg-img {
  background: #f6f3fc;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 941px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .hero-3 .bg-img {
    height: 1150px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-3 .bg-img {
    height: 800px;
  }
}

.hero-3 .bg-color {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.hero-3 .hero-img {
  max-width: 630px;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .hero-3 .hero-img {
    margin: 0 auto;
    max-width: 550px;
  }
}

.hero-3 .hero-img img {
  width: 100%;
}

.hero-3 .hero-content {
  padding-top: 125px;
}

@media (max-width: 1700px) {
  .hero-3 .hero-content {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .hero-3 .hero-content {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-3 .hero-content {
    padding-bottom: 0;
  }
}

.hero-3 .hero-content .shape {
  left: auto;
  right: -150px;
}

@media (max-width: 1700px) {
  .hero-3 .hero-content .shape {
    right: 0;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .shape {
    top: -50px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .hero-3 .hero-content .title {
    font-size: 32px;
  }
}

.hero-3 .hero-content p {
  margin-bottom: 35px;
}

.hero-3 .hero-content .number-box {
  display: grid;
  align-items: center;
  grid-template-columns: 55px 1fr;
  grid-gap: 10px;
}

.hero-3 .hero-content .number-box .icon {
  background-color: #e5d5d5;
  color: var(--mt-color-theme-primary);
  font-size: 18px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3 .hero-content .number-box .numbers a {
  font-family: var(--mt-ff-body);
  /* color: var(--mt-color-common-white); */
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.hero-3 .hero-content .number-box .numbers a:hover {
  color: var(--mt-color-theme-secondary);
}

.hero-3 .hero-content .number-box .numbers a:not(:last-of-type) {
  margin-bottom: 3px;
}

.hero-3 .hero-content .hero-social {
  position: inherit;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 30px;
  margin-top: 35px;
}

.hero-3 .hero-content .hero-social ul {
  display: flex;
  align-items: center;
}

.hero-3 .hero-content .hero-social ul li:not(:last-of-type) {
  margin-bottom: 0;
  margin-right: 10px;
}

.hero-3 .hero-content .hero-social ul li a {
  border: 1px solid #000;
  color: #000;
}

.hero-3 .hero-content .hero-social ul li a:hover {
  background-color: var(--mt-color-common-white);
  color: var(--mt-color-theme-primary);
}

.hero-3 .hero-content .hero-social .follow {
  writing-mode: inherit;
  text-orientation: inherit;
  transform: rotate(0);
  margin: 0;
}

.hero-4 {
  padding-top: 110px;
  /* padding-bottom: 50px; */
}

@media only screen and (max-width: 992px) {
  .hero-4 {
    padding: 33px 0;
  }
}

.hero-4 .hero-content .title {
  color: var(--mt-color-common-white);
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .hero-4 .hero-content .title {
    font-size: 30px;
  }
}

.hero-4 .hero-content p {
  color: var(--mt-color-common-white);
}

.hero-4 .hero-content .hero-btn-wrap .video-btn .play-btn {
  background-color: var(--mt-color-common-white);
  height: 60px;
  width: 60px;
}

.hero-4 .hero-content .hero-btn-wrap .video-btn .play-btn img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-4 .hero-content .hero-btn-wrap .video-btn .play-btn:hover {
  background-color: rgb(241 7 7);
}

.hero-4 .hero-content .hero-btn-wrap .video-btn .play-btn:hover img {
  filter: brightness(0) invert(1);
}

.hero-4 .hero-content .hero-btn-wrap span {
  color: var(--mt-color-common-white);
}

.hero-4 .hero-img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1px dashed var(--mt-color-theme-secondary);
  /* padding: 10px; */
  /* width: 675px; */
}

.hero-4 .hero-img img {
  /* width: 100%; */
}

@media (max-width: 1399px) {
  .hero-4 .hero-img {
    width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .hero-4 .hero-img {
    margin-top: 50px;
  }
}

.hero-4 .hero-img .elements .circle {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero-4 .hero-img .elements .circle.circle-2 {
  bottom: auto;
  top: 0;
  left: auto;
  right: 0;
}

.hero-4 .hero-img .elements .element {
  position: absolute;
  top: 60px;
  left: -50px;
}

@media only screen and (max-width: 992px) {
  .hero-4 .hero-img .elements .element {
    left: 0;
  }
}

.hero-4 .hero-img .elements .element.about-counter-wrap {
  margin: 0;
}

.hero-4 .hero-img .elements .element.hero-count-img {
  top: auto;
  left: auto;
  bottom: 20px;
  right: 50px;
  animation: hero-anim-2 2s infinite linear alternate-reverse;
}

.ripple-2,
.ripple-2:before,
.ripple-2:after {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 55px;
  height: 55px;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(49, 34, 34, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(49, 34, 34, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(49, 34, 34, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(49, 34, 34, 0.5);
  box-shadow: 0 0 0 0 rgba(49, 34, 34, 0.5);
  -webkit-animation: rippleTwo 3s infinite;
  -moz-animation: rippleTwo 3s infinite;
  -ms-animation: rippleTwo 3s infinite;
  -o-animation: rippleTwo 3s infinite;
  animation: rippleTwo 3s infinite;
}

.ripple-2 {
  z-index: -1;
}

.ripple-2:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple-2:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleTwo {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleTwo {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.sponsor-item {
  text-align: center;
}

.sponsor-item img {
  max-width: 180px;
  height: auto;
}

@media only screen and (max-width: 992px) {
  .sponsor-item {
    text-align: center;
  }
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.about-section {
  overflow: hidden;
}

.about-content {
  padding-top: 86px;
  padding-left: 15px;
}

@media only screen and (max-width: 992px) {
  .about-content {
    padding-top: 30px;
  }
}

.about-content .section-heading {
  margin-bottom: 0px;
}

.about-content .section-heading .section-title {
  margin-bottom: 15px;
}

.about-content .section-heading p {
  /* max-width: 480px; */
  width: 100%;
}

.about-content.about-page {
  padding-top: 0;
}

.about-img {
  padding-right: 15px;
  position: relative;
  z-index: 1;
}

.about-img:before {
  background-color: #edebf9;
  content: "";
  height: 1px;
  width: 3000px;
  position: absolute;
  left: 0;
  top: 0.5px;
  z-index: -1;
}

.about-img img {
  width: 100%;
}

.about-tab {
  display: block;
  border: 1px solid #ddd;
  margin-bottom: 40px;
}

.about-tab .nav-tabs {
  margin: -1px 0 20px -1px;
  border: none;
}

.about-tab .nav-tabs .nav-link {
  font-family: var(--mt-ff-heading);
  background-color: var(--mt-color-grey-2);
  color: var(--mt-color-text-body);
  font-size: 20px;
  font-weight: 600;
  padding: 5px 20px;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #e9e3e3;
}

.about-tab .nav-tabs .nav-link:hover {
  background-color: #f1f5f7;
}

@media only screen and (max-width: 767px) {
  .about-tab .nav-tabs .nav-link {
    padding: 5px 10px;
  }
}

.about-tab .nav-tabs .nav-link.active {
  background-color: rgb(241, 7, 7);
  color: var(--mt-color-common-white);
}

.about-tab .tab-content {
  padding: 0 15px 15px;
}

.about-tab .tab-content p {
  font-size: 16px;
  width: 100%;
}

.about-tab .tab-content .about-list li {
  font-size: 16px;
  display: flex;
  column-gap: 10px;
}

.about-tab .tab-content .about-list li:not(:last-of-type) {
  margin-right: 30px;
}

.about-tab .tab-content .about-list li i {
  margin-top: 5px;
  font-size: 16px;
  color: rgb(241, 7, 7);
}

.about-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 70px;
}

.about-author .author-info {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.about-author .author-info .author-img {
  position: relative;
  padding: 5px;
  z-index: 1;
}

.about-author .author-info .author-img img {
  width: 70px;
  height: 70px;
}

.about-author .author-info .author-img:before {
  background-color: var(--mt-color-theme-primary);
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-author .author-info .author-img:after {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.about-author .author-info .name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.about-author .author-info .name span {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.about-section-2 {
  position: relative;
  overflow: hidden;
}

.about-section-2 .section-heading .section-title {
  margin-bottom: 15px;
}

.about-items .about-item {
  display: flex;
  align-items: center;
}

.about-items .about-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.about-items .about-item .about-icon {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
  font-size: 40px;
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.about-items .about-item .about-item-content {
  margin-left: 30px;
}

.about-items .about-item .about-item-content .title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
  .about-items .about-item .about-item-content .title {
    font-size: 17px;
  }
}

.about-items .about-item .about-item-content .title span {
  color: var(--mt-color-theme-secondary);
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}

@media only screen and (max-width: 767px) {
  .about-items .about-item .about-item-content .title span {
    font-size: 14px;
  }
}

.about-items .about-item .about-item-content p {
  margin-bottom: 0;
  max-width: 310px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .about-items .about-item .about-item-content p {
    font-size: 13px;
  }
}

.about-items .about-item:nth-child(2) {
  position: relative;
  padding-left: 100px;
}

@media only screen and (max-width: 767px) {
  .about-items .about-item:nth-child(2) {
    padding-left: 0;
  }
}

.about-items .about-item:nth-child(2) .top-shape {
  position: absolute;
  width: inherit;
  height: inherit;
  left: 35px;
  top: -20px;
}

.about-items .about-item:nth-child(2) .top-shape.shape-2 {
  top: auto;
  bottom: -20px;
  left: 25px;
}

.about-items .about-item:nth-child(2) .about-icon {
  color: var(--mt-color-common-white);
}

.about-items .about-item.item-2 {
  padding-left: 0;
}

.about-img-wrap {
  mask-size: 100%;
  height: 660px;
  width: 885px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 992px) {
  .about-img-wrap {
    height: auto;
    width: 100%;
    margin-top: 30px;
    position: inherit;
    left: 0;
    transform: translateY(0);
  }
}

.about-section-3 {
  background-color: #171719;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 115px;
}

@media only screen and (max-width: 992px) {
  .about-section-3 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-3 {
    padding-bottom: 50px;
  }
}

.about-section-3 .bg-shape {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  width: 850px;
  height: 830px;
  position: absolute;
  bottom: -50%;
  right: -150px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-section-3 .bg-shape {
    right: -240px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-3 .bg-shape {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .about-info-2 {
    margin-bottom: 40px;
  }
}

.about-info-2 .section-heading {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--mt-color-border-2);
}

.about-info-2 .section-heading .section-title {
  color: var(--mt-color-common-white);
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .about-info-2 .section-heading .section-title {
    max-width: 500px;
    width: 100%;
  }
}

.about-info-2 .section-heading p {
  color: var(--mt-color-common-white);
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .about-info-2 .section-heading p {
    max-width: 500px;
    width: 100%;
  }
}

.about-info-2 .about-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-bottom: 30px;
}

.about-info-2 .about-list li {
  font-family: var(--mt-ff-body);
  font-size: 15px;
  color: var(--mt-color-common-white);
  font-weight: 400;
  line-height: 1;
}

.about-info-2 .about-list li i {
  color: var(--mt-color-theme-secondary);
  font-size: 13px;
  margin-right: 10px;
}

.about-info-2 .about-list li:not(:last-of-type) {
  margin-right: 25px;
}

.about-info-2 .about-list li:nth-child(2) i {
  color: var(--mt-color-theme-primary);
}

.about-info-2 .about-list li:nth-child(3) i {
  color: var(--mt-color-common-pink);
}

.about-info-2 .about-list li:nth-child(4) i {
  color: var(--mt-color-common-green);
}

.about-info-2 .about-list li:nth-child(5) i {
  color: #d98fff;
}

.about-info-2 .btn-content {
  font-family: var(--mt-ff-body);
  font-size: 15px;
  color: var(--mt-color-common-white);
  font-weight: 400;
  line-height: 1;
  display: block;
  line-height: 1;
  margin-bottom: 30px;
}

.about-info-2 .btn-content i {
  color: var(--mt-color-theme-secondary);
  font-size: 12px;
  margin-right: 5px;
}

.about-info-2 .btn-content a {
  color: var(--mt-color-theme-primary);
  font-size: 16px;
  font-weight: 600;
  margin-left: 5px;
  text-decoration: underline;
}

.about-info-2 .btn-content a:hover {
  color: var(--mt-color-theme-secondary);
}

@media only screen and (max-width: 767px) {
  .about-info-2 .btn-content a {
    display: block;
    margin-top: 10px;
  }
}

.about-info-2 .skills-item .title-wrap .title {
  color: var(--mt-color-common-white);
}

.about-info-2 .skills-item .title-wrap .progress-count {
  color: var(--mt-color-theme-secondary);
}

.about-info-2 .skills-item .title-wrap .progress-count:before {
  background-color: var(--mt-color-common-white);
}

.about-info-2 .skills-item .progress {
  width: 70%;
}

.about-info-2 .mt-primary-btn {
  margin-top: 40px;
}

@media only screen and (max-width: 992px) {
  .about-info-2 .mt-primary-btn {
    margin-top: 20px;
  }
}

.about-counter-wrap {
  background-color: var(--mt-color-common-white);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  margin-left: 5px;
  animation: hero-anim 2s infinite linear alternate-reverse;
}

.about-counter-wrap i {
  color: var(--mt-color-theme-secondary);
  font-size: 40px;
}

.about-counter-wrap .about-counter .title {
  font-family: var(--mt-ff-heading);
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

.about-counter-wrap .about-counter .title .odometer-auto-theme {
  font-family: inherit;
}

.about-counter-wrap .about-counter .title .odometer-formatting-mark {
  display: none;
}

.about-counter-wrap .about-counter .project {
  display: block;
  font-size: 16px;
  font-family: var(--mt-ff-body);
  font-weight: 500;
  color: var(--mt-color-text-body);
}

.about-img-2 {
  position: relative;
  text-align: right;
  max-width: 470px;
  width: 100%;
  margin-left: auto;
}

@media only screen and (max-width: 992px) {
  .about-img-2 {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .about-img-2 {
    margin-bottom: 0;
  }
}

.about-img-2 .main {
  width: 100%;
}

.about-img-2 .about-items .shape {
  position: absolute;
}

.about-img-2 .about-items .shape.shape-1 {
  top: -41.5px;
  right: -30px;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .about-img-2 .about-items .shape.shape-1 {
    top: 0;
    right: 0;
  }
}

.about-img-2 .about-items .shape.shape-2 {
  bottom: -110px;
  right: -110px;
}

@media only screen and (max-width: 992px) {
  .about-img-2 .about-items .shape.shape-2 {
    width: 30%;
    bottom: -70px;
    right: -70px;
  }
}

@media only screen and (max-width: 767px) {
  .about-img-2 .about-items .shape.shape-2 {
    display: none;
  }
}

.about-img-2 .about-items .shape.expression {
  background-color: var(--mt-color-theme-primary);
  height: 180px;
  width: 180px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 10px solid var(--mt-color-common-white);
  bottom: -50px;
  left: -80px;
}

@media only screen and (max-width: 767px) {
  .about-img-2 .about-items .shape.expression {
    bottom: 0;
    left: 0;
    height: 150px;
    width: 150px;
  }
}

.about-img-2 .about-items .shape.expression .title {
  font-family: var(--mt-ff-heading);
  color: #ffc226;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.about-img-2 .about-items .shape.expression .title .odometer-auto-theme {
  font-family: inherit;
}

@media only screen and (max-width: 767px) {
  .about-img-2 .about-items .shape.expression .title {
    font-size: 32px;
  }
}

.about-img-2 .about-items .shape.expression .challange {
  font-family: var(--mt-ff-body);
  font-size: 20px;
  color: var(--mt-color-common-white);
  display: block;
  font-weight: 700;
  max-width: 200px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .about-img-2 .about-items .shape.expression .challange {
    font-size: 15px;
    line-height: 1.2;
  }
}

.about-4 {
  position: relative;
  z-index: 5;
  overflow: visible;
  padding-bottom: 200px;
}

.about-4 .about-wrap {
  margin-bottom: 120px;
}

@media only screen and (max-width: 992px) {
  .about-4 .about-wrap {
    margin-bottom: 0;
  }
}

.about-4 .custom-container {
  max-width: 1415px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.about-4 .cta-content-wrap {
  max-width: 1185px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 130px 30px 40px;
  margin-bottom: -385px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1170px) {
  .about-4 .cta-content-wrap {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .about-4 .cta-content-wrap {
    padding: 50px 0;
    margin-top: 0;
  }
}

@media only screen and (max-width: 992px) {
  .about-4 .about-info-2 {
    margin-top: 30px;
  }
}

.about-mask-wrap {
  position: relative;
}

.about-mask-wrap .mask-img {
  background-color: #017acd;
  -webkit-mask-image: url(../img/images/img-mask-3.png);
  mask-image: url(../img/images/img-mask-3.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: 100%;
  width: 650px;
  height: 835px;
}

@media (max-width: 1399px) {
  .about-mask-wrap .mask-img {
    width: 550px;
    height: 675px;
  }
}

@media (max-width: 1170px) {
  .about-mask-wrap .mask-img {
    width: 480px;
    height: 575px;
  }
}

@media only screen and (max-width: 992px) {
  .about-mask-wrap .mask-img {
    width: 100%;
    height: 920px;
  }
}

@media only screen and (max-width: 767px) {
  .about-mask-wrap .mask-img {
    height: 355px;
  }
}

.about-mask-wrap .mask-img .mask-inner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30px;
  width: 1050px;
  height: 707px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1170px) {
  .about-mask-wrap .mask-img .mask-inner {
    background-position: center 120px;
  }
}

@media only screen and (max-width: 992px) {
  .about-mask-wrap .mask-img .mask-inner {
    width: 100%;
    height: 100%;
  }
}

.about-mask-wrap .about-counter-wrap {
  position: absolute;
  top: 140px;
  right: -25px;
  transform: rotate(-90deg);
  z-index: 1;
  margin-bottom: 0;
  animation: inherit;
}

@media (max-width: 1170px) {
  .about-mask-wrap .about-counter-wrap {
    right: -115px;
  }
}

@media only screen and (max-width: 992px) {
  .about-5 .about-content {
    padding: 0;
  }
}

@media only screen and (max-width: 992px) {
  .about-5 .about-content .section-heading .section-title {
    max-width: 500px;
  }
}

.about-thumb-wrap {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .about-thumb-wrap {
    margin-bottom: 40px;
  }
}

.about-thumb-wrap .about-thumb-mask {
  background-color: #000;
  -webkit-mask-image: url(../img/images/img-mask-4.png);
  mask-image: url(../img/images/img-mask-4.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 648px;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .about-thumb-wrap .about-thumb-mask {
    height: 900px;
  }
}

@media only screen and (max-width: 767px) {
  .about-thumb-wrap .about-thumb-mask {
    height: 500px;
  }
}

.about-thumb-wrap .about-thumb-mask img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: -120px;
}

.about-thumb-wrap .shape-bg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 435px;
  height: 590px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .about-thumb-wrap .shape-bg {
    height: 500px;
  }
}

.about-thumb-wrap .shape-dot {
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  z-index: -1;
}

.choose-us .custom-container {
  max-width: 1415px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.choose-us .about-thumb {
  height: 100%;
  padding-right: 10px;
}

@media only screen and (max-width: 992px) {
  .choose-us .about-thumb {
    padding-right: 0;
    height: auto;
    margin-bottom: 30px;
  }
}

.choose-us .about-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.choose-us .about-info {
  padding-left: 10px;
}

@media only screen and (max-width: 992px) {
  .choose-us .about-info {
    padding-left: 0;
  }
}

.choose-us .about-info .section-heading .section-title {
  max-width: 600px;
  width: 100%;
}

.choose-us .about-info .section-heading p {
  max-width: 500px;
  width: 100%;
}

.about-container {
  max-width: 1435px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.about-img-2.about-page {
  text-align: left;
  margin-left: 75px;
}

@media only screen and (max-width: 992px) {
  .about-img-2.about-page {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .about-img-2.about-page {
    margin-left: 0;
  }
}

@media only screen and (max-width: 992px) {
  .about-img-2.about-page .about-items .expression {
    left: auto;
    right: -50px;
    bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .about-img-2.about-page .about-items .expression {
    right: auto;
    left: 0;
    bottom: 50px;
  }
}

.about-img-2.about-page .about-items .shape-1 {
  top: 91.5px;
}

.about-img-2.about-page .about-items .shape-2 {
  bottom: 0px;
  right: -130px;
}

@media only screen and (max-width: 992px) {
  .about-img-2.about-page .about-items .shape-2 {
    display: none;
  }
}

.about-img-2.about-page .about-items .shape-2 .about-counter-wrap {
  border: 1px solid var(--mt-color-border-1);
}

.about-img-2.about-page .about-items .shape-3 {
  left: -75px;
}

@media only screen and (max-width: 992px) {
  .about-img-2.about-page .about-items .shape-3 {
    top: 10%;
    left: -120px;
  }
}

@media only screen and (max-width: 767px) {
  .about-img-2.about-page .about-items .shape-3 {
    display: none;
  }
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.counter-section {
  position: relative;
  z-index: 1;
}

.counter-section .bg-color {
  background-color: var(--mt-color-grey-1);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .counter-section .bg-color {
    display: none;
  }
}

.cta-icon {
  color: var(--mt-color-theme-primary);
}

.counter-item {
  background-color: var(--mt-color-common-white);
  text-align: center;
  padding: 20px 0;
  box-shadow: 0px 0px 117px 0px rgba(196, 206, 213, 0.24);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background: rgb(255, 241, 229);
}

@media only screen and (max-width: 992px) {
  .counter-item {
    padding: 50px 20px;
  }
}

.counter-item .shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -82px;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (max-width: 992px) {
  .counter-item .shape {
    top: -50px;
  }
}

.counter-item .counter-icon {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
  font-size: 30px;
  height: 70px;
  width: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  border: 5px solid transparent;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.counter-item .counter-icon img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 35px;
}

.counter-item .title {
  font-family: var(--mt-ff-heading);
  font-size: 25px;
  /* font-weight: 700; */
  color: rgb(247, 7, 123);
  margin-bottom: 5px;
  letter-spacing: -2px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 992px) {
  .counter-item .title {
    font-size: 35px;
  }
}

.counter-item .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
  margin-bottom: 4px;
}

.counter-item p {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .counter-item p {
    font-size: 14px;
  }
}

.counter-item:hover {
  background-color: #11233e;
}

.counter-item:hover .shape {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition-delay: 0.2s;
}

.counter-item:hover .counter-icon {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
  border: 5px solid var(--mt-color-common-white);
}

.counter-item:hover .counter-icon img {
  filter: brightness(0) invert(1);
}

.counter-item:hover p,
.counter-item:hover .title {
  color: var(--mt-color-common-white);
}

.counter-2 {
  padding: 80px 0 80px 0;
}

@media only screen and (max-width: 992px) {
  .counter-2 {
    padding-bottom: 0;
  }
}

.counter-2 .section-heading {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #323539;
}

.counter-2 .section-heading .section-title {
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .counter-2 .section-heading .section-title {
    max-width: 500px;
    width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .counter-2 .section-heading p {
    max-width: 500px;
    width: 100%;
  }
}

.counter-2 .counter-item:hover .counter-icon img {
  filter: brightness(0) invert(0);
}

.counter-info .counter-list {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
  list-style: none;
}

.counter-info .counter-list li {
  font-size: 16px;
  color: var(--mt-color-common-white);
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.counter-info .counter-list li i {
  color: var(--mt-color-theme-primary);
}

.counter-info .counter-author {
  background-color: var(--mt-color-common-white);
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  padding: 5px 15px 5px 8px;
  border-radius: 30px;
  margin: 30px 0;
}

.counter-info .counter-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.counter-info .counter-author .name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.counter-info .counter-author .name span {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  font-size: 16px;
  font-weight: 400;
  margin-left: 5px;
}

.counter-info .hero-btn-wrap .video-btn .play-btn {
  background-color: var(--mt-color-common-white);
  width: 60px;
  height: 60px;
}

.counter-info .hero-btn-wrap .video-btn .play-btn img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.counter-info .hero-btn-wrap .video-btn .play-btn:hover img {
  filter: brightness(0) invert(1);
}

.counter-info .hero-btn-wrap .video-btn span {
  color: var(--mt-color-common-white);
}

.counter-info .white-content p {
  margin-bottom: 0;
}

.counter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .counter-wrap {
    padding: 50px 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .counter-wrap {
    grid-template-columns: 1fr;
    padding: 50px 50px 0;
  }
}

.counter-wrap .bg-img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.counter-wrap .counter-item {
  border-radius: 50%;
}

.counter-wrap .counter-item:hover {
  background-color: var(--mt-color-theme-primary);
}

.counter-wrap .counter-item:hover .counter-icon {
  background-color: #fff;
  border: none;
}

.counter-wrap .counter-item:hover .counter-icon i {
  color: var(--mt-color-theme-primary);
}

.team-counter .counter-item:hover .counter-icon img {
  filter: inherit;
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.service-item {
  background-color: var(--mt-color-common-white);
  padding: 50px 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 50px;
}

.bgor {
  background: #fee4d3;
}

.bgor .title {
  background: linear-gradient(100deg, #ee2c3c 14.58%, #f7032e 32.1%, #6a11b0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-item .shape {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 55px;
  right: -40px;
  z-index: -1;
}

.service-item .shape svg {
  fill: #ddd;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}

.service-item:after,
.service-item:before {
  background-color: var(--mt-color-theme-primary);
  content: "";
  height: 90px;
  width: 80px;
  position: absolute;
  bottom: -70px;
  right: -50px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-137deg);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-item:after {
  right: auto;
  left: -50px;
  transform: rotate(137deg);
}

.service-item .service-icon {
  color: var(--mt-color-heading-primary);
  font-size: 30px;
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 2px dashed transparent;
  position: relative;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-item .service-icon i {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-item .service-icon:before {
  background-color: var(--mt-color-theme-primary);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-item .title {
  font-weight: 700;
  margin-bottom: 20px;
}

.service-item .title a:hover {
  color: var(--mt-color-theme-primary);
}

.service-item .read-more {
  background-color: var(--mt-color-grey-2);
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  display: inline-block;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  padding: 5px 10px 4px;
  margin-top: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-item .read-more:hover {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
}

.service-item .read-more i {
  margin-left: 5px;
}

.service-item:hover:before {
  bottom: -60px;
  right: -40px;
}

.service-item:hover:after {
  right: auto;
  left: -40px;
  bottom: -60px;
}

.service-item:hover .shape svg {
  fill: var(--mt-color-theme-primary);
}

.service-item:hover .service-icon {
  border-color: var(--mt-color-theme-primary);
  transform: rotate(10deg);
}

.service-item:hover .service-icon:before {
  transform: rotate(-20deg);
}

.service-item.item-2 .service-icon {
  color: var(--mt-color-common-white);
}

.service-item.img-item {
  height: 100%;
  padding: 0;
}

.service-item.img-item:after,
.service-item.img-item:before {
  display: none;
}

.service-item.img-item .service-img {
  height: 100%;
}

.service-item.img-item .service-img img {
  /* height: 100%; */
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-page .service-item {
  border: 1px solid var(--mt-color-border-1);
}

/* Service Details */
.service-details-top {
  margin-bottom: 50px;
}

.service-details-top .service-details-thumb {
  height: 100%;
}

.service-details-top .service-details-thumb img {
  height: 100%;
  width: 100%;
}

.service-details-top .service-list-wrap {
  background-color: var(--mt-color-grey-1);
  padding: 50px 35px;
}

.service-details-top .service-list-wrap .title {
  font-weight: 700;
  margin-bottom: 20px;
}

.service-details-top .service-list-wrap .service-list {
  list-style: none;
}

.service-details-top .service-list-wrap .service-list li:not(:last-of-type) {
  margin-bottom: 25px;
}

.service-details-top .service-list-wrap .service-list li a {
  background-color: var(--mt-color-common-white);
  font-family: var(--mt-ff-body);
  font-size: 18px;
  color: var(--mt-color-heading-primary);
  font-weight: 600;
  line-height: 1;
  padding: 8px 5px;
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 10px;
  border-radius: 30px;
  border: 1px solid var(--mt-color-border-1);
}

.service-details-top .service-list-wrap .service-list li a i {
  color: var(--mt-color-theme-secondary);
  font-size: 25px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-details-top .service-list-wrap .service-list li a:hover {
  background-color: var(--mt-color-theme-secondary);
}

.service-details-top .service-list-wrap .service-list li a:hover i {
  color: var(--mt-color-common-black);
}

.service-details-top .service-list-wrap .service-list li:nth-child(2) a:hover {
  color: var(--mt-color-common-white);
}

.service-details-top .service-list-wrap .service-list li:nth-child(2) a:hover i {
  color: var(--mt-color-common-white);
}

.service-details-content .title {
  font-weight: 700;
}

.service-details-content .details-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 30px 0;
}

@media only screen and (max-width: 992px) {
  .service-details-content .details-box {
    grid-template-columns: 1fr;
  }
}

.service-details-content .details-box .about-info-2 .about-list li {
  color: var(--mt-color-heading-primary);
}

.service-details-content .details-box .about-info-2 .btn-content {
  color: var(--mt-color-heading-primary);
  margin-bottom: 0;
}

.service-details-content .details-box .details-thumb {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

@media only screen and (max-width: 767px) {
  .service-details-content .details-box .details-thumb {
    flex-direction: column;
    row-gap: 20px;
  }
}

.service-details-content .details-box .details-thumb img {
  width: 100%;
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Skill CSS
----------------------------------------*/
.skill-section {
  position: relative;
  overflow: hidden;
}

.skill-section .man {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  width: 550px;
  height: 620px;
  position: absolute;
  left: 52%;
  bottom: 0;
}

@media only screen and (max-width: 992px) {
  .skill-section .man {
    position: relative;
    text-align: center;
    left: 0;
    width: 100%;
    margin: 0 auto;
    background-position: center bottom;
  }
}

@media only screen and (max-width: 767px) {
  .skill-section .man {
    height: 440px;
  }
}

.skill-section .section-heading {
  margin-bottom: 30px;
}

.skill-section .section-heading .section-title {
  margin-bottom: 15px;
}

.skills-item {
  overflow: hidden;
  padding-bottom: 8px;
}

.skills-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.skills-item .title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.skills-item .title-wrap .progress-count {
  color: var(--mt-color-theme-primary);
  padding-right: 10px;
  margin-right: 5px;
  position: relative;
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 500;
}

.skills-item .title-wrap .progress-count:before {
  background-color: var(--mt-color-heading-primary);
  content: "";
  width: 5px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.skills-item .title-wrap .progress-count span {
  font-family: var(--mt-ff-body);
  margin-bottom: 0.5px;
}

.skills-item .title-wrap .title {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.skills-item .progress {
  background-color: #f6f3fc;
  height: 5px;
  overflow: visible;
}

.skills-item .progress .progress-bar {
  background-color: var(--mt-color-theme-primary);
  position: relative;
  overflow: visible;
}

.skills-item .progress .progress-bar .arrow {
  position: absolute;
  right: -5px;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skills-item .progress .progress-bar .arrow i {
  font-size: 20px;
  color: var(--mt-color-theme-primary);
}

.skills-item .progress .progress-bar .arrow i:last-child {
  color: var(--mt-color-common-white);
  font-size: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.skill-btn-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 50px;
  margin-top: 40px;
}

.skill-btn-wrap .skill-number {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.skill-btn-wrap .skill-number i {
  background-color: var(--mt-color-theme-primary);
  font-size: 22px;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mt-color-common-white);
}

.skill-btn-wrap .skill-number .numbers a {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-heading-primary);
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.skill-btn-wrap .skill-number .numbers a:hover {
  color: var(--mt-color-theme-primary);
}

/* !END: Theme Skill CSS */
/**----------------------------------------
START: Theme Cta CSS
----------------------------------------*/
.cta-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 15px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .cta-wrap {
    border-radius: 0;
  }
}

.cta-wrap .overlay {
  background-color: rgba(37, 37, 45, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cta-wrap .top-shape {
  background-color: var(--mt-color-common-white);
  width: 487px;
  height: 30px;
  position: absolute;
  top: 0;
  left: auto;
  right: 122px;
  z-index: -1;
}

@media (max-width: 1600px) {
  .cta-wrap .top-shape {
    right: 128px;
  }
}

@media (max-width: 1399px) {
  .cta-wrap .top-shape {
    right: 82px;
  }
}

@media (max-width: 1170px) {
  .cta-wrap .top-shape {
    display: none;
  }
}

.cta-content {
  text-align: center;
  padding: 95px 0 90px 0;
}

.cta-content .video-btn {
  background-color: var(--mt-color-common-white);
  color: var(--mt-color-theme-primary);
  font-size: 25px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.cta-content .title {
  color: var(--mt-color-common-white);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
  .cta-content .title {
    font-size: 32px;
  }
}

.cta-content p {
  color: var(--mt-color-common-white);
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  /* width: 60px;
  height: 60px; */
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

.ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 30px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 30px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

.cta-section-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  padding: 240px 0 100px 0;
}

.cta-content-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 30px 130px 30px 40px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #5b7189;
}

@media only screen and (max-width: 992px) {
  .cta-content-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    border-radius: 0;
  }
}

.cta-content-wrap .cta-info {
  display: grid;
  align-items: center;
  grid-template-columns: 105px 1fr;
  grid-gap: 40px;
}

@media only screen and (max-width: 992px) {
  .cta-content-wrap .cta-info {
    grid-template-columns: 1fr;
    text-align: center;
    grid-gap: 20px;
    margin-bottom: 20px;
  }
}

.cta-content-wrap .cta-info .cta-icon {
  background-color: var(--mt-color-common-white);
  height: 105px;
  width: 105px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 992px) {
  .cta-content-wrap .cta-info .cta-icon {
    margin: 0 auto;
  }
}

.cta-content-wrap .cta-info .title {
  color: var(--mt-color-common-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: capitalize;
}

.cta-content-wrap .cta-info .title span {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .cta-content-wrap .cta-info .title span {
    margin-top: 20px;
    line-height: 1.4;
  }
}

.cta-content-wrap .cta-btn .mt-primary-btn {
  background-color: var(--mt-color-common-white);
}

.cta-content-wrap .cta-btn .mt-primary-btn:before,
.cta-content-wrap .cta-btn .mt-primary-btn:after {
  background-color: var(--mt-color-theme-secondary);
}

.cta-content-wrap .cta-btn .mt-primary-btn:hover {
  color: var(--mt-color-heading-primary);
}

/* !END: Theme Cta CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.project-section {
  overflow: hidden;
}

.project-section .project-container {
  max-width: 1880px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

.project-filter {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
}

.project-filter li {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 30px;
}

@media only screen and (max-width: 992px) {
  .project-filter li {
    padding: 5px 15px;
  }
}

.project-filter li:not(:last-of-type) {
  margin-right: 30px;
}

@media only screen and (max-width: 992px) {
  .project-filter li:not(:last-of-type) {
    margin-right: 15px;
  }
}

.project-filter li.active {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
}

.filter-items>div {
  padding: 15px;
}

.firefox .filter-items>div {
  margin-left: -1px;
  transform: translateX(1px);
}

.project-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.project-item .overlay {
  background-color: rgba(0, 1, 3, 0.63);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project-item img {
  width: 100%;
  object-fit: cover;
}

.project-item .project-content {
  background-color: rgba(23, 92, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px 30px;
  width: calc(100% - 60px);
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .project-item .project-content {
    width: calc(100% - 30px);
    padding: 50px 10px 30px;
  }
}

.project-item .project-content .title {
  color: var(--mt-color-common-white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .project-item .project-content .title {
    font-size: 18px;
  }
}

.project-item .project-content .title span {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  display: block;
}

@media only screen and (max-width: 992px) {
  .project-item .project-content .title span {
    font-size: 15px;
  }
}

.project-item .project-content .project-btn {
  font-size: 40px;
  color: var(--mt-color-theme-secondary);
  position: relative;
  z-index: 1;
  transform: rotate(45deg);
  margin: 0 20px 20px 0;
}

.project-item .project-content .project-btn:before {
  background-color: #8389da;
  content: "";
  height: 45px;
  width: 45px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: -1;
}

.project-item:hover .overlay {
  visibility: visible;
  opacity: 1;
}

.project-item:hover .project-content {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
}

@media only screen and (max-width: 992px) {
  .project-item:hover .project-content {
    bottom: 30px;
  }
}

.project-section-2 .custom-container {
  max-width: 1875px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.project-section-2 .project-item {
  overflow: hidden;
}

.project-section-2 .project-item .overlay {
  display: none;
}

.project-section-2 .project-item .project-content {
  width: 100%;
  bottom: -20px;
}

.project-section-2 .project-item .project-content .project-btn {
  color: var(--mt-color-common-white);
}

.project-section-2 .project-item .project-content .project-btn:before {
  background-color: rgba(255, 255, 255, 0.2);
}

.project-section-2 .project-item:hover .project-content {
  bottom: 0;
}

.project-carousel {
  padding-bottom: 80px;
}

.project-3 {
  position: relative;
  z-index: 1;
}

.project-3 .bg-color {
  background-color: var(--mt-color-border-3);
  width: 100%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .project-3 .bg-color {
    height: 100%;
  }
}

.project-3 .project-filter li {
  color: var(--mt-color-common-white);
}

/* Project details */
.project-details-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 40px;
}

.project-details-thumb img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .project-details-thumb img {
    height: 500px;
    object-fit: cover;
  }
}

.project-details-thumb .shapes .shape {
  background-color: var(--mt-color-theme-primary);
  height: 180px;
  width: 180px;
  position: absolute;
  top: -110px;
  right: -23px;
  border-radius: 50%;
}

.project-details-thumb .shapes .shape.shape-2 {
  background-color: var(--mt-color-theme-secondary);
  top: -50px;
  right: -100px;
}

.project-details-thumb .shapes .shape.shape-3 {
  background-color: var(--mt-color-common-black);
  height: 400px;
  width: 400px;
  top: auto;
  bottom: -95px;
  right: -48px;
}

.project-details-thumb .project-details-list {
  position: absolute;
  bottom: 60px;
  right: 50px;
  list-style: none;
}

.project-details-thumb .project-details-list li {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.project-details-thumb .project-details-list li span {
  font-weight: 400;
}

.project-details-thumb .project-details-list li:not(:last-of-type) {
  margin-bottom: 15px;
}

.project-details-thumb .project-details-list li i {
  color: var(--mt-color-theme-secondary);
}

.project-details-thumb .project-details-list li:nth-child(2) i {
  color: var(--mt-color-theme-primary);
}

.project-details-thumb .project-details-list li:nth-child(3) i {
  color: var(--mt-color-common-pink);
}

.project-details-thumb .project-details-list li:nth-child(4) i {
  color: var(--mt-color-common-green);
}

.project-details-content {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--mt-color-border-1);
}

@media only screen and (max-width: 992px) {
  .project-details-content {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}

.project-details-content .title {
  font-weight: 700;
  margin-bottom: 15px;
}

.project-details-content p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .project-skill-wrap .left-content {
    padding-right: 0;
  }
}

.project-skill-wrap .left-content .title {
  font-weight: 700;
  margin-bottom: 20px;
}

.project-skill-wrap .left-content .list-wrap {
  display: flex;
  align-items: center;
}

.project-skill-wrap .left-content .list-wrap ul {
  list-style: none;
}

.project-skill-wrap .left-content .list-wrap ul li {
  font-family: var(--mt-ff-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.project-skill-wrap .left-content .list-wrap ul li i {
  color: var(--mt-color-theme-secondary);
  margin-right: 5px;
  padding-top: 5px;
  display: inline-block;
}

.project-skill-wrap .left-content .list-wrap ul li:nth-child(2) i {
  color: var(--mt-color-common-pink);
}

.project-skill-wrap .left-content .list-wrap ul li:nth-child(3) i {
  color: var(--mt-color-common-primary);
}

.project-skill-wrap .left-content .list-wrap ul li:nth-child(4) i {
  color: var(--mt-color-common-green);
}

.project-skill-wrap .left-content .list-wrap ul li:nth-child(5) i {
  color: var(--mt-color-common-purple);
}

.project-skill-wrap .left-content .list-wrap ul li:nth-child(6) i {
  color: var(--mt-color-common-electric-blue);
}

.project-skill-wrap .left-content .list-wrap .list-2 li i {
  color: var(--mt-color-theme-secondary);
}

.project-skill-wrap .left-content .list-wrap .list-2 li:nth-child(2) i {
  color: var(--mt-color-common-green);
}

.project-skill-wrap .left-content a {
  margin-top: 20px;
}

.project-skill-wrap .left-content .list-wrap ul li {
  display: flex;
  column-gap: 5px;
  font-family: var(--mt-ff-p);
  font-size: 16px;
  font-weight: var(--mt-fw-normal);
  color: var(--mt-color-text-body);
  line-height: 25px;
}

.project-details-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-details-img img {
  max-width: 100%;
  height: auto;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.call-area .custom-container {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.call-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.call-wrap .call-icon {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px dashed #6a6a6a;
  border-radius: 50%;
}

.call-wrap .content-wrap {
  padding: 120px 0 70px 0;
  text-align: center;
}

.call-wrap .content-wrap .title {
  color: var(--mt-color-common-white);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  .call-wrap .content-wrap .title {
    font-size: 36px;
  }
}

.call-wrap .content-wrap .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 55px;
}

.call-wrap .content-wrap .btn-group .mt-primary-btn {
  background-color: var(--mt-color-theme-secondary);
}

.call-wrap .content-wrap .btn-group .video-btn {
  color: var(--mt-color-common-white);
  font-size: 25px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 2px solid var(--mt-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-wrap .content-wrap .btn-group .video-btn:hover {
  background-color: var(--mt-color-common-white);
  color: var(--mt-color-heading-primary);
}

.call-wrap .content-wrap .btn-group .video-btn i {
  margin-left: 5px;
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.blog-carousel {
  position: relative;
  padding-bottom: 50px;
}

.swiper-pagination {
  line-height: 1;
  margin-bottom: -10px;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 15px;
  width: 15px;
  border: 2px solid rgb(241 7 7);
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(241 7 7);
}

.post-card .post-thumb {
  position: relative;
  overflow: hidden;
}

.post-card .post-thumb img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  height: 247px;
}

.post-card .post-thumb .category {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-transform: uppercase;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.post-card.card-1 .post-thumb .category {
  background-color: rgb(241 7 7);
  color: var(--mt-color-common-white);
}

.post-card .post-content-wrap {
  border: 1px solid #ddd;
}

.post-card .post-content {
  padding: 30px 20px;
  border-bottom: 1px solid #ddd;
  border-top: none;
}

.post-card .post-content .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 15px;
}

.post-card .post-content .post-meta li {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  font-size: 16px;
  font-weight: 400;
}

.post-card .post-content .title a {
  background: linear-gradient(var(--mt-color-theme-primary) 0%,
      var(--mt-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-card .post-content .post-meta li a:hover {
  color: var(--mt-color-theme-primary);
}

.post-card .post-content .title {
  font-size: 24px;
  line-height: 1.5;
  width: 100%;
  margin-bottom: 15px;
}

.post-card .post-content .title {
  color: #383535;
}

.post-card .post-content .title a:hover {
  color: var(--mt-color-theme-primary);
  background-size: 100% 2px;
}

.post-card .post-content .desc:last-child {
  margin-bottom: 0;
}

.post-card .post-review-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgb(255, 241, 229);
}

.post-card .post-review-wrap .review {
  list-style: none;
}

.post-card .post-review-wrap .review li {
  display: inline-flex;
  font-size: 14px;
  color: var(--mt-color-theme-secondary);
  margin-right: 5px;
}

.post-card .post-review-wrap .review li span {
  line-height: 1;
}

.post-card .post-review-wrap a {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  display: inline-block;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-card .post-review-wrap a:hover {
  color: var(--mt-color-theme-primary);
}

.post-card:hover .post-thumb img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.post-card.card-2 {
  background-color: var(--mt-color-grey-2);
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.post-card.card-2 .post-author {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 67px;
  height: 67px;
  border-radius: 50%;
}

.post-card.card-2 .post-content-wrap {
  border: none;
}

.post-card.card-2 .post-content {
  padding-bottom: 10px;
}

.post-card.card-2 .post-content .category {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
  font-family: var(--mt-fs-body);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.post-card.card-2 .post-content .category:hover {
  background-color: var(--mt-color-common-white);
  color: var(--mt-color-heading-primary);
}

.post-card.card-2 .post-content a {
  background: linear-gradient(var(--mt-color-common-white) 0%,
      var(--mt-color-common-white) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-card.card-2 .post-content a:hover {
  color: var(--mt-color-theme-primary);
  background-size: 100% 2px;
}

.post-card.card-2 .post-content .news {
  font-family: var(--mt-ff-body);
  font-size: 110px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
  background: url(../img/blog/post-text-bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  width: 100%;
  height: 100%;
}

.post-card.card-2.item-2 .post-content .news {
  background: url(../img/blog/post-text-bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.post-card.card-2.item-3 .post-content .news {
  background: url(../img/blog/post-text-bg-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.post-card.card-2:hover {
  background-color: #051d1f;
}

.post-card.card-2:hover .post-content {
  border-bottom: 1px solid #464648;
}

.post-card.card-2:hover .post-content .post-meta li,
.post-card.card-2:hover .post-content .post-meta li a,
.post-card.card-2:hover .post-content .title a,
.post-card.card-2:hover .post-content p {
  color: var(--mt-color-common-white);
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.post-card.card-2:hover .post-review-wrap a {
  color: var(--mt-color-common-white);
}

.post-card.dark .post-content-wrap {
  border: 1px solid #2b2b2d;
}

.post-card.dark .post-content {
  border-bottom: 1px solid #2b2b2d;
}

.post-card.dark .post-content .post-meta li,
.post-card.dark .post-content .post-meta li a,
.post-card.dark .post-content .title a,
.post-card.dark .post-content p {
  color: var(--mt-color-common-white);
}

.post-card.dark .post-content .title a:hover {
  color: var(--mt-color-theme-primary);
}

.post-card.dark .post-review-wrap a {
  color: var(--mt-color-common-white);
}

.post-card.dark .post-review-wrap a:hover {
  color: var(--mt-color-theme-primary);
}

.blog-2 {
  position: relative;
  z-index: 2;
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Testi CSS
----------------------------------------*/
.testimonial-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.testimonial-section .overlay {
  background-color: rgba(41, 41, 48, 0.87);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testimonial-section .testi-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  width: 378px;
  height: 350px;
  position: absolute;
  bottom: 0;
  left: 225px;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .testimonial-section .testi-shape {
    width: 270px;
    left: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section .testi-shape {
    display: none;
  }
}

.testimonial-section .section-heading .section-title {
  color: var(--mt-color-common-white);
  margin-bottom: 15px;
}

/* .testimonial-section .section-heading p {
  color: var(--mt-color-common-white);
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
} */

.testi-carousel-wrap {
  position: relative;
}

@media only screen and (max-width: 992px) {
  .testi-carousel-wrap {
    margin-left: 305px;
  }
}

@media only screen and (max-width: 767px) {
  .testi-carousel-wrap {
    margin-left: 0;
  }
}

.testi-carousel-wrap:before {
  content: "";
  height: calc(100% - 45px);
  width: 60%;
  border-right: 5px solid var(--mt-color-common-white);
  border-top: 5px solid var(--mt-color-common-white);
  position: absolute;
  bottom: 0;
  right: 0;
}

.testi-carousel-wrap .quote-3 {
  position: absolute;
  top: 30px;
  left: -115px;
}

.testi-carousel-wrap .testi-thumb-wrap {
  overflow: hidden;
  width: 250px;
  margin-bottom: 30px;
}

.testi-carousel-wrap .thumb-carousel {
  width: 85px;
  margin: 0 auto;
  padding-top: 10px;
  overflow: visible;
}

.testi-carousel-wrap .thumb-carousel .swiper-slide {
  height: 85px;
  width: 85px;
}

.testi-carousel-wrap .testi-thumb {
  border: 5px solid transparent;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  cursor: pointer;
}

.testi-carousel-wrap .testi-thumb img {
  border-radius: 50%;
}

.testi-carousel-wrap .swiper-slide.swiper-slide-active .testi-thumb {
  height: 80px;
  width: 80px;
  border: 5px solid var(--mt-color-theme-secondary);
  border-radius: 50%;
}

.testi-carousel-wrap .content-carousel {
  padding-bottom: 55px;
}

.testi-carousel-wrap .content-carousel .swiper-pagination {
  left: 0;
  text-align: left;
}

.testi-content {
  position: relative;
}

.testi-content .quote {
  position: absolute;
  bottom: 10px;
  right: 120px;
}

.testi-content p {
  color: var(--mt-color-common-white);
  font-style: italic;
  max-width: 470px;
  width: 100%;
  margin-bottom: 5px;
  margin-top: 4px;
}

.testi-content .author {
  color: var(--mt-color-common-white);
  font-size: 22px;
  margin-bottom: 20px;
}

.testi-content .author span {
  font-family: var(--mt-ff-body);
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #f10d0d;
}

.testi-content .review li {
  display: inline-flex;
  font-size: 14px;
  color: var(--mt-color-theme-secondary);
}

.testi-content .review li:not(:last-of-type) {
  margin-top: 10px;
}

.testi-2 {
  padding: 310px 0 215px 0;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 992px) {
  .testi-2 {
    padding-top: 270px;
    padding-bottom: 150px;
  }
}

.testi-2 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .testi-2 .bg-color-bottom {
    height: 270px;
  }
}

.testi-2 .custom-container {
  max-width: 1865px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.testi-2 .testi-items {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 12px;
  justify-content: center;
}

.testi-2 .testi-items>div {
  flex: 0 0 auto;
  width: 33.3333333333%;
  padding: 12px;
}

.testi-2 .testi-items>div.small {
  width: 20%;
}

.testi-2 .testi-items>div.large {
  width: 30%;
}

@media only screen and (max-width: 992px) {
  .testi-2 .testi-items>div {
    width: 50%;
  }

  .testi-2 .testi-items>div.small,
  .testi-2 .testi-items>div.large {
    width: 50%;
  }
}

@media only screen and (max-width: 992px) {
  .testi-2 .testi-items>div {
    width: 100%;
  }

  .testi-2 .testi-items>div.small,
  .testi-2 .testi-items>div.large {
    width: 100%;
  }
}

.testi-2 .testi-item {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.testi-2 .testi-item .testi-content {
  position: relative;
  padding: 20px 40px;
  border: 1px solid #474750;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .testi-2 .testi-item .testi-content {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .testi-2 .testi-item .testi-content {
    padding: 15px 20px;
  }
}

.testi-2 .testi-item .testi-content:hover {
  background-color: var(--mt-color-border-3);
}

.testi-2 .testi-item .testi-content .author-box {
  display: grid;
  align-items: center;
  grid-template-columns: 69px 1fr;
  grid-gap: 25px;
  margin-bottom: 15px;
}

.testi-2 .testi-item .testi-content .author-box .author {
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .testi-2 .testi-item .testi-content .author-box .author {
    font-size: 18px;
  }
}

.testi-2 .testi-item .icon {
  font-size: 40px;
  color: var(--mt-color-theme-secondary);
  position: absolute;
  bottom: 15px;
  right: 30px;
}

.testi-2 .testi-item .shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -120px;
  right: -120px;
  opacity: 0.12;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.testi-2 .testi-item:hover .shape {
  visibility: visible;
  opacity: 0.12;
}

.testi-carousel-wrap.wrap-2:before {
  width: 40%;
}

.testi-carousel-wrap.wrap-2:after {
  content: "";
  height: calc(100% - 45px);
  width: 40%;
  border-left: 5px solid var(--mt-color-common-white);
  border-top: 5px solid var(--mt-color-common-white);
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 992px) {
  .testi-carousel-wrap.wrap-2 {
    margin-left: 0;
  }
}

.testi-carousel-wrap.wrap-2 .testi-thumb-wrap {
  margin: 0 auto;
  margin-bottom: 20px;
}

.testi-carousel-wrap.wrap-2 .content-carousel .testi-content p {
  color: var(--mt-color-text-body);
  max-width: 510px;
  margin: 0 auto;
  font-size: 16px;
  margin-bottom: 30px;
}

.testi-carousel-wrap.wrap-2 .content-carousel .testi-content .author {
  color: var(--mt-color-heading-primary);
  font-weight: 700;
}

.testi-carousel-wrap.wrap-2 .content-carousel .testi-content .author span {
  margin-top: 5px;
}

.testi-carousel-wrap.wrap-2 .content-carousel .testi-content .quote {
  right: 280px;
  opacity: 0.2;
}

@media only screen and (max-width: 992px) {
  .testi-carousel-wrap.wrap-2 .content-carousel .testi-content .quote {
    right: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .testi-carousel-wrap.wrap-2 .content-carousel .testi-content .quote {
    display: none;
  }
}

.testi-carousel-wrap.wrap-2 .content-carousel .testi-content .quote-2 {
  position: absolute;
  bottom: 30px;
  right: auto;
  left: 280px;
  opacity: 1;
}

@media only screen and (max-width: 992px) {
  .testi-carousel-wrap.wrap-2 .content-carousel .testi-content .quote-2 {
    left: 100px;
  }
}

.testi-page {
  padding: 100px 0;
}

@media only screen and (max-width: 992px) {
  .testi-page {
    padding: 70px 0;
  }
}

@media only screen and (max-width: 767px) {
  .testi-page {
    padding: 50px 0px;
  }
}

.testi-page .section-heading .section-title {
  color: var(--mt-color-heading-primary);
}

.testi-page .testi-item .testi-content {
  border: 1px solid var(--mt-color-border-1);
}

.testi-page .testi-item .testi-content p,
.testi-page .testi-item .testi-content .author-box .author {
  color: var(--mt-color-heading-primary);
  text-align: justify;
}

.testi-page .testi-item .testi-content:hover p,
.testi-page .testi-item .testi-content:hover .author-box .author {
  color: var(--mt-color-common-white);
  text-align: justify;
}

.testimonial-section-2 {
  position: relative;
  z-index: 1;
}

.testimonial-section-2 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testimonial-section-2 .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  margin-top: 20px;
}

.testimonial-section-2 .section-heading p:last-child {
  margin-bottom: 0;
}

/* !END: Theme Testi CSS */
/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.feature-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-1 .section-heading {
  margin-bottom: 0;
}

.feature-1 .section-heading .section-title {
  margin-bottom: 15px;
}

.feature-1 .section-heading p {
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  .feature-content {
    margin-bottom: 40px;
  }
}

.feature-content .feature-img {
  max-width: 550px;
  width: 100%;
  clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
}

@media only screen and (max-width: 992px) {
  .feature-content .feature-img {
    max-width: inherit;
  }
}

@media only screen and (max-width: 992px) {
  .feature-content .feature-img img {
    width: 100%;
  }
}

.feature-item {
  background-color: var(--mt-color-common-white);
  position: relative;
  padding: 45px 30px 30px 30px;
  border: 1px solid var(--mt-color-border-1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}

.feature-item:hover {
  background-color: #152741;
}

.feature-item .bottom-shape {
  background-color: var(--mt-color-theme-secondary);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  bottom: -60px;
  right: -60px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.feature-item .bottom-shape:before {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 80px;
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.5;
}

.feature-item .number {
  font-size: 41px;
  font-family: var(--mt-ff-body);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mt-color-text-body);
  position: absolute;
  top: 80px;
  right: 30px;
  opacity: 0.3;
}

.feature-item .feature-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.feature-item .feature-icon svg {
  color: var(--mt-color-theme-secondary);
}

.feature-item .feature-icon i {
  color: var(--mt-color-heading-primary);
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-item .feature-icon img {
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-item .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-item p {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feature-item p:last-child {
  margin-bottom: 0;
}

.feature-item:hover .number {
  -webkit-text-stroke-color: var(--mt-color-theme-secondary);
  opacity: 1;
}

.feature-item:hover .title a {
  color: var(--mt-color-common-white);
}

.feature-item:hover .title a:hover {
  color: var(--mt-color-theme-secondary);
}

.feature-item:hover p {
  color: var(--mt-color-common-white);
}

.feature-item:hover .bottom-shape {
  visibility: visible;
  opacity: 1;
  bottom: -20px;
  right: -20px;
}

.feature-item.item-2 {
  margin-top: 25px;
}

.feature-item.item-2 .feature-icon i {
  color: var(--mt-color-common-white);
}

.feature-item.item-4 {
  margin-top: 25px;
}

.feature-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.feature-2 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .feature-2 .bg-img {
    top: -40px;
  }
}

.feature-2 .bg-color {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.feature-2 .bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.feature-2 .feature-item {
  border: none;
}

.feature-2 .feature-item:hover {
  background-color: var(--mt-color-theme-primary);
}

.feature-2 .feature-item .title a:hover {
  color: var(--mt-color-common-white);
}

.feature-2 .feature-item .feature-icon svg {
  color: var(--mt-color-theme-primary);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feature-2 .feature-item .feature-icon img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feature-2 .feature-item .number {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mt-color-text-body);
}

.feature-2 .feature-item:hover .number {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mt-color-common-white);
}

.feature-2 .feature-item:hover .feature-icon svg {
  color: var(--mt-color-common-white);
}

.feature-2 .feature-item .bottom-shape {
  background-color: var(--mt-color-common-white);
}

.feature-2 .feature-item .bottom-shape:before {
  background-color: #a5bfff;
}

.feature-2 .feature-item.item-2:hover .feature-icon svg {
  color: var(--mt-color-common-white);
}

.feature-2 .feature-item.item-2:hover .feature-icon img {
  filter: brightness(0) invert(0);
}

.feature-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
START: Theme Faq CSS
----------------------------------------*/
.faq-section {
  margin-top: 20px;
}

.faq-section .section-heading {
  margin-bottom: 0;
}

.faq-img {
  border-radius: 0 80px 0 80px;
  overflow: hidden;
  height: 100%;
  padding-right: 15px;
}

@media only screen and (max-width: 992px) {
  .faq-img {
    padding-right: 0;
  }
}

.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-content {
  padding-left: 15px;
}

@media only screen and (max-width: 992px) {
  .faq-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    height: auto !important;
  }
}

.faq-content .accordion-item .accordion-header .accordion-button {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  font-size: 17px;
  font-weight: 500;
  height: 80px;
  display: flex;
  align-items: center;
  column-gap: 20px;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
  }
}

.faq-content .accordion-item .accordion-header .accordion-button i {
  color: var(--mt-color-theme-secondary);
}

.faq-content .accordion-item .accordion-header .accordion-button:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  color: var(--mt-color-theme-secondary);
  content: "^";
  height: auto;
  width: auto;
  font-size: 25px;
  font-weight: 600;
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
  height: 50px;
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed) i,
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  color: var(--mt-color-common-white);
}

.faq-content .accordion-item .accordion-header .accordion-button .number {
  font-family: var(--mt-ff-body);
  font-size: 27px;
  color: var(--mt-color-common-white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mt-color-common-white);
  opacity: 0.7;
}

.faq-content .accordion-item .accordion-body {
  position: relative;
}

.faq-content .accordion-item .accordion-body p {
  width: 100%;
  margin-bottom: 0;
  padding: 10px 0;
  text-align: left;
}

/* !END: Theme Faq CSS */
/**----------------------------------------
START: Theme Team CSS
----------------------------------------*/
.team-section {
  margin-bottom: -162px;
}

.team-item {
  position: relative;
}

.team-item .team-logo {
  height: 70px;
  width: 70px;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-item:hover .team-logo {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.team-item .team-thumb {
  position: relative;
  border-radius: 30px 30px 0 0;
}

.team-item .team-thumb .team-social {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}

.team-item .team-thumb .team-social .expand {
  background-color: var(--mt-color-common-white);
  font-size: 18px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.team-item .team-thumb .team-social .expand:hover {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
}

.team-item .team-thumb .team-social .social-list {
  position: absolute;
  top: 55px;
  right: 0px;
  list-style: none;
}

.team-item .team-thumb .team-social .social-list li {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}

.team-item .team-thumb .team-social .social-list li a {
  background-color: var(--mt-color-common-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-item .team-thumb .team-social .social-list li a:hover {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
}

.team-item .team-thumb .team-social .social-list li:not(:last-of-type) {
  margin-bottom: 5px;
}

.team-item .team-thumb .team-social .social-list li:nth-child(1) {
  transition-delay: 100ms;
}

.team-item .team-thumb .team-social .social-list li:nth-child(2) {
  transition-delay: 150ms;
}

.team-item .team-thumb .team-social .social-list li:nth-child(3) {
  transition-delay: 200ms;
}

.team-item .team-thumb .team-social .social-list li:nth-child(4) {
  transition-delay: 250ms;
}

.team-item .team-thumb .team-social:hover .social-list li {
  visibility: visible;
  opacity: 1;
}

.team-item .team-content {
  background-color: var(--mt-color-common-white);
  text-align: center;
  line-height: 1;
  padding: 20px 0;
  margin: 0 35px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.team-item .team-content .title {
  font-size: 22px;
  color: #303030;
  font-weight: 700;
  line-height: 1;
}

.team-item .team-content .title a:hover {
  color: var(--mt-color-theme-primary);
}

.team-item .team-content span {
  font-family: var(--mt-ff-body);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.team-carousel {
  padding-bottom: 80px;
}

.team-carousel .swiper-pagination {
  line-height: 1;
}

@media only screen and (max-width: 992px) {
  .team-section-2 {
    margin-top: -30px;
    position: relative;
    z-index: 2;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-2 {
    margin-top: -30px;
  }
}

.team-carousel-2 {
  position: relative;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .team-carousel-2 {
    padding-bottom: 90px;
  }
}

.team-carousel-2 .swiper-wrapper .swiper-slide:nth-child(2n) .team-box {
  padding-top: 25px;
}

@media only screen and (max-width: 767px) {
  .team-carousel-2 .swiper-wrapper .swiper-slide:nth-child(2n + 1) .team-box {
    padding-top: 0;
  }
}

.team-box {
  position: relative;
}

.team-box .team-thumb {
  margin: 0 auto;
  margin-bottom: -130px;
  position: relative;
  z-index: 2;
  /* border-radius: 50%; */
  overflow: hidden;
}

.team-box .team-thumb img {
  width: 100%;
}

.team-box .team-content {
  position: relative;
  /* padding: 150px 50px 35px; */
  border: 1px solid #2b2b2d;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-box .team-content:after,
.team-box .team-content:before {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  bottom: -60px;
  right: -60px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-box .team-content:after {
  right: auto;
  left: -60px;
}

.team-box .team-content .title {
  color: var(--mt-color-common-white);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

@media only screen and (max-width: 992px) {
  .team-box .team-content .title {
    font-size: 18px;
  }
}

.team-box .team-content span {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .team-box .team-content span {
    font-size: 14px;
  }
}

.team-box .team-social {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.team-box .team-social .expand {
  background-color: rgb(241 7 7);
  color: var(--mt-color-common-white);
  font-size: 18px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.team-box .team-social .expand:hover {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
}

.team-box .team-social .social-list {
  list-style: none;
  display: flex;
  align-items: center;
}

.team-box .team-social .social-list li {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}

.team-box .team-social .social-list li a {
  background-color: var(--mt-color-common-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-box .team-social .social-list li a:hover {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
}

.team-box .team-social .social-list li:not(:last-of-type) {
  margin-right: 5px;
}

.team-box .team-social .social-list li:nth-child(1) {
  transition-delay: 100ms;
}

.team-box .team-social .social-list li:nth-child(2) {
  transition-delay: 150ms;
  margin-right: 10px;
}

.team-box .team-social .social-list li:nth-child(3) {
  transition-delay: 200ms;
  margin-left: 10px;
}

.team-box .team-social .social-list li:nth-child(4) {
  transition-delay: 250ms;
}

.team-box .team-social:hover .social-list li {
  visibility: visible;
  opacity: 1;
}

.team-box:hover .team-content {
  background-color: rgb(241 7 7);
}

.team-box:hover .team-content:before {
  visibility: visible;
  opacity: 1;
  right: -20px;
  bottom: -20px;
}

.team-box:hover .team-content:after {
  visibility: visible;
  opacity: 1;
  left: -20px;
  bottom: -20px;
}

.team-box:hover .team-social .expand {
  background-color: var(--mt-color-common-white);
  color: rgb(241 7 7);
}

.team-service-wrap {
  /* padding-top: 100px; */
  margin-bottom: -90px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .team-service-wrap {
    padding-top: 20px;
  }
}

.team-service-wrap .team-service {
  background-color: var(--mt-color-theme-primary);
  display: grid;
  align-items: center;
  grid-template-columns: 90px 1fr;
  grid-gap: 25px;
  padding: 50px 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

@media only screen and (max-width: 992px) {
  .team-service-wrap .team-service {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

.team-service-wrap .team-service .icon-box {
  background-color: var(--mt-color-common-white);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-service-wrap .team-service .team-service-content .title {
  font-size: 22px;
  color: var(--mt-color-common-white);
}

@media only screen and (max-width: 992px) {
  .team-service-wrap .team-service .team-service-content .title {
    font-size: 21px;
  }
}

.team-service-wrap .team-service .team-service-content p {
  color: var(--mt-color-common-white);
  margin-bottom: 0;
}

.team-service-wrap .team-service.item-1 {
  background-color: var(--mt-color-border-3);
  border: 1px solid #2b2b2d;
}

.team-service-wrap .team-service.item-1 .icon-box {
  background-color: var(--mt-color-theme-secondary);
}

.team-service-wrap.wrap-2 {
  margin: 0;
  padding: 0;
  padding-bottom: 90px;
}

.team-page .team-box .team-content,
.about-team .team-box .team-content {
  border: navajowhite;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.team-page .team-box .team-content span,
.team-page .team-box .team-content .title a,
.about-team .team-box .team-content span,
.about-team .team-box .team-content .title a {
  color: var(--mt-color-heading-primary);
}

.team-page .team-box:hover .team-content span,
.team-page .team-box:hover .team-content .title a,
.about-team .team-box:hover .team-content span,
.about-team .team-box:hover .team-content .title a {
  color: var(--mt-color-common-white);
}

.team-page .team-box .team-social .social-list li a,
.about-team .team-box .team-social .social-list li a {
  border: 1px solid #ddd;
}

.about-team {
  padding-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .about-team {
    margin-top: 0;
  }
}

@media only screen and (max-width: 992px) {
  .about-team .team-carousel-2 {
    padding-bottom: 90px;
  }
}

.team-page {
  padding-bottom: 60px;
  margin-top: 0;
}

.team-page .team-box {
  margin-bottom: 60px;
}

/* Team Details */
.team-details-img {
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .team-details-img {
    height: auto;
    margin-bottom: 40px;
  }
}

.team-details-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team-details-img .shape {
  background-color: var(--mt-color-theme-secondary);
  height: 140px;
  width: 140px;
  border-radius: 50%;
  top: -70px;
  right: -70px;
  position: absolute;
}

.team-details-img .shape.bottom {
  background-color: var(--mt-color-theme-primary);
  top: auto;
  right: auto;
  bottom: -70px;
  left: -70px;
}

.team-author-details .title {
  font-weight: 700;
  margin-bottom: 15px;
}

.team-author-details .author-box-wrap {
  border: 1px solid var(--mt-color-border-1);
  border-radius: 5px;
}

.team-author-details .author-box-wrap .author-item {
  padding: 20px 16px;
}

.team-author-details .author-box-wrap .author-item:not(:last-of-type) {
  border-bottom: 1px solid var(--mt-color-border-1);
}

.team-author-details .author-box-wrap .author-item .item-title {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.team-author-details .author-box-wrap .author-item.desc .item-title {
  max-width: 550px;
  width: 100%;
  line-height: 1.7;
}

.team-author-details .author-box-wrap .author-item.experiance span {
  margin-left: 10px;
}

.team-author-details .author-box-wrap .author-item.social {
  display: flex;
  align-items: center;
}

.team-author-details .author-box-wrap .author-item.social ul {
  margin-left: 20px;
  list-style: none;
  display: flex;
  align-items: center;
}

.team-author-details .author-box-wrap .author-item.social ul li:not(:last-of-type) {
  margin-right: 20px;
}

.team-author-details .author-box-wrap .author-item.social ul li i {
  color: var(--mt-color-theme-primary);
}

.team-author-details .author-box-wrap .author-item.social ul li:nth-child(2) i {
  color: #34cdf3;
}

.team-author-details .author-box-wrap .author-item.social ul li:nth-child(3) i {
  color: var(--mt-color-theme-primary);
}

.team-author-details .author-box-wrap .author-item.social ul li:nth-child(4) i {
  color: var(--mt-color-theme-primary);
}

.team-details-bottom {
  margin-top: 40px;
}

.team-details-bottom p {
  margin-bottom: 30px;
}

.team-details-bottom .team-skill-wrap {
  margin-bottom: 40px;
}

.team-details-bottom .team-skill-wrap .skills-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media only screen and (max-width: 767px) {
  .team-details-bottom .team-skill-wrap .skills-items {
    grid-template-columns: 1fr;
  }
}

.team-details-bottom .team-skill-wrap .skills-items .skills-item:not(:last-of-type) {
  margin-bottom: 0;
}

.team-counter .counter-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  row-gap: 24px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--mt-color-border-1);
}

@media only screen and (max-width: 992px) {
  .team-counter .counter-wrap {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .team-counter .counter-wrap {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
}

.team-counter .counter-wrap .counter-item {
  box-shadow: none;
  border: 1px dashed var(--mt-color-border-1);
}

/* !END: Theme Team CSS */
/**----------------------------------------
START: Theme Solution CSS
----------------------------------------*/
.solution-section {
  background-color: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.solution-section:after,
.solution-section:before {
  background-color: var(--mt-color-common-white);
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  top: -1px;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: -1;
}

@media only screen and (max-width: 992px) {

  .solution-section:after,
  .solution-section:before {
    height: 190px;
  }
}

@media only screen and (max-width: 767px) {

  .solution-section:after,
  .solution-section:before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.solution-section:after {
  top: auto;
  bottom: 120px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.solution-section .section-heading {
  margin-bottom: 45px;
}

.solution-tab .nav-pills {
  row-gap: 10px;
}

@media only screen and (max-width: 767px) {
  .solution-tab .nav-item:not(:last-of-type) {
    margin-right: 10px;
  }
}

.solution-tab .nav-item .nav-link {
  font-family: var(--mt-ff-heading);
  background-color: var(--mt-color-grey-2);
  color: var(--mt-color-heading-primary);
  font-size: 22px;
  font-weight: 700;
  border-radius: 0;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.solution-tab .nav-item .nav-link img {
  width: 20px;
}

@media only screen and (max-width: 992px) {
  .solution-tab .nav-item .nav-link img {
    width: 16px;
  }
}

@media only screen and (max-width: 992px) {
  .solution-tab .nav-item .nav-link {
    font-size: 17px;
  }
}

@media only screen and (max-width: 767px) {
  .solution-tab .nav-item .nav-link {
    font-size: 14px;
    padding: 7px 10px;
  }
}

.solution-tab .nav-item .nav-link.active {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
}

.solution-tab .nav-item .nav-link.active img {
  filter: brightness(0) invert(1);
}

.solution-content .solution-header {
  margin-bottom: 30px;
}

.solution-content .solution-header .title {
  color: var(--mt-color-common-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

.solution-content .solution-header p {
  color: var(--mt-color-common-white);
  max-width: 485px;
  width: 100%;
}

.solution-content .solution-header p:last-child {
  margin-bottom: 0;
}

.solution-content .solution-box {
  display: grid;
  align-items: center;
  grid-template-columns: 95px 1fr;
  grid-gap: 10px;
  padding: 30px;
  border: 1px solid #323539;
}

.solution-content .solution-box img {
  height: 95px;
  width: 95px;
}

.solution-content .solution-box .solution-list li {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.solution-content .solution-box .solution-list li i {
  font-size: 12px;
  color: var(--mt-color-theme-secondary);
  margin-right: 5px;
}

.solution-content .solution-box .solution-list li:nth-child(2) i {
  color: var(--mt-color-theme-primary);
}

.solution-content .solution-box .solution-list li:nth-child(3) i {
  color: var(--mt-color-common-purple);
}

.solution-content .solution-box .solution-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.solution-content .solution-icon {
  display: grid;
  align-items: center;
  grid-template-columns: 70px 1fr;
  grid-gap: 30px;
  margin: 30px 0 50px 0;
}

.solution-content .solution-icon .icon {
  background-color: var(--mt-color-theme-primary);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-content .solution-icon .title {
  color: var(--mt-color-common-white);
  margin-bottom: 0;
}

.solution-content .solution-icon .title span {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}

.solution-counter .row>div {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .solution-counter .row>div {
    padding: 0 15px;
  }
}

.solution-counter .counter-item {
  background-color: transparent;
  box-shadow: none;
  position: relative;
  z-index: 1;
  overflow: visible;
}

@media only screen and (max-width: 767px) {
  .solution-counter .counter-item {
    margin-bottom: 20px;
  }
}

.solution-counter .counter-item .shape {
  display: none;
}

.solution-counter .counter-item:before {
  background-color: var(--mt-color-common-white);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 117px 0px rgba(196, 206, 213, 0.24);
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: skew(-5.2deg, 0deg);
}

.solution-counter .counter-item:hover p,
.solution-counter .counter-item:hover .title {
  color: var(--mt-color-heading-primary);
}

.solution-counter .counter-item:hover .counter-icon {
  border: none;
}

.solution-content-wrap {
  padding-right: 15px;
}

.solution-img {
  padding-top: 90px;
  height: 100%;
  width: 712px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .solution-img {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .solution-img {
    width: 100%;
    padding-top: 50px;
  }
}

.solution-img:before {
  content: "";
  width: 43px;
  height: 255px;
  border: 1px solid var(--mt-color-common-white);
  position: absolute;
  top: 50%;
  left: -8px;
  transform: skew(-5.2deg, 0deg);
  z-index: -1;
}

.solution-img:after {
  content: "";
  width: 43px;
  height: 365px;
  border: 1px solid var(--mt-color-common-white);
  position: absolute;
  top: 20%;
  right: -8px;
  transform: skew(-5.2deg, 0deg);
  z-index: -1;
}

.solution-img img {
  height: 100%;
}

.solution-wrap:before {
  background-color: var(--mt-color-common-white);
  content: "";
  height: 127px;
  width: 100%;
  position: absolute;
  bottom: -7px;
  left: 0;
}

/* !END: Theme Solution CSS */
/**----------------------------------------
START: Theme Pricing CSS
----------------------------------------*/
.pricing-section {
  padding-top: 25px;
  position: relative;
  z-index: 2;
}

.pricing-carousel {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .pricing-carousel {
    padding-bottom: 50px;
  }
}

.pricing-item {
  background-color: var(--mt-color-grey-2);
  padding: 50px 0 45px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing-item:hover {
  background-color: #051d1f;
}

.pricing-item .sub-title {
  font-family: var(--mt-ff-body);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.pricing-item:hover .sub-title {
  color: var(--mt-color-common-white);
}

.pricing-item .title {
  background-color: var(--mt-color-theme-secondary);
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 0;
  margin-bottom: 25px;
}

.pricing-item .title span {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.pricing-item:hover .title {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
}

.pricing-item .pricing-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0 50px;
}

@media (max-width: 1170px) {
  .pricing-item .pricing-list {
    padding: 0 20px 0 40px;
  }
}

@media only screen and (max-width: 992px) {
  .pricing-item .pricing-list {
    padding: 0 90px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-item .pricing-list {
    padding: 0 110px;
  }
}

.pricing-item .pricing-list li {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  color: var(--mt-color-text-body);
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing-item .pricing-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.pricing-item .pricing-list li i {
  margin-right: 10px;
}

.pricing-item:hover .pricing-list li {
  color: var(--mt-color-common-white);
}

.pricing-item:hover .pricing-list li:hover {
  color: var(--mt-color-theme-primary);
}

.pricing-item.item-2 .title {
  color: var(--mt-color-common-white);
}

.pricing-item.item-2 .mt-primary-btn {
  color: var(--mt-color-common-white);
}

.pricing-2 {
  margin-bottom: 0;
}

/* !END: Theme Pricing CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-section {
  /* padding: 350px 0; */
  padding-top: 100px;
  /* padding-bottom: 200px; */
  position: relative;
  z-index: 1;

  margin-bottom: -150px;
  overflow: hidden;
}

.contact-section:after,
.contact-section:before {
  background-color: var(--mt-color-common-white);
  content: "";
  width: 100%;
  height: auto;
  position: absolute;
  top: -1px;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: -1;
}

.contact-section:after {
  top: auto;
  bottom: -1px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1399px) {
  .contact-section:after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .contact-section:before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.contact-section .shape {
  position: absolute;
}

.contact-section .shape.headphone {
  top: 30%;
  left: 70px;
  animation: hero-anim 2s infinite linear alternate-reverse;
}

@media (max-width: 1600px) {
  .contact-section .shape.headphone {
    top: 23%;
    left: 50px;
  }
}

@media (max-width: 1399px) {
  .contact-section .shape.headphone {
    display: none;
  }
}

.contact-section .shape.bulb {
  bottom: 30%;
  right: 70px;
  animation: hero-anim 3s infinite linear alternate-reverse;
}

@media (max-width: 1600px) {
  .contact-section .shape.bulb {
    bottom: 23%;
    right: 50px;
  }
}

@media (max-width: 1399px) {
  .contact-section .shape.bulb {
    display: none;
  }
}

.contact-section .shape.bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

.contact-section .shape.bg.top-shape {
  top: auto;
  right: auto;
  left: 8%;
  bottom: 0;
  width: 265px;
  height: 300px;
}

@media (max-width: 1600px) {
  .contact-section .shape.bg.top-shape {
    left: 5%;
  }
}

.contact-section .shape.bg.bottom-shape {
  width: 490px;
  height: 700px;
}

.contact-thumb {
  padding-right: 15px;
}

@media only screen and (max-width: 992px) {
  .contact-thumb {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.contact-thumb img {
  width: 100%;
}

.contact-info {
  padding-left: 15px;
}

@media only screen and (max-width: 992px) {
  .contact-info {
    padding-left: 0;
  }
}

.contact-info .section-heading {
  margin-bottom: 30px;
}

.contact-info .section-heading p,
.contact-info .section-heading .section-title {
  color: var(--mt-color-common-white);
  margin-bottom: 15px;
}

.contact-info .form-wrap .form-group .form-control {
  background-color: transparent;
  color: var(--mt-color-common-white);
  padding: 8px;
  border: 1px solid #464648;
  box-shadow: none;
}

.contact-info .form-wrap .form-group .form-control::-webkit-input-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-common-white);
}

.contact-info .form-wrap .form-group .form-control:-moz-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-common-white);
}

.contact-info .form-wrap .form-group .form-control::-moz-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-common-white);
}

.contact-info .form-wrap .form-group .form-control:-ms-input-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-common-white);
}

.contact-info .form-wrap .form-group .form-control:focus {
  background-color: transparent;
  border: 1px solid #635e5e;
  box-shadow: none;
}

@media (max-width: 1399px) {
  .contact-shapes {
    display: none;
  }
}

.contact-2 {
  padding: 100px 0;
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .contact-2 {
    padding: 70px 0;
  }
}

@media only screen and (max-width: 767px) {
  .contact-2 {
    padding: 50px 0;
  }
}

.contact-2:after,
.contact-2:before {
  display: none;
}

.contact-2 .shape.headphone {
  top: 20%;
}

.contact-2 .shape.bulb {
  bottom: 20%;
}

.contact-2 .shape.bg.top-shape {
  bottom: -236px;
}

.contact-2 .shape.bg.bottom-shape {
  top: -250px;
}

.contact-2 .contact-info {
  padding-left: 0;
  padding-right: 15px;
}

@media only screen and (max-width: 992px) {
  .contact-2 .contact-info {
    padding-right: 0;
  }
}

.contact-2 .contact-info .section-heading p,
.contact-2 .contact-info .section-heading .section-title {
  color: var(--mt-color-heading-primary);
}

.contact-2 .contact-info .form-wrap .form-group .form-control {
  background-color: transparent;
  color: var(--mt-color-common-white);
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 30px;
  box-shadow: none;
}

.contact-2 .contact-info .form-wrap .form-group .form-control::-webkit-input-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-text-body);
}

.contact-2 .contact-info .form-wrap .form-group .form-control:-moz-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-text-body);
}

.contact-2 .contact-info .form-wrap .form-group .form-control::-moz-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-text-body);
}

.contact-2 .contact-info .form-wrap .form-group .form-control:-ms-input-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: var(--mt-color-text-body);
}

.contact-2 .contact-info .form-wrap .form-group .form-control:focus {
  background-color: transparent;


}

.contact-2 .contact-thumb {
  padding-left: 15px;
}

@media only screen and (max-width: 992px) {
  .contact-2 .contact-thumb {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px;
  }
}

.contact-top-area {
  margin-bottom: -250px;
  position: relative;
  z-index: 2;
}

.contact-item {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  grid-gap: 30px;
}

.contact-item .contact-icon {
  background-color: var(--mt-color-theme-secondary);
  font-size: 25px;
  color: var(--mt-color-heading-primary);
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-item .title {
  margin-bottom: 0;
}

.contact-item .title span {
  display: block;
  font-family: var(--mt-ff-body);
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.contact-item.item-2 .contact-icon {
  color: var(--mt-color-common-white);
}

.map-wrapper {
  position: relative;
  z-index: 1;
  /* margin-top: -250px; */
  margin-top: 35px;
}

.map-wrapper iframe {
  width: 100%;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme App CSS
----------------------------------------*/
.app-section {
  /* padding-top: 190px; */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .app-section {
    padding-top: 150px;
  }
}

@media only screen and (max-width: 992px) {
  .app-section {
    padding-top: 110px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {

  /* .app-section {
    padding-top: 150px;
  } */
  .comple-title {
    font-size: 25px;
    line-height: 1.6;
  }
}

.app-section .bg-img {
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  width: 52%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.app-section .bg-img-2 {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

@media only screen and (max-width: 992px) {
  .app-section .bg-img-2 {
    width: 65%;
  }
}

@media only screen and (max-width: 767px) {
  .app-section .bg-img-2 {
    width: 100%;
    clip-path: inherit;
  }
}

.app-section .video-btn-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 100px;
}

@media (max-width: 1399px) {
  .app-section .video-btn-wrap {
    margin-left: 0;
  }
}

@media only screen and (max-width: 992px) {
  .app-section .video-btn-wrap {
    display: none;
  }
}

.app-section .video-btn-wrap .video-btn {
  background-color: var(--mt-color-common-white);
  color: var(--mt-color-theme-primary);
  font-size: 30px;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 60px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 60px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

.app-content .section-heading .section-title {
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .app-content .section-heading .section-title {
    max-width: 500px;
    width: 100%;
  }
}

.app-content .section-heading p {
  max-width: 400px;
  width: 100%;
}

.app-content .btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.app-content .btn-wrap .app-btn {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--mt-color-common-white);
  display: flex;
  align-items: center;
  column-gap: 10px;
  border: 1px solid #4c5052;
  padding: 10px 20px;
}

.app-content .btn-wrap .app-btn i {
  color: var(--mt-color-theme-secondary);
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.app-content .btn-wrap .app-btn:nth-child(2) i {
  font-size: 13px;
}

.app-content .btn-wrap .app-btn:hover {
  border: 1px solid var(--mt-color-theme-primary);
}

.app-content .btn-wrap .app-btn:hover i {
  color: var(--mt-color-theme-primary);
}

.app-2 {
  padding: 150px 0;
}

/* !END: Theme App CSS */
/**----------------------------------------
START: Theme Story CSS
----------------------------------------*/
.story-item .story-content .date {
  color: var(--mt-color-common-white);
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.story-item .story-content p {
  color: var(--mt-color-common-white);
  font-size: 14px;
}

.story-item .story-content .read-more {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  font-size: 16px;
  font-weight: 500;
}

.story-item .story-content .read-more i {
  font-size: 12px;
}

.story-item .story-content .read-more:hover {
  color: var(--mt-color-theme-primary);
}

.story-item .story-content.top {
  padding-bottom: 60px;
  padding-left: 50px;
  position: relative;
}

.story-item .story-content.top .dot {
  background-color: var(--mt-color-theme-secondary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 20px;
}

.story-item .story-content.top:before {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 1px;
  width: 20px;
  position: absolute;
  top: 11px;
  left: 0;
}

.story-item .story-content.top:after {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 11px;
  left: 0;
}

.story-item .story-content.bottom {
  padding-top: 60px;
  padding-right: 50px;
  position: relative;
}

.story-item .story-content.bottom .dot {
  background-color: var(--mt-color-theme-secondary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  bottom: 8px;
  right: 20px;
}

.story-item .story-content.bottom:before {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 1px;
  width: 20px;
  position: absolute;
  bottom: 11px;
  right: 0;
}

.story-item .story-content.bottom:after {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  bottom: 11px;
  right: 0;
}

.story-item .year-wrap {
  background-color: var(--mt-color-common-white);
  padding: 5px;
  position: relative;
  z-index: 1;
}

.story-item .year-wrap .years {
  background-color: var(--mt-color-theme-secondary);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 60px 10px 40px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.story-item .year-wrap .years:after {
  background-color: var(--mt-color-common-white);
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

/* !END: Theme Story CSS */
/**----------------------------------------
START: Theme Info CSS
----------------------------------------*/
.info-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
  border-radius: 30px;
  padding-left: 125px;
  padding-right: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1170px) {
  .info-wrap {
    flex-direction: column;
    row-gap: 30px;
    justify-content: flex-start;
    align-items: baseline;
  }
}

@media only screen and (max-width: 992px) {
  .info-wrap {
    padding-left: 50px;
    border-radius: 0;
  }
}

@media only screen and (max-width: 767px) {
  .info-wrap {
    padding: 30px;
  }
}

.info-wrap .robot {
  width: 320px;
  height: 400px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
}

.info-wrap .robot:after,
.info-wrap .robot:before {
  background-color: var(--mt-color-theme-primary);
  content: "";
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  left: -60px;
  z-index: -2;
}

.info-wrap .robot:after {
  background-color: var(--mt-color-theme-secondary);
  left: auto;
  right: -60px;
}

@media (max-width: 1170px) {
  .info-wrap .robot {
    left: auto;
    right: 125px;
  }
}

@media only screen and (max-width: 992px) {
  .info-wrap .robot {
    right: 50px;
    width: 258px;
    height: 320px;
  }
}

@media only screen and (max-width: 767px) {
  .info-wrap .robot {
    position: inherit;
    left: 0;
    right: 0;
    width: 100%;
  }

  .info-wrap .robot img {
    width: 100%;
  }
}

.info-wrap .info-left .section-heading {
  margin-bottom: 30px;
}

.info-wrap .info-left .section-heading .section-title {
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
}

.info-wrap .info-left .section-heading p {
  color: var(--mt-color-heading-primary);
  max-width: 500px;
  width: 100%;
  font-weight: 500;
}

.info-wrap .info-left .section-heading p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .info-wrap .info-left .section-heading p {
    max-width: 400px;
    font-size: 14px;
  }
}

.info-wrap .info-left .info-box {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  grid-gap: 30px;
}

@media only screen and (max-width: 767px) {
  .info-wrap .info-left .info-box {
    grid-gap: 15px;
  }
}

.info-wrap .info-left .info-box .icon {
  background-color: var(--mt-color-theme-secondary);
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-wrap .info-left .info-box .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.info-wrap .info-left .info-box .title span {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  display: block;
  font-weight: 400;
  margin-top: 10px;
}

/* !END: Theme Info CSS */
/**----------------------------------------
START: Theme Web CSS
----------------------------------------*/
.web-section {
  background-color: #fffdfd;
  position: relative;
  z-index: 1;
}

.web-section .bg-color {
  background-color: var(--mt-color-border-3);
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.web-content {
  max-width: 935px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.web-content .top-content {
  background-color: var(--mt-color-common-white);
  display: flex;
  align-items: center;
  column-gap: 30px;
  padding-left: 10px;
  padding-top: 10px;
}

.web-content .top-content .dots {
  line-height: 1;
  margin-top: 3.5px;
}

.web-content .top-content .dots span {
  background-color: var(--mt-color-theme-secondary);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
}

.web-content .top-content .dots span:nth-child(2) {
  background-color: var(--mt-color-theme-primary);
}

.web-content .top-content .dots span:nth-child(3) {
  background-color: var(--mt-color-common-pink);
}

.web-content .top-content a {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: #bfbfbf;
  line-height: 1;
}

.web-content .web-img {
  border: 10px solid var(--mt-color-common-white);
}

/* !END: Theme Web CSS */
/**----------------------------------------
START: Theme Content CSS
----------------------------------------*/
.content-info {
  padding-right: 30px;
}

@media only screen and (max-width: 992px) {
  .content-info {
    padding-right: 0;
  }
}

.content-info .section-heading {
  margin-bottom: 30px;
}

.content-info .section-heading .sub-heading {
  margin-bottom: 20px;
}

.content-info .section-heading .section-title {
  margin-bottom: 20px;
}

.content-info .section-heading p {
  max-width: 400px;
  width: 100%;
}

/* !END: Theme Content CSS */
/**----------------------------------------
START: Theme Page Header CSS
----------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -25px center;
  width: 100%;
  height: 330px;
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 1700px) {
  .page-header {
    /* background-position: -150px center; */
  }
}

@media only screen and (max-width: 992px) {
  .page-header {
    background-position: 0 center;
    height: auto;
    padding: 50px 0;
    /* background-image: inherit !important; */
  }
}

.page-header .custom-container {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.page-header .shapes .shape {
  position: absolute;
  /* top: 10%;
  left: 0; */
}

.page-header .shapes .shape.shape-2 {
  left: auto;
  right: 80px;
}

.page-header .shapes .shape.shape-3 {
  top: auto;
  bottom: 10%;
  left: 5%;
}

.page-header-thumb {
  height: 100%;
}

.page-header-thumb img {
  width: 100%;
  height: 100%;
}

.page-header-content {
  padding-top: 75px;
  padding-left: 125px;
}

@media only screen and (max-width: 992px) {
  .page-header-content {
    padding-top: 0;
    padding-left: 80px;
  }
}

.page-header-content .title {
  color: var(--mt-color-heading-primary);
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 30px;
  }
}

.page-header-content .sub-title {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 400;
}

.page-header-content .sub-title .inner-page {
  color: var(--mt-color-theme-primary);
}

/* !END: Theme Page Header CSS */
/**----------------------------------------
START: Theme Blog Details CSS
----------------------------------------*/
.blog-details-content .blog-details-thumb img {
  width: 100%;
}

.blog-details-content .details-meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: 30px 0 25px 0;
}

.blog-details-content .details-meta .category {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
}

.blog-details-content .details-meta p {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

.blog-details-content .details-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 640px;
  width: 100%;
  line-height: 1.5;
}

.blog-details-content .feature-item-wrap {
  max-width: 600px;
  width: 100%;
}

.blog-details-content .blog-details-img {
  max-width: 630px;
  width: 100%;
  margin-bottom: 40px;
}

.blog-details-content .blog-details-img img {
  width: 100%;
}

.blog-details-content .comments-area .comment-header {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.blog-details-content .comments-area .comment-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--mt-color-border-1);
}

@media only screen and (max-width: 767px) {
  .blog-details-content .comments-area .comment-item {
    grid-template-columns: 1fr;
  }
}

.blog-details-content .comments-area .comment-item .comment-info .author {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.blog-details-content .comments-area .comment-item .comment-info p {
  font-size: 16px;
  color: var(--mt-color-text-body);
  max-width: 530px;
  width: 100%;
  margin-bottom: 0;
}

.blog-details-content .comments-area .comment-item .comments-meta {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.blog-details-content .comments-area .comment-item .comments-meta span {
  font-size: 17px;
  font-family: var(--mt-ff-body);
  font-weight: 400;
  line-height: 1;
}

.blog-details-content .comments-area .comment-item .comments-meta button {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-theme-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  margin-left: 50px;
}

.blog-details-content .comments-area .comment-item:nth-child(3) {
  margin-left: 90px;
}

@media only screen and (max-width: 767px) {
  .blog-details-content .comments-area .comment-item:nth-child(3) {
    margin-left: 0;
  }
}

.blog-details-content .blog-form .form-header {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}

.blog-details-content .blog-form .form-group .form-control {
  color: var(--mt-color-text-body);
  box-shadow: none;
  border: 1px solid var(--mt-color-border-1);
  padding: 15px;
  padding-left: 20px;
  margin-bottom: 30px;
}

.blog-details-content .blog-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--mt-color-text-body);
}

.blog-details-content .blog-form .form-group .form-control:-moz-placeholder {
  color: var(--mt-color-text-body);
}

.blog-details-content .blog-form .form-group .form-control::-moz-placeholder {
  color: var(--mt-color-text-body);
}

.blog-details-content .blog-form .form-group .form-control:-ms-input-placeholder {
  color: var(--mt-color-text-body);
}

.blog-details-content .blog-form .form-group .form-control option {
  padding: 10px;
}

.blog-details-content .blog-form .submit-btn {
  margin-top: 20px;
}

.sidebar-widget {
  padding: 12px 8px;
  border: 1px solid var(--mt-color-border-1);
  border-radius: 20px;
}

.sidebar-widget:not(:last-of-type) {
  margin-bottom: 50px;
}

.sidebar-widget.search {
  border: none;
  padding: 0;
}

.sidebar-widget.search .search-form {
  position: relative;
}

.sidebar-widget.search .search-form .form-control {
  border: 1px solid var(--mt-color-border-1);
  border-radius: 30px;
  box-shadow: none;
  padding-left: 20px;
}

.sidebar-widget.search .search-form .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
  display: block;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sidebar-widget .widget-title {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.sidebar-widget .widget-title:before {
  background-color: rgb(241 7 7);
  content: "";
  width: 50%;
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.sidebar-widget .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mt-ff-body);
  color: #1a73e8;
  font-size: 14px;
  font-weight: 400;
}

.sidebar-widget .category-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.sidebar-widget .category-list li:hover {
  /* color: var(--mt-color-theme-primary); */
}

.sidebar-widget .category-list li a i {
  padding-right: 10px;
}

.sidebar-widget .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
}

.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 20px;
}

.sidebar-widget .tags li a {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  font-weight: 400;
  padding: 5px 15px;
  border: 1px solid var(--mt-color-border-1);
}

.sidebar-widget .tags li a:hover {
  background-color: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
  border: 1px solid var(--mt-color-theme-primary);
}

.sidebar-widget .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 95px 1fr;
  grid-gap: 20px;
}

.sidebar-widget .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}

.sidebar-widget .sidebar-post .post-content .post-meta li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.sidebar-widget .sidebar-post .post-content .title {
  font-size: 17px;
  margin-bottom: 0;
  font-weight: 600;
}

.sidebar-widget .sidebar-post .post-content .title a:hover {
  color: var(--mt-color-theme-primary);
}

.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Theme Error CSS
----------------------------------------*/
.error-content {
  text-align: center;
}

.error-content .title {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 15px 0;
}

.error-content p {
  margin-bottom: 20px;
}

/* !END: Theme Error CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 15px;
  z-index: 1;
}

.footer-section .overlay {
  /* background-color: rgba(40, 41, 54, 0.91); */
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 60px;
  row-gap: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid grey;
}

@media only screen and (max-width: 992px) {
  .footer-top {
    column-gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer-top .footer-logo {
  padding: 10px 0;
  position: relative;
}

@media only screen and (max-width: 992px) {
  /* .footer-top .footer-logo {
    padding: 50px 30px;
  } */
}

.footer-top .footer-logo:after {
  /* background-color: rgb(247, 7, 123); */
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  right: 0;
}

.footer-top .footer-logo:before {
  background-color: transparent;
  content: "";
  width: 3000px;
  /* height: 100%; */
  /* border: 1px solid #4c4b53; */
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-top .footer-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 80px;
  flex-wrap: wrap;
  row-gap: 20px;
  /* margin: 20px 0; */
}

@media only screen and (max-width: 992px) {
  /* .footer-top .footer-form-wrap {
    column-gap: 30px;
  } */
}

.footer-top .footer-form-wrap .news {
  color: var(--mt-color-common-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.footer-top .footer-form-wrap .news span {
  font-family: var(--mt-ff-body);
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}

.footer-top .footer-form-wrap .footer-form {
  position: relative;
}

.footer-top .footer-form-wrap .footer-form .form-control {
  width: 435px;
  padding: 15px;
  box-shadow: none;
  border: none;
  padding-right: 135px;
}

@media only screen and (max-width: 767px) {
  .footer-top .footer-form-wrap .footer-form .form-control {
    width: 100%;
  }
}

.footer-top .footer-form-wrap .footer-form button {
  background-color: rgb(241 7 7);
  color: var(--mt-color-common-white);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  /* height: 54px; */
  padding: 0 25px;
  font-size: 17px;
  font-family: var(--mt-ff-body);
  font-weight: 500;
  border-radius: 0 5px 5px 0;
}

.footer-top .footer-form-wrap .footer-form button:hover {
  opacity: 0.8;
}

.footer-widget.widget-2 {
  margin-left: 88px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.widget-2 {
    margin-left: 0;
  }
}

.footer-widget.widget-3 {
  margin-left: 50px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.widget-3 {
    margin-left: 0;
  }
}

.footer-widget.widget-4 {
  margin-left: 20px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.widget-4 {
    margin-left: 0;
  }
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}

.footer-widget .widget-header {
  color: #fff;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-color: rgb(241 7 7);
  margin-bottom: 35px;
  margin-bottom: 35px;
}

.footer-widget .address-list {
  list-style: none;
  margin-bottom: 30px;
}

.footer-widget .address-list li {
  font-family: var(--mt-ff-body);
  font-size: 16px;
  color: var(--mt-color-common-white);
  display: flex;
  column-gap: 10px;
}

.footer-widget .address-list li:not(:last-of-type) {
  margin-bottom: 15px;
}

.footer-widget .address-list li i {
  color: var(--mt-color-theme-secondary);
  line-height: 1;
  margin-top: 6px;
}

.footer-widget .address-list li:nth-child(2) i {
  color: var(--mt-color-theme-primary);
}

.footer-widget .address-list li:nth-child(3) i {
  color: #ff8c91;
}

.footer-widget .address-list li a:hover {
  color: rgb(247, 7, 123);
}

.footer-widget .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.footer-widget .social-list li a {
  color: var(--mt-color-theme-secondary);
  font-size: 17px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #e6e6e9;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget .social-list li a:hover {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-common-black);
}

.footer-widget .social-list li:nth-child(2) a:hover {
  color: var(--mt-color-common-white);
}

.footer-widget .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

.footer-widget .footer-list {
  list-style: none;
}

.footer-widget .footer-list li a {
  font: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.1s ease-in-out;
}

.footer-widget .footer-list li a:hover {
  color: #ff4f01;
  margin-left: 5px;
}

.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.footer-widget .footer-post {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  grid-gap: 20px;
}

.footer-widget .footer-post img {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-widget .footer-post span {
  font-family: var(--mt-ff-body);
  display: block;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 5px;
}

.footer-widget .footer-post .title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0;
}

.footer-widget .footer-post .title a {
  color: var(--mt-color-common-white);
}

.footer-widget .footer-post .title a:hover {
  color: rgb(247, 7, 123);
}

.copyright-area {
  background-color: var(--mt-color-common-black);
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  padding: 20px 0;
}

@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
    flex-direction: column;
    row-gap: 10px;
    padding: 40px 0;
  }
}

.copyright-content p {
  color: #d7cfcf;
  font-size: 16px;
  font-family: var(--mt-ff-body);
  margin: 0;
  text-align: center;
}

.copyright-content p span {
  color: var(--mt-color-theme-primary);
}

.copyPowerbg {
  background: #0b0ba5;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  margin-right: 25px;
}

.copyPowerbg:hover {
  color: #fff;
  text-decoration: none !important;
  background: #2626a0;
}

.copyPowerbg img {
  width: 57px;
}

@media (max-width: 768px) {
  .copyflex {
    justify-content: center;
  }

  .page-header .shapes .shape.shape-1,
  .page-header .shapes .shape.shape-2 {
    display: none;
  }
}

.copyright-content ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.copyright-content ul li a {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  font-size: 16px;
  line-height: 1;
}

.copyright-content ul li a:hover {
  color: var(--mt-color-theme-primary);
}

.copyright-content ul li:not(:last-of-type) {
  margin-right: 20px;
}

.footer-2 {
  position: relative;
  z-index: 1;
}

.footer-2 .bg-color {
  background-color: var(--mt-color-common-white);
  width: 100%;
  height: 148px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-2 .overlay {
  top: 148px;
}

@media only screen and (max-width: 767px) {
  .footer-2 .footer-top {
    justify-content: center;
  }
}

.footer-2 .footer-top .footer-logo {
  border-left: 5px solid var(--mt-color-theme-primary);
  border-right: 5px solid var(--mt-color-theme-secondary);
}

.footer-2 .footer-top .footer-logo:before {
  border: none;
}

.footer-2 .footer-top .footer-logo:after {
  display: none;
}

.footer-2 .footer-form-wrap .news {
  display: none;
}

.footer-2 .footer-form-wrap .footer-form .form-control {
  border: 1px solid var(--mt-color-border-1);
}

/*Scrool Up*/
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 10px;
  right: 0px;
  overflow: hidden;
  z-index: 99;
}

.scroll-to-top {
  width: 34px;
  height: 34px;
  text-align: center;
  background-color: rgb(241 7 7);
  font-size: 18px;
  padding: 0;
  line-height: 34px;
  color: var(--mt-color-common-white);
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}

#scrollup.show {
  opacity: 1;
}

#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* !END: Theme Footer CSS */

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

/* rays css start */
.side-menu-logo img {
  width: 130px;
}

.girl-img {
  overflow: hidden;
  border-radius: 50%;
  width: auto !important;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .girl-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: circle(50% at 50% 50%);
  object-fit: cover;
} */
.we-build {
  text-transform: capitalize;
  font-size: 52px;
  font-family: fangsong;
}

.kamau {
  text-transform: uppercase;
  font-size: 52px;
  color: red;
}

.developer {
  display: inline-block;
  word-spacing: 130px;
  text-transform: capitalize !important;
  font-size: 50px;
  font-weight: 600;
  font-family: fangsong;
  /* animation: flash 1.1s infinite; */
}

.rupees {
  text-transform: uppercase;
  font-size: 50px;
}

#typing-text .highlight {
  color: #32c5ff;
  /* Change the color of the letter 'rs' */
}

#typing-text {
  border-right: 2px solid #fff;
  /* Cursor effect */
}

.recruit-mt {
  margin-top: 60px;
}

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

.socialLinks a {
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  text-align: center;
  background: #0d88f0;
  color: #fff;
  border: 1px solid transparent;
}

.socialLinks a.yt {
  background: #ed2b29;
}

.socialLinks a.tw {
  background: #000;
}

.socialLinks a.insta {
  background: #f7077b;
}

.socialLinks a.whatsapp {
  background: #00af54;
}

.socialLinks a.linkedin {
  background: #0077b5;
}

.socialLinks a.blog {
  background: #555555;
}

.socialLinks a.gitic {
  background: #000;
}

.socialLinks a.msg {
  background: #e44a5c;
}

.socialLinks a:hover {
  transform: translateY(-8px);
}

.footer-logo a img {
  max-width: 130px;
  padding: 20px 0;
}

.training-para {
  padding-top: 10px;
  width: 85%;
  margin: 0 auto;
}

.foundation-title {
  color: #175cff;
  margin-bottom: 25px;
}

.post-ul {
  padding-left: 20px;
  list-style: square;
}

.ps-ht {
  height: 300px;
  background: linear-gradient(336.99deg,
      rgba(251, 232, 255, 0.58) 30.32%,
      rgb(217 226 245 / 58%) 98.42%);
}

.ps-ht .post-ul li a {
  font-size: 18px;
}

.ps-ht .post-ul li a:hover {
  color: #ee4049;
}

.cs-ht.post-card {
  background: linear-gradient(336.99deg,
      rgba(251, 232, 255, 0.58) 30.32%,
      rgb(217 226 245 / 58%) 98.42%);
  box-shadow: 0px 6px 0px 0px lightgrey;
  border-radius: 8px;
  margin: 3px;
}

.cs-ht.post-card .post-content-wrap {
  height: 290px;
  border: none !important;
}

.cs-ht.post-card .post-content {
  border-bottom: none;
}

.corporate-tr_sec {
  padding-bottom: 50px;
}

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

.enquiryForm.contact-info {
  padding-left: 15px;
}

@media only screen and (max-width: 992px) {
  .enquiryForm.contact-info {
    padding-left: 0;
  }
}

.enquiryForm.contact-info .section-heading {
  margin-bottom: 30px;
}

.enquiryForm.contact-info .section-heading p,
.enquiryForm.contact-info .section-heading .section-title {
  color: var(--mt-color-common-black);
  margin-bottom: 15px;
}

.enquiryForm.contact-info .form-wrap .form-group .form-control {
  background-color: transparent;
  color: var(--mt-color-common-black);
  padding: 15px;
  border: 1px solid #464648;
  box-shadow: none;
}

.enquiryForm.contact-info .form-wrap .form-group .form-control::-webkit-input-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: #b4b1b1;
}

.enquiryForm.contact-info .form-wrap .form-group .form-control:-moz-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: #b4b1b1;
}

.enquiryForm.contact-info .form-wrap .form-group .form-control::-moz-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: #b4b1b1;
}

.enquiryForm.contact-info .form-wrap .form-group .form-control:-ms-input-placeholder {
  font-family: var(--mt-ff-body);
  font-size: 17px;
  color: #b4b1b1;
}


.enquiryForm.contact-info .form-wrap .form-group .form-control:focus {
  border: 1px solid rgb(247, 7, 123);
  box-shadow: none;
  background-color: transparent;
}

.contact-top-area {
  /* margin-bottom: -250px; */
  position: relative;
  z-index: 2;
}

.sidebar-widget .category-list.mycat-list li {
  justify-content: start;
  column-gap: 5px;
}

.sideht {
  height: 365px;
}

.repobtn {
  background-color: rgb(241 7 7);
  border-color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 11pt;
  padding: 7px;
  text-align: center;
  margin: 10px;
  border-radius: 8px;
  display: block;
}

.repobtn:hover {
  opacity: 0.8;
  color: #fff;
}

.book-section {
  margin-top: -25px;
}

.youtube-box iframe {
  width: 100%;
  border-radius: 8px;
}

.about-iframe {
  margin-top: 25px;
}

.mycase-accordion .accordion-item {
  background-color: #fff;
  border: none;
}

.mycase-accordion .accordion-button {
  background-color: #f2f2f2;
  color: rgb(241 7 7);
  box-shadow: none;
  border: none;
  padding: 20px 50px;
  margin: 4px 0;
  font-size: 22px;
}

.mycase-accordion .accordion-button:not(.collapsed) {
  border-bottom: 4px solid rgb(241 7 7);
  color: rgb(241 7 7);
  font-weight: bold;
  background-color: #f2f2f2;
  cursor: default;
}

.mycase-accordion .accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

/* .mycase-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("https://nsm09.casimages.com/img/2021/06/17//21061710471725998217466601.png");
  transform: rotate(-180deg);
} */

.mycase-accordion .accordion-button::after {
  display: none;
}

.mycase-accordion .accordion-body ul {
  list-style: square;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-left: 50px;
}

.mycase-accordion .accordion-body ul li {
  font-size: 20px;
}

.mycase-accordion .accordion-body ul li a:hover {
  color: rgb(241 7 7);
}

.about-iframe iframe {
  width: 100%;
  height: 440px;
  box-shadow: 0 0 5px 0 rgba(13.99999999999992, 0, 253, 0.89);
  border-radius: 4px;
}

.abt-index {
  padding-top: 0;
}

.testi-carousel .swiper-wrapper,
.testi-carousel-2 .swiper-wrapper {
  height: auto;
}

.testimonial-section {
  height: auto;
}

/* gallery image zoom css start */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.zoomimgmodal.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  padding-top: 30px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
  /* overflow: hidden; */
  outline: 0;
}

/* Modal Content (image) */
.zoomimgmodal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: auto;
}

/* Add Animation */
.zoomimgmodal .modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* The Close Button */
.zoomimgmodal .closed {
  float: right;
  position: relative;
  top: 0;
  right: 40px;
  color: #f1f1f1;
  font-size: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.zoomimgmodal .closed:hover,
.zoomimgmodal .closed:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.zoomimgmodal.modal {
  overflow-y: auto;
  /* Enable vertical scrolling */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

/* Hide scrollbar for Webkit browsers */
.zoomimgmodal.modal::-webkit-scrollbar {
  display: none;
}

.mynews-img {
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  /* box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px; */
  border-radius: 4px;
}

.mynews-img img {
  height: 400px !important;
  width: 100%;
  padding: 4px;
  /* object-fit: inherit !important; */
}

.myImg:hover {
  opacity: 0.9;
  cursor: pointer;
}

.gal-iframe {
  height: 400px;
  width: 100%;
  border-radius: 4px;
}

.side-menu-list li:nth-child(1)>i {
  /* width: 65px; */
}

.progress-bar-container {
  width: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
  background-color: #111;
  border-radius: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(189, 149, 62, 0.4);
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 35px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.4);
}

.filler {
  background: linear-gradient(45deg, #954313, #dda699, #6a230e);
  height: 100%;
  border-radius: 30px;
  transition: width 2s ease-in-out;
  box-shadow: 0 4px 10px rgb(169 85 60 / 50%), 0 0 20px rgb(193 70 22 / 40%);
  position: relative;
  overflow: hidden;
}

.filler::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgb(143 54 20 / 20%) 25%,
      transparent 25%,
      transparent 50%,
      rgb(185 45 14 / 20%) 50%,
      rgb(143 36 12 / 20%) 75%,
      transparent 75%,
      transparent 100%);

  background-size: 40px 40px;
  animation: stripes 1s linear infinite;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 100%);
  background-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.overlay::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  /* border: 4px solid rgba(139, 69, 19, 0.8); */
  pointer-events: none;
  border-radius: 34px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9), 0 0 20px rgba(139, 69, 19, 0.6);
  z-index: 2;
}

.progress-bar::after {
  content: "PAGE IN PROGRESS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 4px #000;
  font-weight: bold;
  z-index: 3;
  pointer-events: none;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse at center,
      rgba(228, 128, 14, 0.3) 0%,
      rgba(0, 255, 0, 0) 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.progress-bar-container:hover .glow {
  opacity: 1;
  animation: pulse 1.5s infinite;
}

@keyframes stripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 40px 0;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

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

.success-home-box {
  text-align: center;
  margin-top: 60px;
}

.contact-ht-shadow {
  height: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 40px 28px;
}

.contact-ht-shadow-satelite {
  height: 260px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 40px 28px;
}

.ed-tech {
  color: #fff;
  font-size: 22px;
}

#sy-whatshelp {
  right: 7px;
  bottom: 65px;
  position: fixed;
  z-index: 998;
  /* display: none; */
}

#sy-whatshelp a {
  position: relative;
}

#sy-whatshelp a.sywh-open-services {
  background-color: #129bf4;
  color: #fff;
  line-height: 38px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  box-shadow: 2px 2px 8px -3px #000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  display: inline-block;
}

#sy-whatshelp a.sywh-open-services i {
  line-height: 40px;
}

#sy-whatshelp .sywh-services {
  width: 55px;
  height: auto;
}

#sy-whatshelp .sywh-services a i {
  background-color: #129bf4;
  color: #fff;
  line-height: 55px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 23px;
  width: 55px;
  height: 55px;
  text-align: center;
  box-shadow: 2px 2px 8px -3px #000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
}

#embedded-form {
  width: 100%;
  height: 500px;
  /* Adjust the height as needed */
  border: none;
  /* Optional: Remove border */
}

.athimg img {
  width: 72px;
  height: 72px;
}

/* fixed social*/
#fixed-social {
  position: fixed;
  top: 250px;
  z-index: 99;
  display: none;
}

#fixed-social a {
  color: #fff;
  display: block;
  height: 40px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 40px;
  margin-bottom: 1px;
  z-index: 2;
}

#fixed-social a:hover>span {
  visibility: visible;
  left: 41px;
  opacity: 1;
}

#fixed-social a span {
  line-height: 40px;
  left: 60px;
  position: absolute;
  text-align: center;
  width: 120px;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
}

.fixed-facebook {
  background-color: #1877f2;
}

.fixed-facebook span {
  background-color: #1877f2;
}

.fixed-twitter {
  background-color: rgb(247, 7, 123);
}

.fixed-twitter span {
  background-color: rgb(247, 7, 123);
}

.fixed-gplus {
  background-color: #00af54;
}

.fixed-gplus span {
  background-color: #00af54;
}

.fixed-linkedin {
  background-color: #0077b5;
}

.fixed-linkedin span {
  background-color: #0077b5;
}

.fixed-instagrem {
  background-color: #ed2b29;
}

.fixed-instagrem span {
  background-color: #ed2b29;
}

/*end fixed social*/
.redicon {
  color: rgb(241 7 7) !important;
  font-weight: 700 !important;
}

.sp-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  margin: 0 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.sp-box>h3 {
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
  display: block;
  text-transform: capitalize;
  position: relative;
  background: linear-gradient(100deg,
      rgb(167 40 102) 14.58%,
      #f1116e 32.1%,
      #6a11b0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sp-box p {
  text-align: left;
}

.specialities-list {
  list-style: square;
  padding-left: 20px;
}

.specialities-list li {
  margin-bottom: 0;
}

.timeline-main {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 25px;
  margin-bottom: 45px;
}

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

.theory-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 20px 10px;
  border-radius: 4px;
  height: 160px;
  width: 130px;
  width: 130px;
  background: linear-gradient(336.99deg,
      rgba(251, 232, 255, 0.58) 30.32%,
      rgba(209, 224, 255, 0.58) 98.42%);
}

.books-bg {
  width: 80px;
  height: 80px;
  background-color: orange;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.books-bg i {
  display: inline-block;
  font-size: 25px;
  color: #fff;
}

.theory-icon h5 {
  font-size: 14px;
  padding-top: 10px;
  text-align: center;
  color: #000;
}

.plus_icon {
  margin: 0 20px;
}

.iso-img img {
  width: 140px;
}

.author p {
  font-style: normal;
  color: #666464 !important;
}

.testi-page .testi-item .testi-content:hover .author p {
  color: #fff !important;
}

.testi-page .testi-item .testi-content:hover .author span {
  color: #ffc226;
}

.author-box>img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  border: 1px solid #e9e9d7;
  padding: 2px;
  background-color: whitesmoke;
}

/* modal contact us */
#successModal .mymodal-header {
  border: none;
  padding: 2px;
}

#successModal .mymodal-header .btn-close {
  font-size: 12px;
  cursor: pointer;
  padding: 8px 24px 15px 5px;
}

#successModal .mymodal-header .btn-close:focus {
  box-shadow: none;
}

#successModal .modal-content {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
  cursor: pointer;
  display: none;
}

.circle2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8cc63e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.circle2 i {
  color: #fff;
}

.enquiryForm .myformselect {
  padding: 15px;
  border: 1px solid rgb(70, 70, 72);
}

.enquiryForm .myformselect:focus {
  border: 1px solid rgb(247, 7, 123);
  box-shadow: none;
}

.contactus-form .myformselect {
  padding: 8px;
  border: 1px solid rgb(70, 70, 72);
  background-color: transparent;
  color: #fff;
}

.contactus-form .myformselect:focus {
  border: 1px solid rgb(247, 7, 123);
  box-shadow: none;
}

.contactus-form .myformselect option {
  color: #000 !important;
}

.enquiryForm .myformselect::placeholder {
  color: #b4b1b1;
}

.styles-audience {
  padding-left: 1.3rem;
}

.side-bar .single-widget {
  /* margin-bottom: 35px; */
}

.side-bar .features-box {
  /* background: #fff;
  padding: 25px 20px; */
  /* margin-bottom: 10px; */
}

.side-bar .single-widget .title {
  font-size: 18px;
  text-transform: uppercase;
  margin: 10px;
  text-align: center;
}

.side-bar .features-box ul li:first-child {
  margin-top: 0;
}

.side-bar .features-box ul li {
  /* margin-top: 10px; */
  padding: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  list-style: none;
}

.side-bar .features-box ul li i {
  color: rgb(241 7 7);
  margin-right: 4px;
}

.side-bar .features-box ul li span {
  float: right;
}

.content-curriculum h2 {
  margin-bottom: 22px;
  font-size: 20px;
  margin-top: 22px;
  color: #4a4c4e;
}

.content-curriculum h3 {
  font-size: 18px;
  color: #4a4c4e;
  margin-top: 15px;
}

.content-curriculum ul {
  margin-left: 2.5rem;
}

.page-header-content .sub-title>a {
  font-weight: 600;
}

.inner-page {
  font-weight: 400 !important;
}

.figure-caption {
  margin-top: 15px;
}

.figure-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.features-box table {
  width: 100%;
  margin: auto;
  border-collapse: collapse;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.features-box tr:last-child {
  border-bottom: none;
}

.features-box th,
.features-box td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.features-box th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.features-box tr:hover {
  background-color: #f1f1f1;
}

.features-box tr:nth-child(even) {
  background-color: #fafafa;
}

.features-box td {
  font-size: 15px;
}

.course-leftUp {
  padding-top: 35px;
  padding-left: 14px;
}

.course-leftUp .title {
  font-size: 35px;
}

.coretitle {
  color: #ee2c3c;
}

.mypageheader {
  height: 255px;
  padding-top: 85px;
}

.course-tab {
  display: block;
  border: 1px solid #ddd;
  margin-bottom: 40px;
  border-radius: 4px;
}

.course-tab .nav-tabs {
  margin: -1px 0 20px -1px;
  border: none;
}

.course-tab .nav-tabs .nav-link:first-child {
  margin-left: 8px;
}

.course-tab .nav-tabs .nav-link {
  color: #4c4b4e;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  border-radius: 0;
  margin: 8px 0;
  border-radius: 4px;
  border: 1px dashed #89888d;
  padding: 8px 10px;
  background-color: #fff !important;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.course-tab .nav-tabs .nav-link.active {
  color: #000 !important;
  font-family: var(--mt-ff-heading);
  background-color: #ececef !important;
  border: 1px solid #c5c4c9;
}

.mycourse-sec .title {
  color: #3d3d40;
  font-weight: 400;
  font-size: 30px;
}

.contactus-form2 .myformselect {
  border: var(--bs-border-width) solid var(--bs-border-color);
  background-color: transparent;
}

.contactus-form2 .myformselect:focus {
  border: 1px solid rgb(247, 7, 123);
  box-shadow: none;
}

.contactus-form2 input:focus {
  border: 1px solid rgb(247, 7, 123);
  box-shadow: none;
}

.contactus-form2 .myformselect option {
  color: #000 !important;
}

.contactus-form2 textarea:focus {
  border: 1px solid rgb(247, 7, 123);
  box-shadow: none;
}

.pt-50 {
  padding-top: 50px;
}

#contactUsForm input[type="text"][readonly] {
  background-color: rgb(135 135 135 / 10%);
  color: #918f8f;
}

#contactUsForm input[type="text"][readonly]:focus {
  border: 1px solid #dee2e6;
  box-shadow: none;
}

.bag-img img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li span {
  font-size: 16px;
  float: right;
  margin-right: 8px;
}

.pt-abtpage {
  padding-top: 150px;
  padding-bottom: 95px;
}

.corejava-ul {
  list-style: none;
  margin-left: 0 !important;
}

.corejava-ul b {
  display: inline-block;
  font-size: 17px;
  color: #4a4c4e;
}

.corejava-ul li ul {
  list-style: disc;
  margin-left: 1.8rem !important;
  margin-bottom: 10px;
  margin-top: 3px;
}

.myfeatures-list {
  list-style-type: none;
  padding: 0;
}

.myfeature-item {
  margin-top: 10px;
  margin-bottom: 18px;
  padding: 15px;
  border-radius: 5px;
  background: rgb(255, 241, 229);
  box-shadow: 0px 3px 0px 0px lightgrey;
}

.myfeature-item strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 5px;
  font-weight: 600;
  color: #3a3939;
}

.dsl-ul li p {
  font-size: 18px;
  margin-bottom: 4px;
}

.adv-ul {
  padding-left: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.discbtn {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid grey;
}

.discbtn:hover {
  color: #fff !important;
  border: 1px solid transparent;
}

.content-curriculum.devops h2 {
  margin-bottom: 0;
}

.content-curriculum.devops h3 {
  margin-top: 12px;
}

.content-curriculum ul li span {
  font-weight: 600;
}

.lang-btn-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 7px;
}

.lang-btn-box button {
  color: #4c4b4e;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px dashed #89888d;
  padding: 0 5px;
  background-color: #fff;
  cursor: auto;
}

.mern-anchor a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mern-anchor a:hover {
  color: rgb(241 7 7);
}

.ind-ul {
  list-style: none;
}

.ind-ul li::before {
  content: url(../img/rays/rightticon.png) !important;
  margin-right: 15px;
}

.dashboard {
  display: flex;
  justify-content: center;
  padding: 0 0 30px;
  margin-bottom: 25px;
}

.count-block:first-child {
  border: none;
}

.count-num {
  display: block;
  font-size: 1.5em;
  font-weight: 900;
  color: #000000;
}

.count-type {
  display: block;
  font-size: 1.125em;
  font-weight: 500;
  color: #000000;
}

.count-block {
  text-align: center;
  color: #5f7d95;
  padding: 15px 25px;
  border-left: 1px solid #8d8d8d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.count-block .counter-icon {
  background-color: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
  font-size: 30px;
  height: 70px;
  width: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 2px solid #dfc5c5;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.count-block .counter-icon img {
  width: 35px;
}

.mycardplace.post-card.card-2:hover .post-review-wrap a {
  color: #9e9898;
}

.youtube {
  background-color: #000;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  margin-bottom: 30px;
  cursor: pointer;
  height: 300px;
}

.youtube img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.youtube .play-button {
  width: 60px;
  height: 35px;
  /* background-color: #ff0000 !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6); */
  z-index: 1;
  opacity: 0.8;
  border-radius: 14%;
  position: absolute;
  top: 50%;
  left: 50%;
  /* margin-left: -34px;
  margin-top: -24px; */
  background: url("https://img.icons8.com/ios-filled/50/000000/play-button-circled--v1.png") no-repeat;
  background-size: contain;
}

.youtube iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.mock-block {
  padding: 15px 25px;
  border: 1px solid #8d8d8d;
  height: 280px;
  margin-bottom: 20px;
}

.meet-img {
  max-width: 100%;
  height: auto;
}

.cp-ht.post-card {
  background: rgb(255, 241, 229);
  box-shadow: 0px 6px 0px 0px lightgrey;
  border-radius: 8px;
  margin: 3px;
}

.cp-ht.post-card .post-content-wrap {
  height: 320px;
  border: none !important;
}

.cp-ht.post-card .post-content {
  border-bottom: none;
}

.cp-ht .post-ul li a:hover {
  color: #ee4049 !important;
}

.cp-ht.post-card .post-content .title {
  font-size: 20px;
}

.cp-carousel {
  padding-bottom: 60px;
}

.pl-course-sec {
  padding-bottom: 40px;
}

.cs-ht .post-ul li a:hover {
  color: #ee4049 !important;
}

.mode-content h4 {
  color: #fff;
  /* font-family: fangsong; */
}

.mode-content h4 i {
  color: #ffc226;
  margin-right: 10px;
}

.room-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.room-btn-wrap span {
  /* font-family: fangsong; */
  font-size: 16px;
  /* font-weight: 700; */
  color: var(--mt-color-common-white);
  display: inline-block;
  padding-bottom: 5px;
}

.room-btn-wrap span:not(:nth-child(4)):after {
  content: "|";
  margin-left: 10px;
  color: rgb(202, 195, 195);
  display: inline-block;
}

.leave-pt {
  padding-top: 120px;
  padding-bottom: 50px;
}

.add-pt {
  padding-top: 190px;
  padding-bottom: 0;
}

.galleryimg-ht .post-card .post-thumb img {
  height: 250px !important;
  padding: 3px;
}

.testimonial-heading {
  font-size: 16px !important;
}

/* youtube */
.team-thumb {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  pointer-events: none;
}

.team-content {
  padding: 20px;
}

.team-social {
  margin-top: 10px;
}

.team-box .youtube {
  background-color: #000;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  margin-bottom: 0;
  /* height: 440px; */
}

.team-box .youtube img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.team-box .youtube .play-button {
  background-color: #333;
  opacity: 0.8;
  border-radius: 14%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("https://img.icons8.com/ios-filled/50/000000/play-button-circled.png") no-repeat;
  background-size: contain;
  cursor: pointer;
  margin-left: 0;
  margin-top: 0;
}

.college-table th,
.college-table td {
  vertical-align: middle;
}

.college-table a {
  color: #0d6efd;
  text-decoration: none;
}

.college-table a:hover {
  text-decoration: underline !important;
}

.webworld {
  color: #0b57d0;
  height: 20px;
  width: 20px;
  display: inline-block;
}

.buyamazon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.buyamazon-btn a img {
  width: 140px;
}

.about-authorbooks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 70px;
}

.about-authorbooks .author-info {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-direction: column;
}

.about-authorbooks .author-info .author-img {
  position: relative;
  padding: 5px;
  z-index: 1;
}

.about-authorbooks .author-info .author-img img {
  max-width: 100%;
  height: auto;
  background-color: #f5f0f0;
}

.about-authorbooks .author-info .author-img:before {
  background-color: var(--mt-color-theme-primary);
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-authorbooks .author-info .author-img:after {
  background-color: var(--mt-color-theme-secondary);
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.about-authorbooks .author-info .name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 14px;
}

.about-authorbooks .author-info .name span {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 3px;
  line-height: 23px;
}

.about-authorbooks .author-info .name span>a {
  color: #818080;
}

.about-authorbooks .author-info .name span>a:hover {
  color: #f14747;
}

.certificatelist ul li {
  margin-bottom: 8px;
}

.trending-course-carousel {
  position: relative;
  padding-bottom: 50px;
}

.online-offline-tab-height.post-content {
  padding: 0;
}

.online-offline-btn-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.online-offline-btn-box a {
  font-size: 15px;
  margin: 10px 0;
}

.online-offline-btn-box a:nth-child(2) {
  background-color: #f10707;
  border: none;
}

.trending-course-carousel .about-tab .tab-content {
  padding: 0 7px 0;
}

.mle-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mle-img img {
  height: 260px;
  width: 400px;
}

.about-ray-list>h3 {
  color: #8f8f91;
}

.about-ray-list ul {
  list-style: none;
}

.about-ray-list ul li {
  display: flex;
  column-gap: 5px;
  font-family: var(--mt-ff-p);
  font-size: 16px;
  font-weight: var(--mt-fw-normal);
  color: var(--mt-color-text-body);
  line-height: 25px;
}

.about-ray-list ul li i {
  color: var(--mt-color-theme-secondary);
  margin-right: 5px;
  padding-top: 5px;
  display: inline-block;
}

.about-ray-list ul li:nth-child(2) i {
  color: var(--mt-color-common-pink);
}

.about-ray-list ul li:nth-child(3) i {
  color: var(--mt-color-common-primary);
}

.about-ray-list ul li:nth-child(4) i {
  color: var(--mt-color-common-green);
}

.about-ray-list ul li:nth-child(5) i {
  color: var(--mt-color-common-purple);
}

.about-ray-list ul li {
  margin-bottom: 8px;
}

.premier-title {
  display: inline-block;
  font-size: 25px;
  line-height: 35px;
  margin-top: 10px;
}

.ourservice-section .feature-item .title {
  font-size: 20px;
}

.ourservice-section .feature-item {
  margin-bottom: 20px;
}

.conflict-title {
  font-size: 20px;
  line-height: 35px;
}

.trending-course-carousel .post-card .post-thumb .category {
  top: 4px;
  right: 4px;
  text-transform: capitalize;
  cursor: default;
}

.trending-course-carousel .post-card {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.trending-course-carousel .post-card .post-thumb img {
  border-radius: 4px 4px 0 0;
}

.notebx .alert.alert-danger {
  margin-top: 10px;
  margin-bottom: 20px;
  border: none;
  /* background-color: transparent; */
  background-color: #d2e7ff;
}

.notebx .alert.alert-danger p {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 20px;
  font-family: "Gravitas One", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #f10707;
}

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

.entrepreneurimg img {
  height: 300px;
  width: 450px;
}

/* .marquee {
  height: 25px;
  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 200%;
  height: 30px;
  position: absolute;
  overflow: hidden;
  animation: marquee 15s linear infinite;
}

.marquee span {
  float: left;
  width: 50%;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
} */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.notebx {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.roles-hex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  column-gap: 15px;
  margin-top: 25px;
}

.hex {
  width: 180px;
  height: 103.9231px;
  background-color: white;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 126px;
  position: relative;
  text-align: center;
  zoom: 1;
  border-right: 1px solid black;
  border-left: 1px solid black;
}

.hex:hover {
  opacity: 0.9;
  box-shadow: red 2px 2px 10px;
}

.hex a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999em;
  position: absolute;
  top: 0;
  left: 0;
}

.hex .corner-1,
.hex .corner-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: -2;
  border-right: 1px solid black;
  border-left: 1px solid black;
  overflow: hidden;
  backface-visibility: hidden;
}

.hex .corner-1:before,
.hex .corner-2:before {
  width: 207.6px;
  /* calc(1.2 * 173px) */
  height: 207.6px;
  /* calc(1.2 * 173px) */
  content: "";
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  z-index: 1;
  background: inherit;
  background-repeat: no-repeat;
  backface-visibility: hidden;
}

.hex .corner-1 {
  z-index: -1;
  transform: rotate(60deg);
}

.hex .corner-1:before {
  transform: rotate(-60deg) translate(-103.9231px, 0);
  transform-origin: 0 0;
}

.hex .corner-2 {
  transform: rotate(-60deg);
}

.hex .corner-2:before {
  transform: rotate(60deg) translate(-51.96155px, -14px);
  /* calc((-1.2 * 150px / 2) + 0), calc((-2 - 1.2 * 2 * 5px) + 0) */
  bottom: 0;
}

.hex .inner {
  color: #333;
}

.hex h4 {
  font-size: 1.15em;
  /* calc(1.2 * 1.2em) */
  margin: 0;
}

.hex hr {
  width: 60%;
  border: 0;
  border-top: 3px solid #26261e;
  /* calc(1.2 * 10px) */
  margin: 12px auto;
  /* calc(1.2 * 10px) */
}

.hex p {
  font-size: 1em;
  /* calc(1.2 * 1em) */
  /* font-family: "Kotta One", serif; */
  width: 80%;
  margin: 0 auto;
}

.hex.hex-1 {
  background: #74cddb;
}

.hex.hex-2 {
  background: #ffc226;
}

.hex.hex-3 {
  background: #a6e155;
}

.hex.hex-4 {
  background: #ff8c91;
}

.hex.hex-5 {
  background: #d4b6e7;
}

.case-feature .specialities-list {
  list-style: decimal;
}

.case-feature .case-sub-feature {
  margin-bottom: 10px;
}

.case-feature .case-sub-feature>p {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}

.case-feature .case-sub-feature ul {
  padding-left: 15px;
}

.placed-student-carousel {
  position: relative;
  padding-bottom: 25px;
  /* margin: 20px 0 0 20px; */
}

.case-study .list-wrap ul {
  list-style: none;
  margin-left: 34px;
}

.case-study .list-wrap ul li {
  display: flex;
  column-gap: 5px;
  font-family: var(--mt-ff-p);
  font-weight: var(--mt-fw-normal);
  color: var(--mt-color-text-body);
  line-height: 25px;
  margin-bottom: 4px;
}

.case-study .list-wrap ul li i {
  color: var(--mt-color-theme-secondary);
  margin-right: 12px;
  padding-top: 5px;
  display: inline-block;
}

.case-study .list-wrap ul li a {
  font-size: 20px;
  line-height: 35px;
  display: flex;
  justify-content: center;
}

.case-study .list-wrap ul li a p {
  text-align: left;
  font-size: 18px;
}

.case-study .list-wrap ul li a p:hover {
  color: rgb(241 7 7);
}

.case-study .list-wrap ul li:nth-child(2) i {
  color: var(--mt-color-common-pink);
}

.case-study .list-wrap ul li:nth-child(3) i {
  color: var(--mt-color-common-primary);
}

.case-study .list-wrap ul li:nth-child(4) i {
  color: var(--mt-color-common-green);
}

.case-study .list-wrap ul li:nth-child(5) i {
  color: var(--mt-color-common-purple);
}

.tp-testimonial__slider {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  /* border: 1px solid #888585; */
  margin: 10px;
}

.left-achievement-sec {
  padding-bottom: 25px;
}

.tp-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}

.tp-img img {
  border-radius: 50%;
  max-width: 180px;
  background-color: #e2e1e1;
}

.asranimg {
  max-width: 140px !important;
}

.tp-testimonial__review {
  padding: 0 10px 0 25px;
}

.tp-testimonial__review span {
  display: inline-block;
  color: #4d4d4e;
  font-weight: 600;
}

.tp-testimonial__quote {
  font-size: 30px;
  display: inline-block;
}

.tp-testimonial__review p {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.7;
  text-align: justify;
}

.tp-testimonial__review h3 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1;
}

.driven-outcome {
  margin-bottom: 20px;
}

.driven-outcome p {
  font-size: 24px;
  line-height: 34px;
}

.tp-testimonial__quote i {
  color: #f10707;
}

/* Rss feed css */
.newslatest-title {
  color: #383535;
  padding-bottom: 16px;
}

#rss-feed,
#job-openings {
  /* background-color: #fbfbfb; */
  margin: auto;
  margin-bottom: 25px;
}

#rss-feed ul,
#job-openings ul {
  width: 100%;
  margin: 0;
  padding: 0;
  margin-left: 28px;
}

#rss-feed li,
#job-openings li {
  list-style: square;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
}

#rss-feed li a,
#job-openings li a {
  margin: 0;
  padding: 0 0.5em;
}

#rss-feed li a:hover {
  color: #f10707;
}

#job-openings li a:hover {
  color: #f10707;
}

.content-facts-clanguage ul {
  margin-left: 1.5rem;
}

.content-facts-clanguage ul li {
  margin-bottom: 10px;
}

.btnicon img {
  width: 20px;
  height: 20px;
}

.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children ul li a img {
  width: 20px;
}

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

.ptr-img img {
  height: 240px;
}

.blogrow .mycardplace .post-content img {
  height: 200px;
  margin-bottom: 10px;
  background-color: #e6efff;
  border-radius: 6px;
}

.blogrow .mycardplace .post-content {
  height: 500px;
}

.blogrow .post-card.card-2 .post-content-wrap {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.blogrow .post-card .post-content .desc {
  padding-bottom: 10px;
}

.pt-abtpage .about-thumb-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pt-abtpage .about-thumb-wrap img {
  transform: scale(1);
  transition: 0.6s ease-in-out;
  padding: 2px;
}

.pt-abtpage .about-thumb-wrap img:hover {
  transform: scale(1.04);
}

#subscribeForm {
  height: 55px;
}

.termcondition {
  margin-top: 2px;
}

.termcondition p {
  font-size: 12.6px;
  margin-bottom: 0;
}

.features-box.table-pdg table td {
  padding: 10px 0 10px 5px;
}

.popover {
  max-width: 50%;
  /* Set your desired width */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.popover-content ol {
  padding-left: 15px;
  color: #181717;
  font-size: 14px;
  line-height: 1.7;
}

.popover-content ol li {
  margin-bottom: 5px;
}

.popover-content ol li ol {
  margin-top: 0px;
  list-style-type: lower-alpha;
}

.popover-content ol li ol li {
  font-size: 13px;
  margin-bottom: 3px;
}

.popover-content .highlight {
  font-weight: 500;
}

.highlight-terms {
  background-color: #e9f5ff;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  margin-top: 4px;
}

.sitemap-section h2 {
  color: #333;
  font-size: 25px;
}

.sitemap-section ul {
  list-style-type: disc;
  padding-left: 18px;
}

.sitemap-section li {
  padding: 5px 0;
}

.sitemap-section a {
  color: #2b7a78;
  text-decoration: none;
}

.sitemap-section ul li ul {
  list-style-type: disc;
}

.sitemap-section ul li h4 {
  margin-top: 20px;
  padding: 0 8px;
  background: #ececef;
  color: #1d1c1d;
  font-weight: 500;
  display: inline-block;
  border-radius: 4px;
}

.sitemap-section a:hover {
  text-decoration: underline;
}

.sitemap-section .category {
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sitemap-section .train-title-site {
  margin-top: 30px;
}

.training-ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.placed-at img {
  width: 80px;
  margin-top: 5px;
}

.testi-page .testi-item .testi-content:hover .candidate-post span {
  color: #fff !important;
}

.disclaimer-img {
  width: 26px;
  margin-left: -6px;
}

.tw img {
  width: 24px;
}

.see-course-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* gap: 10px; */
}

.see-course {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  transition: transform 0.3s ease;
  /* Smooth scroll transition */
}

.see-course-item {
  display: flex;
  align-items: center;
  height: 30px;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background: #fff;
  border-radius: 8px;
  min-width: 38px;
  cursor: pointer;
  overflow: hidden;
}

.img-wrapper {
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}

.courseImg-box {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  height: 26px;
  width: 26px;
}

.course-bino {
  height: 32px;
  width: 32px;
  margin-left: 3px;
}

.g-img {
  height: 100%;
}

.hemOverlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  overflow: hidden;
  top: 0;
  height: 26px;
  width: 26px;
}

.course_text {
  margin-right: 10px;
  width: fit-content;
}

.bino-img {
  width: 28px;
  margin-right: 10px;
}

.free-it-cert-wrap .team-service.item-1 {
  /* background-color: transparent; */
  background-color: #f2f8f9;
  border: none;
  border-radius: 0.375rem;
}

.free-it-cert-wrap .card:hover .free-it-cert-wrap .border-dark {
  border: 1px solid transparent;
}

.free-it-cert-wrap .team-service.item-1 .icon-box {
  background-color: transparent;
}

.free-it-cert-wrap .team-service.item-1 .icon-box img {
  max-width: 120px !important;
  max-height: 120px !important;
}

.free-it-cert-wrap .team-service .team-service-content .title {
  font-size: 18px;
  font-weight: 600;
  color: #434344;
  margin-top: 0;
}

.free-it-cert-wrap .team-service .team-service-content p {
  color: #636363;
  margin-bottom: 0;
}

.free-it-cert-wrap {
  margin-bottom: 10px;
}

.free-it-cert-wrap .team-service {
  padding: 10px 40px;
}

.free-it-cert-wrap .border-dark {
  border: 1px solid rgb(196, 192, 192) !important;
}

.dealsimg-ht .mynews-img img {
  padding: 3px;
  object-fit: fill;
  height: auto !important;
}

.highlightPAP {
  background-color: #fcfc10;
  display: inline-block;
}

/* .job-card {
  position: relative;
} */
.job-card {
  position: relative;
}

.job-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

ul.custom-list {
  list-style: none;
  padding: 0;
}

ul.custom-list li {
  padding: 4px;
  border-radius: 5px;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 1rem;
}

ul.subject li::before {
  content: "✅";
}

ul.responsibilities li::before {
  content: "🎯";
}

ul.qualifications li::before {
  content: "✔";
  color: #4d4c4c;
}

ul.benefits li::before {
  content: "✅";
}

.job-detail {
  display: flex;
  margin-bottom: 10px;
}

.job-detail i {
  font-size: 1rem;
  margin-right: 10px;
  color: #6c757d;
}

.job-detail h6 {
  font-size: 1rem !important;
  margin: 0;
  font-weight: 600;
}

.job-badge {
  color: #212529;
  font-size: 0.875rem;
  padding: 3px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 5px;
  margin-top: 15px;
  background-color: #ececef;
  border: 1px solid #c5c4c9;
}

.resp-factor {
  font-size: 1rem;
  margin-top: 12px;
}

.jobtitle-underline {
  display: inline-block;
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* .jobtitle-underline::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 3px;
  background: rgb(241 7 7);
  border-radius: 50%;
  bottom: -5px;
  left: 5%;
} */
.job-section {
  margin-top: 20px;
}

.job-section .job-detail {
  margin-top: 20px;
}

.sendresume-div {
  margin-top: 30px;
}

.sendresume-div h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
}

.sendresume-div h3>a {
  color: #fdcf02;
}

.shapefont {
  color: #fff;
  font-weight: normal;
  font-size: 1.3rem;
}

/* .shapefont {
  color: #fff;
  font-weight: normal;
  font-size: 1.3rem;
} */
.mistake-section {
  padding: 0.8rem 1.5rem;
  /* border-left: 4px solid #dc3545; */
  /* background-color: rgb(205 187 189 / 5%); */
  /* border-radius: 0.5rem; */
}

.mistake-section h4 {
  color: #dc3545;
}

.alert ul {
  margin-bottom: 0;
}

.border-start {
  border-left-width: 3px !important;
}

.quote-highlight {
  font-style: italic;
  color: #5b5c5e;
  padding: 0 10px;
  /* border-left: 3px solid #4caf50; */
  background-color: #e3f1ea;
  display: inline-block;
  font-weight: 600;
  border-radius: 4px;
}

.section-mysubtitle {
  font-size: 1.2rem;
  /* color: #6c757d !important; */
  font-weight: 500;
  margin: 15px 0;

}


.rate-box {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.stars {
  font-size: 1.2rem;
  color: #ddd;
  cursor: pointer;
  margin-bottom: 20px;
  display: inline-block;
}

.stars i {
  margin: 0 5px;
  transition: all 0.2s ease;
}

.stars i:hover {
  transform: scale(1.2);
}

.stars i.active {
  color: #ffc107;
}

.stars i.hover {
  color: #ffdb70;
}

.enquiryForm.contact-info .form-wrap .form-group .form-control:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #f8f9fa;
}