@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Template Name: Arsha – Architecture Construction & Interior HTML Template.
    Author: Nanantal_Theme
    Support: https://help.moontelict.com/support/
    Description: Arsha – Architecture Construction & Interior HTML Template is a modern, customizable, and responsive template designed for agencies to showcase their work, services, and team with stylish layouts and interactive features.
    Version: 1.0.0

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

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

	-----------------
    01. THEME CSS
	-----------------
		1.1 Theme Default
		1.2 Common Classes
		1.3 Default Spacing

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Back to top
		2.2 Theme Settings
		2.3 Buttons
		2.4 Animations
		2.5 Preloader
		2.6 Background 
		2.7 Carousel
		2.8 Nice Select
		2.9 Pagination
		2.10 Offcanvas
		2.11 Breadcrumb
		2.12 Accordion
		2.13 Tab
		2.14 Modal
		2.15 Section Title
		2.16 Search
		2.17 Hotspot
		2.18 Ragne Slider

	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style 1
		3.2 Header Style 2
		3.3 Header Style 3


    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Main menu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
	    5.1 blog css start
		5.2 Postbox css
		5.3 Recent Post css
		5.4 Sidebar css

	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style 1


	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 about css start 
		7.2 app css start
		7.3 brand css start
		7.4 cart css start
		7.5 checkout css start
		7.6 choose css start
		7.7 contact css start 
		7.8 cta css start
		7.9 error css start
		7.10 faq css start
		7.11 feature css start
		7.12 funfact css start
		7.13 price css start 
		7.14 project css start
		7.15 service css start
		7.16 shop css start 
		7.17 slider css start
		7.18 step css start
		7.19 team css start
		7.20 testimonial css start
		7.21 video css start



**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /**
  @font family declaration
  */
  --mt-ff-body: "DM Sans", sans-serif;
  --mt-ff-heading: "Urbanist", sans-serif;
  --mt-ff-p: "DM Sans", sans-serif;
  --mt-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --mt-common-white: #fff;
  --mt-common-black: #000;
  --mt-common-black-2: #111;
  --mt-common-black-3: #030303;
  --mt-common-black-4: #010E04;
  --mt-common-black-5: #151515;
  --mt-grey-1: #999999;
  --mt-grey-2: #D6D6D6;
  --mt-text-body: #C9D3CB;
  --mt-text-p: #595A61;
  --mt-theme-1: #C6F906;
  --mt-theme-2: #68FFB3;
  --mt-border-1: #EEEEEE;
  --mt-border-2: #191919;
  --mt-border-3: #1d1d1d;
  --mt-border-4: rgba(17, 17, 17, 0.1);
}

