/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --qutiiz-font: "Bai Jamjuree", sans-serif;
  --qutiiz-font-two: "Bai Jamjuree", sans-serif;
  --qutiiz-reey-font: "reeyregular";
  --qutiiz-gray: #747276;
  --qutiiz-gray-rgb: 114, 109, 123;
  --qutiiz-white: #ffffff;
  --qutiiz-white-rgb: 255, 255, 255;
  --qutiiz-black: #04000b;
  --qutiiz-black-rgb: 4, 0, 11;
  --qutiiz-base: #6222cc;
  --qutiiz-pink: #14ea03;
  --qutiiz-base-rgb: 98, 34, 204;
  --qutiiz-bdr-radius: 8px;
  --font-size: 0.8em;
  --bg1: #fff;
  --blue: rgba(62, 55, 231, 1);
  --green: #14ea03;
  --purple: #9b59b6;
  --gold: #f1c40f;
  --red: #e74c3c;
  --orange: #e67e22;
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
  --gap: -200px;
  --circle-size: 200px;
  --circle-size-small: 130px;
  --color-1: #00c935;
  --color-2: #003ade;
}

* {
  box-sizing: border-box;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

html {
  scroll-snap-type: y mandatory;
}

html,
body,
section {
  block-size: 100%;
}

body {
  font-family: var(--qutiiz-font);
  color: var(--qutiiz-gray);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--qutiiz-black);
  margin: 0;
  font-family: var(--qutiiz-font-two);
  font-size: 3rem;
  font-weight: 300;
}

.project-one__img.think-result img {
  width: 80%;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
}

section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  transition: transform 0.8s ease-in-out;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* @media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
} */

::placeholder {
  color: inherit;
  opacity: 1;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  --webkitappearance: none;
  outline: none !important;
  background-color: var(--qutiiz-pink);
  color: var(--qutiiz-black);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 50px 10px;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
  font-family: var(--qutiiz-font-two);
  letter-spacing: 0.1em;
  border-radius: 15px;
  margin: 10px 10px 10px 0px;
}

.thm-btn:hover {
  color: var(--qutiiz-white);
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff9d6f;
  transform: scale(0);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: var(--qutiiz-bdr-radius);
  opacity: 1;
  z-index: -1;
}

.thm-btn:hover:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.thm-btn-partner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  --webkitappearance: none;
  outline: none !important;
  background-color: #ff9d6f;
  color: var(--qutiiz-black);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 50px 10px;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
  font-family: var(--qutiiz-font-two);
  letter-spacing: 0.1em;
  border-radius: 15px;
  margin: 10px 10px 10px 0px;
}

.thm-btn-partner:hover {
  color: var(--qutiiz-white);
}

.thm-btn-partner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--qutiiz-pink);
  transform: scale(0);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: var(--qutiiz-bdr-radius);
  opacity: 1;
  z-index: -1;
}

.main-slider .thm-btn-partner {
  opacity: 10;
  /* transform: translateY(320px); */
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
  margin: 25px 18px;
}

.thm-btn-partner:hover:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.section-title {
  margin-top: 0px;
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: 300 !important;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  color: var(--qutiiz-black);
  font-size: 20px;
  line-height: 24px;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  font-family: var(--qutiiz-font-two);
}

.section-title__tagline:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  content: "";
  height: 2px;
  background-color: #ff9b6f;
}

