@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700;800&family=Rubik:wght@400;500;600;700;900&display=swap");
:root {
  --mt-ff-body: 'Rubik', sans-serif;
  --mt-ff-heading: 'Poppins', serif;
  --mt-ff-p: 'Rubik', sans-serif;
  --mt-fw-normal: normal;
  --mt-fw-thin: 100;
  --mt-fw-elight: 200;
  --mt-fw-light: 300;
  --mt-fw-regular: 400;
  --mt-fw-medium: 500;
  --mt-fw-sbold: 600;
  --mt-fw-bold: 700;
  --mt-fw-ebold: 800;
  --mt-fw-black: 900;
  --mt-fs-body: 16px;
  --mt-fs-p: 16px;
  --mt-fs-h1: 50px;
  --mt-fs-h2: 40px;
  --mt-fs-h3: 22px;
  --mt-fs-h4: 20px;
  --mt-fs-h5: 16px;
  --mt-fs-h6: 14px;
  --mt-color-common-white: #ffffff;
  --mt-color-common-black: #000000;
  --mt-color-common-pink: #ff8c91;
  --mt-color-common-green: #a6e155;
  --mt-color-common-purple: #f792ff;
  --mt-color-common-electric-blue: #f17c83;
  --mt-color-heading-primary: #292930;
  --mt-color-text-body: #636363;
  --mt-color-theme-primary: #6affbb;
  --mt-color-theme-secondary: #ffc226;
  --mt-color-theme-bg: #fff1f1;
  --mt-color-grey-1: #f6f3fc;
  --mt-color-grey-2: #e6efff;
  --mt-color-grey-3: #a2a2a2;
  --mt-color-border-1: #ddd;
  --mt-color-border-2: #2f2f30;
  --mt-color-border-3: #171719;
}

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

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

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

p {
    font-family: var(--mt-ff-p);
    font-size: 17px;
    font-weight: var(--mt-fw-normal);
    color: #303030;
    margin-bottom: 15px;
    line-height: 28px;
}

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; word-wrap: break-word;
} 

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;
  }
  .vericaltext{    font-size: 20px !important;}
  .vericaltext span{    padding: 10px 2px !important;     left: 3% !important;}
  .banner-card2, .banner-card1, .banner-card3{display: none;}
}

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

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

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

.container {
  max-width: 1194px;
}

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

.top-shape {
background: #f0dbdb1c;
  width: 468px;
  height: 478px;
  position: absolute;
 /* top: -200px; */
  left: -200px;
  z-index: -1;
  border-radius: 100%;
  
}
@media (max-width: 1399px) {
  .top-shape {
    top: -250px;
    left: -250px;
  }
}
@media only screen and (max-width: 992px) {
  .top-shape {
    display: none;
  }
}

.bottom-shape {
  background: #ffeceb;
  width: 468px;
  height: 478px;
  position: absolute;
  bottom: -200px;
  right: -200px;
  z-index: -1;
  border-radius: 100%;
}

.accordion-button, .accordion-button:not(.collapsed) {
    background: #e82229;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.categ-name {
    position: relative;
    padding: 10px;
    height: auto;
    display: block;
    align-items: center;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-bottom: 1px dashed #c7220b3d;
    font-weight: bold;
    padding-left: 15px;
    font-size: 17px;
    color: #000;
}
@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;
}

.content-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 4px #ccc;
    border-radius: 8px;
    color: #000;
}

.rules-hed {
    color: #f10;
font-size: 1.3rem;
}

@-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: #F44336;
    color: #fff;
}
.mt-primary-btn.primary-2:hover {
  color: var(--mt-color-common-white);
}
.mt-primary-btn.primary-2:after, .mt-primary-btn.primary-2:before {
  background-color: #0869ff;
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  background-color: #000000ba;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media only screen and (max-width: 992px) {
  .header {
    position: relative;
  }
}
.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);
  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: -11px;
  padding: 0 0 20px 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: 0px 12px;
}
@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: 600;
  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: #f44336;
}
.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: #fff;
}
.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 .header-btn {
  background-color: #6affbb;
  color:#000 !important;
}
.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;
  cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.sticky-header-wrap {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 99;
}
.sticky-header-wrap.fixed {
  display: block;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
}
.sticky-header-wrap .header {
  background-color: var(--mt-color-common-white);
  position: relative;
  top: 0;
}
.sticky-header-wrap .header .top-bar {
  display: none;
}

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

@-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: #000;
    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: 220px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 35px;
    right: 40px;
    color: #fff;
    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: #dc0606;
    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; padding: 15px 0px;
  }
  .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: #fff;
    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: #e63e34;
    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: 18px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
  }
}
#popup-search-box {
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
  width: 100%;
  height: 100%;
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 30px 30px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid #666;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 20px;
}
#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}
#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.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: 8px 45px 8px 45px;
  border-bottom: 1px solid #494949;
}
@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: #b8ffde;
}
.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: 8px 0px;
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu li a:hover {
  color: #ff685d;
}
.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: 40px;
}
.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: #ff685d;
}
.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: #021736;
    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: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;  background-size: cover; background-color: #001e3d; 