/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
#back-to-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  background: var(--mt-theme-1);
  color: #000;
  z-index: 9;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0.7);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.mt-btn {
  height: 48px;
  line-height: 48px;
  position: relative;
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
  padding: 0 23px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  margin: 0 -3px;
  z-index: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-btn span {
  position: relative;
  z-index: 2;
}
.mt-btn span i {
  margin-left: 5px;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  font-size: 16px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mt-btn.view {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 100%;
}
.mt-btn.big {
  width: 150px;
  height: 150px;
  line-height: 165px;
  border-radius: 100%;
  padding: 0;
}
.mt-btn.big span {
  line-height: 1.2;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
}
.mt-btn:hover {
  color: var(--mt-common-black);
  border-radius: 100px;
  background: var(--mt-theme-2);
}
.mt-btn:hover span i {
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mt-btn-sm {
  height: 41px;
  line-height: 41px;
  color: #060121 !important;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mt-btn-sm i {
  margin-right: 5px;
}
.mt-btn-sm:hover {
  border: 1px solid var(--mt-common-white) !important;
  color: var(--mt-common-white) !important;
}
.mt-btn-icon {
  padding: 0 18px;
  margin: 0 -3px;
}
.mt-btn-icon.rotate i {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mt-btn-2 {
  height: 50px;
  line-height: 50px;
  position: relative;
  background-color: transparent;
  color: var(--mt-common-white);
  border: 1px solid var(--mt-border-1);
  padding: 0 23px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  margin: 0 -3px;
  z-index: 1;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-btn-2:hover {
  color: var(--mt-common-black);
  background-color: var(--mt-theme-1);
  border: 1px solid var(--mt-theme-1);
}

.mt-btn-black {
  height: 48px;
  line-height: 48px;
  position: relative;
  background-color: var(--mt-common-black);
  color: var(--mt-common-white);
  padding: 0 23px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  margin: 0 -3px;
  z-index: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-btn-black span {
  position: relative;
  z-index: 1;
}
.mt-btn-black.mtwhite {
  background-color: var(--mt-common-white);
  color: var(--mt-common-black);
}
.mt-btn-black-icon {
  padding: 0 18px;
  margin: 0 -3px;
}
.mt-btn-black-icon.rotate i {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mt-btn-black:hover {
  color: var(--mt-common-black);
  background-color: var(--mt-theme-1);
}

.mt-btn-border {
  height: 48px;
  line-height: 48px;
  position: relative;
  background-color: transparent;
  color: var(--mt-common-black);
  border: 1px solid var(--mt-border-4);
  padding: 0 23px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  margin: 0 -3px;
  z-index: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-btn-border-icon {
  padding: 0 18px;
  margin: 0 -2px;
  line-height: 45px;
}
.mt-btn-border-icon.rotate i {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mt-btn-border:hover {
  color: var(--mt-common-black);
  border-color: var(--mt-theme-1);
  background-color: var(--mt-theme-1);
}

.mt-menu-btn {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
  width: 140px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  overflow: hidden;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 9;
}
.mt-menu-btn:hover {
  color: var(--mt-common-black);
  background-color: var(--mt-theme-2);
}

/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
#loading {
  background-color: var(--mt-theme-2);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.object {
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid #000;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000;
  border-right: 5px solid transparent;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}

#object_one {
  left: 75px;
  top: 75px;
  width: 50px;
  height: 50px;
}

#object_two {
  left: 65px;
  top: 65px;
  width: 70px;
  height: 70px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#object_three {
  left: 55px;
  top: 55px;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#object_four {
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes animate {
  50% {
    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}
@keyframes animate {
  50% {
    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}
/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/
.white-bg {
  background-color: var(--mt-common-white);
}

.black-bg {
  background-color: var(--mt-common-black);
}

.black-bg-2 {
  background-color: var(--mt-common-black-2);
}

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

.theme-bg-2 {
  background-color: var(--mt-theme-2);
}

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

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

/*----------------------------------------*/
/*  2.8 Nice Select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 0;
  font-family: var(--mt-ff-fontawesome);
  color: var(--mt-common-black);
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-select.open::after {
  -moz-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.mt-offcanvas {
  position: fixed;
  z-index: 9999;
  width: 400px;
  right: 0;
  top: 0;
  padding: 50px 40px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(100% + 80px));
  background: var(--mt-common-black) none repeat scroll 0 0;
  transition: 0.4s;
  z-index: 9999;
  scrollbar-width: none;
  transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  scrollbar-width: none;
  overflow-y: scroll;
}
.mt-offcanvas-logo img {
  width: 168px;
}
@media only screen and (max-width: 400px) {
  .mt-offcanvas {
    width: 100%;
    padding: 35px 30px;
  }
}
.mt-offcanvas-open {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.mt-offcanvas-close-toggle {
  font-size: 29px;
  color: var(--mt-common-white);
  transition: 0.3s;
}
.mt-offcanvas-close-toggle:hover {
  transform: rotate(90deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-offcanvas-header {
    margin-bottom: 40px;
  }
}
.mt-offcanvas-title {
  font-size: 35px;
  color: var(--mt-common-white);
}
.mt-offcanvas-content p {
  color: var(--mt-common-white);
}
.mt-offcanvas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}
.mt-offcanvas-info span {
  color: var(--mt-common-white);
  display: block;
  margin-bottom: 5px;
}
.mt-offcanvas-info span:hover {
  color: var(--mt-theme-2);
}
.mt-offcanvas-sm-title {
  font-size: 25px;
  margin-bottom: 15px;
  color: var(--mt-common-white);
}
.mt-offcanvas-social a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 39px;
  border-radius: 40px;
  color: var(--mt-common-black);
  background: var(--mt-common-white);
  border: 1px solid rgba(2, 11, 24, 0.1);
  font-size: 14px;
}
.mt-offcanvas-social a:hover {
  background-color: var(--mt-theme-2);
  color: var(--mt-common-black);
  border-color: var(--mt-theme-2);
}
.mt-offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
  background: rgba(24, 24, 24, 0.438);
}
.mt-offcanvas-overlay-open {
  opacity: 0.7;
  visibility: visible;
}

.mt-offcanvas-menu ul {
  list-style: none;
}
.mt-offcanvas-menu ul li {
  position: relative;
}
.mt-offcanvas-menu ul li > a {
  padding: 10px 0;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--mt-common-white);
}
.mt-offcanvas-menu ul li > a:hover {
  color: var(--mt-theme-2);
}
.mt-offcanvas-menu ul li:not(:last-child) > a {
  border-bottom: 1px solid var(--mt-border-1);
}
.mt-offcanvas-menu ul li.active > a {
  color: var(--mt-theme-2);
}
.mt-offcanvas-menu ul li.active > .mt-menu-close {
  border-color: var(--mt-theme-2);
  color: var(--mt-common-black);
  background-color: var(--mt-theme-2);
}
.mt-offcanvas-menu ul li.active > .mt-menu-close i {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mt-offcanvas-menu ul li .sub-menu {
  display: none;
  padding-left: 20px;
}

.mt-menu-close {
  position: absolute;
  right: 0;
  top: 6.5px;
  border: 1px solid var(--mt-border-1);
  height: 30px;
  width: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 29px;
}
.mt-menu-close:hover {
  background-color: var(--mt-theme-2);
  color: var(--mt-common-black);
  border-color: var(--mt-theme-2);
}
.mt-menu-close i {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/*----------------------------------------*/
/*  2.11 Breadcrumb
/*----------------------------------------*/
.mt-breadcrumb-space {
  padding-top: 230px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-breadcrumb-space {
    padding-top: 150px;
    padding-bottom: 80px;
  }
}
.mt-breadcrumb-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mt-breadcrumb-title {
  font-size: 76px;
  color: var(--mt-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-breadcrumb-title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .mt-breadcrumb-title {
    font-size: 50px;
  }
}
.mt-breadcrumb-list span {
  margin: 0 2px;
  display: inline-block;
  color: var(--mt-common-white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.mt-breadcrumb-list span.active a {
  color: var(--mt-theme-1);
}
.mt-breadcrumb-list span.dvir {
  margin: 0 2px;
}
.mt-breadcrumb-thumb {
  margin-right: -80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-breadcrumb-thumb {
    margin-right: 0;
  }
}

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.mt-accordion-header {
  margin: 0;
}
.mt-accordion-item {
  border-bottom: 1px solid var(--mt-border-1);
  padding-bottom: 12px;
}
.mt-accordion-button {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.mt-accordion-button::after {
  content: "\f00d";
  font-family: var(--mt-ff-fontawesome);
  font-size: 12px;
  color: var(--mt-text-p);
  border: 1px solid var(--mt-border-1);
  border-radius: 100%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
}
.mt-accordion-button.collapsed::after {
  content: "+";
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtfaq__area .mt-section-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.mtfaq__2 .mt-accordion-item {
  border-bottom: 1px solid var(--mt-border-3);
}
.mtfaq__2 .mt-accordion-button {
  color: var(--mt-common-white);
}
.mtfaq__2 .mt-accordion-button::after {
  color: var(--mt-common-white);
  border: 1px solid var(--mt-border-3);
}
.mtfaq__2 .mt-accordion-body p {
  color: rgba(255, 255, 255, 0.8);
}
.mtfaq__whtite .mtfaq .mt-accordion-item {
  border-bottom: 1px solid var(--mt-border-1);
}
.mtfaq__whtite .mtfaq .mt-accordion-button {
  color: #000;
}
.mtfaq__whtite .mtfaq .mt-accordion-button::after {
  color: #000;
  border: 1px solid var(--mt-border-1);
}
.mtfaq__whtite .mtfaq .mt-accordion-body p {
  color: rgba(0, 0, 0, 0.8);
}

.mt-faq-button {
  text-align: left;
  font-size: 24px;
  border-bottom: 1px solid transparent;
  margin-bottom: 0px;
  padding-top: 0px;
  display: block;
  width: 100%;
}
.mt-faq-button span {
  font-size: 20px;
  margin-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-fact-wrap p br {
    display: none;
  }
}

/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.mt-section-subtitle {
  display: inline-block;
  color: var(--mt-common-black-2);
  font-family: var(--mt-ff-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}
.mt-section-subtitle i {
  height: 1px;
  width: 33px;
  background: var(--mt-common-black);
  display: inline-block;
  margin-right: 10px;
}
.mt-section-subtitle cite {
  height: 1px;
  width: 33px;
  background: var(--mt-common-black);
  display: inline-block;
  margin-right: 10px;
}
.mt-section-subtitle i {
  height: 1px;
  width: 19px;
  background: var(--mt-common-black);
  position: absolute;
  left: 13px;
  top: 11px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-section-subtitle {
    font-size: 14px;
  }
}
.mt-section-subtitle span {
  height: 1px;
  width: 33px;
  background: var(--mt-common-white);
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
.mt-section-subtitle span.mtwhitebg {
  background: var(--mt-common-black);
}
.mt-section-subtitle.mtwhite {
  color: var(--mt-common-white);
}
.mt-section-title {
  color: #000;
  font-size: 72px;
  font-weight: 800;
}
.mt-section-title span {
  color: var(--mt-theme-1);
  font-family: "Lora", serif;
  font-size: 30px;
  font-weight: 700;
  margin-right: 4px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-section-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-section-title {
    font-size: 40px;
  }
  .mt-section-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-section-title {
    font-size: 38px;
  }
  .mt-section-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .mt-section-title {
    font-size: 28px;
  }
  .mt-section-title br {
    display: none;
  }
}
.mt-section-title.mtwhite {
  color: var(--mt-common-white);
}
@media (max-width: 767px) {
  .mt-section-content p br {
    display: none;
  }
}
.mt-section-content p.mtwhite {
  color: rgba(255, 255, 255, 0.8);
}

/*----------------------------------------*/
/*  2.5 Custom Animation
/*----------------------------------------*/
.mtFadeInUp {
  opacity: 0;
  /* Start invisible */
  animation: mtFadeInUp 2s ease-out forwards;
  /* 2 seconds duration, ease-out effect */
}

@keyframes mtFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
    /* Start slightly below */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* End at original position */
  }
}
@keyframes mtslideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.mtfadeInLeft {
  opacity: 0;
  /* Start invisible */
  animation: mtfadeInLeft 2s ease-out forwards;
  /* 2 seconds duration, ease-out effect */
}

@keyframes mtfadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
    /* Start slightly to the left */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    /* End at original position */
  }
}
.mtSkillInLeft {
  opacity: 0;
  /* Start invisible */
  animation: mtSkillInLeft 2s ease-out forwards;
  /* 2 seconds duration, ease-out effect */
}

@keyframes mtSkillInLeft {
  0% {
    opacity: 0;
    transform: translateX(-300px);
    /* Start slightly to the left */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    /* End at original position */
  }
}
.slideinup {
  -webkit-animation-name: slideinup;
  animation-name: slideinup;
}

@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideinleft {
  -webkit-animation-name: slideinleft;
  animation-name: slideinleft;
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
  0% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }
  75% {
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #fff;
    border-bottom-color: transparent;
  }
  100% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes mttranslateY2 {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes mttranslateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
  }
}
/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.mt-pagination ul {
  list-style: none;
}
.mt-pagination ul li {
  display: inline-block;
  margin-right: 7px;
}
.mt-pagination ul li a {
  border: 1px solid var(--mt-border-1);
  line-height: 60px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: var(--mt-common-black);
  background: var(--mt-border-1);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: inline-block;
  transition: 0.3s;
}
.mt-pagination ul li a.active {
  background-color: var(--mt-theme-1);
  border-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mt-pagination ul li a:hover {
  background-color: var(--mt-theme-1);
  border-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mt-pagination ul li a i {
  font-size: 26px;
  -moz-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

/*----------------------------------------*/
/*  2.16 Search css start
/*----------------------------------------*/
.mt-header-search-bar {
  height: 400px;
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  z-index: 99999999;
  background: var(--mt-common-black);
  transition: 0.4s;
}
.mt-header-search-bar.mt-search-open {
  top: 0;
}

.contact-search-form-box form {
  position: relative;
}
.contact-search-form-box form input {
  color: var(--mt-common-white);
}
.contact-search-form-box form input::-webkit-input-placeholder {
  color: #aaaaaa;
}
.contact-search-form-box form input:-moz-placeholder {
  color: #aaaaaa;
}
.contact-search-form-box form input::-moz-placeholder {
  color: #aaaaaa;
}
.contact-search-form-box form input:-ms-input-placeholder {
  color: #aaaaaa;
}
.contact-search-form-box form button {
  position: absolute;
  right: 0;
  top: 13px;
  font-size: 17px;
  color: #000;
}

.mt-search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--mt-common-white);
  font-weight: 300;
  width: 45px;
  height: 45px;
}
.mt-search-close:hover {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mt-search-bar-title {
  color: #fff;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  color: var(--mt-text-p);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mt-ff-heading);
  color: var(--mt-common-black);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.1;
  -webkit-transition: color;
  -moz-transition: color;
  -ms-transition: color;
  -o-transition: color;
  transition: color;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-family: var(--mt-ff-body);
  color: var(--mt-text-p);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

p,
a,
article,
aside,
span,
li,
a,
button,
input,
textarea {
  font-family: var(--mt-ff-body);
}

img {
  max-width: 100%;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: transparent;
  height: 52px;
  width: 100%;
  line-height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  border-bottom: 1px solid #57595C;
  position: relative;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #646373;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #646373;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #646373;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #646373;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--mt-theme-1);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  height: 164px;
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

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

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

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

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

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

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

.z-index-2 {
  position: relative;
  z-index: 2;
}

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

.z-index-4 {
  position: relative;
  z-index: 4;
}

.z-index-5 {
  position: relative;
  z-index: 5;
}

.z-index-6 {
  position: relative;
  z-index: 6;
}

.z-index-7 {
  position: relative;
  z-index: 7;
}

.z-index-8 {
  position: relative;
  z-index: 8;
}

.z-index-9 {
  position: relative;
  z-index: 9;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-25 {
  --bs-gutter-x: 25px;
}

.gx-30 {
  --bs-gutter-x: 30px;
}

.gx-35 {
  --bs-gutter-x: 35px;
}

.gx-40 {
  --bs-gutter-x: 40px;
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.mt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.mt-brand-slide-element {
  width: auto;
  display: inline-block;
}

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

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

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

.pt-255 {
  padding-top: 255px;
}
@media (max-width: 767px) {
  .pt-255 {
    padding-top: 170px;
  }
}

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

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

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

.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
.z-index-6 {
  z-index: 6;
}
.z-index-7 {
  z-index: 7;
}
.z-index-8 {
  z-index: 8;
}
.z-index-9 {
  z-index: 9;
}

.br-20 {
  border-radius: 20px;
}

.br-10 {
  border-radius: 10px;
}

.br-5 img {
  border-radius: 5px;
}
.br-8 img {
  border-radius: 8px;
}
.br-10 img {
  border-radius: 10px;
}
.br-12 img {
  border-radius: 12px;
}
.br-15 img {
  border-radius: 15px;
}
.br-20 img {
  border-radius: 20px;
}
.br-40 img {
  border-radius: 40px;
}

.mt-fs-12 {
  font-size: 12px;
}
.mt-fs-24 {
  font-size: 24px;
}
.mt-fs-28 {
  font-size: 28px;
}
.mt-fs-30 {
  font-size: 30px;
}
.mt-fs-32 {
  font-size: 32px;
}
.mt-fs-36 {
  font-size: 36px;
}
.mt-fs-40 {
  font-size: 40px;
}
.mt-fs-42 {
  font-size: 42px;
}
.mt-fs-48 {
  font-size: 48px;
}
.mt-fs-50 {
  font-size: 50px;
}

.mt-upper {
  text-transform: uppercase;
}

.mt-lower {
  text-transform: lowercase;
}

.mt-capit {
  text-transform: capitalize;
}

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

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--mt-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.body-overlay:hover {
  cursor: url("../img/icon/cross-out.png"), pointer;
}

.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

/* dropcap */
.mt-dropcap::first-letter {
  font-size: 90px;
  font-weight: 500;
  float: left;
  text-align: center;
  color: var(--mt-common-black);
  margin-right: 5px;
  line-height: inherit;
  text-transform: capitalize;
}

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

/* gutter for x axis */
.mt-gx-20 {
  --bs-gutter-x: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-gx-20 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-gx-20 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mt-gx-20 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 767px) {
  .mt-gx-20 {
    --bs-gutter-x: 10px;
  }
}
.mt-gx-20 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.mt-gx-30 {
  --bs-gutter-x: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-gx-30 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-gx-30 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mt-gx-30 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 767px) {
  .mt-gx-30 {
    --bs-gutter-x: 10px;
  }
}
.mt-gx-30 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.mt-gx-40 {
  --bs-gutter-x: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-gx-40 {
    --bs-gutter-x: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mt-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 767px) {
  .mt-gx-40 {
    --bs-gutter-x: 15px;
  }
}
.mt-gx-40 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 1400px) {
  .container-large {
    max-width: 1325px;
  }
}
.mt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.mt-brand-slide-element {
  width: auto;
  display: inline-block;
}

/*----------------------------------------*/
/*  1.3 Default Spacing
/*----------------------------------------*/
/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-1 {
  margin-top: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-137 {
  padding-top: 137px;
}

.pt-138 {
  padding-top: 138px;
}

.pt-139 {
  padding-top: 139px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-141 {
  padding-top: 141px;
}

.pt-142 {
  padding-top: 142px;
}

.pt-143 {
  padding-top: 143px;
}

.pt-144 {
  padding-top: 144px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-146 {
  padding-top: 146px;
}

.pt-147 {
  padding-top: 147px;
}

.pt-148 {
  padding-top: 148px;
}

.pt-149 {
  padding-top: 149px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-151 {
  padding-top: 151px;
}

.pt-152 {
  padding-top: 152px;
}

.pt-153 {
  padding-top: 153px;
}

.pt-154 {
  padding-top: 154px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-156 {
  padding-top: 156px;
}

.pt-157 {
  padding-top: 157px;
}

.pt-158 {
  padding-top: 158px;
}

.pt-159 {
  padding-top: 159px;
}

.pt-160 {
  padding-top: 160px;
}

/*-- Padding Bottom --*/
.pb-1 {
  padding-bottom: 1px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-3 {
  padding-bottom: 3px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-9 {
  padding-bottom: 9px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-11 {
  padding-bottom: 11px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-13 {
  padding-bottom: 13px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-17 {
  padding-bottom: 17px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-19 {
  padding-bottom: 19px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-21 {
  padding-bottom: 21px;
}

.pb-22 {
  padding-bottom: 22px;
}

.pb-23 {
  padding-bottom: 23px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-26 {
  padding-bottom: 26px;
}

.pb-27 {
  padding-bottom: 27px;
}

.pb-28 {
  padding-bottom: 28px;
}

.pb-29 {
  padding-bottom: 29px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-31 {
  padding-bottom: 31px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-33 {
  padding-bottom: 33px;
}

.pb-34 {
  padding-bottom: 34px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-36 {
  padding-bottom: 36px;
}

.pb-37 {
  padding-bottom: 37px;
}

.pb-38 {
  padding-bottom: 38px;
}

.pb-39 {
  padding-bottom: 39px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-41 {
  padding-bottom: 41px;
}

.pb-42 {
  padding-bottom: 42px;
}

.pb-43 {
  padding-bottom: 43px;
}

.pb-44 {
  padding-bottom: 44px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-46 {
  padding-bottom: 46px;
}

.pb-47 {
  padding-bottom: 47px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pb-49 {
  padding-bottom: 49px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-51 {
  padding-bottom: 51px;
}

.pb-52 {
  padding-bottom: 52px;
}

.pb-53 {
  padding-bottom: 53px;
}

.pb-54 {
  padding-bottom: 54px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-56 {
  padding-bottom: 56px;
}

.pb-57 {
  padding-bottom: 57px;
}

.pb-58 {
  padding-bottom: 58px;
}

.pb-59 {
  padding-bottom: 59px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-61 {
  padding-bottom: 61px;
}

.pb-62 {
  padding-bottom: 62px;
}

.pb-63 {
  padding-bottom: 63px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-66 {
  padding-bottom: 66px;
}

.pb-67 {
  padding-bottom: 67px;
}

.pb-68 {
  padding-bottom: 68px;
}

.pb-69 {
  padding-bottom: 69px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-71 {
  padding-bottom: 71px;
}

.pb-72 {
  padding-bottom: 72px;
}

.pb-73 {
  padding-bottom: 73px;
}

.pb-74 {
  padding-bottom: 74px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-76 {
  padding-bottom: 76px;
}

.pb-77 {
  padding-bottom: 77px;
}

.pb-78 {
  padding-bottom: 78px;
}

.pb-79 {
  padding-bottom: 79px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-81 {
  padding-bottom: 81px;
}

.pb-82 {
  padding-bottom: 82px;
}

.pb-83 {
  padding-bottom: 83px;
}

.pb-84 {
  padding-bottom: 84px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-86 {
  padding-bottom: 86px;
}

.pb-87 {
  padding-bottom: 87px;
}

.pb-88 {
  padding-bottom: 88px;
}

.pb-89 {
  padding-bottom: 89px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-91 {
  padding-bottom: 91px;
}

.pb-92 {
  padding-bottom: 92px;
}

.pb-93 {
  padding-bottom: 93px;
}

.pb-94 {
  padding-bottom: 94px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-96 {
  padding-bottom: 96px;
}

.pb-97 {
  padding-bottom: 97px;
}

.pb-98 {
  padding-bottom: 98px;
}

.pb-99 {
  padding-bottom: 99px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-101 {
  padding-bottom: 101px;
}

.pb-102 {
  padding-bottom: 102px;
}

.pb-103 {
  padding-bottom: 103px;
}

.pb-104 {
  padding-bottom: 104px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-106 {
  padding-bottom: 106px;
}

.pb-107 {
  padding-bottom: 107px;
}

.pb-108 {
  padding-bottom: 108px;
}

.pb-109 {
  padding-bottom: 109px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-111 {
  padding-bottom: 111px;
}

.pb-112 {
  padding-bottom: 112px;
}

.pb-113 {
  padding-bottom: 113px;
}

.pb-114 {
  padding-bottom: 114px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-116 {
  padding-bottom: 116px;
}

.pb-117 {
  padding-bottom: 117px;
}

.pb-118 {
  padding-bottom: 118px;
}

.pb-119 {
  padding-bottom: 119px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-121 {
  padding-bottom: 121px;
}

.pb-122 {
  padding-bottom: 122px;
}

.pb-123 {
  padding-bottom: 123px;
}

.pb-124 {
  padding-bottom: 124px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-126 {
  padding-bottom: 126px;
}

.pb-127 {
  padding-bottom: 127px;
}

.pb-128 {
  padding-bottom: 128px;
}

.pb-129 {
  padding-bottom: 129px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-131 {
  padding-bottom: 131px;
}

.pb-132 {
  padding-bottom: 132px;
}

.pb-133 {
  padding-bottom: 133px;
}

.pb-134 {
  padding-bottom: 134px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-136 {
  padding-bottom: 136px;
}

.pb-137 {
  padding-bottom: 137px;
}

.pb-138 {
  padding-bottom: 138px;
}

.pb-139 {
  padding-bottom: 139px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-141 {
  padding-bottom: 141px;
}

.pb-142 {
  padding-bottom: 142px;
}

.pb-143 {
  padding-bottom: 143px;
}

.pb-144 {
  padding-bottom: 144px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-146 {
  padding-bottom: 146px;
}

.pb-147 {
  padding-bottom: 147px;
}

.pb-148 {
  padding-bottom: 148px;
}

.pb-149 {
  padding-bottom: 149px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-151 {
  padding-bottom: 151px;
}

.pb-152 {
  padding-bottom: 152px;
}

.pb-153 {
  padding-bottom: 153px;
}

.pb-154 {
  padding-bottom: 154px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-156 {
  padding-bottom: 156px;
}

.pb-157 {
  padding-bottom: 157px;
}

.pb-158 {
  padding-bottom: 158px;
}

.pb-159 {
  padding-bottom: 159px;
}

.pb-160 {
  padding-bottom: 160px;
}

/*-- Padding Left --*/
.pl-1 {
  padding-left: 1px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-7 {
  padding-left: 7px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-9 {
  padding-left: 9px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-11 {
  padding-left: 11px;
}

.pl-12 {
  padding-left: 12px;
}

.pl-13 {
  padding-left: 13px;
}

.pl-14 {
  padding-left: 14px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-17 {
  padding-left: 17px;
}

.pl-18 {
  padding-left: 18px;
}

.pl-19 {
  padding-left: 19px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-21 {
  padding-left: 21px;
}

.pl-22 {
  padding-left: 22px;
}

.pl-23 {
  padding-left: 23px;
}

.pl-24 {
  padding-left: 24px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-26 {
  padding-left: 26px;
}

.pl-27 {
  padding-left: 27px;
}

.pl-28 {
  padding-left: 28px;
}

.pl-29 {
  padding-left: 29px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-31 {
  padding-left: 31px;
}

.pl-32 {
  padding-left: 32px;
}

.pl-33 {
  padding-left: 33px;
}

.pl-34 {
  padding-left: 34px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-36 {
  padding-left: 36px;
}

.pl-37 {
  padding-left: 37px;
}

.pl-38 {
  padding-left: 38px;
}

.pl-39 {
  padding-left: 39px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-41 {
  padding-left: 41px;
}

.pl-42 {
  padding-left: 42px;
}

.pl-43 {
  padding-left: 43px;
}

.pl-44 {
  padding-left: 44px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-46 {
  padding-left: 46px;
}

.pl-47 {
  padding-left: 47px;
}

.pl-48 {
  padding-left: 48px;
}

.pl-49 {
  padding-left: 49px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-51 {
  padding-left: 51px;
}

.pl-52 {
  padding-left: 52px;
}

.pl-53 {
  padding-left: 53px;
}

.pl-54 {
  padding-left: 54px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-56 {
  padding-left: 56px;
}

.pl-57 {
  padding-left: 57px;
}

.pl-58 {
  padding-left: 58px;
}

.pl-59 {
  padding-left: 59px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-61 {
  padding-left: 61px;
}

.pl-62 {
  padding-left: 62px;
}

.pl-63 {
  padding-left: 63px;
}

.pl-64 {
  padding-left: 64px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-66 {
  padding-left: 66px;
}

.pl-67 {
  padding-left: 67px;
}

.pl-68 {
  padding-left: 68px;
}

.pl-69 {
  padding-left: 69px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-71 {
  padding-left: 71px;
}

.pl-72 {
  padding-left: 72px;
}

.pl-73 {
  padding-left: 73px;
}

.pl-74 {
  padding-left: 74px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-76 {
  padding-left: 76px;
}

.pl-77 {
  padding-left: 77px;
}

.pl-78 {
  padding-left: 78px;
}

.pl-79 {
  padding-left: 79px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-81 {
  padding-left: 81px;
}

.pl-82 {
  padding-left: 82px;
}

.pl-83 {
  padding-left: 83px;
}

.pl-84 {
  padding-left: 84px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-86 {
  padding-left: 86px;
}

.pl-87 {
  padding-left: 87px;
}

.pl-88 {
  padding-left: 88px;
}

.pl-89 {
  padding-left: 89px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-91 {
  padding-left: 91px;
}

.pl-92 {
  padding-left: 92px;
}

.pl-93 {
  padding-left: 93px;
}

.pl-94 {
  padding-left: 94px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-96 {
  padding-left: 96px;
}

.pl-97 {
  padding-left: 97px;
}

.pl-98 {
  padding-left: 98px;
}

.pl-99 {
  padding-left: 99px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-101 {
  padding-left: 101px;
}

.pl-102 {
  padding-left: 102px;
}

.pl-103 {
  padding-left: 103px;
}

.pl-104 {
  padding-left: 104px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-106 {
  padding-left: 106px;
}

.pl-107 {
  padding-left: 107px;
}

.pl-108 {
  padding-left: 108px;
}

.pl-109 {
  padding-left: 109px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-111 {
  padding-left: 111px;
}

.pl-112 {
  padding-left: 112px;
}

.pl-113 {
  padding-left: 113px;
}

.pl-114 {
  padding-left: 114px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-116 {
  padding-left: 116px;
}

.pl-117 {
  padding-left: 117px;
}

.pl-118 {
  padding-left: 118px;
}

.pl-119 {
  padding-left: 119px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-121 {
  padding-left: 121px;
}

.pl-122 {
  padding-left: 122px;
}

.pl-123 {
  padding-left: 123px;
}

.pl-124 {
  padding-left: 124px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-126 {
  padding-left: 126px;
}

.pl-127 {
  padding-left: 127px;
}

.pl-128 {
  padding-left: 128px;
}

.pl-129 {
  padding-left: 129px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-131 {
  padding-left: 131px;
}

.pl-132 {
  padding-left: 132px;
}

.pl-133 {
  padding-left: 133px;
}

.pl-134 {
  padding-left: 134px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-136 {
  padding-left: 136px;
}

.pl-137 {
  padding-left: 137px;
}

.pl-138 {
  padding-left: 138px;
}

.pl-139 {
  padding-left: 139px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-141 {
  padding-left: 141px;
}

.pl-142 {
  padding-left: 142px;
}

.pl-143 {
  padding-left: 143px;
}

.pl-144 {
  padding-left: 144px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-146 {
  padding-left: 146px;
}

.pl-147 {
  padding-left: 147px;
}

.pl-148 {
  padding-left: 148px;
}

.pl-149 {
  padding-left: 149px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-151 {
  padding-left: 151px;
}

.pl-152 {
  padding-left: 152px;
}

.pl-153 {
  padding-left: 153px;
}

.pl-154 {
  padding-left: 154px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-156 {
  padding-left: 156px;
}

.pl-157 {
  padding-left: 157px;
}

.pl-158 {
  padding-left: 158px;
}

.pl-159 {
  padding-left: 159px;
}

.pl-160 {
  padding-left: 160px;
}

/*-- Padding Right --*/
.pr-1 {
  padding-right: 1px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-11 {
  padding-right: 11px;
}

.pr-12 {
  padding-right: 12px;
}

.pr-13 {
  padding-right: 13px;
}

.pr-14 {
  padding-right: 14px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-17 {
  padding-right: 17px;
}

.pr-18 {
  padding-right: 18px;
}

.pr-19 {
  padding-right: 19px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-21 {
  padding-right: 21px;
}

.pr-22 {
  padding-right: 22px;
}

.pr-23 {
  padding-right: 23px;
}

.pr-24 {
  padding-right: 24px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-26 {
  padding-right: 26px;
}

.pr-27 {
  padding-right: 27px;
}

.pr-28 {
  padding-right: 28px;
}

.pr-29 {
  padding-right: 29px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-31 {
  padding-right: 31px;
}

.pr-32 {
  padding-right: 32px;
}

.pr-33 {
  padding-right: 33px;
}

.pr-34 {
  padding-right: 34px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-36 {
  padding-right: 36px;
}

.pr-37 {
  padding-right: 37px;
}

.pr-38 {
  padding-right: 38px;
}

.pr-39 {
  padding-right: 39px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-41 {
  padding-right: 41px;
}

.pr-42 {
  padding-right: 42px;
}

.pr-43 {
  padding-right: 43px;
}

.pr-44 {
  padding-right: 44px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-46 {
  padding-right: 46px;
}

.pr-47 {
  padding-right: 47px;
}

.pr-48 {
  padding-right: 48px;
}

.pr-49 {
  padding-right: 49px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-51 {
  padding-right: 51px;
}

.pr-52 {
  padding-right: 52px;
}

.pr-53 {
  padding-right: 53px;
}

.pr-54 {
  padding-right: 54px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-56 {
  padding-right: 56px;
}

.pr-57 {
  padding-right: 57px;
}

.pr-58 {
  padding-right: 58px;
}

.pr-59 {
  padding-right: 59px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-61 {
  padding-right: 61px;
}

.pr-62 {
  padding-right: 62px;
}

.pr-63 {
  padding-right: 63px;
}

.pr-64 {
  padding-right: 64px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-66 {
  padding-right: 66px;
}

.pr-67 {
  padding-right: 67px;
}

.pr-68 {
  padding-right: 68px;
}

.pr-69 {
  padding-right: 69px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-71 {
  padding-right: 71px;
}

.pr-72 {
  padding-right: 72px;
}

.pr-73 {
  padding-right: 73px;
}

.pr-74 {
  padding-right: 74px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-76 {
  padding-right: 76px;
}

.pr-77 {
  padding-right: 77px;
}

.pr-78 {
  padding-right: 78px;
}

.pr-79 {
  padding-right: 79px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-81 {
  padding-right: 81px;
}

.pr-82 {
  padding-right: 82px;
}

.pr-83 {
  padding-right: 83px;
}

.pr-84 {
  padding-right: 84px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-86 {
  padding-right: 86px;
}

.pr-87 {
  padding-right: 87px;
}

.pr-88 {
  padding-right: 88px;
}

.pr-89 {
  padding-right: 89px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-91 {
  padding-right: 91px;
}

.pr-92 {
  padding-right: 92px;
}

.pr-93 {
  padding-right: 93px;
}

.pr-94 {
  padding-right: 94px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-96 {
  padding-right: 96px;
}

.pr-97 {
  padding-right: 97px;
}

.pr-98 {
  padding-right: 98px;
}

.pr-99 {
  padding-right: 99px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-101 {
  padding-right: 101px;
}

.pr-102 {
  padding-right: 102px;
}

.pr-103 {
  padding-right: 103px;
}

.pr-104 {
  padding-right: 104px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-106 {
  padding-right: 106px;
}

.pr-107 {
  padding-right: 107px;
}

.pr-108 {
  padding-right: 108px;
}

.pr-109 {
  padding-right: 109px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-111 {
  padding-right: 111px;
}

.pr-112 {
  padding-right: 112px;
}

.pr-113 {
  padding-right: 113px;
}

.pr-114 {
  padding-right: 114px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-116 {
  padding-right: 116px;
}

.pr-117 {
  padding-right: 117px;
}

.pr-118 {
  padding-right: 118px;
}

.pr-119 {
  padding-right: 119px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-121 {
  padding-right: 121px;
}

.pr-122 {
  padding-right: 122px;
}

.pr-123 {
  padding-right: 123px;
}

.pr-124 {
  padding-right: 124px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-126 {
  padding-right: 126px;
}

.pr-127 {
  padding-right: 127px;
}

.pr-128 {
  padding-right: 128px;
}

.pr-129 {
  padding-right: 129px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-131 {
  padding-right: 131px;
}

.pr-132 {
  padding-right: 132px;
}

.pr-133 {
  padding-right: 133px;
}

.pr-134 {
  padding-right: 134px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-136 {
  padding-right: 136px;
}

.pr-137 {
  padding-right: 137px;
}

.pr-138 {
  padding-right: 138px;
}

.pr-139 {
  padding-right: 139px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-141 {
  padding-right: 141px;
}

.pr-142 {
  padding-right: 142px;
}

.pr-143 {
  padding-right: 143px;
}

.pr-144 {
  padding-right: 144px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-146 {
  padding-right: 146px;
}

.pr-147 {
  padding-right: 147px;
}

.pr-148 {
  padding-right: 148px;
}

.pr-149 {
  padding-right: 149px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-151 {
  padding-right: 151px;
}

.pr-152 {
  padding-right: 152px;
}

.pr-153 {
  padding-right: 153px;
}

.pr-154 {
  padding-right: 154px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-156 {
  padding-right: 156px;
}

.pr-157 {
  padding-right: 157px;
}

.pr-158 {
  padding-right: 158px;
}

.pr-159 {
  padding-right: 159px;
}

.pr-160 {
  padding-right: 160px;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--mt-common-black);
  -webkit-animation: 0.7s ease-in-out 0s normal none 1 running mtfadeInDown;
  animation: 0.7s ease-in-out 0s normal none 1 running mtfadeInDown;
  box-shadow: 0px 20px 30px rgba(167, 167, 167, 0.1);
  z-index: 888;
}
.header-sticky.mt-sticky-theme {
  background-color: var(--mt-theme-1);
}
.header-sticky.mt-sticky-theme-2 {
  background-color: #fff;
}

.mtheader__border {
  border: 1px solid var(--mt-border-1);
}
.mtheader__border-bottom {
  border-bottom: 1px dashed var(--mt-grey-1);
}
.mtheader__border-top {
  border-top: 1px dashed var(--mt-grey-1);
}

.mtheader__top-border-bottom {
  border-bottom: 1px solid var(--mt-border-4);
  padding: 11px 0;
}
.mtheader__top-border-bottom-2 {
  border-bottom: 1px solid var(--mt-border-3);
  padding: 11px 0;
}

.mt-transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.mtheader__top-wrapper {
  padding-left: 213px;
}
.mtheader__top-left a {
  color: #595a61;
  font-size: 16px;
  font-weight: 500;
  margin: 0 8px;
}
.mtheader__top-left a span {
  margin-left: 7px;
}
.mtheader__top-left a:hover {
  color: var(--mt-common-black);
}
.mtheader__top-social a {
  color: var(--mt-common-black);
  border: 1px solid var(--mt-border-4);
  border-radius: 100%;
  display: inline-block;
  font-size: 15px;
  margin: 0 2px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mtheader__top-social a:hover {
  color: var(--mt-common-black);
  background-color: var(--mt-theme-1);
}
.mtheader__top-2 .mtheader__top-left a {
  color: rgba(255, 255, 255, 0.6);
}
.mtheader__top-2 .mtheader__top-left a:hover {
  color: var(--mt-common-white);
}
.mtheader__top-2 .mtheader__top-social a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
.mtheader__top-2 .mtheader__top-social a:hover {
  color: var(--mt-common-black);
}
.mtheader__top-5 .mtheader__top-left a {
  color: var(--mt-common-black);
}
.mtheader__top-5 .mtheader__top-social a {
  transition: 0.3s;
}
.mtheader__top-5 .mtheader__top-social a:hover {
  background-color: var(--mt-common-white);
}

.mtheader__logo {
  position: relative;
}
.mtheader__logo-2 {
  margin-top: -60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtheader__logo-2 {
    margin-top: 0px;
  }
}
.mtheader__menu ul li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
}
.mtheader__menu ul li.dropdown::after {
  content: "\f0dd";
  font-family: var(--mt-ff-fontawesome);
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: -18px;
  -moz-transform: translateY(-65%);
  -o-transform: translateY(-65%);
  -ms-transform: translateY(-65%);
  -webkit-transform: translateY(-65%);
  transform: translateY(-65%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mtheader__menu ul li > a {
  color: var(--mt-common-white);
  font-family: var(--mt-ff-body);
  font-size: 16px;
  padding: 36px 0;
  display: block;
  font-weight: 700;
}
.mtheader__menu ul li .sub-menu {
  position: absolute;
  top: 100%;
  width: 230px;
  left: 0;
  background: #fff;
  transform-origin: top center;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -moz-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  text-align: start;
  z-index: 6;
}
.mtheader__menu ul li .sub-menu li {
  margin-right: 0;
  display: block;
}
.mtheader__menu ul li .sub-menu li a {
  color: #000;
  display: block;
  padding: 8px 25px;
  font-size: 17px;
}
.mtheader__menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 105%;
  opacity: 0;
  visibility: hidden;
}
.mtheader__menu ul li .sub-menu li:hover > a {
  color: var(--mt-theme-1);
}
.mtheader__menu ul li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.mtheader__menu ul li:hover.dropdown::after {
  -moz-transform: translateY(-36%) rotate(180deg);
  -o-transform: translateY(-36%) rotate(180deg);
  -ms-transform: translateY(-36%) rotate(180deg);
  -webkit-transform: translateY(-36%) rotate(180deg);
  transform: translateY(-36%) rotate(180deg);
  color: var(--mt-theme-1);
}
.mtheader__menu ul li:hover > a {
  color: var(--mt-theme-1);
}
.mtheader__menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.mtheader__menu ul li:last-child {
  margin-right: 0;
}
.mtheader__menu-2 ul li > a {
  color: #030303;
  padding: 28px 0;
}
.mtheader__menu-3 ul li > a {
  color: #fff;
  padding: 28px 0;
}
.mtheader__search .mtsearch {
  border: 2px solid var(--mt-border-2);
  border-radius: 50px;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.mtheader__search .mtsearch i {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.mtheader__right-bar {
  border: 1px solid var(--mt-border-3);
  border-radius: 30px;
  padding: 10px 25px;
  display: inline-block;
  color: #fff;
  font-size: 25px;
}
.mtheader__right-2 .mtheader__btn-wrap .mt-btn-border {
  border: 1px solid var(--mt-border-1);
  color: var(--mt-common-white);
}
.mtheader__right-2 .mtheader__btn-wrap .mt-btn-border:hover {
  color: var(--mt-common-black);
}
.mtheader__3 .mtheader__right-bar {
  color: black;
}
.mtheader__3 .header-sticky {
  background-color: #fff;
}
.mtheader__3 .header-sticky .mtheader__logo-2 {
  margin-top: 0px;
}
.mtheader__4 .header-sticky .mtheader__logo-2 {
  margin-top: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtheader__4 .header-sticky .mtheader__logo-2 img {
    width: 100px;
    object-fit: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtheader__4 .mtheader__logo-2 img {
    width: 100px;
    object-fit: cover;
  }
}

/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.mtheader__menu nav ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  visibility: hidden;
  left: 0;
  background-color: var(--mt-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.mtheader__menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mtheader__menu nav ul li .has-homemenu {
    left: -50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtheader__menu nav ul li .has-homemenu {
    left: -200px;
  }
}

.homemenu-btn {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.homemenu-title {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--mt-common-black);
  display: inline-block;
  font-weight: 700;
}
.homemenu-title:hover {
  color: var(--mt-common-black);
}

.homemenu-thumb {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-sticky .mtheader__menu-2 ul li .sub-menu, .header-sticky .mtheader__menu-3 ul li .sub-menu {
  top: 132%;
}

/*----------------------------------------*/
/*  5.1 blog css start
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtblog__section {
    margin-bottom: 120px;
    margin-right: 0;
  }
}
.mtblog__item:hover .mtblog__thumb img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.mtblog__category {
  position: absolute;
  top: 30px;
  left: 24px;
}
.mtblog__category span {
  font-weight: 500;
  background: #111;
  color: #fff;
  padding: 15px 25px;
  border-radius: 30px;
}
.mtblog__meta span {
  margin-right: 0px;
}
.mtblog__meta cite {
  width: 1px;
  height: 12px;
  background: #57595c;
  display: inline-block;
  margin: 0 10px;
}
.mtblog__meta-date {
  background: var(--mt-common-black-2);
  padding: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtblog__meta-date {
    margin-right: 20px;
  }
}
.mtblog__meta-date::after {
  content: "";
  position: absolute;
  width: 91px;
  height: 100%;
  background: var(--mt-common-black);
  top: -14px;
  right: -10px;
  -moz-transform: rotate(16deg);
  -o-transform: rotate(16deg);
  -ms-transform: rotate(16deg);
  -webkit-transform: rotate(16deg);
  transform: rotate(16deg);
  z-index: -1;
}
.mtblog__meta-date span {
  text-transform: uppercase;
  color: var(--mt-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtblog__meta-date span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtblog__meta-date span {
    font-size: 14px;
  }
}
.mtblog__meta-date span strong {
  font-size: 31px;
  color: var(--mt-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtblog__meta-date span strong {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__meta-date span strong {
    font-size: 20px;
  }
}
.mtblog__title {
  font-size: 24px;
  line-height: 34px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__title br {
    display: none;
  }
}
.mtblog__title a {
  background-repeat: no-repeat;
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.4s linear;
  background-image: linear-gradient(#0e3631, #0e3631), linear-gradient(#0e3631, #0e3631);
}
.mtblog__title:hover a {
  background-size: 0% 2px, 100% 2px;
}
.mtblog__thumb {
  overflow: hidden;
}
.mtblog__thumb img {
  transition: 0.7s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.mtblog__btn a {
  font-weight: 700;
  color: var(--mt-common-black);
}
@media (max-width: 767px) {
  .mtblog__arrow {
    margin-bottom: 90px;
  }
}
.mtblog__button {
  position: absolute;
  left: 0;
  right: auto;
  top: 50%;
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.mtblog__button-prev {
  left: 70px;
}
.mtblog__button-prev span {
  background-color: var(--mt-common-black-2);
}
.mtblog__button-prev span svg,
.mtblog__button-prev span path {
  color: var(--mt-common-white);
}
.mtblog__button span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--mt-text-body);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
}
.mtblog__2 .mtblog__meta span img {
  border-radius: 50px;
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.mtblog__2 .mtblog__title {
  font-size: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__3 .mt-section-content {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.mtblog__3 .mtblog__item {
  border-top: 1px solid var(--mt-border-3);
  border-bottom: 1px solid var(--mt-border-3);
  padding: 32px 0;
  margin-bottom: -1px;
  transition: 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__3 .mtblog__item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.mtblog__3 .mtblog__item:hover .mtblog__date {
  background: var(--mt-theme-1);
}
.mtblog__3 .mtblog__item:hover .mtblog__title {
  color: var(--mt-theme-1);
}
.mtblog__3 .mtblog__date {
  background: var(--mt-common-white);
  padding: 24px 16px;
  position: absolute;
  border-radius: 5px;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.4s;
}
.mtblog__3 .mtblog__date span {
  font-size: 16px;
  color: var(--mt-common-black);
}
.mtblog__3 .mtblog__date strong {
  color: var(--mt-common-black);
  font-size: 44px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  line-height: 42px;
}
.mtblog__3 .mtblog__title {
  font-size: 24px;
  color: var(--mt-common-white);
}
.mtblog__3 .mtblog__btn-wrap {
  flex: 0 0 auto;
}
.mtblog__3 .mt-btn-wrap .mt-btn-border {
  border-color: var(--mt-border-3);
  color: var(--mt-common-white);
}
.mtblog__3 .mt-btn-wrap .mt-btn-border:hover {
  color: var(--mt-common-black);
}
.mtblog__3 .mt-btn-wrap .mt-btn-border-icon:hover {
  color: var(--mt-common-black);
}
.mtblog__4 {
  border: 1px solid var(--mt-border-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__5 .mt-section-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__5 .mtblog__item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.mtblog__5 .mtblog__thumb {
  flex: 0 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__5 .mtblog__thumb {
    width: 100%;
  }
}
.mtblog__5 .mtblog__thumb img {
  border-radius: 10px 0px 0px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtblog__5 .mtblog__thumb img {
    width: 100%;
  }
}
.mtblog__5 .mtblog__date {
  background: var(--mt-common-white);
  padding: 10px 14px;
  position: absolute;
  border-radius: 5px;
  bottom: 0%;
  left: 0;
  transition: 0.4s;
}
.mtblog__5 .mtblog__date strong {
  color: var(--mt-common-black);
  font-size: 34px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  line-height: 42px;
}
.mtblog__5 .mtblog__date span {
  font-size: 16px;
  color: var(--mt-common-black);
}
.mtblog__5 .mtblog__meta span {
  color: rgba(255, 255, 255, 0.8);
}
.mtblog__5 .mtblog__title {
  font-size: 28px;
  color: var(--mt-common-white);
}
.mtblog__5 .mtblog__btn a {
  color: var(--mt-common-white);
}
.mtblog__5 .mtblog__btn a i {
  margin-left: 7px;
  -moz-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  color: var(--mt-common-white);
}

/*----------------------------------------*/
/*  5.2 Postbox css
/*----------------------------------------*/
.mt-postbox-content {
  padding: 25px 35px 35px 35px;
  border: 1px solid #fff;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-postbox-content {
    padding: 25px 20px 35px 20px;
  }
}
@media (max-width: 767px) {
  .mt-postbox-content {
    padding: 25px 15px 35px 15px;
  }
}
.mt-postbox-meta span {
  height: 40px;
  line-height: 40px;
  color: var(--mt-common-black);
  display: inline-block;
  border: 1px solid var(--mt-border-1);
  border-radius: 50px;
  text-align: center;
  padding: 0px 20px;
  margin: 4px 1px;
  transition: 0.3s;
}
.mt-postbox-meta span:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mt-postbox-meta span:after {
  position: absolute;
  content: "";
  background: #57595C;
  height: 16px;
  width: 2px;
  right: 0;
  top: 2px;
}
.mt-postbox-meta span i {
  margin-right: 2px;
  font-size: 15px;
}
.mt-postbox-meta span:last-child:after {
  display: none;
}
@media (max-width: 767px) {
  .mt-postbox-title {
    font-size: 30px;
  }
}
.mt-postbox-details blockquote {
  border: 1px solid #57595C;
  text-align: center;
  border-radius: 20px;
  padding: 60px;
}
@media (max-width: 767px) {
  .mt-postbox-details blockquote {
    padding: 30px;
  }
}
.mt-postbox-details blockquote i {
  font-size: 50px;
  margin-bottom: 25px;
}
.mt-postbox-details blockquote p {
  font-size: 30px;
  font-family: var(--mt-ff-heading);
  color: #000;
  line-height: 1.2;
  margin-bottom: 30px;
}
.mt-postbox-details blockquote cite {
  color: #0A0E1A;
  font-size: 20px;
  font-style: normal;
}
@media (max-width: 767px) {
  .mt-postbox-tag {
    margin-bottom: 20px;
  }
}
.mt-postbox-tag span {
  color: var(--mt-common-black);
  font-weight: 900;
  margin-right: 5px;
}
.mt-postbox-tag a {
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--mt-border-1);
  color: var(--mt-common-black);
  padding: 0px 15px;
  height: 40px;
  text-align: center;
  display: inline-block;
  line-height: 40px;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.mt-postbox-tag a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mt-postbox-social a {
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: var(--mt-common-black);
  border: 1px solid var(--mt-border-1);
  border-radius: 50%;
  transition: 0.3s;
  margin-right: 5px;
}
.mt-postbox-social a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
  border: 1px solid var(--mt-theme-1);
}
.mt-postbox-comments ul {
  list-style: none;
}
.mt-postbox-comments ul li {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--mt-border-1);
}
.mt-postbox-comments ul li:last-child {
  border-bottom: none;
}
.mt-postbox-comments ul li.children {
  padding-left: 60px;
}
@media (max-width: 767px) {
  .mt-postbox-comments ul li.children {
    padding-left: 20px;
  }
}
.mt-postbox-comments-thumb {
  float: left;
}
.mt-postbox-comments-thumb img {
  width: 86px;
  height: 86px;
  margin-right: 20px;
  object-fit: cover;
  border-radius: 50px;
}
.mt-postbox-comments-text {
  overflow: hidden;
  position: relative;
}
.mt-postbox-comments-text span {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 8px;
}
.mt-postbox-comments-text span cite {
  width: 30px;
  height: 1px;
  background: var(--mt-border-3);
  display: inline-block;
  margin: 0 5px;
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.mt-postbox-comments-text span i {
  width: 7px;
  height: 7px;
  background: var(--mt-border-3);
  border-radius: 50px;
  display: inline-block;
  margin: 0 5px;
  -moz-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.mt-postbox-comments-author {
  font-size: 24px;
}
@media (max-width: 767px) {
  .mt-postbox-comments-author {
    font-size: 20px;
  }
}

.mt-blog-video {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mt-blog-video a {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  color: var(--mt-common-black);
  line-height: 100px;
  font-size: 21px;
  background-color: var(--mt-theme-1);
  display: inline-block;
}

.reply {
  position: absolute;
  left: 25%;
  top: 0px;
  font-size: 15px;
  border: 1px solid var(--mt-border-1);
  padding: 3px 15px;
  color: var(--mt-common-black);
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .reply {
    left: 30%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .reply {
    left: 35%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .reply {
    left: 35%;
  }
}
@media (max-width: 767px) {
  .reply {
    left: inherit;
    right: 0;
  }
}
.reply:hover {
  color: var(--mt-common-white);
  background-color: var(--mt-common-black);
}

.mt-swiper-blog-button {
  height: 70px;
  width: 70px;
  background: var(--mt-theme-1);
  display: inline-block;
  border-radius: 100%;
  line-height: 70px;
  font-size: 25px;
  text-align: center;
  position: absolute;
  top: 50%;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  color: var(--mt-common-black);
}
.mt-swiper-blog-button-prev {
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mt-swiper-blog-button-next {
  left: auto;
  right: 30px;
}

.postbox__author {
  padding: 35px 30px;
  border: 1px solid var(--mt-border-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__author {
    padding: 45px 40px;
  }
}
@media (max-width: 767px) {
  .postbox__author {
    padding: 35px 20px;
    flex-wrap: wrap;
  }
}
.postbox__author-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--mt-common-black);
}
.postbox__author-thumb {
  flex: 0 0 auto;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .postbox__author-thumb {
    margin-bottom: 30px;
  }
}
.postbox__author-content {
  margin-right: 30px;
}
.postbox__author-content p {
  color: #464946;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__author-content p {
    font-size: 14px;
  }
  .postbox__author-content p br {
    display: none;
  }
}
.postbox__author-social {
  position: absolute;
  right: 10px;
  top: 20px;
}
.postbox__author-social a {
  font-size: 15px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  color: var(--mt-common-white);
  background-color: var(--mt-common-black);
  border-radius: 50%;
  transition: 0.3s;
  margin-bottom: 5px;
}
.postbox__author-social a:hover {
  color: var(--mt-common-black);
  background-color: var(--mt-theme-1);
}
.postbox__pagination {
  gap: 90px;
}
.postbox__pagination button {
  font-size: 24px;
  color: var(--mt-common-black);
  font-weight: 700;
}
.postbox__pagination button span {
  font-size: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: var(--mt-common-black);
  border: 1px solid var(--mt-border-1);
  border-radius: 50%;
  transition: 0.3s;
  margin-right: 5px;
  margin-left: 5px;
}
.postbox__pagination button.active span {
  background-color: var(--mt-theme-1);
  border: 1px solid var(--mt-theme-1);
  color: var(--mt-common-black);
}
.postbox__pagination button:hover {
  color: var(--mt-common-black);
}
.postbox__pagination button:hover span {
  background-color: var(--mt-theme-1);
  border: 1px solid var(--mt-theme-1);
  color: var(--mt-common-black);
}

/*----------------------------------------*/
/*  5.4 Sidebar css
/*----------------------------------------*/
.mt-blog-sidebar-widget {
  padding: 32px;
  border: 1px solid white;
  background: #fff;
}
.mt-blog-sidebar-title {
  color: var(--mt-common-black);
}
.mt-blog-sidebar-title span {
  height: 10px;
  width: 10px;
  border-radius: 30px;
  background: var(--mt-theme-1);
  display: inline-block;
  margin-right: 5px;
  -moz-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.mt-blog-sidebar-post-thumb {
  flex: 0 0 auto;
}
.mt-blog-sidebar-post-thumb img {
  width: 100%;
}
.mt-blog-sidebar-post-title {
  color: var(--mt-common-black);
}
.mt-blog-sidebar-cat ul li {
  margin-bottom: 15px;
  list-style: none;
}
.mt-blog-sidebar-cat ul li a {
  color: #000;
  display: block;
  padding: 20px 25px;
  line-height: 1;
  position: relative;
  border: 1px solid var(--mt-border-1);
  border-radius: 5px;
}
.mt-blog-sidebar-cat ul li a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
  border-color: var(--mt-theme-1);
}
.mt-blog-sidebar-cat ul li a:after {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 25px;
  top: 50%;
  -moz-transform: translateY(-50%) rotate(-40deg);
  -o-transform: translateY(-50%) rotate(-40deg);
  -ms-transform: translateY(-50%) rotate(-40deg);
  -webkit-transform: translateY(-50%) rotate(-40deg);
  transform: translateY(-50%) rotate(-40deg);
}
.mt-blog-sidebar-cat ul li:last-child {
  margin-bottom: 0;
}
.mt-blog-sidebar-social a {
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: var(--mt-common-black);
  border: 1px solid var(--mt-border-1);
  border-radius: 50%;
  transition: 0.3s;
  margin-right: 5px;
}
.mt-blog-sidebar-social a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mt-blog-sidebar-gallery a {
  display: inline-block;
  height: 110px;
  width: 106px;
  object-fit: cover;
  margin-bottom: 7px;
  margin-right: 7px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-blog-sidebar-gallery a {
    height: 100px;
    width: 98px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-blog-sidebar-gallery a {
    height: 100px;
    width: 98px;
  }
}
.mt-blog-sidebar-gallery-btn a {
  background-color: var(--mt-common-black);
  color: var(--mt-common-white);
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}
.mt-blog-sidebar-gallery-btn a span {
  margin-right: 9px;
}
.mt-blog-sidebar-gallery-btn a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}

.mt-blog-form input {
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid var(--mt-border-1);
}
.mt-blog-form button {
  position: absolute;
  font-size: 20px;
  right: 20px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tagcloud a {
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--mt-border-1);
  color: var(--mt-common-black);
  padding: 0px 15px;
  height: 40px;
  text-align: center;
  display: inline-block;
  line-height: 40px;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}
.tagcloud a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
  border-color: var(--mt-theme-1);
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.mt-footer-bg {
  background-repeat: no-repeat;
}
.mt-footer-wrapper {
  position: relative;
}
.mt-footer-wrapper.mtborder::after {
  content: "";
  position: absolute;
  left: 26%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--mt-border-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-footer-wrapper.mtborder::after {
    left: 22%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-footer-wrapper.mtborder::after {
    left: 46%;
  }
}
@media (max-width: 767px) {
  .mt-footer-wrapper.mtborder::after {
    display: none;
  }
}
.mt-footer-title {
  color: var(--mt-common-white);
  font-size: 24px;
  font-weight: 700;
}
.mt-footer-content {
  overflow: hidden;
}
.mt-footer-content ul li {
  margin-bottom: 16px;
  list-style: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-footer-content ul li:last-child {
  margin-bottom: 0;
}
.mt-footer-content ul li a {
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-footer-content ul li:hover a {
  color: var(--mt-theme-1);
}
.mt-footer-content p {
  color: #d6d6d6;
  font-weight: 500;
}
.mt-footer-content > span {
  color: #d6d6d6;
  font-weight: 500;
  padding: 0 5px;
}
.mt-footer-content > h4 {
  color: var(--mt-common-white);
  font-size: 40px;
}
.mt-footer-social a span {
  color: var(--mt-common-white);
  font-weight: 700;
}
.mt-footer-newsletter input {
  border: 1px solid var(--mt-border-2);
  color: var(--mt-text-body);
  padding: 0 10px;
}
.mt-footer-newsletter input::placeholder {
  font-size: 12px;
  font-weight: 500;
  color: var(--mt-text-body);
}
.mt-footer-newsletter input:focus {
  border-color: #292929;
}
.mt-footer-newsletter input:focus::placeholder {
  opacity: 0;
}
.mt-footer-newsletter button {
  position: absolute;
  right: 15px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mt-footer-5 .mt-footer-social a {
  height: 40px;
  width: 40px;
  color: #fff;
  border: 1px solid var(--mt-border-2);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  line-height: 40px;
  margin: 5px 0;
  transition: 0.3s;
}
.mt-footer-5 .mt-footer-social a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}

.newsletter-2 input {
  border: 0;
  background: var(--mt-theme-1);
  color: #000;
  border-radius: 10px 30px 30px 10px;
}
.newsletter-2 input::placeholder {
  color: var(--mt-common-black);
}
.newsletter-2 button {
  right: 10px;
  background: var(--mt-common-black);
  padding: 4px 9px;
  border-radius: 100%;
}
.newsletter-3 button {
  color: var(--mt-common-white);
}

.mt-footer-copyright-bg {
  background: rgba(12, 12, 12, 0.9);
}
.mt-footer-copyright-space {
  padding-top: 70px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-footer-copyright-space {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .mt-footer-copyright-space {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.mt-footer-copyright-title {
  font-size: 28px;
  font-weight: 600;
  color: #111;
}
.mt-footer-copyright span {
  font-size: 16px;
  font-weight: 500;
  color: #111;
}
.mt-footer-copyright-menu ul li {
  list-style: none;
  display: inline-block;
}
.mt-footer-copyright-menu ul li i {
  width: 8px;
  height: 1px;
  background-color: var(--mt-common-black-2);
  display: inline-block;
  margin: 0 12px;
  -moz-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.mt-footer-copyright-menu ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mt-footer-copyright-social {
  background-color: var(--mt-theme-1);
  z-index: 1;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}
.mt-footer-copyright-social a {
  height: 40px;
  width: 40px;
  color: #fff;
  background: var(--mt-common-black-2);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  line-height: 40px;
  margin: 5px 0;
  transition: 0.3s;
}
.mt-footer-copyright-social a:hover {
  background-color: var(--mt-common-white);
  color: var(--mt-common-black);
}
.mt-footer-copyright-bottom p {
  margin-bottom: 0;
  color: var(--mt-common-black-2);
}
.mt-footer-copyright-text.mtborder {
  position: relative;
}
.mt-footer-copyright-text.mtborder::before {
  content: "";
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 1px solid var(--mt-border-3);
}
.mt-footer-copyright-2 {
  border-top: 1px solid var(--mt-border-2);
  padding-top: 23px;
}
.mt-footer-copyright-2 p {
  color: rgba(255, 255, 255, 0.5);
}
.mt-footer-copyright-2 p a {
  color: #fff;
}
.mt-footer-copyright-2 .mt-footer-copyright-menu ul li a {
  color: rgba(255, 255, 255, 0.5);
}
.mt-footer-copyright-2 .mt-footer-copyright-menu ul li a:hover {
  color: #fff;
}
.mt-footer-copyright-3 {
  border-top: 1px solid var(--mt-border-2);
  padding-top: 35px;
}
.mt-footer-copyright-4 .mt-footer-copyright-title {
  color: var(--mt-common-white);
}
.mt-footer-copyright-4 .mt-footer-copyright span {
  color: var(--mt-common-white);
}
.mt-footer-copyright-4 .mt-footer-copyright-menu ul li a {
  color: var(--mt-common-white);
  text-transform: uppercase;
}
.mt-footer-copyright-4 .mt-footer-copyright-menu ul li i {
  background-color: var(--mt-common-white);
}
.mt-footer-copyright-4 .mt-footer-copyright-social {
  background-color: transparent;
}
.mt-footer-copyright-4 .mt-footer-copyright-social a {
  background-color: transparent;
  border: 1px solid var(--mt-border-2);
  transition: 0.3s;
}
.mt-footer-copyright-4 .mt-footer-copyright-social a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mt-footer-copyright-5 .mt-footer-copyright p {
  color: #fff;
}
.mt-footer-copyright-5 .mt-footer-copyright p a {
  color: #c6f906;
}

.footer-cols-1 {
  padding-right: 50px;
}

.footer-cols-2 {
  padding-left: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-cols-2 {
    padding-left: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-2 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-cols-2 {
    padding-left: 0px;
  }
}

.footer-cols-3 {
  padding-left: 90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-cols-3 {
    padding-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-3 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-cols-3 {
    padding-left: 0px;
  }
}

.footer-cols-4 {
  padding-left: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-cols-4 {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-4 {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .footer-cols-4 {
    padding-left: 0px;
  }
}

.footer-2-cols-1 {
  padding-right: 50px;
}

.footer-2-cols-2 {
  padding-left: 140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-2-cols-2 {
    padding-left: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-2-cols-2 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-2-cols-2 {
    padding-left: 0px;
  }
}

.footer-2-cols-3 {
  padding-left: 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-2-cols-3 {
    padding-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-2-cols-3 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-2-cols-3 {
    padding-left: 0px;
  }
}

.footer-2-cols-4 {
  padding-left: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-2-cols-4 {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-2-cols-4 {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .footer-2-cols-4 {
    padding-left: 0px;
  }
}

.footer-3-cols-1 {
  padding-right: 0px;
}

.footer-3-cols-2 {
  padding-left: 140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-3-cols-2 {
    padding-left: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-3-cols-2 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-3-cols-2 {
    padding-left: 0px;
  }
}

.footer-3-cols-3 {
  padding-left: 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-3-cols-3 {
    padding-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-3-cols-3 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-3-cols-3 {
    padding-left: 0px;
  }
}

.footer-3-cols-4 {
  padding-left: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-3-cols-4 {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-3-cols-4 {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .footer-3-cols-4 {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-footer-copyright {
    text-align: center !important;
  }
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtabout__area {
    padding-top: 80px;
  }
}
.mtabout__section-border {
  border-bottom: 1px solid var(--mt-border-1);
}
.mtabout__exper-number {
  font-size: 120px;
  font-weight: 700;
  color: var(--mt-common-black);
  display: inline-block;
  margin-bottom: 0;
}
.mtabout__exper-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--mt-common-black);
  display: inline-block;
  top: -25px;
  position: relative;
  margin-left: 25px;
}
.mtabout__exper-wrap cite {
  font-size: 17px;
  font-weight: 400;
  color: var(--mt-common-black);
  display: inline-block;
  position: absolute;
  top: 10px;
}
@media (max-width: 767px) {
  .mtabout__thumb-wrap p {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.mtabout__thumb-play a {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 60px;
  line-height: 60px;
  width: 60px;
  text-align: center;
  background: #fff;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #333;
  font-size: 16px;
}
.mtabout__thumb-play a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.247);
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
}
.mtabout__thumb-play a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.205);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtabout__btn-wrap {
    text-align: center !important;
  }
}
.mtabout__btn a {
  width: 160px;
  height: 160px;
  line-height: 160px;
  text-align: center;
  border: 1px solid var(--mt-border-1);
  border-radius: 100%;
  display: inline-block;
  font-size: 16px;
  font-family: var(--mt-ff-body);
  font-weight: 700;
  color: var(--mt-common-black);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mtabout__btn a span {
  display: block;
  line-height: 2;
  position: relative;
  top: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mtabout__btn a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mtabout__btn a:hover span {
  color: var(--mt-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtabout__progress {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .mtabout__progress {
    width: 100%;
  }
}
.mtabout__progress-item {
  position: relative;
}
.mtabout__progress-item h6 {
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtabout__progress-item h6 {
    font-size: 15px;
  }
}
.mtabout__progress-item .progress-count {
  position: absolute;
  top: -2px;
  right: 0;
  font-size: 16px;
  font-weight: 400;
}
.mtabout__progress-item .progress {
  height: 8px;
  background-color: transparent;
  border-radius: 50px;
  overflow: visible;
  position: relative;
}
.mtabout__progress-item .progress::after {
  position: absolute;
  content: "";
  left: 0;
  top: 1px;
  height: 8px;
  width: 100%;
  background-color: #d1d1d1;
  z-index: -1;
  border-radius: 50px;
}
.mtabout__progress-item .progress .progress-bar {
  background-color: var(--mt-common-black);
  overflow: visible;
  border-radius: 50px;
}
.mtabout__list ul li {
  color: var(--mt-common-black-2);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--mt-ff-heading);
  margin-bottom: 20px;
  position: relative;
  width: 46%;
  float: left;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .mtabout__list ul li {
    width: 100%;
    float: inherit;
  }
}
@media (max-width: 767px) {
  .mtabout__skill-info {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .mtabout__2 .mt-section-content {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.mtabout__4 {
  margin-bottom: -180px;
  z-index: 1;
  position: relative;
}
.mtabout__5 {
  padding-top: 190px;
}

/*----------------------------------------*/
/*  7.1 Fact css start
/*----------------------------------------*/
.mthero__bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mthero-bg-wrap {
  padding-top: 180px;
  padding-bottom: 431px;
}
.mthero__space {
  padding-top: 190px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .mthero__section-title {
    margin-bottom: 0;
  }
}
.mthero__title {
  font-size: 120px;
  color: var(--mt-common-white);
}
@media (max-width: 767px) {
  .mthero__title {
    font-size: 60px;
  }
}
.mthero__content-wrap {
  padding: 50px 30px 40px 30px;
  margin-bottom: -220px;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mthero__content-wrap {
    margin-bottom: -120px;
  }
}
.mthero__text-border {
  border-bottom: 1px solid var(--mt-border-2);
}
.mthero__text p {
  line-height: 34px;
}
.mthero__text h4 {
  color: var(--FFFFFF, #fff);
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mthero__video-wrapper {
    text-align: center !important;
    margin-bottom: -330px;
    z-index: 2;
    margin-top: 83px;
  }
}
.mthero__video-thumb {
  position: relative;
  margin-right: 27px;
}
.mthero__video-thumb img {
  border-radius: 100%;
}
.mthero__video-thumb img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--mt-common-black);
  opacity: 0.3;
  z-index: 1;
}
.mthero__video-play {
  position: absolute;
  top: 50%;
  left: 69%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mthero__video-play {
    left: 50%;
  }
}
.mthero__video-play a {
  width: 60px;
  height: 60px;
  background: var(--mt-common-black);
  line-height: 60px;
  border-radius: 100%;
  text-align: center;
  display: block;
  color: var(--mt-common-white);
}
.mthero__video-play a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.247);
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
}
.mthero__video-play a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.205);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}
.mthero__shape {
  position: absolute;
  right: 0;
  bottom: -205px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mthero__shape {
    right: 35%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__shape {
    right: 30%;
  }
}
@media (max-width: 767px) {
  .mthero__shape {
    right: 6%;
  }
}
.mthero__trans {
  position: absolute;
  bottom: 40px;
}
.mthero__trans-title {
  font-size: 105px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(180deg, #1c2021 21.92%, #0e1112 76.95%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mthero__trans-title {
    font-size: 95px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mthero__trans-title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__trans-title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .mthero__trans-title {
    font-size: 27px;
  }
}
.mthero__2 .mthero__title {
  font-size: 42px;
}
@media (max-width: 767px) {
  .mthero__2 .mthero__title br {
    display: none;
  }
}
.mthero__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.mthero__scroll-icon {
  background-color: #fff;
  width: 100px;
  height: 65px;
  border-radius: 70px 70px 0px 0px;
}
.mthero__scroll-icon a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--mt-theme-1);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  -moz-transform: translateX(20px);
  -o-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  margin-top: 5px;
}
.mthero__3 .mthero__3-trans-title {
  font-size: 160px;
  color: var(--mt-common-black);
  text-align: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mthero__3 .mthero__3-trans-title {
    font-size: 140px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mthero__3 .mthero__3-trans-title {
    font-size: 118px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mthero__3 .mthero__3-trans-title {
    font-size: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__3 .mthero__3-trans-title {
    font-size: 120px;
  }
}
@media (max-width: 767px) {
  .mthero__3 .mthero__3-trans-title {
    font-size: 62px;
  }
}
.mthero__3 .mthero__3-thumb {
  padding-top: 300px;
  padding-bottom: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mthero__3 .mthero__wrap-info {
    margin-left: 0px;
  }
}
.mthero__3 .mthero__title {
  color: var(--mt-common-black);
  font-size: 42px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mthero__3 .mthero__title br {
    display: none;
  }
}
.mthero__3-shape {
  position: absolute;
  left: -30px;
  top: -255px;
  z-index: -1;
}
.mthero__3-thumb {
  position: relative;
}
.mthero__3-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #0e1112 0%, rgba(0, 0, 0, 0) 100%);
}
.mthero__3-thumb img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.mthero__4 .mthero__title {
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mthero__4 .mthero__title {
    font-size: 186px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__4 .mthero__title {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  .mthero__4 .mthero__title {
    font-size: 76px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mthero__4 .mthero__content-wrap {
    margin-left: 0px;
    margin-right: 0;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.mthero__4 .mthero__subtitle {
  font-size: 52px;
  font-weight: 600;
  color: var(--mt-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mthero__4 .mthero__subtitle {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__4 .mthero__subtitle {
    font-size: 50px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .mthero__4 .mthero__subtitle {
    font-size: 50px;
    line-height: 1.5;
  }
}
.mthero__4 .mthero__subtitle span {
  background: var(--mt-theme-1);
  color: var(--mt-common-black);
  font-size: 100px;
  padding: 15px 20px;
  margin: 0 10px;
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mthero__4 .mthero__subtitle span {
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mthero__4 .mthero__subtitle span {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__4 .mthero__subtitle span {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .mthero__4 .mthero__subtitle span {
    font-size: 41px;
  }
}
.mthero__4 .mthero__text {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  padding-right: 150px;
  line-height: 1.3;
}
.mthero__4 .mthero__text-wrap {
  display: inline-block;
  width: 350px;
  position: relative;
}
@media (max-width: 767px) {
  .mthero__4 .mthero__text-wrap {
    margin-top: 70px;
  }
}
.mthero__4 .mthero__text-wrap img {
  position: absolute;
  top: -60px;
}
.mthero__4 .mthero__image {
  flex: 0 0 auto;
}
.mthero__4 .mthero__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
}
.mthero__5 .mthero__subtitle {
  color: var(--mt-common-white);
  font-size: 28px;
  font-weight: 700;
  margin-left: 130px;
}
@media (max-width: 767px) {
  .mthero__5 .mthero__subtitle {
    font-size: 30px;
    margin-left: 10px;
  }
}
.mthero__5 .mthero__title {
  font-size: 150px;
  font-weight: 900;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mthero__5 .mthero__title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__5 .mthero__title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .mthero__5 .mthero__title {
    font-size: 65px;
  }
}
.mthero__5 .mthero__title .mt-btn-wrap {
  -moz-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mthero__5 .mthero__title .mt-btn-wrap {
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.mthero__5 .mthero__title .mt-btn-wrap span {
  margin: 0 -16px;
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mthero__5 .mthero__title .mt-btn-wrap span {
    margin: 0 -11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mthero__5 .mthero__title .mt-btn-wrap span {
    margin: 0 -9px;
  }
}
@media (max-width: 767px) {
  .mthero__5 .mthero__title .mt-btn-wrap span {
    margin: 0 -8px;
  }
}

/*----------------------------------------*/
/*  7.1 Choose css start
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtchoose {
    padding-left: 0px;
  }
}
.mtchoose__thumb {
  position: absolute;
  left: 40px;
  top: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtchoose__thumb {
    left: 0px;
    top: 7%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtchoose__thumb {
    position: static;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtchoose__thumb {
    position: static;
    margin-bottom: 30px;
  }
}
.mtchoose__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mtchoose__thumb img {
    width: 664px;
    height: inherit;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtchoose__thumb img {
    width: 570px;
    height: inherit;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtchoose__box-wrap {
    flex-wrap: wrap;
  }
}
.mtchoose__box-icon span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  color: var(--mt-common-white);
}
.mtchoose__box-title {
  font-size: 24px;
  color: var(--mt-common-white);
}

/*----------------------------------------*/
/*  7.1 Team css start
/*----------------------------------------*/
.mttestimonial__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mttestimonial__bg-4 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mttestimonial__bg-4::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
}
.mttestimonial__space {
  padding-left: 210px;
  padding-right: 210px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mttestimonial__space {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .mttestimonial__space {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.mttestimonial__border {
  border-bottom: 1px solid var(--mt-border-1);
}
.mttestimonial p {
  color: var(--mt-common-black-2);
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .mttestimonial p {
    font-size: 23px;
    line-height: 34px;
  }
}
.mttestimonial__ratting span {
  color: var(--mt-common-black-2);
  font-size: 15px;
  margin-right: 5px;
}
.mttestimonial__author-wrap img {
  border-radius: 100%;
}
.mttestimonial__author-name {
  font-size: 20px;
}
.mttestimonial__button {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 50%;
  -moz-transform: translateY(-250%);
  -o-transform: translateY(-250%);
  -ms-transform: translateY(-250%);
  -webkit-transform: translateY(-250%);
  transform: translateY(-250%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mttestimonial__button {
    bottom: 50%;
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media (max-width: 767px) {
  .mttestimonial__button {
    display: none;
  }
}
.mttestimonial__button-prev {
  left: auto;
  right: 0;
}
.mttestimonial__button-prev span {
  background-color: var(--mt-common-black-2);
}
.mttestimonial__button-prev span svg,
.mttestimonial__button-prev span path {
  color: var(--mt-common-white);
}
.mttestimonial__button span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--mt-text-body);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
}
.mttestimonial__arrow-2 .mttestimonial__button-prev span {
  background-color: var(--mt-common-white);
}
@media (max-width: 767px) {
  .mttestimonial__arrow-3 {
    display: none !important;
  }
}
.mttestimonial__arrow-3 .mttestimonial__button {
  left: inherit;
  right: 23%;
  -moz-transform: translateY(-130%);
  -o-transform: translateY(-130%);
  -ms-transform: translateY(-130%);
  -webkit-transform: translateY(-130%);
  transform: translateY(-130%);
}
.mttestimonial__arrow-3 .mttestimonial__button-prev {
  right: 15%;
}
.mttestimonial__2 p {
  color: var(--mt-common-white);
}
.mttestimonial__2 .mttestimonial__author-name {
  color: var(--mt-common-white);
}
.mttestimonial__2 .mttestimonial__author-position {
  color: var(--mt-text-body);
}
.mttestimonial__3 {
  background: var(--mt-theme-1);
  padding: 80px;
}
.mttestimonial__3-bg {
  height: 600px;
  object-fit: cover;
}
.mttestimonial__3-space {
  margin-top: -220px;
  margin-right: -10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__3 {
    padding: 80px 10px;
  }
}
.mttestimonial__3 .mttestimonial__content h4 {
  font-size: 20px;
}
.mttestimonial__3 .mttestimonial__content h4 span {
  height: 1px;
  width: 33px;
  background: var(--mt-common-black);
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
.mttestimonial__3 .mttestimonial__content p {
  font-size: 24px;
  line-height: 34px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mttestimonial__3 .mttestimonial__content p br {
    display: none;
  }
}
.mttestimonial__4 {
  background: var(--mt-common-white);
  padding: 70px 50px;
  transition: 0.3s;
}
.mttestimonial__4:hover {
  background: var(--mt-theme-1);
}
.mttestimonial__4 p {
  color: var(--mt-common-black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.mttestimonial__4 .mttestimonial__author-name {
  font-size: 18px;
}
.mttestimonial__shape {
  position: absolute;
  left: 0;
  top: 0;
}
.mttestimonial__shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .mttestimonial__shape-2 {
    bottom: -80px;
  }
}
.mttestimonial__shape-3 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .mttestimonial__shape-3 {
    bottom: -80px;
  }
}
.mttestimonial__shape-4 {
  position: absolute;
  right: 0;
  top: 0;
}

/*----------------------------------------*/
/*  7.1 Team css start
/*----------------------------------------*/
@media (max-width: 767px) {
  .mtteam__area {
    padding-top: 0px;
  }
}
.mtteam__bg {
  background: rgba(196, 249, 6, 0.1);
}
.mtteam__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(198, 249, 6, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.mtteam__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.mtteam__thumb:hover::before {
  opacity: 1;
  visibility: visible;
}
.mtteam__thumb:hover .mtteam__content-bg {
  opacity: 1;
  visibility: visible;
  bottom: 16px;
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mtteam__thumb:hover .mtteam__social {
  opacity: 1;
  visibility: visible;
  right: 16px;
}
.mtteam__content-bg {
  background: var(--mt-theme-1);
  padding: 16px 10px;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -moz-transform: scale(0.6);
  -o-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}
.mtteam__content span {
  color: var(--mt-common-black-2);
}
.mtteam__title {
  font-size: 24px;
  color: var(--mt-common-black-2);
}
.mtteam__social {
  position: absolute;
  top: 16px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.mtteam__social a {
  height: 40px;
  width: 40px;
  color: #fff;
  background: var(--mt-common-black-2);
  display: block;
  border-radius: 50%;
  line-height: 40px;
  margin: 5px 0;
  transition: 0.3s;
}
.mtteam__social a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black-2);
}
@media (max-width: 767px) {
  .mtteam__2-area {
    padding-top: 80px;
  }
}
.mtteam__2:hover .mtteam__thumb::before {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.mtteam__2:hover .mtteam__thumb img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mtteam__2:hover .mtteam__content {
  opacity: 1;
  visibility: visible;
  bottom: 16px;
  z-index: 2;
}
.mtteam__2 .mtteam__thumb {
  overflow: hidden;
}
.mtteam__2 .mtteam__thumb img {
  transition: 0.7s;
}
.mtteam__2 .mtteam__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(117, 147, 4, 0) 25.56%, #c6f906 100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.mtteam__2 .mtteam__social {
  z-index: 2;
}
.mtteam__2 .mtteam__social a {
  background: var(--mt-common-white);
  color: var(--mt-common-black);
}
.mtteam__2 .mtteam__social a:hover {
  background: var(--mt-theme-1);
}
.mtteam__2 .mtteam__content {
  background: transparent;
  padding: 16px 10px;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.mtteam__3 .mtteam__thumb::before {
  display: none;
}
.mtteam__3 .mtteam__thumb:hover .mtteam__social {
  right: inherit;
  left: 25%;
}
.mtteam__3 .mtteam__social {
  top: inherit;
  bottom: 17%;
  left: 25%;
  right: inherit;
}
.mtteam__3 .mtteam__social a {
  display: inline-block;
}

.mt-team-slider-space {
  margin-right: -340px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-team-slider-space {
    margin-right: 0px;
  }
}

.mtteam__button-prev {
  left: 70px;
}
.mtteam__button-prev span {
  background-color: var(--mt-common-white);
}

.mt-team-details-box {
  padding: 30px 24px;
  background-color: var(--mt-common-white);
}
.mt-team-details-box-icon span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  background-color: var(--mt-common-black);
  color: var(--mt-common-white);
  border-radius: 50px;
}
.mt-team-details-box-content span {
  display: inline-block;
  color: #767676;
  margin-bottom: 8px;
}
.mt-team-details-box-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mt-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-team-details-thumb {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-team-details-skill .mt-section-content {
    margin-right: 0px;
  }
}
.mt-team-details-social a {
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: var(--mt-common-black);
  border: 1px solid var(--mt-border-1);
  border-radius: 50%;
  transition: 0.3s;
  margin-right: 5px;
}
.mt-team-details-social a:hover {
  background-color: var(--mt-theme-1);
  color: var(--mt-common-black);
  border: 1px solid var(--mt-theme-1);
}
.mt-team-details-follow p {
  font-size: 20px;
  font-weight: 700;
  color: var(--mt-common-black);
  margin-bottom: 0;
}
.mt-team-details-shape {
  position: absolute;
  left: 0;
  top: 0;
}

/*----------------------------------------*/
/*  7.1 Fact css start
/*----------------------------------------*/
.mtfact__item {
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-right: -1px;
  margin-top: -50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtfact__item {
    margin-top: -31px;
  }
}
.mtfact__item:hover {
  background: var(--mt-theme-1);
  border-color: var(--mt-theme-1);
}
.mtfact__item:hover .mtfact__count {
  color: var(--mt-common-black);
}
.mtfact__item:hover .mtfact__number {
  color: var(--mt-common-black);
}
.mtfact__item:hover .mtfact__content p {
  color: var(--mt-common-black);
}
.mtfact__item-2 {
  background-color: #fcd782;
  padding: 32px;
}
.mtfact__item-2 img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
.mtfact__item-2 .mtfact__count {
  font-size: 62px;
  font-weight: 700;
  color: var(--mt-common-black);
}
.mtfact__item-2 p {
  font-size: 24px;
  font-weight: 500;
  margin-top: -25px;
  color: var(--mt-common-black);
}
.mtfact__wrap {
  z-index: 2;
  position: relative;
}
.mtfact__count {
  color: var(--mt-common-white);
  font-size: 52px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mtfact__number {
  font-size: 20px;
  color: var(--mt-common-white);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mtfact__content p {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mtfact__white .mtfact__item {
  border: 1px solid var(--mt-border-1);
  margin-top: 0px;
}
.mtfact__white .mtfact__count {
  color: var(--mt-common-black);
}
.mtfact__white .mtfact__content span {
  color: var(--mt-common-black);
}
.mtfact__white .mtfact__content p {
  color: var(--mt-common-black);
}

/*----------------------------------------*/
/*  7.1 Fact css start
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtfeature__area {
    padding-top: 40px;
  }
}
.mtfeature__border {
  border: 1px solid var(--mt-border-1);
  padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtfeature__border {
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.mtfeature__icon {
  background-color: #f3f3f3;
  font-size: 50px;
  padding: 35px;
}
.mtfeature__2 .mt-section-title {
  font-size: 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtfeature__2 .mt-section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .mtfeature__2 .mt-section-title {
    font-size: 30px;
  }
}

/*----------------------------------------*/
/*  7.1 Fact css start
/*----------------------------------------*/
.mtnewsletter__bg {
  padding: 70px 50px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .mtnewsletter__bg {
    padding: 50px 10px;
  }
}
.mtnewsletter__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(17, 17, 17, 0.7);
  z-index: 1;
}
.mtnewsletter__bg-2 {
  border-radius: 5px;
  padding: 60px;
  margin-top: -120px;
}
@media (max-width: 767px) {
  .mtnewsletter__bg-2 {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtnewsletter__right {
    margin-left: 0px;
  }
}
.mtnewsletter__title {
  font-size: 54px;
  font-weight: 700;
  color: var(--mt-common-white);
}
@media (max-width: 767px) {
  .mtnewsletter__title {
    font-size: 34px;
  }
}
.mtnewsletter__left {
  z-index: 2;
  position: relative;
}
.mtnewsletter__left p {
  color: var(--mt-text-body);
}
.mtnewsletter__right {
  z-index: 2;
}
.mtnewsletter__input input {
  height: 60px;
  background: var(--mt-common-white);
  padding: 10px 20px;
}
.mtnewsletter__input button {
  height: 50px;
  padding: 0px 21px;
  background: var(--mt-common-black);
  position: absolute;
  right: 5px;
  top: 5px;
  color: var(--mt-common-white);
  text-transform: uppercase;
}
.mtnewsletter__input button .rotate {
  -moz-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.mtnewsletter__trans-title {
  color: rgba(17, 17, 17, 0.0901960784);
  font-size: 92px;
  font-weight: 800;
  position: absolute;
  left: 22%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtnewsletter__trans-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .mtnewsletter__trans-title {
    left: 0%;
    font-size: 60px;
  }
}
.mtnewsletter__2 .mtnewsletter__title {
  font-size: 32px;
  color: var(--mt-common-black);
}
.mtnewsletter__2 .mtnewsletter__input input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--mt-border-2);
  border-radius: 0px;
  padding-left: 0px;
}
.mtnewsletter__2 .mtnewsletter__input button {
  background: var(--mt-common-black);
  height: 40px;
  padding: 0px 15px;
  border-radius: 10px;
}

/*----------------------------------------*/
/*  7.1 about css start 
/*----------------------------------------*/
.mtcontact__maps iframe {
  height: 800px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtcontact__maps iframe {
    height: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtcontact__maps iframe {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtcontact__maps iframe {
    height: 400px;
  }
}
.mtcontact__maps-info {
  background-color: var(--mt-common-white);
  padding: 50px;
  width: 354px;
  position: absolute;
  top: 10%;
  left: 10%;
}
@media (max-width: 767px) {
  .mtcontact__maps-info {
    position: static;
    background-color: var(--mt-border-1);
  }
}
.mtcontact__maps-content ul li {
  list-style: none;
  margin-bottom: 6px;
}
.mtcontact__maps-content ul li:last-child {
  margin-bottom: 0;
}
.mtcontact__list-title {
  font-size: 24px;
}
.mtcontact__list-item ul li {
  list-style: none;
}
.mtcontact__box-item {
  background-color: #F5F5F5;
  padding: 60px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtcontact__box-item {
    padding: 30px;
  }
}
.mtcontact__box-item:hover {
  background-color: var(--mt-theme-1);
}
.mtcontact__box-icon span {
  color: #111;
  font-size: 25px;
}
.mtcontact__box-content ul li {
  list-style: none;
}

.gm-style .place-card-large {
  display: none !important;
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
.mtservice__border {
  border: 1px solid var(--mt-border-3);
}
.mtservice__bg {
  padding: 60px;
  transition: 0.3s;
}
.mtservice__bg:hover {
  background: var(--mt-common-black-5);
}
.mtservice__bg:hover .mtservice__btn a {
  color: var(--mt-theme-1);
}
.mtservice__bg:hover .mtservice__title {
  color: var(--mt-theme-1);
}
.mtservice__icon span {
  border: 1px solid var(--mt-border-3);
  padding: 17px 16.5px;
  border-radius: 100%;
  display: inline-block;
  font-size: 20px;
  color: var(--mt-common-white);
}
.mtservice__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--mt-common-white);
  transition: 0.3s;
}
.mtservice__content {
  font-size: 16px;
  font-weight: 400;
  color: var(--mt-text-body);
  margin-top: 10px;
}
.mtservice__btn a {
  font-size: 16px;
  font-weight: 400;
  color: var(--mt-common-white);
  display: inline-block;
  text-decoration: underline;
  transition: 0.3s;
}
.mtservice__2 {
  height: 465px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtservice__2 .mtservice__icon {
    margin-bottom: 50px;
  }
}
.mtservice__2 .mtservice__icon span {
  border: 1px solid var(--mt-border-3);
  width: 100px;
  height: 100px;
  line-height: 60px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  font-size: 30px;
  color: var(--mt-common-white);
}
.mtservice__2 .mtservice__btn {
  display: none;
  transition: 0.5s;
}
.mtservice__2 .mtservice__btn a {
  background-color: var(--mt-theme-1);
  color: #000;
  padding: 8px 15px;
  display: block;
  text-decoration: none;
  font-weight: 700;
}
.mtservice__2 .mtservice__btn a span {
  float: right;
}
.mtservice__2 .mtservice__content-wrap {
  margin-top: 153px;
  transition: 0.5s;
}
.mtservice__2:hover .mtservice__btn {
  display: block;
}
.mtservice__2:hover .mtservice__btn a {
  color: #000;
}
.mtservice__2:hover .mtservice__content-wrap {
  margin-top: 97px;
}
.mtservice__3 {
  height: 480px;
}
.mtservice__3:hover {
  background: #101314;
}
.mtservice__3:hover.mtservice__border {
  border-color: #101314;
}
.mtservice__3:hover .mtservice__content-wrap {
  margin-top: 97px;
}
.mtservice__3:hover .mtservice__btn-wrap {
  opacity: 1;
  visibility: visible;
  display: block;
}
.mtservice__3 .mtservice__content-wrap {
  margin-top: 153px;
  transition: 0.4s;
}
.mtservice__3 .mtservice__btn-wrap {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  display: none;
}
.mtservice__4 {
  padding: 60px 45px;
}
.mtservice__4 .mtservice__icon span {
  border: 0;
  font-size: 44px;
}
.mtservice__4 .mtservice__content-wrap p {
  color: rgba(255, 255, 255, 0.8);
}
.mtservice__4 .mtservice__title {
  font-size: 24px;
  font-weight: 600;
}

.mtservice__area .mtservie-pagination {
  text-align: center;
  position: absolute;
  bottom: 10px !important;
}
.mtservice__area .mtservie-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--mt-border-1);
  opacity: 1;
  text-align: center;
  margin-bottom: 15px;
}
.mtservice__area .mtservie-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mt-common-black);
  border: 1px solid var(--mt-common-black);
}
@media (max-width: 767px) {
  .mtservice__pagi-3 .mt-section-content {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.mtservice__pagi-3 .mtservice__pagi .mtservie-pagination {
  bottom: -80px !important;
}
.mtservice__pagi-3 .mtservice__pagi .mtservie-pagination .swiper-pagination-bullet {
  border: 1px solid var(--mt-border-2);
}
.mtservice__pagi-3 .mtservice__pagi .mtservie-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mt-theme-1);
  border: 1px solid var(--mt-theme-1);
}
.mtservice__details-area .details-border {
  border-bottom: 1px solid var(--mt-border-1);
  padding-bottom: 20px;
}
.mtservice__details-box ul li {
  list-style: none;
  margin-bottom: 10px;
  margin-right: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtservice__details-box ul li {
    margin-right: 0px;
  }
}
.mtservice__details-box ul li:last-child {
  margin-bottom: 0;
}
.mtservice__details-box ul li i {
  margin-right: 5px;
}
.mtservice__details-box ul li strong {
  color: var(--mt-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtservice__details-box {
    margin-right: 0px;
  }
}
.mtservice__details-item {
  border: 1px solid var(--mt-border-1);
  padding: 60px;
  transition: 0.3s;
}
.mtservice__details-item:hover {
  background: var(--mt-theme-1);
}
.mtservice__details-icon {
  border: 1px solid var(--mt-border-1);
  padding: 17px 16.5px;
  border-radius: 100%;
  display: inline-block;
  font-size: 20px;
  color: #111111;
}
.mtservice__details-content ul li {
  margin-bottom: 10px;
  margin-left: 20px;
}
.mtservice__details-content ul li:last-child {
  margin-bottom: 0;
}

.mtservice-active-space {
  margin-right: -325px;
  overflow: visible;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtservice-active-space {
    margin-right: -200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtservice-active-space {
    margin-right: 0px;
  }
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
.mtproject__thumb {
  transition: 0.7s;
  overflow: hidden;
}
.mtproject__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.5s;
  overflow: hidden;
}
.mtproject__thumb::before {
  content: "";
  background: rgba(17, 17, 17, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.mtproject__thumb:hover .mtproject__content {
  background: var(--mt-theme-1);
}
.mtproject__thumb:hover .mtproject__content span {
  color: var(--mt-common-black);
}
.mtproject__thumb:hover .mtproject__title {
  color: var(--mt-common-black);
}
.mtproject__thumb:hover img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mtproject__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--mt-common-white);
}
.mtproject__content {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  text-align: center;
  transition: 0.5s;
  padding: 20px 10px;
  border-bottom: 7px solid #c6f906;
  z-index: 2;
}
.mtproject__content span {
  font-size: 16px;
  color: var(--mt-common-white);
}
.mtproject__rotade {
  font-size: 18px;
  font-weight: 500;
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 125px;
  display: inline-block;
  left: -40px;
  z-index: 2;
}
.mtproject__details-box {
  flex-wrap: wrap;
  gap: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtproject__details-box {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .mtproject__details-box {
    gap: 20px;
  }
}
.mtproject__details-box-item h5 {
  font-size: 20px;
  color: var(--mt-common-black);
  margin-bottom: 5px;
}
.mtproject__details-award .mt-accordion-button::after {
  display: none;
}

.mt-portfolio-filter button {
  font-size: 16px;
  font-weight: 700;
  color: var(--mt-common-black);
  text-transform: uppercase;
}
.mt-portfolio-item:hover .mt-portfolio-btnview {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.mt-portfolio-item:hover .mt-portfolio-content {
  opacity: 1;
  visibility: visible;
  bottom: 53px;
}
.mt-portfolio-item:hover .mt-portfolio-thumb img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mt-portfolio-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(17, 17, 17, 0.5);
  z-index: 1;
}
.mt-portfolio-btnview {
  position: absolute;
  top: 60%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 2;
}
.mt-portfolio-thumb {
  overflow: hidden;
}
.mt-portfolio-thumb img {
  transition: 0.7s;
}
.mt-portfolio-content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 2;
}
.mt-portfolio-content span {
  color: var(--mt-common-white);
  margin-bottom: 7px;
  display: inline-block;
}
.mt-portfolio-title {
  color: var(--mt-common-white);
}
.mt-portfolio-item-2 .mt-portfolio-title {
  color: var(--mt-common-black);
}
.mt-portfolio-item-2 .mt-portfolio-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(17, 17, 17, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-portfolio-item-2 .mt-portfolio-thumb img {
    width: 100%;
  }
}
.mt-portfolio-item-2:hover .mt-portfolio-thumb::before {
  opacity: 1;
  visibility: visible;
}
.mt-portfolio-item-3 .mt-portfolio-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.8) 11.27%, rgba(0, 9, 14, 0) 38.3%);
}
.mt-portfolio-item-3:hover .mt-portfolio-content {
  bottom: 50px;
}
.mt-portfolio-item-3 .mt-portfolio-content {
  opacity: 1;
  visibility: visible;
}
.mt-portfolio-item-3 .mt-portfolio-content span {
  border: 1px solid var(--mt-border-1);
  border-radius: 30px;
  padding: 5px 10px;
  margin: 0 5px;
}

.mtshowcase__trans-title {
  font-size: 120px;
  font-weight: 900;
  color: #131617;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtshowcase__trans-title {
    font-size: 86px;
  }
}
@media (max-width: 767px) {
  .mtshowcase__trans-title {
    font-size: 50px;
  }
}
.mtshowcase__title {
  color: var(--mt-common-white);
  font-size: 42px;
}
.mtshowcase__content span {
  color: #f5f7f5;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-project-tab-area .mt-section-content {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-project-tab {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.mt-project-tab button {
  font-size: 52px;
  color: var(--mt-common-white);
  line-height: 1.2;
  padding: 13px 60px;
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}
.mt-project-tab button:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-project-tab button {
    padding: 20px 30px;
    display: inline-block;
    width: inherit;
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-project-tab button {
    padding: 16px 25px;
    display: inline-block;
    width: inherit;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .mt-project-tab button {
    margin-bottom: 20px;
  }
}
.mt-project-tab button span {
  font-size: 16px;
  -moz-transform: translateY(-25px);
  -o-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
  display: inline-block;
  margin-right: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-project-tab button span {
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.mt-project-tab button.active {
  color: var(--mt-common-black);
  background-color: var(--mt-theme-1);
}
.mt-project-tab-thumb {
  flex: 0 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-project-tab-thumb {
    padding: 0 40px;
    flex: inherit;
  }
}
.mt-project-tab-thumb img {
  width: 100%;
}
.mt-project-tab-content {
  padding-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-project-tab-content-wrap {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-project-tab-content {
    padding-left: 0px;
  }
}
.mt-project-tab-content img {
  margin-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mt-project-tab-content img {
    margin-bottom: 20px;
  }
}
.mt-project-tab-content p {
  color: rgba(255, 255, 255, 0.8);
}

.mt-test-slider-space {
  margin-right: -70px;
  padding-left: 5px;
}

/*----------------------------------------*/
/*  7.1 Team css start
/*----------------------------------------*/
.mtbrand__title {
  font-size: 92px;
  font-weight: 800;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.16);
  -webkit-text-fill-color: transparent;
}
.mtbrand__title span {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.16);
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  -moz-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
}
.mtbrand__3 .mtbrand__item {
  border: 1px solid var(--mt-border-3);
  padding: 32px;
  height: 114px;
  text-align: center;
  line-height: 50px;
  margin-right: -1px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtbrand__3 .mtbrand__item {
    margin: 10px 0;
  }
}
.mtbrand__3 .mtbrand__item:hover {
  background: #101314;
}
.mtbrand__2 .mtbrand__title {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.mt-brand-3-active {
  padding: 0px 5px;
}

.mtbrand__2 .mt-brand-title-active .swiper-slide-active .mtbrand__title {
  color: #c6f906;
  -webkit-text-fill-color: #c6f906;
}

/*----------------------------------------*/
/*  7.1 Team css start
/*----------------------------------------*/
.mtprocess__space {
  padding: 10px 30px;
}
.mtprocess__bg {
  background-color: #f8f8f8;
}
.mtprocess__thumb img {
  border-radius: 100%;
}
.mtprocess__title {
  color: var(--mt-common-black-2);
  font-size: 24px;
}
.mtprocess__number {
  position: absolute;
  right: 15%;
  top: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtprocess__number {
    right: 30%;
  }
}
.mtprocess__number p {
  display: inline-block;
}
.mtprocess__number p span {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -80%);
  -o-transform: translate(-50%, -80%);
  -ms-transform: translate(-50%, -80%);
  -webkit-transform: translate(-50%, -80%);
  transform: translate(-50%, -80%);
}
.mtprocess__number-2 {
  right: 0%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtprocess__number-2 {
    right: 22%;
  }
}
.mtprocess__number-2 p span {
  color: #000000;
}
.mtprocess__2 .mtprocess__title {
  color: var(--mt-common-white);
}
.mtprocess__2 .mtprocess__content p {
  color: rgba(255, 255, 255, 0.8);
}
.mtprocess__2 .mtprocess__number p span {
  color: var(--mt-common-black);
}
.mtprocess__shape-1 {
  position: absolute;
  top: 37%;
  left: 32%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .mtprocess__shape-1 {
    left: 28%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mtprocess__shape-1 {
    left: 26%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtprocess__shape-1 {
    left: 22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtprocess__shape-1 {
    left: 20%;
    top: 34%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtprocess__shape-1 {
    display: none;
  }
}
.mtprocess__shape-2 {
  position: absolute;
  top: 37%;
  right: 33.7%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .mtprocess__shape-2 {
    right: 30%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mtprocess__shape-2 {
    right: 28%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mtprocess__shape-2 {
    right: 26%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mtprocess__shape-2 {
    right: 28.5%;
    top: 34%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtprocess__shape-2 {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.1 Team css start
/*----------------------------------------*/
.mtvideo__space {
  padding-top: 375px;
  padding-bottom: 375px;
}
@media (max-width: 767px) {
  .mtvideo__space {
    padding-top: 220px;
    padding-bottom: 220px;
  }
}
.mtvideo__space-2 {
  padding-top: 240px;
  padding-bottom: 240px;
}
.mtvideo__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mtvideo__play a {
  width: 150px;
  height: 150px;
  line-height: 150px;
  background-color: var(--mt-theme-1);
  border-radius: 100%;
  display: inline-block;
  position: relative;
}
.mtvideo__play a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.247);
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
}
.mtvideo__play a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.205);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}
.mtvideo__play a span {
  color: var(--mt-common-black-2);
  font-size: 16px;
  font-weight: 700;
}
.mtvideo__2 .mtvideo__play a {
  width: 120px;
  height: 120px;
  line-height: 120px;
}
.mtvideo__2 .mtvideo__play a span {
  font-size: 34px;
}

/*----------------------------------------*/
/*  7.1 Fact css start
/*----------------------------------------*/
@media (max-width: 767px) {
  .mtskill {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.mtskill__item {
  position: relative;
}
.mtskill__item h6 {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--mt-ff-body);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtskill__item h6 {
    font-size: 15px;
  }
}
.mtskill__item .progress-count {
  position: absolute;
  top: -2px;
  right: 0px;
  font-size: 16px;
  font-weight: 700;
  color: var(--mt-common-black);
}
.mtskill__item .progress {
  height: 3px;
  background-color: transparent;
  border-radius: 50px;
  overflow: visible;
  position: relative;
}
.mtskill__item .progress::after {
  position: absolute;
  content: "";
  left: 0;
  top: 1px;
  height: 3px;
  width: 100%;
  background-color: #d1d1d1;
  z-index: -1;
  border-radius: 50px;
}
.mtskill__item .progress .progress-bar {
  background-color: var(--mt-common-black);
  overflow: visible;
  border-radius: 50px;
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
.mtcta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtcta__bg {
    position: static;
    width: 100%;
    margin-top: -40px;
    margin-bottom: 60px;
  }
}
.mtcta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtcta__item {
    flex-wrap: wrap;
  }
}
.mtcta__btn {
  position: relative;
}
.mtcta__btn a {
  width: 160px;
  height: 160px;
  line-height: 180px;
  border-radius: 100%;
  background: var(--mt-common-black);
  color: var(--mt-common-white);
  font-size: 16px;
  display: inline-block;
  text-align: center;
}
.mtcta__btn a span {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mtcta__btn a span i {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  font-size: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mtcta__btn a:hover {
  color: var(--mt-common-white);
}
.mtcta__border {
  border-bottom: 1px solid var(--mt-border-3);
}
.mtcta__2 .mtcta__subtitle {
  color: #c6f906;
  font-size: 16px;
  font-family: var(--mt-ff-body);
}
.mtcta__2 .mtcta__title {
  font-size: 150px;
  line-height: 1;
  color: var(--mt-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtcta__2 .mtcta__title {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  .mtcta__2 .mtcta__title {
    font-size: 75px;
  }
}

/*----------------------------------------*/
/*  6.11 Pricing
/*----------------------------------------*/
.mtprice {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 50px;
}
.mtprice__icon {
  position: relative;
  margin-bottom: 4px;
}
.mtprice__icon span {
  font-size: 115px;
  position: relative;
  z-index: 1;
  margin-left: 23px;
}
.mtprice__icon-shape {
  position: absolute;
  top: 0;
  left: 0;
}
.mtprice__price h4 {
  font-size: 42px;
  font-weight: 700;
  color: var(--mt-common-white);
}
.mtprice__price h4 span {
  font-size: 16px;
}
.mtprice__title {
  font-size: 24px;
  color: var(--mt-common-white);
}
.mtprice__features {
  list-style: none;
}
.mtprice__features li {
  color: var(--mt-common-white);
  margin-bottom: 19px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.mtprice__features li i {
  margin-right: 10px;
  font-size: 18px;
  margin-top: 5px;
}
.mtprice__features li span {
  font-size: 17px;
}
.mtprice__sep {
  border-top: 1px solid #57595C;
  margin-top: 22px;
  margin-bottom: 25px;
}
.mtprice__white .mtprice {
  border: 1px solid var(--mt-border-1);
  transition: 0.3s;
}
.mtprice__white .mtprice.active {
  background-color: var(--mt-common-black);
}
.mtprice__white .mtprice.active .mtprice__title {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice.active .mtprice__price h4 {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice.active .mtprice__price h4 span {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice.active .mtprice__features li {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice.active .mt-price-btn a {
  background-color: var(--mt-theme-1);
  border: 1px solid var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mtprice__white .mtprice:hover {
  background-color: var(--mt-common-black);
}
.mtprice__white .mtprice:hover .mtprice__title {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice:hover .mtprice__price h4 {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice:hover .mtprice__price h4 span {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice:hover .mtprice__features li {
  color: var(--mt-common-white);
}
.mtprice__white .mtprice:hover .mt-price-btn a {
  background-color: var(--mt-theme-1);
  border: 1px solid var(--mt-theme-1);
  color: var(--mt-common-black);
}
.mtprice__white .mtprice__title {
  color: var(--mt-common-black);
  transition: 0.3s;
}
.mtprice__white .mtprice__price h4 {
  color: var(--mt-common-black);
  transition: 0.3s;
}
.mtprice__white .mtprice__price h4 span {
  color: var(--mt-common-black);
  transition: 0.3s;
}
.mtprice__white .mtprice__features li {
  color: var(--mt-common-black);
  transition: 0.3s;
}
.mtprice__white .mt-price-btn a {
  border: 1px solid var(--mt-border-1);
  color: var(--mt-common-black);
}
.mtprice__white .mt-price-btn a:hover {
  background-color: var(--mt-common-dark);
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtaward__area .mt-section-content {
    margin-left: 0px;
  }
}
.mtaward__item {
  border-bottom: 1px solid var(--mt-border-3);
  padding: 10px 0px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtaward__item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.mtaward__item:last-child {
  border-bottom: none;
}
.mtaward__item:hover .mtaward__title {
  color: var(--mt-theme-1);
}
.mtaward__item:hover .mtaward__img img {
  opacity: 1;
  visibility: visible;
  display: block;
}
.mtaward__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--mt-common-white);
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mtaward__title-2 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
.mtaward__subtitle {
  font-size: 24px;
  color: var(--mt-common-white);
  margin-bottom: 0;
}
.mtaward__subtitle-2 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
.mtaward__tilte-wrap {
  flex: 0 0 auto;
  width: 350px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtaward__tilte-wrap {
    width: inherit;
  }
}
.mtaward__tilte-wrap-2 {
  width: 450px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtaward__tilte-wrap-2 {
    width: inherit;
  }
}
.mtaward__content {
  flex: 0 0 auto;
  width: 290px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtaward__content {
    width: inherit;
  }
}
.mtaward__img {
  flex: 0 0 auto;
  width: 290px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mtaward__img {
    width: inherit;
  }
}
.mtaward__img img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 19%;
  bottom: -40px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/*----------------------------------------*/
/*  7.1 about css start 
/*----------------------------------------*/
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mt-error-thumb-box img {
    max-width: 70%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-error-thumb-box img {
    max-width: 60%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-error-thumb-box img {
    max-width: 60%;
  }
}
.mt-error-title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mt-error-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-error-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-error-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .mt-error-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mt-error-title {
    font-size: 34px;
  }
}

/*# sourceMappingURL=main.css.map */