.section-title__title {
  margin: 0;
  font-size: 50px;
  line-height: 60px;
  font-family: var(--qutiiz-font);
  font-weight: 500;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #14ea03;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #000000;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--qutiiz-pink);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}

/* .main-header:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background-color: rgba(var(--qutiiz-white-rgb), 0.05);
  z-index: -1;
} */
.main-menu {
  position: relative;
  padding: 0 55px;
  z-index: 91;
}

.main-menu-wrapper {
  position: relative;
  display: block;
}

.main-menu-wrapper__left {
  display: block;
  float: left;
}

.main-menu-wrapper__logo {
  position: relative;
  float: left;
  padding-top: 25px;
  padding-bottom: 37px;
  margin-right: 10px;
}

.main-menu-wrapper__main-menu {
  display: block;
  float: left;
}

.main-menu-wrapper__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-wrapper__call-icon {
  position: relative;
  display: flex;
}

.main-menu-wrapper__call-icon span {
  font-size: 30px;
  color: var(--qutiiz-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__call-icon:hover span {
  color: #a09baa;
}

.main-menu-wrapper__call-number {
  margin-left: 20px;
}

.main-menu-wrapper__call-number h5 {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.1em;
}

.main-menu-wrapper__call-number h5 a {
  color: var(--qutiiz-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__call-number a:hover {
  color: #a09baa;
}

.main-menu-wrapper__call-number p {
  font-size: 12px;
  margin: 0;
  line-height: 14px;
  color: var(--qutiiz-white);
  text-transform: uppercase;
  font-family: var(--qutiiz-font-two);
  letter-spacing: 0.1em;
}

.main-menu-wrapper__search-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7.5px 0;
  margin-right: 80px;
}

.main-menu-wrapper__search-box:before {
  position: absolute;
  top: -5px;
  bottom: -3px;
  right: -30px;
  content: "";
  background-color: rgba(var(--qutiiz-white-rgb), 0.2);
  width: 1px;
}

.main-menu-wrapper__search {
  font-size: 24px;
  color: var(--qutiiz-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__search:hover {
  color: #a09baa;
}

.main-menu-wrapper__right {
  position: relative;
  display: flex;
  float: right;
  padding: 34.5px 0;
  align-items: center;
}

.rightbanner {
  text-align: right;
}

.leftbanner img {
  width: 50%;
}

.rightbanner img {
  width: 70%;
}

.rightbanner:after {
  position: absolute;
  top: 0;
  right: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
}

.leftbanner:after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
}

.leftbanner:hover:after {
  left: 100%;
  transition: all 0.3s ease;
  animation: leftshine 1.5s;
}

@keyframes leftshine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.main-slider--three .banner-span {
  border: 0.2px solid var(--qutiiz-pink);
  border-radius: 5px;
  font-size: 15px;
  font-family: var(--qutiiz-font);
  line-height: 20px;
  padding: 10px;
}

.rightbanner:hover:after {
  right: 100%;
  transition: all 0.3s ease;
  animation: rightshine 1.5s;
}

@keyframes rightshine {
  0% {
    right: -100%;
  }

  100% {
    right: 100%;
  }
}

.stricky-header.main-menu {
  padding: 0;
  background-color: rgb(62, 55, 231);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list ul {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 37px;
  padding-bottom: 37px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 63px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a,
.menu_button a {
  font-size: 15px;
  display: flex;
  align-items: center;
  color: var(--qutiiz-white);
  position: relative;
  transition: all 500ms ease;
  font-family: var(--qutiiz-font-two);
  text-transform: uppercase;
  font-weight: 700;
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
  content: "";
  height: 1px;
  border-radius: 0px;
  background-color: var(--qutiiz-pink);
  position: absolute;
  bottom: 7px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list > li > .form-btn-partner::before,
.stricky-header .main-menu__list > li > .form-btn-partner::before,
.main-menu .main-menu__list > li > .form-btn-invitation::before,
.stricky-header .main-menu__list > li > .form-btn-invitation::before {
  content: "";
  height: 1px;
  border-radius: 0px;
  background-color: var(--qutiiz-pink);
  position: absolute;
  bottom: 7px;
  left: 10px;
  right: 10px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--qutiiz-pink);
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list > li.current > a::before {
  background-color: var(--qutiiz-black);
}

.main-menu .main-menu__list > li:hover > a::before {
  background-color: var(--qutiiz-black);
}

.service-details__sidebar-service-list li.current a,
.service-details__sidebar-service-list li a:hover {
  background-color: rgb(255, 255, 255);
  color: var(--qutiiz-black);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  top: 80px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
  padding: 0px 0px 0px;
  border-radius: var(--qutiiz-bdr-radius);
  color: var(--qutiiz-black);
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li + li,
.stricky-header .main-menu__list li ul li + li {
  border-top: 1px solid rgba(var(--qutiiz-black-rgb), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
  font-size: 16px;
  line-height: 30px;
  color: var(--qutiiz-black);
  font-family: var(--qutiiz-font-two);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 500ms;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: #fff;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list > li.current > a::before {
  background-color: #fff;
}

.main-menu .main-menu__list > li:hover > a::before {
  background-color: #fff;
}

.main-menu .main-menu__list li ul > li:first-child > a,
.stricky-header .main-menu__list li ul > li:first-child > a {
  border-top-left-radius: var(--qutiiz-bdr-radius);
  border-top-right-radius: var(--qutiiz-bdr-radius);
}

.main-menu .main-menu__list li ul > li:last-child > a,
.stricky-header .main-menu__list li ul > li:last-child > a {
  border-bottom-left-radius: var(--qutiiz-bdr-radius);
  border-bottom-right-radius: var(--qutiiz-bdr-radius);
}

.main-menu .main-menu__list li ul li:hover > a,
.stricky-header .main-menu__list li ul li:hover > a {
  background-color: #413aea;
  color: var(--qutiiz-white);
}

.main-menu .main-menu__list li ul li > ul,
.stricky-header .main-menu__list li ul li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li > ul ul,
.stricky-header .main-menu__list li ul li > ul ul {
  display: none;
}

.main-menu-wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-wrapper .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.main-menu-wrapper .main-menu__list > .megamenu > ul > li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: transform 500ms ease, visibility 500ms ease;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  position: fixed;
  top: 10px;
  bottom: auto;
  transform: translateY(-20%);
  visibility: visible;
  padding-top: 10px;
}

.stricky-header .main-menu__inner {
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--qutiiz-black);
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--qutiiz-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--qutiiz-black);
  cursor: pointer;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--qutiiz-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Main Header Three
--------------------------------------------------------------*/

.main-menu--three {
  padding: 0;
  background-color: transparent;
}

.main-header--three .main-menu-wrapper,
.main-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header--three .main-menu-wrapper__logo,
.sticky-header__content .main-menu-wrapper__logo {
  width: 200px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 0px;
  float: none;
}

.main-header--three .main-menu-wrapper__logo a {
  position: relative;
  display: inline-block;
}

.main-header--three .main-menu-wrapper__left {
  float: none;
  /*margin-left: auto;*/
  /*margin-right: auto;*/
}

.main-header--three .main-menu-wrapper__right {
  position: relative;
  display: flex;
  float: right;
  align-items: center;
  padding: 0px;
}

.main-header--three .main-menu-wrapper__main-menu {
  float: none;
}

.main-header--three .main-menu-wrapper__call {
  position: relative;
  z-index: 1;
  width: 265px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--qutiiz-base);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

.list-unstyled .li {
  display: flex;
  font-weight: bold;
  line-height: 21px;
  padding: 0px;
  text-align: left;
  font-size: 17px;
  color: black;
  height: 60px;
}

.blog-ul {
  padding-top: 10px;
  padding-left: 20px;
}

@keyframes shapeMover {
  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
      translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px)
      translateX(20px);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes treeMove {
  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
  animation-name: zoom-fade;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: zoom-fade;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: zoom-fade;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: zoom-fade;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: zoom-fade;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@-moz-keyframes service_hexagon_2 {
  0% {
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@-o-keyframes service_hexagon_2 {
  0% {
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes service_hexagon_2 {
  0% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transform: translateX(-50%);
  transform-origin: right center;
  transition: transform 500ms ease-in, opacity 500ms linear,
    visibility 500ms ease-in;
  z-index: 999;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  color: var(--qutiiz-black);
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: rgba(65, 58, 234, 1);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  color: black;
}

.mobile-nav__content .thm-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--thm-text-dark);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(27, 16, 16, 0.1);
  border-top: 1px solid rgba(27, 16, 16, 0.1);
}

.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--qutiiz-white);
  font-size: 14px;
  font-family: var(--qutiiz-font);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--qutiiz-white);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--qutiiz-base);
  border: none;
  outline: none;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--qutiiz-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--thm-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--qutiiz-white);
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: #a09baa;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--thm-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: var(--qutiiz-black);
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: #a09baa;
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--qutiiz-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider-border {
  position: absolute;
  top: 108px;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-slider-border-two {
  left: 14.29%;
}

.main-slider-border-three {
  left: 28.59%;
}

.main-slider-border-four {
  left: 42.88%;
}

.main-slider-border-five {
  left: 57.17%;
}

.main-slider-border-six {
  left: 71.46%;
}

.main-slider-shape-1 {
  position: absolute;
  top: -182px;
  right: 125px;
  width: 495px;
  height: 350px;
  background-color: var(--qutiiz-base);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(45deg) translateY(-200px);
  border-radius: 30px;
  z-index: 2;
}

.swiper-slide-active .main-slider-shape-1 {
  opacity: 1;
  transform: rotate(45deg) translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1500ms;
}

.main-slider-shape-2 {
  position: absolute;
  top: -70px;
  right: -242px;
  width: 495px;
  height: 350px;
  background-color: var(--qutiiz-black);
  mix-blend-mode: soft-light;
  transform: rotate(45deg) translateY(-200px);
  border-radius: 30px;
  opacity: 0;
  z-index: 1;
}

.swiper-slide-active .main-slider-shape-2 {
  opacity: 1;
  transform: rotate(45deg) translateY(0px);
  transition: all 1000ms ease;
}

.main-slider-shape-3 {
  position: absolute;
  top: 221px;
  right: -429px;
  width: 495px;
  height: 350px;
  background-color: var(--qutiiz-white);
  mix-blend-mode: soft-light;
  transform: rotate(45deg) translateY(-200px);
  border-radius: 30px;
  opacity: 0;
  z-index: 1;
}

.swiper-slide-active .main-slider-shape-3 {
  opacity: 1;
  transform: rotate(45deg) translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--qutiiz-black);
}

.main-slider .image-layer {
  position: relative;
  left: 0;
}

.maincontent .main-slider__content img {
  width: 80%;
}

.main-slider .container {
  position: relative;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: center;
}

/*--------------------------------------------------------------
# Main slider Three
--------------------------------------------------------------*/
.main-slider--three {
  position: relative;
  display: block;
}

.maincontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #04000b;
}

.main-slider--three .image-layer {
  opacity: 0.5;
}

.main-slider--three__shape1 {
  position: absolute;
  top: -70px;
  left: 205px;
  width: 370px;
  height: 370px;
  background: var(--qutiiz-base);
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(0deg) translateY(-200px);
  z-index: 3;
}

.swiper-slide-active .main-slider--three__shape1 {
  opacity: 1;
  transform: rotate(0deg) translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1500ms;
}

.main-slider--three__shape2 {
  position: absolute;
  top: 115px;
  left: 25px;
  width: 510px;
  height: 510px;
  background: var(--qutiiz-black);
  border-radius: 50%;
  mix-blend-mode: soft-light;
  opacity: 0;
  transform: rotate(0deg) translateX(-200px);
  z-index: 2;
}

.swiper-slide-active .main-slider--three__shape2 {
  opacity: 1;
  transform: rotate(0deg) translateY(0px);
  transition: all 1000ms ease;
}

.main-slider--three__shape3 {
  position: absolute;
  right: 150px;
  bottom: 180px;
  width: 185px;
  height: 185px;
  background: var(--qutiiz-white);
  border-radius: 50%;
  mix-blend-mode: soft-light;
  transform: rotate(0deg) translateX(200px);
  opacity: 0;
  z-index: 3;
}

.swiper-slide-active .main-slider--three__shape3 {
  opacity: 1;
  transform: rotate(0deg) translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 2000ms;
}

.main-slider--three .container {
  position: relative;
  background-color: white;
  max-width: 100%;
}

.main-slider--three .main-slider__content {
  text-align: center;
}

.main-slider--three h2 {
  color: var(--qutiiz-white);
  font-size: 110px;
  line-height: 0.9em;
  font-weight: 500;
  margin-bottom: 34px;
  margin-top: 0px;
  opacity: 0;
  transition: all 1000ms ease;
  transform: translateY(80px);
  z-index: 30;
}

.main-slider--three .swiper-slide-active h2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1000ms;
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--qutiiz-white, #ffffff);
}

.stricky-header .megamenu-left .container {
  margin: 0;
  margin-left: 25px;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  z-index: 1;
  background-image: url("../image/footer-bg.jpg");
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 51px 0;
}

.site-footer__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__top-logo {
  position: relative;
  display: inline-block;
}

.site-footer__top-title-box {
  margin-left: 100px;
}

.site-footer__top-title {
  font-size: 24px;
  color: var(--qutiiz-white);
  text-transform: uppercase;
  line-height: 34px;
}

.site-footer__top-title a {
  position: relative;
  display: inline-block;
  color: var(--qutiiz-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__top-title a:hover {
  color: var(--qutiiz-white);
}

.site-footer__top-title a:before {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qutiiz-base);
  height: 1px;
}

.site-footer__top-right-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.site-footer__top-right-social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--qutiiz-white);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__top-right-social a:hover {
  color: var(--qutiiz-base);
}

.site-footer__top-right-social a + a {
  margin-left: 25px;
}

.site-footer__middle {
  position: relative;
  display: block;
  padding-top: 80px;
  z-index: 1;
}

.site-footer-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.site-footer__middle-inner {
  position: relative;
  display: block;
}

.footer-widget__about {
  position: relative;
  display: block;
}

.footer-widget__title {
  font-size: 20px;
  color: #14ea03;
  font-weight: 600;
  line-height: 30px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
  margin-right: -30px;
}

.footer-widget__about-text {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 36px;
}

.footer-widget__about-contact {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--qutiiz-white-rgb), 0.1);
  margin-top: 20px;
  padding-top: 18px;
}

.footer-widget__about-contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__about-contact li .icon i {
  font-size: 15px;
  color: var(--qutiiz-white);
}

.footer-widget__about-contact li .text {
  margin-left: 10px;
}

.footer-widget__about-contact li .text a {
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__about-contact li .text a:hover {
  color: var(--qutiiz-white);
}

.footer-widget__about-contact li .text p {
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  margin: 0;
}

.footer-widget__links {
  position: relative;
  display: block;
  margin-top: 90px;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li + li {
  margin-top: 6px;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #a09baa;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--qutiiz-white);
}

.footer-widget__links-list li a:before {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qutiiz-white);
  height: 1px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.footer-widget__links-list li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.footer-widget__explore {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-right: -5px;
}

.footer-widget__explore-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-widget__explore-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--qutiiz-white);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__explore-list li i {
  color: #fff;
}

.footer-widget__explore-list li a:hover {
  color: #14ea03;
}

.footer-widget__explore-list li a:before {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--qutiiz-white);
  height: 1px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.footer-widget__explore-list li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.footer-widget__explore p {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  margin-bottom: 0px;
  margin-right: -6px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  margin-top: 10px;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--qutiiz-white-rgb), 0.1);
  padding: 10px 0;
  border-top: 1px solid #ffffff;
}

.site-footer__bottom-left {
  position: relative;
  display: block;
}

.site-footer__bottom-text {
  font-size: 15px;
  color: var(--qutiiz-white);
  margin: 0;
  font-weight: 500;
}

.site-footer__bottom-text a {
  color: var(--qutiiz-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--qutiiz-pink);
}

.site-footer__bottom-right {
  position: relative;
  display: block;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__bottom-menu li + li {
  margin-left: 24px;
}

.site-footer__bottom-menu li a {
  font-size: 15px;
  color: var(--qutiiz-white);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--qutiiz-pink);
}

.footer-widget__column.footer-widget__links img {
  width: 100%;
  margin-top: -43px;
}

#parallax {
  position: relative;
  width: 100%;
  height: auto;
  background-color: transparent;
  background-image: url(/assets/image/mmm/banner/mmmbg1.png);
  /* background-image: url(/assets/image/mmm/banner/mmmbg.png); */
  /* background-image: url(/assets/image/mmm/banner/bg-left.png),
    url(/assets/image/mmm/banner/bg-right.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 125px;
  transition: background-position 0.1s ease-out;
  overflow: hidden;
  padding-bottom: 100px;
}

.main-slider {
  position: relative;
  width: 100%;
}

.main-slider .container {
  position: relative;
  z-index: 2;
}

.chess {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 10%;
}

.chess img:first-child {
  width: 50px;
  position: absolute;
  bottom: -550px;
  left: -15px;
}

.chess img:last-child {
  width: 50px;
  position: absolute;
  top: 20px;
  right: 10px;
}

.iamia-mmm {
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.iamia-mmm img:first-child {
  width: 15%;
}

.iamia-mmm img:last-child {
  width: 35%;
}

.iamia-mmm p {
  color: #fff;
  font-size: 13px;
  margin: 5px 0;
  font-weight: 400;
}

.phuket {
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  justify-content: center;
  align-items: center;
}

.phuket p {
  position: relative;
  font-size: 22px;
  margin-bottom: 1px;
  z-index: 10;
  line-height: 30px;
  font-weight: 600;
  padding-top: 10px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.buttons a {
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: none;
  margin: 15px 0 80px;
}

.buttons a {
  background-color: #14ea03;
}

.buttons a:last-child {
  background-color: #003ade;
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 25%;
  top: 320px;
}

.circle-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a5045;
  border-radius: 50%;
}

.circle img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  background-color: #e1c327;
  padding: 20px;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: white;
  animation: rotateText 10s linear infinite;
}

.circle-text svg {
  width: 100%;
  height: 100%;
  padding: 10px 0;
}

.circle-text text {
  font-size: 10.4px;
  font-weight: bold;
  fill: white;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
  padding-left: 120px;
}

/*section#theme .container {*/
/*  max-width: 1240px;*/
/*}*/
#about-us .container .row .col-md-6 img {
  width: 100%;
}

.cards .col-md-3 {
  width: calc(20% - 25px);
  position: relative;
}

.cards .col-md-3::after {
  content: "";
  position: absolute;
  left: 99%;
  top: 50%;
  transform: translateY(-50%) translateX(var(--after-translate, 0px));
  width: 20px;
  height: 20px;
  background: #fff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.1s ease-out;
}

.cards .col-md-3:last-child:after {
  display: none;
}

.card {
  border: 8px solid white;
  /* background: rgba(0, 0, 0, 0.7); */
  background-blend-mode: overlay;
  /* Blend black with image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 20px;
  text-align: left;
  color: #000;
  position: relative;
  overflow: hidden;
  margin: 0 20px;
  min-height: 220px;
  border-radius: 24px;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  /* adjust opacity as needed */
  z-index: -1;
}

.cards .col-md-3:nth-child(1) .card::after {
  background-image: url("/assets/image/mmm/highlights/bg-1.png");
  background-position: right;
}

.cards .col-md-3:nth-child(2) .card::after {
  background-image: url("/assets/image/mmm/highlights/bg-2.png");
  background-position: center;
}

.cards .col-md-3:nth-child(3) .card::after {
  background-image: url("/assets/image/mmm/highlights/bg-3.png");
  background-position: left 0px center;
}

.cards .col-md-3:nth-child(4) .card::after {
  background-image: url("/assets/image/mmm/highlights/bg-4.png");
  background-position: left -20px center;
}

.card span {
  font-size: 70px;
  font-weight: bold;
  display: block;
  padding-bottom: 20px;
}

.card p {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
}

/* .pt-100 {
  padding-top: 100px;
} */
section#about-us {
  position: relative;
  padding: 120px 0 50px;
}