/*  background:url(images/home-bg.jpg);*/
}
@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;
  position: relative;
  z-index: 10;
}
.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: 150px;
}
@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: 165px;*/
  }
}
@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: 130px;
    right: -30%;
}
@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;
  width: 100%;
  margin-bottom: 20px;
  text-shadow: 1px 1px 9px #000;
}
@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: #6affbb;
}
.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: #6affbb;
  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: 0px;
    left: 20px;
    z-index: 9;
}
@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;
}
.social-icons .social-list li a {
  color: #fff;
  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 #fff;
}
.cwt{color: #fff;}
/*.hero-social .social-list li a:hover {
  background-color: #002f76;
  border: 1px solid var(--mt-color-theme-primary);
  color: #000 !important;
}*/
.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;
}
.httext{padding: 10px 15px;
  background: #0000002b;
  color: #00ff9c;
  font-size: 20px;
  border-radius: 10px;
  border: 1px solid #000000;}
@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 {
  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;
}

.attend-section-2 {
  position: relative;
  overflow: hidden;
}
.attend-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: linear-gradient(90deg, #1e2020 0%, #283c90 100%);  */
 background: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/banner-bg.jpg) no-repeat top left;
 background-size: 100%;

  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 115px;
  
}
.blkdk{position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: #00000087; height: 100%; width: 100%;}


@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: 50px;

}
.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;
  background: #ff3b3b;
}
.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: #fff;
  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: rgb(255,0,0);
  background: linear-gradient(13deg, rgb(143 3 3) 0%, rgb(255 0 0) 100%);
}
.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: #000;
  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;
}
.opt3{opacity: 0.1; top: -30%;}
.overfhn{overflow: hidden;}
@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: 200px 0 30px 0;
}

.cta-content-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  flex-wrap: wrap;
  row-gap: 20px;
  border-radius: 100px;
  overflow: hidden; text-align: center;
}
@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: #6affbb;
}
.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 #d1d1d1;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e63e34;
}

.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: 15px 15px;
  border-bottom: 1px solid #ddd;
  border-top: none;
  min-height: 245px;
}
.hmin{min-height: 475px;}
.post-card .post-content .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 5px;
}
.post-card .post-content .post-meta li {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-text-body);
  font-size: 13px;
  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: 18px;
    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
----------------------------------------*/
.about-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-1 .section-heading {
  margin-bottom: 0;
}
.about-1 .section-heading .section-title {
  margin-bottom: 15px;
}
.about-1 .section-heading p {
  margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
  .about-content {
    margin-bottom: 40px;
  }
}
.about-img {
  max-width: 550px;
  width: 100%;
  clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
}
@media only screen and (max-width: 992px) {
.about-img {
    max-width: inherit;
  }
}
@media only screen and (max-width: 992px) {
.about-img img {
    width: 100%;
  }
}
.about-item {
background: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/03.png) no-repeat #000;
background-size: 100%;
opacity: 0.5;
    position: relative;
    padding: 45px 20px 30px 20px;

    -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;
   margin-top: 20px;
   -webkit-box-shadow: 10px 10px 40px -15px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 40px -15px rgba(0,0,0,0.75);
box-shadow: 10px 10px 40px -15px rgba(0,0,0,0.75);
}
.attend{    font-size: 22px;
  padding: 15px;
  border: 1px solid #ccc; margin: 10px;
  background: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/01.png) center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.elementor-shape{    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 0;}

.elementor-shape .elementor-shape-fill {
    fill: #000;
    transform-origin: center;
    transform: rotateY(0deg);
}
.bg-whit{background: #000;}
.bg-whit h2, .bg-whit p{color: #fff;}


.attend2{     font-size: 21px;
    padding: 30px 15px 30px 125px;
    border: 1px solid #000;
    margin: 10px;
    background: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/01.png) center bottom;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0 52px;
    background-size: 100%;
}
.attend2 span{padding: 30px;
  /* height: 70px; */
  width: 95px;
  display: block;
  background: linear-gradient(13deg, #8f0101 0%, #ff0000 100%);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 0 50px 0;}


.attend span{font-weight: bold; font-size: 30px;color: #08c8ab;}

@keyframes pulse2{
0% {
  transform: scale3d(1, 1, 1);
}

50% {
  transform: scale3d(1.25, 1.25, 1.25);
}

100% {
  transform: scale3d(1, 1, 1);
}
}

.attend::before {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 113px;
  width: 113px;
  background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/eye.png);
  background-repeat: no-repeat;
  content: "";
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  background-position: left bottom;
  animation: 3s ease 0s infinite normal none running pulse2;
  transition: 300ms;
}


.attend2::before {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 113px;
  width: 113px;
  background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/eye.png);
  background-repeat: no-repeat;
  content: "";
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  background-position: left bottom;
  animation: 3s ease 0s infinite normal none running pulse2;
  transition: 300ms;
}

.about-item img{width: 75px;
  background: #000;
  padding: 10px;
  border-radius: 100%;
  border: 2px dotted #c838af;}

.about-item:hover {
  background-color: #0e1949;
  color: #fff !important;
}
.about-item:hover h3 {
  color: #fff !important;
}
.about-item .bottom-shape {
  background-color: #00ffd8;
  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;
}
.about-item .bottom-shape:before {
  background-color: #00ffd8;
  content: "";
  height: 80px;
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.5;
}
.about-item .number {
  font-size: 62px;
  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: 45px;
  right: 30px;
  opacity: 0.3;
}
.about-item .about-icon {
  position: relative;
  display: block;
  margin-bottom: 25px;
}
.about-item .about-icon svg {
  color: var(--mt-color-theme-secondary);
}
.about-item .about-icon i {
  color: var(--mt-color-heading-primary);
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-item .title {
    font-size: 20px;
    font-weight: 500;
    /* margin-bottom: 20px; */
    line-height: 28px;
    color: #fff;
}
.about-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;
}
.about-item p:last-child {
  margin-bottom: 0;
}
.about-item:hover .number {
  -webkit-text-stroke-color: var(--mt-color-theme-secondary);
  opacity: 1;
}
.about-item:hover .title a {
  color: var(--mt-color-common-white);
}
.about-item:hover .title a:hover {
  color: var(--mt-color-theme-secondary);
}
.about-item:hover p {
  color: var(--mt-color-common-white);
}
.about-item:hover .bottom-shape {
  visibility: visible;
  opacity: 1;
  bottom: -20px;
  right: -20px;
}
.about-item.item-2 {
  margin-top: 25px;
}
.about-item.item-6 {
    margin-top: 50px;
}

.about-item.item-2 .about-icon i {
  color: var(--mt-color-common-white);
}
.about-item.item-4 {
  margin-top: 25px;
}

.about-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.about-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) {
  .about-2 .bg-img {
    top: -40px;
  }
}
.about-2 .bg-color {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.about-2 .bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}
.about-2 .about-item {
  border: none;
}
.about-2 .about-item:hover {
  background-color: var(--mt-color-theme-primary);
}
.about-2 .about-item .title a:hover {
  color: var(--mt-color-common-white);
}
.about-2 .about-item .about-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;
}
.about-2 .about-item .about-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;
}
.about-2 .about-item .number {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mt-color-text-body);
}
.about-2 .about-item:hover .number {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mt-color-common-white);
}
.about-2 .about-item:hover .about-icon svg {
  color: var(--mt-color-common-white);
}
.about-2 .about-item .bottom-shape {
  background-color: var(--mt-color-common-white);
}
.about-2 .about-item .bottom-shape:before {
  background-color: #a5bfff;
}
.about-2 .about-item.item-2:hover .about-icon svg {
  color: var(--mt-color-common-white);
}
.about-2 .about-item.item-2:hover .about-icon img {
  filter: brightness(0) invert(0);
}

