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

/*-----------------------------------------------------------------------------------

    Template Name: Morat - Software & Solution WordPress Theme
    Author: RRDevs
    Description: Morat - Software & Solution WordPress Theme
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

	01. Theme Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
* {
  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;
}
@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;
}
@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;
  }
}

/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.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-55 {
  margin-bottom: 55px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.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: 50px;
}
@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: 700;
  display: block;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
}
@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: var(--mt-color-theme-primary);
  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: var(--mt-color-theme-primary);
}

.sk-three-bounce.is-mainly-blue.sk-three-bounce .sk-child {
  background-color: var(--mt-color-theme-primary);
}

.sk-three-bounce.is-orange.sk-three-bounce .sk-child {
  background-color: var(--mt-color-theme-primary);
}

.sk-three-bounce.is-purple.sk-three-bounce .sk-child {
  background-color: var(--mt-color-theme-primary);
}

.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: var(--mt-color-theme-secondary);
  color: var(--mt-color-heading-primary);
}
.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);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  background-color: transparent;
  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 15px;
  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: 170px;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
@media (max-width: 1170px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}
.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 20px;
}
@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: 17px;
  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: var(--mt-color-theme-primary);
  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: 220px;
  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;
  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:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.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: var(--mt-color-theme-primary);
}
.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: 15px;
  padding: 15px 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 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 .menu-item-has-children {
  position: relative;
}
.header .primary-header-inner .header-menu-wrap .sub-menu .menu-item-has-children a {
  padding-right: 15px;
}
@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: 25px;
}
.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: 7px;
  padding: 15px 10px;
  margin-left: 40px;
  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;
}
@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: 80%;
    -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;
  }
}
@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: 50px;
  }
  .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;
    color: var(--mt-color-heading-primary);
    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: var(--mt-color-theme-primary);
    color: var(--mt-color-common-white);
  }
  .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: 24px;
    padding-bottom: 20px;
    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: var(--mt-color-theme-primary);
    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: var(--mt-color-theme-secondary);
    color: var(--mt-color-heading-primary);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
  }
  .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 30px;
    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;
  }
}
#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.png), 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: 20px 0;
  border-bottom: 1px solid var(--mt-color-border-2);
}
@media only screen and (max-width: 767px) {
  .header-2 .top-bar-inner,
  .header-2 .top-bar {
    display: none;
  }
}
.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: 60px;
}
@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);
  padding-right: 5px;
}
.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: 42px 0;
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu li a:hover {
  color: var(--mt-color-theme-primary);
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu li a:before {
  bottom: 40px;
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu li ul {
  top: 110px;
}
.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: var(--mt-color-theme-primary);
}
.header-2 .primary-header-inner .header-right .sidebar-trigger {
  background-color: var(--mt-color-theme-secondary);
}
.header-2 .primary-header-inner .header-right .sidebar-trigger span {
  background-color: var(--mt-color-heading-primary);
}
@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;
  }
  .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: var(--mt-color-theme-primary);
  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-white);
}
.header-4 .top-bar .top-bar-inner .top-btn-list li:after {
  color: var(--mt-color-common-white);
}
.header-4 .top-bar .top-bar-inner .top-btn-list li a {
  color: var(--mt-color-common-white);
}

/* !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: 60px 50px;
  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: 70px;
  color: var(--grey-color);
}

.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;
  }
  .sidebar-area {
    width: 350px;
  }
}
@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: 50px 0 50px 0;
}

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

.side-menu-header h3 {
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

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

.side-menu-list {
  margin: 25px 0 35px 0;
}

.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: var(--mt-color-theme-secondary);
  font-size: 12px;
  color: #1c1c1c;
  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: var(--mt-color-theme-primary);
  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: var(--mt-color-theme-primary);
}

.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: var(--mt-color-theme-primary);
  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-bottom: 30px;
}
@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;
  -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: var(--mt-color-theme-primary);
}

.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: 941px;
  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-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: var(--mt-color-common-white);
  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 var(--mt-color-common-white);
  color: var(--mt-color-common-white);
}
.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: 180px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .hero-4 {
    padding: 70px 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: var(--mt-color-theme-primary);
}
.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-common-white);
  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;
}
@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: 30px;
}
.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: inline-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: 16px;
  font-weight: 600;
  padding: 5px 20px;
  line-height: 1;
  border-radius: 0;
}
@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: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
}
.about-tab .tab-content {
  padding: 0 15px 15px;
}
.about-tab .tab-content p {
  font-size: 16px;
  max-width: 430px;
  width: 100%;
}
.about-tab .tab-content .about-list li {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  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 {
  font-size: 16px;
  color: var(--mt-color-theme-primary);
}

.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: 30px;
}
.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%;
}
.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: 50px 50px;
  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;
}
@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: 100px;
  width: 100px;
  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;
}
.counter-item .title {
  font-family: var(--mt-ff-heading);
  font-size: 51px;
  font-weight: 700;
  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: 18px;
  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;
}
.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%;
  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: 730px;
  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;
}

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

.project-skill-wrap .left-content {
  padding-right: 60px;
}
@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;
}
@media only screen and (max-width: 992px) {
  .project-skill-wrap .left-content p {
    max-width: 500px;
    width: 100%;
  }
}
.project-skill-wrap .left-content .list-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: 30px 0;
}
.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:not(:last-of-type) {
  margin-bottom: 20px;
}
.project-skill-wrap .left-content .list-wrap ul li i {
  color: var(--mt-color-theme-secondary);
  margin-right: 10px;
}
.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 .list-2 li i {
  color: var(--mt-color-theme-primary);
}
.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-details-img {
  height: 100%;
}
.project-details-img img {
  width: 100%;
  height: 100%;
}

/* !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%);
}
.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: 700;
  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: 80px;
}

.swiper-pagination {
  line-height: 1;
  margin-bottom: -10px;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 15px;
  width: 15px;
  border: 2px solid var(--mt-color-theme-primary);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mt-color-theme-primary);
}

.post-card .post-thumb {
  position: relative;
  overflow: hidden;
}
.post-card .post-thumb img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.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;
}
.post-card.card-1 .post-thumb .category {
  background-color: var(--mt-color-theme-primary);
  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 .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 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 .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;
}
.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: 20px;
}
.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;
  margin-top: 10px;
}
.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-right: 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: 50px 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: 40px 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: 30px;
}
.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);
}
.testi-page .testi-item .testi-content:hover p,
.testi-page .testi-item .testi-content:hover .author-box .author {
  color: var(--mt-color-common-white);
}

.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-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 {
  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: "\f078";
  height: auto;
  width: auto;
}
.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 {
  font-family: var(--mt-ff-body);
  font-size: 15px;
  max-width: 390px;
  width: 100%;
  margin-bottom: 0;
  padding: 10px 0;
}
@media only screen and (max-width: 992px) {
  .faq-content .accordion-item .accordion-body p {
    max-width: 430px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-content .accordion-item .accordion-body p {
    max-width: 230px;
  }
}
.faq-content .accordion-item .accordion-body .body-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* !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+1) .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: 10px;
}
@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);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  -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: var(--mt-color-theme-primary);
  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;
  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: var(--mt-color-theme-primary);
}
.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: var(--mt-color-theme-primary);
}

.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: 60px;
  }
}
.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: 1px solid #dddddd;
}
.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: 20px;
}
.team-author-details .author-box-wrap .author-item {
  padding: 20px 40px;
}
.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: var(--mt-color-theme-secondary);
}
.team-author-details .author-box-wrap .author-item.social ul li:nth-child(3) i {
  color: var(--mt-color-common-pink);
}
.team-author-details .author-box-wrap .author-item.social ul li:nth-child(4) i {
  color: var(--mt-color-common-green);
}

.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 {
  margin-bottom: -150px;
  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;
  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: 250px;
  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: 15px;
  border: 1px solid #464648;
  margin-bottom: 30px;
  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;
}

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

/* !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: 175px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .app-section {
    padding-top: 150px;
  }
}
.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: 645px;
  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: 100px 0;
  }
}
.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: 130px;
  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: 50px;
  font-weight: 700;
  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;
  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: 40px 30px;
  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: 22px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.sidebar-widget .widget-title:before {
  background-color: var(--mt-color-theme-primary);
  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);
  font-size: 16px;
  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;
  z-index: 1;
}
.footer-section .overlay {
  background-color: rgba(40, 41, 54, 0.91);
  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;
}
@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 {
  background-color: #f6f3fc;
  padding: 50px 70px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .footer-top .footer-logo {
    padding: 50px 30px;
  }
}
.footer-top .footer-logo:after {
  background-color: var(--mt-color-theme-primary);
  content: "";
  width: 3000px;
  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;
  column-gap: 80px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@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: var(--mt-color-theme-primary);
  color: var(--mt-color-common-white);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  padding: 0 25px;
  font-size: 17px;
  font-family: var(--mt-ff-body);
  font-weight: 500;
  border-radius: 0 5px 5px 0;
}

.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: var(--mt-color-common-white);
  font-size: 22px;
  font-weight: 700;
  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: var(--mt-color-theme-primary);
}
.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: #4c4c53;
  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 ul {
  list-style: none;
}
.footer-widget ul li a {
  font: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  font-size: 16px;
  font-weight: 400;
}
.footer-widget ul li a:hover {
  color: var(--mt-color-theme-primary);
}
.footer-widget ul li a:not(:last-child) {
  line-height: 1;
}
.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;
  border: 3px solid var(--mt-color-common-white);
}
.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: var(--mt-color-theme-primary);
}

.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-reverse;
    row-gap: 10px;
    padding: 40px 0;
  }
}
.copyright-content p {
  color: var(--mt-color-common-white);
  font-size: 16px;
  font-family: var(--mt-ff-body);
  margin: 0;
}
.copyright-content p span {
  color: var(--mt-color-theme-primary);
}
.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: 30px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
}

.scroll-to-top {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--mt-color-theme-primary);
  font-size: 20px;
  padding: 0;
  line-height: 40px;
  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=morat-core.css.map */