.chess img,
.iamia-mmm,
.phuket,
.circle,
.card {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

section#theme {
  position: relative;
  padding: 100px 0;
  background-image: url(/assets/image/mmm/theme/theme-bg.png);
  background-size: cover;
  background-attachment: fixed;
}

.black-header,
.white-header {
  background-color: transparent;
  color: #000;
  display: inline-block;
  padding: 0px 20px 10px 10px;
  font-size: 35px;
  border-radius: 50px;
  font-weight: 700;
  position: relative;
  margin-left: 45px;
}

.white-header p {
  color: #fff !important;
}

.black-header::before,
.white-header::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 29%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #00db39;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.cmo-card:first-child h3::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 25%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #00db39;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.theme-container .black-header::before {
  top: 20%;
}

.cmo-card:first-child h3::before,
.white-header::before {
  background: #fff !important;
}

.theme .black-header::before,
.white-header::before {
  display: none;
}

.theme-right img {
  display: block;
  width: 100%;
}

#about-us p {
  color: #000;
}

#about-us h1 {
  color: #000;
  font-weight: 600;
}

.about-header {
  font-size: 40px;
  font-weight: 200;
  margin: 10px 0;
  color: #000;
  line-height: 40px;
}

.about-box {
  display: flex;
  justify-content: space-between;
}

.about-box .left-container,
.about-box .right-container,
.theme-left,
.theme-right {
  transition: transform 2s ease;
  will-change: transform;
}

.left-container {
  background-color: #003ade;
  color: #fff;
}

.font-25 {
  font-size: 25px;
  line-height: 30px;
  padding: 10px 0;
}

.left-container p,
.right-container p {
  font-size: 23px;
  line-height: 30px;
}

.left-container p {
  color: #fff !important;
}

.right-container {
  background-color: #00db39;
  color: #000;
}

.left-container,
.right-container {
  width: 48%;
  display: inline-block;
  border-radius: 20px;
  vertical-align: top;
  padding: 30px 40px;
}

.left-container ul,
.right-container ul {
  padding-left: 20px;
  font-weight: 600;
}

.theme-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 20px;
  gap: 25px;
}

.theme-list p {
  font-size: 23px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}

.theme-list p span {
  color: #14ea03;
}

.theme-list img {
  width: 10%;
}

/* cmo styles */
section#whyattend {
  position: relative;
  background-image: url(/assets/image/mmm/cmo/cmo-bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 50px;
}