.about-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: #0d1842;
  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;
  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: 15px;
}
.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-right: 10px;
  position: relative; padding-bottom: 40px;
}
.story-item .story-content.bottom .dot {
  background-color: #5a5a5a;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  bottom: 8px;
  right: 20px;
}
.story-item .story-content.bottom:before {
  background-color: #5a5a5a;
  content: "";
  height: 1px;
  width: 20px;
  position: absolute;
  bottom: 11px;
  right: 0;
}
.story-item .story-content.bottom:after {
  background-color:#5a5a5a;
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  bottom: 11px;
  right: 0;
}
.story-item .year-wrap {
  padding: 5px;
  position: relative;
  z-index: 1;
}
.story-item .year-wrap .years {
    /* background-color: var(--mt-color-theme-secondary); */
    font-size: 22px;
    font-weight: 500;
    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 {
  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;
    background-image: inherit !important;
  }
}
.page-header .custom-container {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.page-header .shapes .shape {
  position: absolute;
  top: 10%;
  left: 0;
}
.page-header .shapes .shape.shape-2 {
  left: auto;
  right: 80px;
}
.page-header .shapes .shape.shape-3 {
  top: auto;
  bottom: 10%;
  left: 5%;
}

.page-header-thumb {
  height: 100%;
}
.page-header-thumb img {
  width: 100%;
  height: 100%;
}

.page-header-content {
  padding-top: 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 .about-item-wrap {
  max-width: 600px;
  width: 100%;
}
.blog-details-content .blog-details-img {
  max-width: 630px;
  width: 100%;
  margin-bottom: 40px;
}
.blog-details-content .blog-details-img img {
  width: 100%;
}
.blog-details-content .comments-area .comment-header {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}
.blog-details-content .comments-area .comment-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--mt-color-border-1);
}
@media only screen and (max-width: 767px) {
  .blog-details-content .comments-area .comment-item {
    grid-template-columns: 1fr;
  }
}
.blog-details-content .comments-area .comment-item .comment-info .author {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
.blog-details-content .comments-area .comment-item .comment-info p {
  font-size: 16px;
  color: var(--mt-color-text-body);
  max-width: 530px;
  width: 100%;
  margin-bottom: 0;
}
.blog-details-content .comments-area .comment-item .comments-meta {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.blog-details-content .comments-area .comment-item .comments-meta span {
  font-size: 17px;
  font-family: var(--mt-ff-body);
  font-weight: 400;
  line-height: 1;
}
.blog-details-content .comments-area .comment-item .comments-meta button {
  font-family: var(--mt-ff-body);
  color: var(--mt-color-theme-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  margin-left: 50px;
}
.blog-details-content .comments-area .comment-item:nth-child(3) {
  margin-left: 90px;
}
@media only screen and (max-width: 767px) {
  .blog-details-content .comments-area .comment-item:nth-child(3) {
    margin-left: 0;
  }
}
.blog-details-content .blog-form .form-header {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}
.blog-details-content .blog-form .form-group .form-control {
  color: var(--mt-color-text-body);
  box-shadow: none;
  border: 1px solid var(--mt-color-border-1);
  padding: 15px;
  padding-left: 20px;
  margin-bottom: 30px;
}
.blog-details-content .blog-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--mt-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control:-moz-placeholder {
  color: var(--mt-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control::-moz-placeholder {
  color: var(--mt-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control:-ms-input-placeholder {
  color: var(--mt-color-text-body);
}
.blog-details-content .blog-form .form-group .form-control option {
  padding: 10px;
}
.blog-details-content .blog-form .submit-btn {
  margin-top: 20px;
}

.sidebar-widget {
  padding: 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 .footer-list {
  list-style: none;
}
.footer-widget .footer-list li a {
  font: var(--mt-ff-body);
  color: var(--mt-color-common-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.footer-widget .footer-list li a:hover {
  color: var(--mt-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-widget .footer-post {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  grid-gap: 20px;
}
.footer-widget .footer-post img {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-widget .footer-post span {
  font-family: var(--mt-ff-body);
  display: block;
  font-size: 14px;
  color: #b7b7b7;
  margin-bottom: 5px;
}
.footer-widget .footer-post .title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0;
}
.footer-widget .footer-post .title a {
  color: var(--mt-color-common-white);
}
.footer-widget .footer-post .title a:hover {
  color: var(--mt-color-theme-primary);
}

.copyright-area {
  background-color: #040818;
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  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: #ff1811;
}
.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: #ffbfba;
}
.copyright-content ul li:not(:last-of-type) {
    /* margin-right: 20px; */
    display: inline-block;
    padding: 0px 10px;
}

.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: #ff1503;
  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;
}

/* Custom */
.hashtag{ color:#fff; }
.header-2 .top-bar-inner .top-bar-list li, .header-2 .top-bar .top-bar-list li i{ color:#fff; }
.rl-btn {
  background: rgb(255,0,0);
  background: linear-gradient(358deg, #7f0000 0%, #ff1d1d 100%);
    font-family: var(--mt-ff-body);
    color:#fff !important;
    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; display: block; padding: 9px 25px !important; position: relative; top: 20px;
}
.rl-btn:hover{ color:#fff !important; }
.fixed .rl-btn { position: relative; top: 19px !important; }



.attend-section{ background: rgb(255,255,255);
  background: #fff }
.attend-item {
    background-color: var(--mt-color-common-white);
    position: relative;
    padding: 0px;
    -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: 6px;
    z-index: 1;
    overflow: hidden; color: #fff;
}
.attend-item h3 {
    color: #0c1125 !important;
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
    padding: 20px 0px;
    line-height: 30px;
}
.attend-item:hover {
  background-color: #09275d;
  color: #fff !important;
}
.attend-item:hover h3 {
  color: #fff !important;
}

.email {
    font-size: 15px;
    color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
}
.innerpage{ height:80vh; overflow:hidden; }
.s-name{ font-size:22px; padding:10px 0px; }
.speakers-content{ background:#000; }
.designation{ color:#080f29; font-size:16px; font-weight:500; }
.desig{ padding:0px; margin:0px; }
.email:hover{ color:#faa9a3; }
.footer-title{ text-align:center; font-size:20px; color:#fff; font-weight:400; }
.c-name{ color:#fff; padding:0px; margin:0px; font-weight: bold; }
.desig2{ color:#fff; padding:0px; margin:0px; }
.call {
    margin:0px 0px 4px 0px;
    padding: 0px;
    letter-spacing: 1px;
    font-size: 18px !important;
}
.contant-box {
    color: #fff;
    /* background: #0a183d; */
    padding: 20px;
    border-radius: 6px;
    border: solid 1px #464646;
}
.ft-22{ font-size:20px; font-weight:500; }
.innerpage .hero-content.content-2 {
    padding-left: 0;
}
.vh7{ min-height:70vh; }



.accordian {
  width: 100%;
  color: #b9b9b9;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: 500;
  letter-spacing: 0.035em;
  font-size: 14px;
  margin: 0 auto;
}
.accordian ul > li {
  margin-bottom: 8px; list-style-type: none;
}
.accordian ul > li:first-child h3 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.accordian h3 {
  cursor: pointer;
  background-color: #f7f9f9;
  padding: 1.2rem 1rem 1rem 1.2rem;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: block;
  font-weight: 500;
  letter-spacing: 0.035em;
  position: relative;
  font-size: 18px;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
}
.accordian h3:hover, .accordian h3.closed {
  color: #fff;
  background-color: #0a3382;
}
.accordian h3:hover .arrow {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.accordian ul ul {
  display: none;
  height: 100%;
  margin-bottom: -7px;
}
.accordian ul ul li {
  background-color: #fff;
  padding: 20px 20px 10px;
  color: var(--dark-gray);
  box-shadow: none;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.accordian ul ul li p {
  opacity: 0;
  transition: all 0.5s;
  transform: translatey(-20px);
}
.accordian ul ul.open p {
  opacity: 1;
  transform: translatey(0px);
}
.accordian .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
  transform-origin: center;
  float: right;
  margin-right: 8px;
  transition: transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1);
}
.accordian .arrow.closed {
  margin-top: 4px;
  transform: rotate(-45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.emailid{ color:#0a3382; font-weight:500; }
.entry-form label{ color:#000; }


.small-head {
    color: #0d2d6a !important;
    font-weight: 500;
}
h2.subhead {
    color: #fff !important;
    font-size: 18px;
    font-weight: 500;
    background: #0d2d6a;
    display: inline-block;
    padding: 10px 15px 12px;
    position: relative;
}
h2.subhead::after {
    width: 30px;
    height: 30px;
    border-left: solid 32px #062152;
    border-bottom: solid 22px transparent;
    border-top: solid 21px transparent;
    content: '';
    position: absolute;
    right: -32px;
    top: 0px;
}

.post-content .desc { font-size:15px; line-height:24px; }
.post-card .post-content .title a:hover{ text-decoration:none; color:#00378d; border:none; }
.blog-section{ position:relative; overflow:hidden; background: #ff3b3b; }
.blog-section h2{color: #fff;}

/*Slide*/
.cb-slideshow {float: left; position: absolute; overflow: hidden;
    height: 100vh;
    width: 100%;     z-index: -1;}
.cb-slideshow li span {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: -20px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
  -webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    -moz-animation: imageAnimation 36s linear infinite 0s;
    -o-animation: imageAnimation 36s linear infinite 0s;
    -ms-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s;
}

.cb-slideshow li:nth-child(1) span { background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/1.jpg) }
.cb-slideshow li:nth-child(2) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/2.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/3.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/4.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/5.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/6.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(7) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/7.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(8) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/8.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(9) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/9.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(10) span {
    background-image: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/10.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) div {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(7) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(8) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(9) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(10) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
@-webkit-keyframes imageAnimation { 
  0% {
      opacity: 0;
      -webkit-animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      -webkit-transform: scale(1.05);
      -webkit-animation-timing-function: ease-out;
  }
  17% {
      opacity: 1;
      -webkit-transform: scale(1.1);
  }
  22% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(-20%);
  }
  25% {
      opacity: 0;
      -webkit-transform: scale(1.1) translateY(-100%);
  }
  100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
  0% {
      opacity: 0;
      -moz-animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      -moz-transform: scale(1.05);
      -moz-animation-timing-function: ease-out;
  }
  17% {
      opacity: 1;
      -moz-transform: scale(1.1);
  }
  22% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(-20%);
  }
  25% {
      opacity: 0;
      -moz-transform: scale(1.1) translateY(-100%);
  }
  100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
  0% {
      opacity: 0;
      -o-animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      -o-transform: scale(1.05);
      -o-animation-timing-function: ease-out;
  }
  17% {
      opacity: 1;
      -o-transform: scale(1.1);
  }
  22% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(-20%);
  }
  25% {
      opacity: 0;
      -o-transform: scale(1.1) translateY(-100%);
  }
  100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
  0% {
      opacity: 0;
      -ms-animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      -ms-transform: scale(1.05);
      -ms-animation-timing-function: ease-out;
  }
  17% {
      opacity: 1;
      -ms-transform: scale(1.1);
  }
  22% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(-20%);
  }
  25% {
      opacity: 0;
      -ms-transform: scale(1.1) translateY(-100%);
  }
  100% { opacity: 0 }
}
@keyframes imageAnimation { 
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      transform: scale(1.05);
      animation-timing-function: ease-out;
  }
  17% {
      opacity: 1;
      transform: scale(1.1);
  }
  22% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(-20%);
  }
  25% {
      opacity: 0;
      -transform: scale(1.1) translateY(-100%);
  }
  100% { opacity: 0 }
}
.no-cssanimations .cb-slideshow li span{
  opacity: 1;
}


.attend-point{ padding:0px; margin:0px; }
.attend-point ul{ padding:0px; margin:0px; }
.attend-point ul li {
    padding: 10px 15px;
    margin: 0px;
    list-style-type: none;
    font-size: 17px;
    color: #0d1842;
    border: solid 1px #ccc;
    margin-bottom: 10px;
}
.attend-point{ padding:0px; margin:0px; }
.video1{ display:inline-block; padding:10px; width:100%; }
.mandet{ color:#db0000; }
.blue{ color:#004995; }
.light-blue{ color:#ff0000; }
.font-weight-blod{ font-weight:bold; }

.plan-a {
    background: #6affbb;
    border-radius: 8px;
    padding: 6px 15px;
    color: #0d1842;
    font-size: 22px;
    font-weight: bold;
}
.plan-b {
    background: #e63e34;
    border-radius: 8px;
    padding: 6px 15px;
    color: #fff;
    font-size: 22px; font-weight: bold;
}
.p-title {
    font-size: 22px;
    background: #0d1842;
    padding: 10px; color: #fff;
}
.light-blue2{
    background: #283c90 !important;
}
.t-blue {
    color: #283c90 !important;
}
.pl-3{ padding-left:15px; }
.p-list li{ list-style-type:none !important; }

#myform {
    text-align: center;
}
.add-btn{ }
.qty {
    width: 90px;
    height: 36px;
    line-height: 35px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    top: -5px;
    position: relative; border: solid 1px #e3e3e3;
}
input.qtyplus {
    width: 35px;
    height: 36px;
    font-size: 31px;
    line-height: 32px;
    background: #818181;
    color: #fff;
    border: none;
}
input.qtyminus {
    width: 35px;
    height: 36px;
    font-size: 31px;
    line-height: 32px;
    background: #b3b3b3;
    color: #000;
    border: none;
}

.offer-title {
    font-size: 22px;
    background: #e43e34;
    font-weight: 700;
    color: #fff;
    text-align: center;
    border-radius: 40px 0px 0px 0px;
    padding: 10px 0px; text-transform: uppercase;
}
.offer-box {
    box-shadow: 0px 5px 10px #74c1f17a;
    /* padding: 10px 20px 20px 20px; */
    /* min-height: 320px; */
    border: solid 1px #ccc;
    border-radius: 8px;
}
.offer-price {
    font-size: 22px;
    color: #e43e34;
    text-align: center;
    font-weight: bold;
    padding: 10px 0px;
    background: #e3e3e3;
}
.book-now {
    position: relative;
    bottom: -10px;
    width: 100%;
    text-align: center;
}
.book-now a {
    background: #080f29;
    padding: 15px 45px 18px;
    color: #fff;
    border-radius: 90px;
    font-weight: bold;
}
.book-now a:hover{ text-decoration:none; background:#e03d33; }
.regular-price {
    font-size: 18px;
    width: 100%;
    text-align: center;
    background: #f1f1f1;
    padding-bottom: 5px;
}
.price {
    font-size: 48px;
    line-height: 40px;
}
.gst {
    font-size: 16px;
    font-weight: bold;
    color: #999999;
}
.save {
    color: #000000;
    background: #d6deff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}
.rp {
    font-size: 32px;
    font-weight: 500;
    color: #999999;
}
.orange{ color:#e43e34; }
.offer-list ul li{ list-style-type:circle; line-height:30px; }
.sub-head{ background:#000 !important; }




/*Agenda*/
#agenda-wrap {
  background-size: cover;
  background-position: center;
}
#agenda-wrap .agenda-header {
  width: 100%;
  background: #323232;
}
#agenda-wrap .agenda-header .header-col {
  display: block;
  width: 92%;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
  color: white;
  box-sizing: border-box;
  box-shadow: 1px 1px 1px 1px #323232;
}
#agenda-wrap .agenda-header .header-col:nth-child(2) {
  padding-top: 0px;
}
#agenda-wrap .agenda-header .header-col a {
  color: #ffde00;
}
#agenda-wrap .agenda-container {
  background: white;
  width: 100%;
  margin: 0 auto;
  padding: 5% 0px 5% 0;
  box-shadow: 1px 1px 1px 1px rgba(50, 50, 50, 0.1);
}
#agenda-wrap .agenda-container .agenda-phase {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
#agenda-wrap .agenda-container .agenda-phase .time {
  width: 120px;
  height: 120px;
  margin-right: -10px; background: #6affbb;
}
#agenda-wrap .agenda-container .agenda-phase .time span {
  font-size: 22px;
  line-height: 120px;
}
#agenda-wrap .agenda-container .agenda-phase .time span after {
  content: "";
}
#agenda-wrap .agenda-container .agenda-phase article {
  min-height: 50px;
  padding-top: 23px;
}
#agenda-wrap .agenda-container .agenda-phase article h1 {
  text-decoration: none;
  color: #0c1125;
  font-weight: 600;
}
#agenda-wrap .agenda-container .agenda-sets {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.times-area {
  margin-top: -3px;
  text-align: right;
  order: 0;
  flex: 0.5 1 70px;
  align-self: auto;
}
.times-area .time {
  text-align: center;
  float: right;
  width: 100px;
  height: 100px;
  background: #f2fff9;
  border-radius: 50%;
  position: relative;
  z-index: 99;
  box-shadow: 0px 0px 0px 15px rgb(12 17 37 / 9%);
}
.times-area .time span {
    font-size: 17px;
    font-weight: bolder;
    line-height: 100px;
    display: block;
    color: #080f29;
}

.details-area {
  min-height: 70px;
  position: relative;
  padding-right: 5%;
  order: 0;
  flex: 10 1 50px;
  align-self: auto;
}
.details-area article {
  padding: 5px 20px 70px 50px;
}
.details-area article h1 {
    font-size: 20px;
    /* font-weight: bold; */
    margin-top: 0px;
    /* color: black; */
    margin-bottom: 12px;
    /* text-decoration: underline; */ position: relative; top: 22px;
}
.details-area article h2 {
    font-size: 18px;
    margin-top: 30px;
    color: #0d336e;
    line-height: 22px;
}
.details-area article p {
    font-size: 16px;
    line-height: 24px;
    color: black;
    text-align: left;
}
.details-area article a {
  float: right;
  text-decoration: underline;
  margin: 30px 0px 80px 0px;
  color: #ffde00;
  font-size: 20px;
  font-weight: bolder;
  border-radius: 10px;
  transition: 0.4s;
  text-align: center;
  line-height: 30px;
  overflow: hidden;
  text-align: center;
}

.details-area:after {
  content: "";
  position: absolute;
  top: 0;
  left: -55px;
  height: 100%;
  width: 10px;
  background: #080f29;
  z-index: 98;
  border-radius: 5px;
  box-shadow: 1px 1px 1px 1px rgba(50, 50, 50, 0.1);
}

.details-area.last:after {
  height: 0px;
}

@media screen and (max-width: 900px) {
  #agenda-wrap {
    padding: 5% 2.5%;
  }
  #agenda-wrap .agenda-container {
    width: 100%;
  }
}

.speaker{ border:solid 1px #e3e3e3; padding-bottom:20px; min-height:450px; }
.sp-name{ font-size:20px; font-weight:bold; color:#263989; padding:10px 0px 0px; }
.company{ padding-top:10px; }
.e-date {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  border: 1px dashed #000;
  color: #ffffff;
  background: #000000;
}
.mon {
  display: inline-block;
  padding: 5px 15px;
}
.yea {
  background: #e43e34;
  display: inline-block;
  padding: 5px 15px;
  color: #ffffff;
}
.venue {
  display: inline-block;
  padding: 5px 15px;
}

.cb-slideshow:after {
  content: '';
  position: absolute;
  background-image: linear-gradient(181deg, #000000a1 26%, #001a48e8 113%);
  /* transform: skew(325deg, 0deg); */
  width: 100%;
  height: 100%;
  top: 0px;
  /* border-radius: 90%; */
  left: 0px;
  z-index: 9;
}
.top-bar{height: 35px;}
.post-card{background: #fff;}
.blog-carousel-wrap{position: relative; z-index: 15;}

.banner-card1 {
  position: absolute;
  bottom: 13px;
  left: -25px;
  width: 260px;
  height: 335px;
  z-index: 12;
}

.banner-card2 {
  position: absolute;
  top: 200px;
  right: 35px;
  width: 245px;
  height: 299px;
  z-index: 12;
}

.banner-card3 {
  position: absolute;
  top: 200px;
  right: 167px;
  width: 245px;
  height: 299px;
  z-index: 0;
}
.social-list li{    list-style: none;
  display: inline-block; margin: 2px; padding:0 5px;}
  .social-list li a{color: #fff;}
  .logo img{    border: 3px dashed #656565; background:#00000075;}

  .pathcol { font-size: 6px; fill: #fff; }
  .vericaltext{
    writing-mode: vertical-lr;
    /* text-orientation: upright; */
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #dc0606 0%, #620505 100%);
    text-align: center;
    }

    .vericaltext span{padding: 20px;
      background: #000;
      left: 38%;
      position: relative;
      border-radius: 10px 0 0 10px;}
      .speakerold{    background: linear-gradient(90deg, #442a2a 0%, #9b1818 100%);
        border: 5px solid #000;}
        .collection{padding: 50px 0; background: url(https://storage.googleapis.com/e4mevents/red-carpet-awards-2025/images/count.webp);}
        .story-section{background: #000;}

.cat-box {
    background: #ffeaa4;
    width: 100%;
    display: inline-block;
    padding: 0px 15px 15px;
    border-bottom: solid;
}
.form-group {
    margin-top: 15px;
}

.ed {
    background: linear-gradient(405deg, #222 80%, #ffeaa4 30%);
    padding: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.categ-heading {
    width: 100%;
    padding: 5px 15px;
    text-align: center;
    background: #bd1701;
}

.accordion-box .block .acc-btn.active {
    background-color: #bd1802;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}
.ac {
    font-size: 20px;
    color: #fff;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 0px;
}
.accordion{list-style: none;}

.offer-box .fa-square-check {
    color: #4CAF50;
    font-size: 18px;
}
.pl {
    text-align: left;
}

.sp-book-now a {
    background: #e5252b;
    padding: 12px 40px 12px;
    color: #fff;
    border-radius: 90px;
    /* font-weight: bold; */
    text-decoration: none;
    font-size: 18px;
}

.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.payment-inst {
    background: #000;
    padding: 15px;
    color: #e0e0e0;
}

.entry_details {
    display: block;
    padding: 12px;
    background: #222;
}
.payment-inst p{color: #fff;}
.pay-entry {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}
.heading {
    font-size: 22px;
    color: #af1e21;
    font-weight: bold;
}
h6.heading {
    display: inline-block;
    color: #000;
    border-bottom: double;
    width: 100%;
}
.mandatory {
    color: red;
}
.mrt-2{list-style: none;}
.compulsory {
    background: #bf0101;
    color: #fff;
    font-size: 20px;
    padding: 0px 10px;
    display: inline-block;
}
.formtitle {
    background: #e82229;
    padding: 5px 10px 3px 10px;
    color: #fff;
    border-radius: 6px;
    font-size: 1.3rem;
}




















  :root {
    --card-width: 13rem;
    --card-animation: slide-down 1s ease-in-out backwards;
    
    height: 100%;
  }
  
  
  .slide-right{width:100%}
  
  @keyframes slide-down {
    0% {
      opacity: 0;
      rotate: 45deg;
      transform: translateX(50vw) translateY(-50vh) rotate(5deg);
    }
  
    40% {
      opacity: 100%;
    }
  
    75% {
      transform: translateX(0) translateY(0) rotate(0);
    }
  
    100% {
      transform: translateX(inset) translateY(inset) rotate(inset);
    }
  }
  
  .card {
    overflow: hidden;
  }
  
  .card:nth-of-type(1) {
    rotate: -45deg;
    
    animation: var(--card-animation);
  }
  .card:nth-of-type(1):hover {
    transform: translateX(calc(-2rem * sin(40deg)))
      translateY(calc(-2rem * cos(40deg))) rotate(-10deg);
  }
  
  .card:nth-of-type(2) {
    rotate: -30deg;
    
    animation: var(--card-animation) 0.2s;
  }
  .card:nth-of-type(2):hover {
    transform: translateX(calc(-2rem * sin(35deg)))
      translateY(calc(-2rem * cos(35deg))) rotate(-5deg);
  }
  
  .card:nth-of-type(3) {
    rotate: -15deg;
    
    animation: var(--card-animation) 0.4s;
  }
  .card:nth-of-type(3):hover {
    transform: translateX(calc(-2rem * sin(20deg)))
      translateY(calc(-2rem * cos(20deg))) rotate(-5deg);
  }
  
  .card:nth-of-type(4) {
    animation: var(--card-animation) 0.6s;
  }
  .card:nth-of-type(4):hover {
    transform: translateX(calc(-2rem * sin(5deg)))
      translateY(calc(-2rem * cos(5deg))) rotate(-5deg);
  }
  
  .card:nth-of-type(5) {
    rotate: 15deg;
    
    animation: var(--card-animation) 0.8s;
  }
  .card:nth-of-type(5):hover {
    transform: translateX(calc(-4rem * sin(10deg)))
      translateY(calc(-3rem * cos(10deg))) rotate(-5deg);
  }
  
  .card {
    background-color: #fff;
  
    width: var(--card-width);
 
  
    position: absolute;
    top: calc(50% - (var(--card-width) * 1.5 / 2));
    right: calc(50% - (var(--card-width) / 1.5));
    transform-origin: 10% 90%;
  
    box-shadow:
    0px 0px 2.2px rgba(0, 0, 0, 0.02),
    0px 0px 5.3px rgba(0, 0, 0, 0.028),
    0px 0px 10px rgba(0, 0, 0, 0.035),
    0px 0px 17.9px rgba(0, 0, 0, 0.042),
    0px 0px 33.4px rgba(0, 0, 0, 0.05),
    0px 0px 80px rgba(0, 0, 0, 0.07)
  ;
    border: solid 2px #78787800;
    object-fit: scale-down;
  
    transition: rotate 0.15s ease-in-out, transform 0.22s ease-in-out;
  
    cursor: pointer;
  }
  
  .selected {
    border: solid 2px #787878;
  }
  
  .card:hover {
    filter: brightness(1.03);
  }
  
  .card:hover + .card {
    transform: rotate(15deg);
  }
  
  .card:hover + .card + .card {
    transform: rotate(5deg);
  }
  .about-content p{font-size: 20px;    line-height: 35px;}
  .banner-card{    position: absolute;
    top: -250px;
    right: 0;}
    .rotate{position: absolute;     left: 42px;
      width: 122px;}

      .rotate2{position: absolute;     right: 42px;
        width: 122px; bottom: 50px;}
    .image-rotate {
      animation: rotation infinite 14s linear;
  }
.counter-icon img{width: 50px;}
.counter-icon{text-align: center;}

.main-slider__start-3 {
  position: absolute;
  top: 216px;
  right: 170px;
  animation-name: border-round;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;

}

.main-slider__start-3 img, .main-slider__start-1 img, .main-slider__start-2 img{  opacity: 0.6;}
.main-slider__start-1 {
  position: absolute;
  top: 130px;
  left: 830px;
  animation-name: border-round;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;
}
.main-slider__start-2 {
  position: absolute;
  bottom: 50px;
  left: 520px;
  z-index: -1;
}

@keyframes border-round {

  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(-360deg);
    opacity: 1;
  }
}

.zoominout {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}



  

  


video{
  position: absolute;
  top: 0%;
  left: 0%;
  min-width: 100%;
  height: 100vh !important;
  width: 100%;
  z-index: 0;
  background-size: cover;
  overflow: hidden;
object-fit: cover;
  }


.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-image{transition:all .4s ease-in-out;}
.lightbox-enabled {padding-top: 80%;
   cursor: pointer;
   border-radius: 6px;
   box-shadow: 0px 0px 12px #cbcbcb;
   background-size: cover;
   background-position: center; margin-bottom:20px;}

.lightbox-container {width:100vw;
height:100vh;
position:fixed;
top:0;
left:0;
 display:flex;
 align-items:center;
 justify-content:center;
background-color:rgba(0,0,0,.6);
z-index:9999;
opacity:0;
pointer-events:none;
}

.lightbox-container.active {
 opacity:1;
 pointer-events:all;
}
.lightbox-image-wrapper {
 display:flex;
 transform:scale(0);
 align-items:center;
 justify-content:center;
 max-width:90vw;
 max-height:90vh;
 position:relative;
}
.lightbox-container.active .lightbox-image-wrapper {transform:scale(1);}
.lightbox-btn, #close {
 color:white;
 z-index:9999999;
cursor:pointer; 
 position:absolute;
 font-family: 'Material Icons'!important;
 font-size:50px;
}

.lightbox-btn:focus {
 outline:none;
}

.left {left:50px;}
.right {right:50px;}
#close {top:50px;
right:50px;}

.lightbox-image {
 width:100%;
 -webkit-box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19); 
box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19);
 max-height:95vh;
 object-fit:cover;
}

@keyframes slideleft {
 33% {transform:translateX(-300px);
 opacity:0;
 }
 66% {transform:translateX(300px);
 opacity:0;
 }
}


.slideleft {
  animation-name: slideleft;
animation-duration: .5s; 
animation-timing-function: ease; 
}
@keyframes slideright {
 33% {transform:translateX(300px);
 opacity:0;}
 66% {transform:translateX(-300px);
 opacity:0;}
}


.slideright{
  animation-name: slideright;
animation-duration: .5s; 
animation-timing-function: ease; 
}

.topticker{position: absolute; width: 100%; height: 30px;    left: 0;
  right: 0;
  z-index: 100;}

.marquee {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 100%;

  box-shadow: 4px 4px 0 #000;
  overflow: hidden;
  background: #000;
  white-space: nowrap;
}

.marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 10s linear infinite;
  color: #fff;
  text-transform: uppercase;
    word-spacing: 4px;
}
.marquee--inner:hover {
 animation-play-state: paused;
}

.marquee--inner span {
  float: left;
  width: 50%;
  overflow: hidden;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