section#whyattend .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}

section#sectors {
  position: relative;
  padding: 110px 0 0px;
}

.lg-color {
  background-color: #003ade;
}

#sectors .container .row .col-md-2 img {
  width: 80%;
  padding: 20px;
  position: relative;
  transition: transform 0.8s ease-in-out;
}

#sectors .container .row .col-md-2 img:hover {
  transform: scale(1.1);
}

.left-align,
.right-align {
  color: #000;
  font-size: 25px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s ease-in-out;
}

.left-align:hover,
.right-align:hover {
  transform: scale(1.1);
}

.left-align {
  text-align: left;
  padding-left: 15px;
}

.right-align {
  text-align: right;
  padding-right: 15px;
}

.whyPartner-container {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 70%;
  background: rgba(78, 71, 237, 0.7);
  padding: 40px 20px 40px 40px;
  color: #fff;
  z-index: 2;
  margin: 50px 0;
}

.whyPartner-container::before,
.whyPartner-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
}

.whyPartner-container::before {
  top: -20px;
  background-color: #fff;
}

.whyPartner-container::after {
  bottom: -20px;
  background-color: #000;
}

.whyPartner {
  position: relative;
  z-index: 1;
  font-size: 200px;
  line-height: 180px;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
}

.color-white {
  color: #fff;
}

.color-blue {
  color: #007bff;
}

.color-black {
  color: #000;
}

.whyPartner-container ul {
  list-style: none;
  padding: 0;
}

.whyPartner-container li {
  text-align: left;
  padding: 5px 0 15px;
  font-size: 23px;
  font-weight: 400;
}

#should-partner {
  position: relative;
  padding: 50px 0;
}

.should-partner-card {
  display: flex;
  flex-direction: column;
  padding: 20px 10px 10px;
  width: calc(24% - 15px);
  justify-content: flex-start;
  align-items: center;
  border: 3px solid #00c935;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out;
  margin: 10px;
}

.should-partner-card:hover {
  transform: scale(1.05);
}

.indus-item:before {
  background-color: #ffd600;
  background-color: var(--color-yellow);
  content: "";
  height: 180px;
  left: 19px;
  opacity: 0;
  position: absolute;
  top: 27px;
  -webkit-transform: skewY(-25deg);
  transform: skewY(-25deg);
  transition: 0.5s;
  visibility: hidden;
  width: 200px;
  z-index: -1;
}

.should-partner-card img {
  width: 60px;
  height: auto;
}

.should-partner-card p {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  color: #000;
  padding: 10px 15px;
}

#hotel {
  padding: 50px 0;
  position: relative;
  height: 100vh;
}

.fluid-container img {
  width: 75vw;
  position: relative;
}

.rightside {
  position: absolute;
  left: 40vw;
  width: 40vw;
  /* From 40% to 80% */
  z-index: 2;
}

.bgcolor-blue {
  background-color: #3e37e7;
  padding: 20px 0;
  width: 85%;
  height: 75vh;
  position: absolute;
  z-index: 10;
  top: -455px;
  left: -50px;
  border-radius: 50px;
}

.bgcolor-blue .white-header {
  font-size: 30px;
  padding: 1px 0 0 10px;
  text-align: left !important;
  margin-left: 60px;
}

.bgcolor-white {
  background-color: white;
  padding: 20px;
  width: 36%;
  position: absolute;
  bottom: 12%;
  z-index: 100;
  right: 310px;
  height: 60vh;
  display: flex;
  border-radius: 50px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.13));
}

.bgcolor-white .project-two__img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 24px;
}

.bgcolor-white .project-two__img p {
  padding-top: 10px;
}

.bgcolor-white img {
  width: 50% !important;
  height: auto;
}
.brand-img {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.brand-one {
  position: relative;
  display: block;
  padding: 80px 0 40px;
  border-bottom: 1px solid #fff;
}

.brand-one .container {
  position: relative;
  background-color: white;
  margin-bottom: 40px;
  margin-top: -70px;
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #14ea03;
  padding: 6px 10px;
  width: auto !important;
  max-width: 150px;
  /* background-color: rgb(62, 55, 231); */
  /*box-shadow: 0px 0px 63px 0px rgb(62, 55, 231) inset;*/
}

.brand-one .swiper-slide img {
  -webkit-transition: 700ms;
  transition: 400ms;
  width: 100%;
  /* padding: 0px 30px 0px 30px; */
}

.brand-one .swiper-slide img:hover {
  opacity: 1;
}

.project-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-image: url(/assets/image/mmm/pastpartner/past-partner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.project-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  filter: drop-shadow(0px 9px 10.5px rgba(0, 0, 0, 0.19));
}

.project-one__img {
  display: flex;
  overflow: hidden;
  background-color: var(--qutiiz-white);
  width: 100%;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  max-height: 120px;
}

.project-one__img img {
  width: 100%;
  transition: transform 500ms ease, mix-blend-mode 500ms ease;
  border-radius: var(--qutiiz-bdr-radisu);
  padding: 0px;
  object-fit: cover;
}

/* .project-one__img img:hover{
  transform: scale(1.25);
} */
.project-one__single:hover .project-one__img img {
  mix-blend-mode: normal;
}

.project-one__hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 31px 60px 30px;
  padding-right: 40px;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 1;
}

.project-one__single:hover .project-one__hover {
  transform: scaleY(1);
}

.project-one__hover:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--qutiiz-black-rgb), 0.9);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: -1;
}

.project-one__tagline {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: var(--qutiiz-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 20px;
  font-weight: 500;
  font-family: var(--qutiiz-font-two);
}

.project-one__tagline:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  width: -webkit-fill-available;
  background-color: var(--qutiiz-base);
}

.project-one__title {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 24px;
}

.project-one__title a {
  color: var(--qutiiz-white);
  transition: all 500ms ease;
}

.project-one__title a:hover {
  color: var(--qutiiz-base);
}

.project-one__hover-pl-40 {
  padding-left: 40px;
}

.project-one__img.scatter img {
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown a {
  text-decoration: none;
  display: block;
  /* background: ; */
  color: white;
}

.w-50 {
  width: 65% !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 150px;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  color: black;
  padding: 8px 12px;
  display: block;
  background: white;
}

.dropdown-menu a:hover {
  background: #ddd;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.stricky-header .main-menu__list > li > a {
  color: var(--qutiiz-white) !important;
}

#partners .black-header::before {
  background: #fff !important;
}

.main-header--three .main-menu-wrapper__logo a img {
  width: 80%;
  padding-left: 20px;
}

.sticky-header__content .main-menu-wrapper .main-menu-wrapper__logo a img {
  width: 70%;
  padding-left: 20px;
}

#about-us p:last-child {
  color: #000;
}

.menu_button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu_button a {
  padding: 0px 10px;
  font-size: 15px;
  color: #fff;
  background-color: #14ea03;
  margin-right: 15px;
  text-transform: none;
  border-radius: 5px;
}

.menu_button a:hover {
  border: 3px solid #14ea03;
  background-color: #003ade;
}

.section {
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease-out;
}

.parallax-card {
  background: url("your-background.jpg") no-repeat center center fixed;
  background-size: cover;
  padding: 50px 0;
  position: relative;
}

.parallax-card .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.parallax-card-item {
  width: calc(26% - 20px);
  text-align: center;
  margin-bottom: -50px;
}

.hexagon {
  position: relative;
  width: 95%;
  padding-top: 80%;
  /* Make it square to hold the hexagon shape */
  background: #d3f15f;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hexagon img {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 70px;
  /* Adjusted image size */
  height: auto;
}

.details {
  position: absolute;
  bottom: 30%;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  transition: transform 0.2s ease-in-out;
}

.details p {
  margin: 0;
  color: #000;
  font-size: 25px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}

.details:hover {
  transform: scale(1.1);
  left: 0;
}

#sectors .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  max-width: 1600px;
}

.box {
  background: #003ade;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  margin: 10px 5px;
  text-align: center;
  transition: transform 0.3s ease-in;
  width: auto;
  max-height: 60px;
}
.width-10 {
  width: 260px;
}
.box:hover {
  transform: scale(1.05) !important;
}

.box img {
  width: 40px;
  height: 40px;
  padding: 5px;
  box-shadow: 0px 0px 37px 0px rgba(20, 234, 3, 1) inset;
  border-radius: 10px;
}

.box span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.icon-left-arrow::before {
  content: "\e906";
  display: inline-block;
  transform: scaleX(-1);
  /* Flip horizontally */
}

.gallery {
  padding: 50px 0;
  position: relative;
  background-color: rgba(62, 55, 231, 1);
}

.gallery .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery .black-header,
.gallery .black-header strong {
  font-size: 50px;
  letter-spacing: 2px;
  line-height: 60px;
  text-align: left !important;
}

.gallery .black-header p {
  padding-top: 50px;
  font-size: 25px;
  letter-spacing: 2px;
  line-height: 45px;
  text-align: left !important;
  color: #fff;
}

.gallery .black-header::before {
  display: none;
}

.gallery_1 img {
  object-fit: cover;
}

.gallery_1 .responsive-container-block {
  min-height: 75px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.gallery_1 .responsive-container-block.Container {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  /* margin-top: 50px; */
  margin-right: auto;
  /* margin-bottom: 50px; */
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery_1 .responsive-container-block.imgContainer {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  min-height: auto;
  height: 90vh;
  position: relative;
}

.gallery_1 .project {
  position: absolute;
  width: 39.8%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.gallery_1 .project:hover .btn-box {
  display: block;
}

.gallery_1 .smallImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_1 .project.project1 {
  width: 39.8%;
  height: 66.67%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.gallery_1 .project.project2 {
  bottom: 0px;
  top: auto;
  right: auto;
  width: 59.75%;
  height: 32.6%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.gallery_1 .project.project3 {
  left: 40.2%;
  right: auto;
  bottom: auto;
  width: 19.4%;
  height: 32.98%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.gallery_1 .project.project4 {
  left: 40.2%;
  top: 33.7%;
  width: 19.5%;
  height: 32.98%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.gallery_1 .project.project5 {
  right: 0px;
  left: auto;
  bottom: auto;
  width: 39.8%;
  height: 32.6%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.gallery_1 .project.project6 {
  bottom: 0px;
  top: auto;
  left: auto;
  right: 0px;
  width: 39.8%;
  height: 66.67%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.image-popup.show {
  display: flex;
}

.image-popup .popup-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.image-popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
}

.theme-section {
  background: url("/assets/image/mmm/theme/theme-bg.png") no-repeat
    center center;
  background-size: cover;
  padding: 60px 20px;
  color: #fff;
}

.theme-overlay {
  background-color: rgba(255, 255, 255, 1);
  padding: 40px;
  border-radius: 16px;
}

.theme-container {
  max-width: 1200px;
  margin: 0 auto;
}

.theme-container .black-header {
  width: 45%;
}

.theme-container .black-header p {
  line-height: 40px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}

.theme-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 20px;
}

.theme-icon {
  width: 80px;
  height: 80px;
  margin-right: 25px;
}

.theme-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #003ade;
}

.theme-text p {
  color: #000;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.cmo-section {
  background: #00c853;
  color: #fff;
  padding: 60px 20px;
}

.cmo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cmo-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #00db39;
}

.cmo-dot {
  font-size: 2rem;
  color: white;
}

.cmo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cmo-card {
  background: #fff;
  color: #000;
  border-radius: 25px;
  padding: 20px 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cmo-card:first-child {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.cmo-card:first-child h3 {
  color: #fff;
  font-size: 35px;
  position: relative;
}

.cmo-icon {
  background: #00db39;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.cmo-icon img {
  width: 80px;
  height: 80px;
}

.cmo-card-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #00db39;
}

.cmo-card-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

main {
  display: grid;
  place-items: center;
  padding: 0px 10px 0;
  min-height: 100vh;
}

ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 330px;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  margin: 0 10px 50px;
  height: 190px;
}

ul.infoGraphic li .numberWrap {
  position: absolute;
  top: 40px;
  left: -30px;
}

ul.infoGraphic li .number {
  font-size: 10em;
  font-weight: 900;
  width: 1.4em;
  text-align: center;
}

.fontColor1 {
  color: var(--blue);
}

.fontColor2 {
  color: var(--green);
}

.fontColor3 {
  color: var(--purple);
}

.fontColor4 {
  color: var(--gold);
}

.fontColor5 {
  color: var(--red);
}

.fontColor6 {
  color: var(--orange);
}

ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 21em;
  height: 14em;
  left: -5em;
  top: -1em;
}

ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: var(--bg1);
  width: 13em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
  top: 10px;
}

ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px / 10px;
  z-index: -1;
}

ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}

ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}

ul.infoGraphic li .content {
  margin: 5em 0em 0em 7em;
  position: relative;
}

ul.infoGraphic li .content p {
  line-height: 1.5em;
  font-size: 15px;
  color: #000;
  font-weight: 400;
}

section#whyattend .black-header,
main .black-header,
#sectors .black-header,
#should-partner .black-header,
#partners .black-header,
.brand-one .black-header {
  font-weight: bold;
}

.terms-condtion,
.privacy-policy {
  margin-top: 150px;
  background-color: transparent;
  color: var(--qutiiz-black);
  /* background-image: url(../image/Form-Bg.jpg);
  background-repeat: repeat;
  background-size: contain; */
  padding-bottom: 115px;
}

.terms,
.privacy {
  margin: 0px 40px;
}

.heading1-term {
  text-align: center;
  font-weight: 500;
  margin: 100px 0px 30px 0px;
  font-size: 35px;
}

.terms .section,
.privacy .section {
  margin-bottom: 20px;
}

.heading2-term {
  text-align: left;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 10px;
}

.terms-list,
.privacy-list {
  padding: 0;
}

.privacy-list {
  list-style: decimal;
}

.terms-list li,
.privacy-list li {
  padding: 5px 10px;
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 999;
}

table {
  margin-top: 50px;
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  display: none;
}

th,
td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #f4f4f4;
}

h2 {
  display: none;
}

.phuket p:first-child {
  border: 4px solid #14ea03;
  padding: 5px 10px;
  /* background: #003ade; */
  color: #fff;
  /* font-size: 15px; */
}

.graphic-container {
  width: 100%;
  display: grid;
  place-items: center;
  margin: 0px 0;
  position: relative;
  z-index: 1;
  color: #000;
  max-height: 450px;
}

.center-circles-container {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 180px;
  height: 100%;
  width: 100%;
  position: relative;
  top: -100px;
}

.double {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.double:nth-child(even) {
  flex-direction: column-reverse;
}

.circles {
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  place-items: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
}

.icon i {
  font-size: 3rem;
  font-style: normal;
}

.content-container {
  position: relative;
  max-width: 200px;
  min-width: 200px;
  width: 100%;
  z-index: 1;
}

.content p {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

/* different content elements */

.two i,
.four i {
  color: #000;
  font-size: 2.5rem;
}

.icon i img {
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 1;
}

.two i img,
.one i img,
.three i {
  position: relative;
  bottom: 8px;
}

/* dots */
.one .dot {
  position: absolute;
  top: 110px;
  right: -30px;
  width: 20px;
  height: 20px;
  background: var(--color-1);
  border-radius: 50%;
  animation: blink 1s linear infinite;
}

.one .dot::before,
.one .dot::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-2);
}

.one .dot::before {
  top: -50px;
  left: 100px;
  box-shadow: 0 0 0 6px var(--color-2);
  animation: blinkDot1 1.2s linear infinite;
}

.one .dot::after {
  top: 100px;
  left: -35px;
  box-shadow: 0 0 0 4px var(--color-2);
  animation: blinkDot2 1.5s linear infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes blinkDot1 {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

@keyframes blinkDot2 {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(1.2);
  }
}

.four .dot {
  position: absolute;
  top: 0px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: var(--color-1);
  border-radius: 50%;
}

.four .dot::before,
.four .dot::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--color-2);
}

.four .dot::before {
  width: 30px;
  height: 30px;
  top: -85px;
  left: 50px;
  animation: blinkFour1 1.2s ease-in-out infinite;
}

.four .dot::after {
  width: 10px;
  height: 10px;
  top: 135px;
  left: -240px;
  animation: blinkFour2 1.5s ease-in-out infinite;
}

.five .dot {
  position: absolute;
  top: 70px;
  left: -55px;
  width: 30px;
  height: 30px;
  background: var(--color-2);
  border-radius: 50%;
}

.five .dot::before,
.five .dot::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--color-1);
}

.five .dot::before {
  width: 20px;
  height: 20px;
  top: 210px;
  left: -275px;
  animation: blinkFive1 1.6s ease-in-out infinite;
}

.five .dot::after {
  width: 10px;
  height: 10px;
  top: 191px;
  left: 110px;
  animation: blinkFive2 1.9s ease-in-out infinite;
}

@keyframes blinkFour1 {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}

@keyframes blinkFour2 {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes blinkFive1 {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(1.3);
  }
}

@keyframes blinkFive2 {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

/* circle colors */
.one {
  background: repeating-conic-gradient(
    from var(--a),
    var(--color-1) 0%,
    var(--color-1) 10%,
    transparent 1%,
    transparent 0%,
    var(--color-1) 100%
  );
  /*box-shadow: inset 0 0 0 10px var(--color-1), inset 0px 0px 12px 20px #ffffff;*/
  transform: translate(-90px, -25px);
}

.one::after,
.two::after,
.three::after,
.four::after,
.five::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #fff;
  border-radius: 50%;
}

@keyframes animate {
  0% {
    --a: 0deg;
  }

  100% {
    --a: 360deg;
  }
}

@property --a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.two {
  background: repeating-conic-gradient(
    from var(--a),
    var(--color-2) 0%,
    var(--color-2) 10%,
    transparent 10%,
    transparent 0%,
    var(--color-2) 100%
  );
  /*box-shadow: inset 0 0 0 10px var(--color-2), inset 0px 0px 12px 20px #ffffff;*/
  transform: translate(-235px, -55px);
}

.one:hover,
.two:hover,
.three:hover,
.four:hover,
.five:hover {
  animation: animate 3s linear infinite;
}

.three {
  background: repeating-conic-gradient(
    from var(--a),
    var(--color-1) 0%,
    var(--color-1) 10%,
    transparent 10%,
    transparent 0%,
    var(--color-1) 100%
  );
  /*box-shadow: inset 0 0 0 10px var(--color-1), inset 0px 0px 12px 20px #ffffff;*/
  transform: translate(10px, 110px);
}

.four {
  background: repeating-conic-gradient(
    from var(--a),
    var(--color-2) 0%,
    var(--color-2) 10%,
    transparent 10%,
    transparent 0%,
    var(--color-2) 100%
  );
  /*box-shadow: inset 0 0 0 10px var(--color-2), inset 0px 0px 12px 20px #ffffff;*/
  transform: translate(-140px, 215px);
}

.five {
  background: repeating-conic-gradient(
    from var(--a),
    var(--color-1) 0%,
    var(--color-1) 10%,
    transparent 10%,
    transparent 0%,
    var(--color-1) 100%
  );
  /*box-shadow: inset 0 0 0 10px var(--color-1), inset 0px 0px 12px 20px #ffffff;*/
  transform: translate(90px, -160px);
}

.six {
  box-shadow: inset 0 0 0 10px var(--color-6), inset 0px 0px 12px 20px #ffffff;
}

/* h2 border colors */
.one .content-container h2 {
  border-top: 2px solid var(--color-1);
  border-bottom: 2px solid var(--color-1);
}

.two .content-container h2 {
  border-top: 2px solid var(--color-2);
  border-bottom: 2px solid var(--color-2);
}

.three .content-container h2 {
  border-top: 2px solid var(--color-1);
  border-bottom: 2px solid var(--color-1);
}

.four .content-container h2 {
  border-top: 2px solid var(--color-2);
  border-bottom: 2px solid var(--color-2);
}

.five .content-container h2 {
  border-top: 2px solid var(--color-1);
  border-bottom: 2px solid var(--color-1);
}

.six .content-container h2 {
  border-top: 2px solid var(--color-6);
  border-bottom: 2px solid var(--color-6);
}

.one .content-container h2::before,
.one .content-container h2::after {
  background: var(--color-1);
}

.two .content-container h2::before,
.two .content-container h2::after {
  background: var(--color-2);
}

.five .content-container h2::before,
.five .content-container h2::after {
  background: var(--color-1);
}

.three .content-container h2::before,
.three .content-container h2::after {
  background: var(--color-1);
}

.four .content-container h2::before,
.four .content-container h2::after {
  background: var(--color-2);
}

.six .content-container h2::before,
.six .content-container h2::after {
  background: var(--color-6);
}

/* speaker-three */
.sec-title {
  position: relative;
  margin-bottom: 70px;
}

.sec-title .title {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1em;
  color: #ff8a01;
  font-weight: 500;
  background: rgb(247, 0, 104);
  background: -moz-linear-gradient(
    to left,
    rgba(247, 0, 104, 1) 0%,
    rgba(68, 16, 102, 1) 25%,
    rgba(247, 0, 104, 1) 75%,
    rgba(68, 16, 102, 1) 100%
  );
  background: -webkit-linear-gradient(
    to left,
    rgba(247, 0, 104, 1) 0%,
    rgba(68, 16, 102, 1) 25%,
    rgba(247, 0, 104, 1) 75%,
    rgba(68, 16, 102, 1) 100%
  );
  background: linear-gradient(
    to left,
    rgba(247, 0, 104) 0%,
    rgba(68, 16, 102, 1) 25%,
    rgba(247, 0, 104, 1) 75%,
    rgba(68, 16, 102, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.sec-title h2 {
  position: relative;
  display: inline-block;
  font-size: 48px;
  line-height: 1.2em;
  color: #1e1f36;
  font-weight: 700;
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: #888;
  margin-top: 30px;
}

.sec-title.light h2,
.sec-title.light .title {
  color: #fff;
  -webkit-text-fill-color: inherit;
}

.swiper-nav-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  overflow: visible;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
}

.swiper-nav-section .swiper-button-prev,
.swiper-nav-section .swiper-button-next {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.swiper-nav-section .swiper-button-next,
.swiper-nav-section .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -50px);
  left: auto;
  color: rgb(62, 55, 231);
}

.swiper-nav-section .swiper-button-prev,
.swiper-nav-section .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -50px);
  right: auto;
  color: rgb(62, 55, 231);
}

.speakers-section-three {
  position: relative;
  padding: 120px 0 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.speaker-block-three {
  position: relative;
  margin-bottom: 50px;
}

.speaker-block-three .inner-box {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 20px;
  min-width: 200px;
  margin: 0 10px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  height: 350px;
}

.speaker-block-three .inner-box:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.speaker-block-three .image-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 50px 0 20px;
}

.speaker-block-three .image-box:before {
  position: absolute;
  left: -10px;
  right: -10px;
  top: -4px;
  height: 100%;
  background-image: url(/assets/image/mmm/speakers/mmm-mask.png);
  -webkit-transform: scale(-1);
  -moz-transform: scale(-1);
  -ms-transform: scale(-1);
  -o-transform: scale(-1);
  transform: scale(-1);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  content: "";
}

.speaker-block-three .image-box .image {
  position: relative;
  display: inline-block;
  height: 150px;
  width: 150px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 9;
  margin-bottom: 0;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  background-color: rgb(62, 55, 231);
}

.speaker-block-three .inner-box:hover .image-box .image {
  border-radius: 0;
}

.speaker-block-three .image-box .image img {
  display: block;
  width: 100%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.speaker-block-three .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.speaker-block-three .info-box {
  position: relative;
  display: inline-block;
  padding: 10px 10px 10px 5px;
  padding-right: 10px;
  background-color: rgb(62, 55, 231);
  width: 75%;
  border-bottom-right-radius: 25px;
  height: 90px;
}

.speaker-block-three .info-box:before {
  position: absolute;
  left: 0;
  right: -30px;
  background-color: rgb(62, 55, 231);
  content: "";
  top: 0;
  height: 100%;
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  transform: skew(-30deg);
  border-radius: 0 14px 14px 0;
}

.speaker-block-three .info-box .name {
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  color: #fff;
  font-weight: 500;
}

.speaker-block-three .info-box .name a {
  color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.speaker-block-three .info-box .name a:hover {
  color: #fff;
}

.speaker-block-three .info-box .designation {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
  padding: 5px 0 0;
}

.speaker-block-three .social-box {
  position: absolute;
  top: 90px;
  transform: translateX(-50px);
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}

.speaker-block-three .social-box .social-links li {
  margin-bottom: 4px;
}

.speaker-block-three .inner-box:hover .social-box {
  transform: translateX(10px);
}

.speaker-block-two .social-links li {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.speaker-block-three .social-links li a i {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  font-size: 16px;
  line-height: 30px;
  background-color: #fff;
  text-align: center;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.speaker-block-three .social-links li a:hover i {
  color: #fff;
  background: #ec7561;
}

.attendees-slider {
  padding: 0;
  max-width: 1600px;
  margin: auto;
}

.attendees-slider .swiper {
  width: 100%;
}

.attendees-slider .swiper-slide {
  display: flex;
  justify-content: center;
}

.profile-card {
  font-family: sans-serif;
  width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 22px rgb(62, 55, 231);
  text-align: center;
  transition: 0.4s;
  min-height: 400px;
}

.mn-height {
  min-height: 200px;
}

.profile-card .img {
  width: 100%;
  margin-bottom: 15px;
}

.img img {
  width: 100%;
  border-radius: 25%;
  border: 3px solid rgb(62, 55, 231);
}

.img img.attendees {
  box-shadow: inset 0px 0px 50px 0px rgba(62, 55, 231, 0.7);
}

.caption h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}

.caption p {
  font-size: 15px;
  color: rgb(62, 55, 231);
  margin-bottom: 10px;
  line-height: 22px;
}

.company {
  font-weight: 400;
  color: #000 !important;
}

.residency {
  padding: 70px 0 20px;
}

.col-md-6 .row::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: rgba(20, 234, 3, 1);
  margin-left: 10px;
  position: absolute;
  right: 50%;
  top: 0;
}
.testimonials-wrapper .owl-dots {
  display: none;
}

.testimonials-wrapper {
  padding: 100px 0;
  position: relative;
}

.testimonials-wrapper .section-title h2 {
  margin: 0 0 10px;
  color: #fff;
}

.testimonials-wrapper .owl-nav {
  position: absolute;
  left: 48%;
  bottom: -40px;
  z-index: 99;
}

.testimonials-wrapper .owl-next,
.testimonials-wrapper .owl-prev {
  position: relative;
  height: 38px;
  width: 38px;
  line-height: 33px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  margin-left: 10px;
  display: inline-block;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonial-block {
  position: relative;
  padding: 30px 0 0;
}

.testimonial-block .inner-box {
  position: relative;
  background: linear-gradient(
    -135deg,
    rgba(62, 55, 231, 0.8) 0%,
    rgba(20, 234, 3, 0.8) 100%
  );
  border-radius: 30px;
  padding: 70px 10px 30px;
  /* border: 3px dashed #000; */
  text-align: center;
  max-width: 375px;
  height: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 50px auto; /* Adjust spacing from other elements */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  overflow: visible;
}
.statement {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.name-designation {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.name-designation h4 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.name-designation p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Outer dashed border */
.testimonial-block .inner-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px dashed rgba(20, 234, 3, 1);
  border-radius: 40px;
  z-index: -1;
  background: transparent;
}

.testimonial-block .inner-box .image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(20, 234, 3, 1);
  background-color: #000;
  z-index: 2;
}

/* Make image fit perfectly */
.testimonial-block .inner-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-block .inner-box p {
  position: relative;
  color: #fff;
  font-size: 14px;
}
.concise {
  font-size: 14px;
  line-height: 20px;
  margin: 10px 0 0;
  color: #fff;
  text-align: center;
  /* font-weight: 400; */
}
.name-designation {
  position: relative;
}
.name-designation h4 {
  font-weight: 700;
}
.star {
  color: #fcbe05 !important;
  font-size: 30px !important;
  line-height: 35px;
  margin: 0 !important;
}

.testimonials-wrapper .owl-nav .owl-next {
  right: auto;
}

.testimonials-wrapper .owl-carousel .owl-item img {
  background: #333;
}

.testimonials-wrapper .owl-theme .owl-nav [class*="owl-"] {
  border: 2px solid #000;
  color: #000;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  border-color: rgba(20, 234, 3, 1) !important;
  color: rgba(20, 234, 3, 1) !important;
  background: 0 0;
}

@media only screen and (max-width: 991px) {
  .testimonials-wrapper .owl-dots {
    display: block;
  }
}

/* media */
@media (max-width: 992px) {
  .graphic-container {
    margin: 50px 0;
  }

  .center-circles-container {
    overflow: hidden;
    overflow-x: hidden;
  }

  .four {
    box-shadow: inset 0 0 0 20px var(--color-1), inset 0px 0px 12px 20px #ffffff;
    transform: translateX(-20px);
  }

  .five {
    box-shadow: inset 0 0 0 20px var(--color-2), inset 0px 0px 12px 20px #ffffff;
    transform: translateX(-20px);
  }

  .double {
    flex-direction: row;
  }

  .double:nth-child(even) {
    flex-direction: row;
  }

  .one {
    transform: translateX(0px);
  }

  .two {
    transform: translateX(0px);
  }

  .three {
    transform: translateX(0px);
  }

  .four {
    transform: translateX(0px);
  }

  .five {
    transform: translateX(0px);
  }
}

@media (max-width: 1400px) {
  .bgcolor-white {
    bottom: 14%;
  }

  .bgcolor-white img {
    width: 40% !important;
  }

  .bgcolor-blue {
    left: -80px;
  }

  .panel span {
    left: -100px;
    top: 120px;
  }

  .active span {
    top: 0;
    text-align: center;
  }
}

@media (max-width: 1300px) {
  .bgcolor-white {
    bottom: 13%;
  }

  .bgcolor-white img {
    width: 35% !important;
  }

  .bgcolor-blue {
    left: -75px;
    top: -436px;
  }

  .whyPartner {
    font-size: 160px;
    line-height: 160px;
    margin-top: -75px;
  }

  .cards .col-md-3 {
    width: calc(23% - 25px);
    position: relative;
  }

  .panel.active {
    padding-top: 10px;
  }

  .card {
    min-height: 240px;
  }
}

@media (max-width: 1200px) {
  .whyPartner {
    font-size: 180px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .panel:nth-child(3) span {
    top: 136px;
  }

  .panel span {
    display: block;
    position: absolute;
    left: -80px;
    top: 120px;
    color: black;
    font-weight: bold;
    text-align: left;
    font-size: 26px;
    transform: rotate(-90deg);
    transition: all 0.5s linear;
    width: 20vw;
  }

  .panel h3 {
    left: 20px;
  }

  .panel.active {
    padding-top: 70px;
  }

  .active span {
    transform: rotate(0deg);
    position: relative;
    left: 0;
    bottom: 0;
    top: 0 !important;
    text-align: center;
    color: #000;
    padding-top: 15px;
    background-color: transparent;
    width: 40vw;
  }

  .theme-container .black-header {
    width: 55%;
  }

  ul.infoGraphic li {
    max-width: 31%;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1600px) {
  .center-circles-container {
    gap: 150px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .bgcolor-blue {
    height: 90vh;
  }

  .center-circles-container {
    gap: 120px;
  }

  /* .one {
    transform: translateX(-60px);
  }
  
  .three {
    transform: translateX(-25px);
  }
  
  .five {
    transform: translate(60px, -50px);
  } */
  .one .dot {
    box-shadow: 100px -50px 0 6px var(--color-2),
      -60px 129px 0 4px var(--color-2);
  }

  .four .dot {
    top: -10px;
    left: 40px;
  }

  .two {
    transform: translate(-230px, -55px);
  }

  .three {
    transform: translate(0px, 110px);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .center-circles-container {
    gap: 20px;
  }

  /* .one {
    transform: translate(-200px, -25px);
  } */
  .two {
    transform: translate(-175px, 45px);
  }

  /* .three {
    transform: translate(-10px, 85px);
  } */
  .four {
    transform: translate(-80px, 315px);
  }

  /* .five {
    transform: translate(180px, -134px);
  }
  .circles {
    width: 200px;
    height: 200px;
  } */
  .one .dot {
    box-shadow: 100px -70px 0 6px var(--color-2),
      -100px 180px 0 4px var(--color-2);
    right: -10px;
    top: 172px;
  }

  .four .dot {
    top: -10px;
    left: 50px;
    box-shadow: 43px -170px 0 15px var(--color-2),
      -120px 100px 0 5px var(--color-2);
  }

  .five .dot {
    top: 40px;
    left: -70px;
    background: var(--color-1);
    border-radius: 50%;
    box-shadow: 150px 180px 0 10px var(--color-1),
      220px 110px 0 5px var(--color-2);
  }
}

@media (max-width: 1150px) {
  #parallax {
    height: auto;
  }

  .iamia-mmm img:first-child {
    width: 40% !important;
  }

  .iamia-mmm img:last-child {
    width: 60% !important;
    z-index: 100;
  }

  .phuket p {
    font-size: 15px;
    line-height: 20px;
  }

  .phuket p.pt-3 {
    padding-top: 7px !important;
  }
  .graphic-container {
    max-height: fit-content;
  }
  .cards {
    padding-left: 0;
  }

  .cards .col-md-3::after {
    left: -5%;
  }

  .cards .col-md-3:last-child::after {
    display: block;
  }

  .left-align,
  .right-align {
    color: #000;
    font-size: 16px;
    line-height: 20px;
  }

  .panel h3 {
    left: 10px;
    bottom: 20px;
  }

  .panel span {
    left: -125px;
    width: 30vw;
    top: 150px;
  }

  .active span {
    left: 0;
    top: 0;
  }

  .bgcolor-white {
    bottom: 12%;
    z-index: 100;
    right: 255px;
  }

  .bgcolor-white img {
    width: 40% !important;
  }

  .bgcolor-blue {
    top: -430px;
    height: 84vh;
  }
}

@media (max-width: 1024px) {
  .cards .col-md-3 {
    width: calc(50% - 15px);
  }

  .gallery_1 .responsive-container-block.imgContainer {
    height: 600px;
  }

  .phuket p {
    font-size: 18px;
  }

  ul.infoGraphic li {
    max-width: 25em;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons a {
    width: 100%;
    text-align: center;
  }

  .main-header--three .main-menu-wrapper__logo a img,
  .sticky-header__content .main-menu-wrapper .main-menu-wrapper__logo a img {
    width: 130px;
  }
}

@media (max-width: 991px) {
  .circle {
    right: 200px;
    top: 30%;
    margin-top: 0;
  }

  .center-circles-container {
    flex-direction: column;
    padding: 65px 0;
    gap: 20px;
  }

  ul.infoGraphic li {
    max-width: 20em;
  }

  .whyPartner-container {
    top: 24%;
    padding: 10px 50px;
  }

  .whyPartner {
    font-size: 120px;
    line-height: 130px;
  }

  section#about-us img {
    width: 100%;
  }

  .circle-container {
    width: 140px;
    height: 140px;
  }

  .about-header {
    text-align: center;
    font-size: 20px;
    margin: 0;
  }

  #sectors .container .row .col-md-2 img {
    padding: 20px 0;
  }

  .bgcolor-white {
    bottom: 140px;
    z-index: 100;
    right: 220px;
    height: 55vh;
  }

  .bgcolor-white img {
    width: 40% !important;
  }

  .bgcolor-blue {
    top: -350px;
    height: 80vh;
  }
}

@media (max-width: 768px) {
  .w-50 {
    width: 100% !important;
  }

  main {
    padding: 10px 5px;
  }

  .black-header,
  .white-header {
    margin-left: 0;
  }

  .cards .col-md-3:nth-child(4) .card::after {
    background-position: left;
  }

  .whyPartner-container {
    top: 33%;
  }

  .cards .col-md-3:last-child::after {
    display: none;
  }

  .gallery_1 .project.project5 {
    top: 520px;
    width: 100%;
    left: 0px;
    right: auto;
    bottom: auto;
    height: 200px;
  }

  ul.infoGraphic li .content {
    margin: 7em 0em 7em 7em;
  }

  .gallery_1 .responsive-container-block.imgContainer {
    height: 930px;
  }

  .gallery_1 .project.project1 {
    width: 64%;
    height: 300px;
  }

  .gallery .black-header,
  .gallery .black-header strong,
  .gallery .black-header p {
    margin-left: 0;
    text-align: center !important;
  }

  .whyPartner-container::before,
  .whyPartner-container::after {
    display: none;
  }

  .gallery_1 .project.project3 {
    left: auto;
    width: 35%;
    height: 145px;
    right: 0px;
  }

  .gallery_1 .project.project4 {
    left: auto;
    width: 35%;
    height: 145px;
    top: 155px;
    right: 0px;
  }

  .gallery_1 .project.project6 {
    height: 200px;
    width: 100%;
  }

  .gallery_1 .project.project2 {
    width: 100%;
    top: 310px;
    height: 200px;
  }

  .gallery_1 .project {
    width: 100%;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }

  .gallery_1 .overlay-inner {
    width: 90%;
  }

  .circles {
    justify-content: space-around;
  }

  .one img,
  .three img,
  .two img,
  .four img,
  .five img {
    width: 50px !important;
    height: 50px !important;
    position: relative;
    top: 30px;
  }

  .gallery_1 .text-blk.subHeading {
    line-height: 25px;
    font-size: 17px;
    max-width: 600px;
  }

  .gallery_1 .text-blk.heading {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  /*#parallax {*/
  /*  background-image: url(/assets/image/mmm/banner/mobile-bg2.jpg);*/
  /*}*/
  .card {
    text-align: center;
    padding: 20px 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #about-us .black-header {
    margin-top: 25px;
    margin-left: 20px;
  }

  .cmo-card:first-child h3::before {
    left: -15px;
    top: 25%;
  }

  .theme-container .black-header::before {
    top: 17%;
  }

  .black-header::before,
  .white-header::before {
    top: 40%;
  }

  p {
    margin: 0;
    font-weight: 400;
  }

  #about-us p {
    text-align: center;
  }

  .font-25 {
    font-size: 20px;
    padding-top: 20px !important;
  }

  .about-box {
    flex-direction: column;
    padding-top: 1.2rem !important;
  }

  .left-container,
  .right-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .black-header,
  .white-header {
    font-size: 23px;
    text-align: center;
  }

  .bgcolor-blue .white-header {
    font-size: 22px;
    padding: 0;
    margin-left: 20px;
    line-height: 25px;
    padding-left: 15px;
  }

  .left-align,
  .right-align {
    font-size: 30px;
    line-height: 35px;
  }

  .whyPartner {
    font-size: 80px;
    line-height: 120px;
    margin-top: 0;
  }

  .whyPartner-container {
    width: 90%;
    padding: 0px 20px;
    margin: 20px 0;
  }

  .whyPartner-container li {
    font-size: 20px;
    padding: 5px 0;
  }

  .circle {
    right: 2px;
    top: 124px;
    margin-top: 0;
  }

  .chess {
    display: none;
  }

  .cards .col-md-3::after {
    display: none;
  }

  .cards .col-md-3 {
    width: 100%;
  }

  .circle-container {
    width: 100px;
    height: 100px;
  }

  .theme-list img {
    width: 20%;
  }

  .theme-right img {
    width: 100%;
  }

  .panel {
    margin: 10px 0;
    width: 100%;
    padding-top: 30px !important;
  }

  .panel h3 {
    left: 30px;
    bottom: 20px;
    padding: 20px;
    width: 10px;
    height: 10px;
    font-size: 40px;
    transform: rotate(0deg);
    transition: all 0.5s linear;
  }

  .panel span {
    left: 82px;
    top: 23px;
    font-size: 20px;
    transform: rotate(0deg);
    transition: all 0.5s linear;
    width: 70vw;
    line-height: 20px;
  }

  .active span {
    left: 0 !important;
    top: 0 !important;
  }

  .panel.active div {
    width: 80px;
    height: 80px;
  }

  .panel.active img {
    width: 80px;
    height: 80px;
  }

  section#sectors {
    padding: 50px 20px;
    text-align: center;
  }

  container,
  .right-align,
  .left-align {
    text-align: center;
    padding: 10px 0;
  }

  #sectors .container .row .col-md-2 img {
    padding: 20px;
  }

  section#sectors .container,
  .row:nth-child(2) {
    flex-direction: column-reverse;
  }

  section#whyattend .container {
    flex-direction: column;
  }

  #should-partner .row {
    flex-direction: column;
  }

  .should-partner-card {
    width: 95%;
  }

  .bgcolor-white {
    padding: 10px;
    width: 65%;
    top: 130px;
    left: 135px;
    height: 36vh;
  }

  .bgcolor-blue {
    width: auto;
    height: 54vh;
    top: -150px;
  }

  .rightside {
    width: 50vw;
  }

  .bgcolor-white .project-two__img p {
    font-size: 15px;
    line-height: 20px;
  }

  #hotel {
    padding: 50px 0;
    position: relative;
    height: 55vh;
  }

  .brand-one {
    padding: 150px 0 22px;
  }

  .theme-container .black-header {
    width: 85%;
    margin-left: 50px;
  }

  .theme-icon {
    margin: 0;
  }

  .terms,
  .privacy {
    margin: 0 10px;
  }

  .theme-overlay {
    padding: 10px 0;
  }

  .theme-container .black-header p {
    font-size: 20px;
    line-height: 20px;
  }

  .theme-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 15px;
  }

  .theme-text h4 {
    margin-bottom: 10px;
  }

  .theme-item {
    padding: 10px 10px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .cmo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .cmo-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .double {
    flex-direction: column !important;
  }

  section#whyattend {
    padding: 50px 30px;
  }
}

@media (max-width: 480px) {
  .buttons {
    flex-direction: column;
  }

  .gallery_1 .responsive-container-block.imgContainer {
    height: 890px;
  }

  .gallery_1 .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .gallery_1 .text-blk.heading {
    font-size: 30px;
    line-height: 35px;
  }

  .gallery_1 .text-blk.subHeading {
    font-size: 16px;
    line-height: 22px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .gallery_1 .project.project1 {
    height: 250px;
  }

  .gallery_1 .project.project3 {
    height: 123px;
  }

  .gallery_1 .project.project4 {
    height: 123px;
    top: 127px;
  }

  .gallery_1 .project.project2 {
    top: 260px;
  }

  .gallery_1 .project.project5 {
    top: 470px;
  }

  .gallery_1 .project.project6 {
    top: 680px;
  }

  .buttons a {
    width: 100%;
    margin: 2px 0;
  }

  .circle img {
    width: 60px;
    height: 60px;
  }

  .circle p {
    font-size: 12px;
  }
}
