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

    Template Name: Ravox - Creative Agency HTML Template
    Description:Ravox - Creative Agency HTML Template  is modern creative agency website
    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> Macro- Creative Agency HTML Template </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
		3.4 Header Style 5

    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Main menu css
		4.2 Meanmenu css
		4.3 Mobile css
		4.4 Category menu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 Postbox css
		5.2 Recent Post css
		5.3 Sidebar css
		5.4 Blog css
		5.5 Blog Grid css

	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style 1
		6.2 Footer Style 2
		6.3 Footer Style 3
		6.4 Footer Style 4
		6.5 Footer Style 5

	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 Slider css
		7.2 About css
		7.3 Feature css
		7.4 Subscribe css
		7.5 Instagram css
		7.6 Testimonial css
		7.7 Brand css
		7.8 CTA css
		7.10 Contact css
		7.11 Error css
		7.12 Profile css

	---------------------------------
	08. ECOMMERCE CSS
	---------------------------------
		8.1 Ecommerce Common CSS
		8.2 Cartmini CSS
		8.3 Cart Modal CSS
		8.4 Category CSS
		8.5 Banner CSS
		8.6 Tooltip CSS
		8.7 Featured Product CSS
		8.8 Trending CSS
		8.9 Product Card CSS
		8.10 Product Card Style 2 CSS
		8.11 Product Card Style 3 CSS
		8.12 Product Card Style 4 CSS
		8.13 Product Card Style 5 CSS
		8.14 Product Details CSS
		8.15 Product Widget CSS
		8.16 Shop CSS
		8.17 Filter Offcanvas CSS
		8.18 Product Quantity CSS
		8.19 Cart CSS
		8.20 Order CSS
		8.21 Checkout CSS
		8.22 compare CSS
		8.23 Collection CSS
		8.24 Deal CSS
		8.25 Side Banner CSS
		8.26 Coupon CSS


**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Teko:wght@300..700&display=swap");
:root {
  --ab-white: #FFF;
  --ab-black: #000;
  --ab-dark: #101010;
  --ab-bg: #090808;
  --ab-bg-2: #090808;
  --ab-primary: #CCFF00;
  --ab-text: #BCBCBC;
  --ab-body-color: #787878;
  --ab-border: rgb(188, 188, 188, 0.16);
  --ab-border2: rgb(188, 188, 188, 0.24);
  --ab-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  --ab-overlay-color: #001C52;
  --ab-gradient: linear-gradient(131deg, rgb(6, 6, 6) 30%, #EB5849 100%);
}

:root {
  --Kanit: "Kanit", sans-serif;
  --Teko: "Teko", sans-serif;
}

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

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--Kanit) !important;
  font-size: 17px;
  font-weight: normal;
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--Teko);
}

ul {
  margin: 0px !important;
  padding: 0px;
  list-style: none;
}

p,
span,
a {
  font-size: 16px;
  color: var(--ab-text);
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}

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;
  text-decoration: 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;
  font-size: 17px;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid var(--ab-border);
  text-transform: capitalize;
  width: 100%;
}
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 {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

*::placeholder {
  color: var(--ab-text);
  font-size: 17px;
  opacity: 1;
}

.swiper-3d .swiper-slide-shadow {
  display: none !important;
}

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

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

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

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

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

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

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

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

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

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

.ab-white {
  color: var(--ab-white);
}

.ab-black {
  color: var(--ab-black);
}

.ab-black2 {
  color: #B1B4BA;
}

.ab-primary {
  color: var(--ab-primary) !important;
}

.ab-bg-dark {
  background-color: var(--ab-dark);
}

.ab-bg {
  background-color: var(--ab-bg);
}

.ab-text {
  color: var(--ab-text) !important;
}

.brand-animation {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.ab-slide-block {
  width: auto !important;
  display: inline-block !important;
}

.text-shadow {
  text-shadow: -1px -1px 0 var(--ab-primary), 1px -1px 0 var(--ab-primary), -1px 1px 0 var(--ab-primary), 1px 1px 0 var(--ab-primary);
  color: black !important;
}

.f-w-400 {
  font-weight: 400 !important;
}

.f-w-600 {
  font-weight: 600 !important;
}

.f-w-500 {
  font-weight: 500 !important;
}

.f-w-700 {
  font-weight: 700 !important;
}

.fs-16 {
  color: var(--ab-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
}
.fs-16-white {
  color: var(--ab-white);
}

.fs-18 {
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: var(--ab-text);
}
.fs-18-white {
  color: var(--ab-white);
}

.fs-20 {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: var(--ab-white);
}
.fs-20-pri {
  color: var(--ab-primary);
}

.fs-26 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ab-black);
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fs-26 {
    font-size: 24px;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .fs-26 {
    font-size: 22px;
  }
}
.fs-26-white {
  color: var(--ab-white);
  font-size: 26px;
  font-weight: 700;
}

.fs-24 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ab-white);
}
.fs-24:hover {
  color: var(--ab-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .fs-24 {
    font-size: 22px;
  }
}
.fs-24-primary {
  color: var(--ab-primary);
  font-size: 24px;
  font-weight: 700;
}

.fs-32 {
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ab-primary);
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .fs-32 {
    font-size: 24px;
  }
}
.fs-32-white {
  color: var(--ab-white);
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .fs-32-white {
    font-size: 24px;
  }
}

.fs-40 {
  font-size: 40px;
  font-weight: 700;
  color: var(--ab-black);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .fs-40 {
    font-size: 32px;
  }
}
.fs-40-white {
  color: var(--ab-white);
  font-size: 48px;
  font-weight: 700;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .fs-40-white {
    font-size: 32px;
  }
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  padding: 6px;
  margin: 0 12px !important;
  position: relative;
}
.swiper-pagination-bullet-active {
  background-color: var(--ab-primary) !important;
}
.swiper-pagination-bullet-active::before {
  content: "";
  border: 1px solid var(--ab-primary);
  position: absolute;
  width: 33px;
  height: 33px;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}

.border-solid {
  border: 1px solid var(--ab-border);
}

.border-bottom {
  border-bottom: 1px solid var(--ab-border);
}

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

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

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

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

.bg-fit {
  background-repeat: no-repeat;
  background-size: cover;
}

.background-position-top {
  background-position: top;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  br {
    display: none;
  }
}

.overlay {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
}

.w-15px {
  background-color: #B1B4BA;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  left: 100px;
}

.wrapper {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  color: #444;
}

@media (min-width: 1400px) {
  .wrapper {
    grid-template-columns: 354px minmax(200px, 1fr) 354px;
  }
}
.kanit {
  font-family: var(--Kanit) !important;
}

.gap-12 {
  gap: 12px;
}

/*--
    - 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;
}

/*-- 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;
}

/*-- 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;
}

/*-- 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;
}

/*-- 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- 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;
}

/*-- Padding left Right --*/
.px-1 {
  padding-right: 1px;
  padding-left: 1px;
}

.px-2 {
  padding-right: 2px;
  padding-left: 2px;
}

.px-3 {
  padding-right: 3px;
  padding-left: 3px;
}

.px-4 {
  padding-right: 4px;
  padding-left: 4px;
}

.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-6 {
  padding-right: 6px;
  padding-left: 6px;
}

.px-7 {
  padding-right: 7px;
  padding-left: 7px;
}

.px-8 {
  padding-right: 8px;
  padding-left: 8px;
}

.px-9 {
  padding-right: 9px;
  padding-left: 9px;
}

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

.px-11 {
  padding-right: 11px;
  padding-left: 11px;
}

.px-12 {
  padding-right: 12px;
  padding-left: 12px;
}

.px-13 {
  padding-right: 13px;
  padding-left: 13px;
}

.px-14 {
  padding-right: 14px;
  padding-left: 14px;
}

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

.px-16 {
  padding-right: 16px;
  padding-left: 16px;
}

.px-17 {
  padding-right: 17px;
  padding-left: 17px;
}

.px-18 {
  padding-right: 18px;
  padding-left: 18px;
}

.px-19 {
  padding-right: 19px;
  padding-left: 19px;
}

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

.px-21 {
  padding-right: 21px;
  padding-left: 21px;
}

.px-22 {
  padding-right: 22px;
  padding-left: 22px;
}

.px-23 {
  padding-right: 23px;
  padding-left: 23px;
}

.px-24 {
  padding-right: 24px;
  padding-left: 24px;
}

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

.px-26 {
  padding-right: 26px;
  padding-left: 26px;
}

.px-27 {
  padding-right: 27px;
  padding-left: 27px;
}

.px-28 {
  padding-right: 28px;
  padding-left: 28px;
}

.px-29 {
  padding-right: 29px;
  padding-left: 29px;
}

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

.px-31 {
  padding-right: 31px;
  padding-left: 31px;
}

.px-32 {
  padding-right: 32px;
  padding-left: 32px;
}

.px-33 {
  padding-right: 33px;
  padding-left: 33px;
}

.px-34 {
  padding-right: 34px;
  padding-left: 34px;
}

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

.px-36 {
  padding-right: 36px;
  padding-left: 36px;
}

.px-37 {
  padding-right: 37px;
  padding-left: 37px;
}

.px-38 {
  padding-right: 38px;
  padding-left: 38px;
}

.px-39 {
  padding-right: 39px;
  padding-left: 39px;
}

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

.px-41 {
  padding-right: 41px;
  padding-left: 41px;
}

.px-42 {
  padding-right: 42px;
  padding-left: 42px;
}

.px-43 {
  padding-right: 43px;
  padding-left: 43px;
}

.px-44 {
  padding-right: 44px;
  padding-left: 44px;
}

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

.px-46 {
  padding-right: 46px;
  padding-left: 46px;
}

.px-47 {
  padding-right: 47px;
  padding-left: 47px;
}

.px-48 {
  padding-right: 48px;
  padding-left: 48px;
}

.px-49 {
  padding-right: 49px;
  padding-left: 49px;
}

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

.px-51 {
  padding-right: 51px;
  padding-left: 51px;
}

.px-52 {
  padding-right: 52px;
  padding-left: 52px;
}

.px-53 {
  padding-right: 53px;
  padding-left: 53px;
}

.px-54 {
  padding-right: 54px;
  padding-left: 54px;
}

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

.px-56 {
  padding-right: 56px;
  padding-left: 56px;
}

.px-57 {
  padding-right: 57px;
  padding-left: 57px;
}

.px-58 {
  padding-right: 58px;
  padding-left: 58px;
}

.px-59 {
  padding-right: 59px;
  padding-left: 59px;
}

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

.px-61 {
  padding-right: 61px;
  padding-left: 61px;
}

.px-62 {
  padding-right: 62px;
  padding-left: 62px;
}

.px-63 {
  padding-right: 63px;
  padding-left: 63px;
}

.px-64 {
  padding-right: 64px;
  padding-left: 64px;
}

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

.px-66 {
  padding-right: 66px;
  padding-left: 66px;
}

.px-67 {
  padding-right: 67px;
  padding-left: 67px;
}

.px-68 {
  padding-right: 68px;
  padding-left: 68px;
}

.px-69 {
  padding-right: 69px;
  padding-left: 69px;
}

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

.px-71 {
  padding-right: 71px;
  padding-left: 71px;
}

.px-72 {
  padding-right: 72px;
  padding-left: 72px;
}

.px-73 {
  padding-right: 73px;
  padding-left: 73px;
}

.px-74 {
  padding-right: 74px;
  padding-left: 74px;
}

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

.px-76 {
  padding-right: 76px;
  padding-left: 76px;
}

.px-77 {
  padding-right: 77px;
  padding-left: 77px;
}

.px-78 {
  padding-right: 78px;
  padding-left: 78px;
}

.px-79 {
  padding-right: 79px;
  padding-left: 79px;
}

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

.px-81 {
  padding-right: 81px;
  padding-left: 81px;
}

.px-82 {
  padding-right: 82px;
  padding-left: 82px;
}

.px-83 {
  padding-right: 83px;
  padding-left: 83px;
}

.px-84 {
  padding-right: 84px;
  padding-left: 84px;
}

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

.px-86 {
  padding-right: 86px;
  padding-left: 86px;
}

.px-87 {
  padding-right: 87px;
  padding-left: 87px;
}

.px-88 {
  padding-right: 88px;
  padding-left: 88px;
}

.px-89 {
  padding-right: 89px;
  padding-left: 89px;
}

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

.px-91 {
  padding-right: 91px;
  padding-left: 91px;
}

.px-92 {
  padding-right: 92px;
  padding-left: 92px;
}

.px-93 {
  padding-right: 93px;
  padding-left: 93px;
}

.px-94 {
  padding-right: 94px;
  padding-left: 94px;
}

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

.px-96 {
  padding-right: 96px;
  padding-left: 96px;
}

.px-97 {
  padding-right: 97px;
  padding-left: 97px;
}

.px-98 {
  padding-right: 98px;
  padding-left: 98px;
}

.px-99 {
  padding-right: 99px;
  padding-left: 99px;
}

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

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

.split-text {
  overflow: hidden;
}

@media (min-width: 1850px) {
  .custom-container {
    max-width: 1640px;
    margin: auto;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
}
:root {
  --bs-gutter-x: 30px;
}

@media (min-width: 1600px) {
  .custom-container-header {
    max-width: 1640px;
    margin: auto;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
}
.header-menu-wrapper {
  border-left: 1px solid rgba(188, 188, 188, 0.24);
  border-right: 1px solid rgba(188, 188, 188, 0.24);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-menu-wrapper {
    border: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-menu-wrapper.ml-69 {
    margin-left: 12px;
  }
}

.header_wrapper {
  padding: 0 10px;
  border-radius: 20px;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header_wrapper {
    padding: 5px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-header-home2 .ml-69 {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-header-home2 .ml-69 {
    margin-left: 10px;
  }
}

.header-area {
  position: absolute;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(188, 188, 188, 0.24);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-area {
    padding: 10px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-area .mr-50 {
    margin-right: 25px;
  }
}
.header-area .main-menu {
  justify-content: center;
}
.header-area .main-menu-home2 {
  background-color: var(--ab-bg);
  padding: 0 40px;
  border-radius: 100px;
}
.header-area .main-menu-home2 li:last-child {
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area .main-menu-home2 li {
    margin-right: 18px;
  }
}
.header-area .main-menu ul li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
  -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: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-area .main-menu ul li {
    margin-right: 27px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area .main-menu ul li {
    margin-right: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .main-menu ul li {
    margin-right: 20px;
  }
}
.header-area .main-menu ul li:hover a,
.header-area .main-menu ul li:hover i {
  color: var(--ab-primary);
}
.header-area .main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 80px;
}
.header-area .main-menu ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 70px;
}
.header-area .main-menu ul li a {
  text-transform: uppercase;
  color: var(--ab-white);
  padding: 28px 0;
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
}
.header-area .main-menu ul li i {
  font-size: 12px;
  color: var(--ab-white);
}
.header-area .main-menu ul li .sub-menu {
  position: absolute;
  top: 150px;
  left: 0;
  padding: 10px;
  width: 230px;
  background-color: #101010;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header-area .main-menu ul li .sub-menu li {
  margin-right: 0;
  display: block;
  margin-bottom: 7px;
}
.header-area .main-menu ul li .sub-menu li:nth-child(2):hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-area .main-menu ul li .sub-menu li:nth-child(1):hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-area .main-menu ul li .sub-menu li a {
  color: var(--ab-white);
  position: relative;
  padding: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header-area .main-menu ul li .sub-menu li a::before {
  content: "";
  height: 3px;
  width: 10px;
  visibility: hidden;
  opacity: 0;
  background-color: var(--ab-white);
  margin-bottom: 4px;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header-area .main-menu ul li .sub-menu li a:hover {
  transform: translateX(10px);
  color: var(--ab-primary);
}
.header-area .main-menu ul li .sub-menu li a:hover::before {
  display: inline-block;
  visibility: visible;
  opacity: 1;
  background-color: var(--ab-primary);
}
.header-area .main-menu ul li .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  top: 110%;
}
.header-area .header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: hidden;
}
.header-area .header-search button {
  border-radius: 100px;
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 56px;
  background-color: var(--ab-bg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area .header-search.mr-30 {
    margin-right: 10px;
  }
}
.header-area .header-menu button {
  font-size: 17px;
  background-color: var(--ab-dark);
  color: var(--ab-text);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-weight: 700;
}
.header-area .header-menu button:hover {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--ab-primary);
  color: var(--ab-bg);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-area .header-menu button:hover {
    color: var(--ab-bg);
  }
}
.header-area .header-icon {
  margin-right: 15px;
}

@keyframes tpfadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--ab-bg);
  animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
  box-shadow: 0 2px 20px rgba(25, 25, 25, 0.1);
}
.header-sticky .header-wrapper,
.header-sticky .header_wrapper {
  margin-top: 0;
}

.header-sticky-dark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--ab-dark);
  animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
  box-shadow: 0px 20px 30px rgba(167, 167, 167, 0.1);
}
.header-sticky-dark .header-wrapper,
.header-sticky-dark .header_wrapper {
  margin-top: 0;
}

@media screen and (max-width: 576px) {
  .mobile-offcanvas {
    max-width: 100%;
  }
}
.mobile-offcanvas {
  position: fixed;
  z-index: 999;
  background: #fff;
  width: 400px;
  left: -100%;
  top: 0;
  padding: 40px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.6s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mobile-offcanvas {
    padding: 30px;
  }
}
.mobile-offcanvas-logo {
  max-width: 53%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mobile-offcanvas .fa-chevron-down {
    display: none;
  }
}
.mobile-offcanvas-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-offcanvas-header button i {
  font-size: 30px;
}
.mobile-offcanvas-header button i:hover {
  transform: rotate(90deg);
}
.mobile-offcanvas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.mobile-offcanvas-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-offcanvas-info-item span {
  font-size: 16px;
}
.mobile-offcanvas-info-icon {
  min-width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: #101010;
  border-radius: 50%;
  color: var(--ab-primary);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mobile-offcanvas-info-icon:hover {
  background-color: var(--ab-primary);
  color: var(--ab-bg);
}
.mobile-offcanvas-social a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 39px;
  border-radius: 40px;
  color: var(--ab-black);
  border: 1px solid rgba(2, 11, 24, 0.1);
  font-size: 14px;
}
.mobile-offcanvas-social a:hover {
  background-color: var(--ab-primary);
  color: var(--ab-white);
}
.mobile-offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  background: rgba(24, 24, 24, 0.4);
}
.mobile-offcanvas-overlay-open {
  visibility: visible;
  opacity: 0.7;
  transition: ease 0.9s;
}
.mobile-offcanvas-close i {
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.mobile-offcanvas-close i:hover {
  transform: rotate(350deg);
  color: var(--ab-primary);
}

.mobile-offcanvas-open {
  opacity: 1;
  visibility: visible;
  left: 0;
  z-index: 9999;
  overflow-y: scroll;
}

.mobile-offcanvas-menu {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mobile-offcanvas-menu li {
  cursor: pointer;
  position: relative;
}
.mobile-offcanvas-menu li.active > a {
  color: var(--ab-primary);
}
.mobile-offcanvas-menu li .menu-close {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid var(--ab-border);
  height: 27px;
  width: 27px;
  text-align: center;
  font-size: 12px;
  line-height: 27px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mobile-offcanvas-menu li a {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
  color: var(--ab-dark);
  border-bottom: 1px solid var(--ab-border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.mobile-offcanvas-menu li a:hover {
  color: var(--ab-primary);
}

.sub-menu {
  padding-left: 20px;
}
.sub-menu > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.active > .menu-close i {
  transform: rotate(90deg);
}

.active > .menu-close {
  background-color: var(--ab-primary);
  border: 1px solid var(--ab-primary) !important;
}
.active > .menu-close i {
  color: var(--ab-white);
}

@media screen and (max-width: 576px) {
  .ab-offcanvas {
    max-width: 100%;
  }
}
.info-text {
  color: var(--ab-white);
}

.ab-offcanvas {
  position: fixed;
  z-index: 999;
  background: var(--ab-bg);
  width: 400px;
  right: 0;
  top: 0;
  padding: 50px 40px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.ab-offcanvas-close {
  color: var(--ab-white);
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-offcanvas-menu-icon {
    display: none;
  }
}
.ab-offcanvas .ab-offcanvas-sm-title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 15px;
}
.ab-offcanvas-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ab-offcanvas-header button i {
  font-size: 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-offcanvas-header button i:hover {
  transform: rotate(90deg);
}
.ab-offcanvas-title {
  font-size: 35px;
  font-family: var(--Teko);
  color: var(--ab-white);
  text-transform: capitalize;
}
.ab-offcanvas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.ab-offcanvas-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-offcanvas-info span {
  display: inline-block;
}
.ab-offcanvas-social {
  gap: 12px;
}
.ab-offcanvas-social a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 39px;
  border-radius: 4px;
  background-color: #101010;
  border: 1px solid rgba(2, 11, 24, 0.1);
  font-size: 14px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--ab-white);
}
.ab-offcanvas-social a:hover {
  background-color: var(--ab-primary);
  color: var(--ab-bg);
}
.ab-offcanvas-overlay {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.4);
}
.ab-offcanvas-overlay-open {
  visibility: visible;
  opacity: 0.7;
}

.ab-offcanvas-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 99999;
}

.sub-menu {
  padding-left: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sub-menu {
    display: none;
  }
}
.sub-menu > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

.ab-offcanvas-menu {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-offcanvas-menu li {
  cursor: pointer;
  position: relative;
}
.ab-offcanvas-menu li.active > a {
  color: var(--ab-primary);
}
.ab-offcanvas-menu li .menu-close {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid var(--ab-border);
  height: 27px;
  width: 27px;
  text-align: center;
  font-size: 12px;
  line-height: 27px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-offcanvas-menu li .menu-close i {
  color: var(--ab-white);
}
.ab-offcanvas-menu li a {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--ab-white);
  border-bottom: 1px solid var(--ab-border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.ab-offcanvas-menu li a:hover {
  color: var(--ab-primary);
}

.sub-menu {
  padding-left: 20px;
}
.sub-menu > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.active .menu-close i {
  transform: rotate(90deg);
  color: var(--ab-bg) !important;
}

.ab-search-bar {
  width: 100%;
  height: 400px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--ab-bg);
  transform: translateY(-100%);
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.ab-search-bar-open {
  transform: translateY(0%);
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.ab-search-bar .ab-search-icon {
  position: absolute;
  top: 15px;
  right: 0;
  bottom: 0;
}
.ab-search-bar .ab-search-close {
  position: absolute;
  right: 40px;
  top: 50px;
  font-size: 30px;
  z-index: 99;
  color: var(--ab-white);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-search-bar .ab-search-close:hover {
  color: var(--ab-primary);
  transform: rotate(90deg);
}
.ab-search-bar input {
  color: var(--ab-white);
}
.ab-search-bar input::placeholder {
  color: var(--ab-white);
}

.ab-about {
  z-index: 6;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-about br {
    display: none;
  }
}
.ab-about-three-social {
  border-radius: 120px;
  transform: rotate(270deg);
  transform-origin: 0 0;
  display: block ruby;
  position: absolute;
  bottom: -20px;
  left: -66px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-about-three-social {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-about-three-social {
    bottom: -62px;
  }
}
.ab-about-three-social a {
  margin-right: 12px;
  background-color: var(--ab-bg);
  border-radius: 6px;
  width: 40px;
  height: 40px;
}
.ab-about-three-social a i {
  transform: rotate(90deg);
}
.ab-about-three-title {
  font-weight: 700;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ab-white);
}
.ab-about-three-title span {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--ab-primary);
  font-weight: 700;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-about-three .pl-45 {
    padding-left: 0;
    padding-right: 45px;
  }
  .ab-about-three .pl-45 br {
    display: none;
  }
}
.ab-about-shape-1 {
  top: 0;
  left: 0;
  z-index: 1;
}
.ab-about-shape-2 {
  bottom: 0;
  right: 0;
  z-index: 1;
}
.ab-about-two-btn {
  border-right: 1px solid rgba(188, 188, 188, 0.16);
  padding-right: 20px;
  margin-right: 20px;
}
@media 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), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-about-two-btn {
    padding-right: 0;
    margin-right: 0;
    border: 0;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* margin-top: 0; */
    gap: 30px;
  }
  .ab-about-two-btn .primary-btn-four {
    margin-top: 0;
  }
}
.ab-about-two-years {
  background-color: #040303;
  border: 1px solid var(--ab-primary);
  border-radius: 120px;
  padding: 20px 32px;
  transform: rotate(270deg);
  transform-origin: 0 0;
  display: block ruby;
  position: absolute;
  bottom: 107px;
  right: -227px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-about-two-years {
    display: none !important;
  }
}
.ab-about-funfact-item {
  width: 100%;
  background-color: #090808;
  padding: 24px 32px 24px 32px;
  border-radius: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  margin-top: -18px;
  line-height: 140%;
  align-items: center;
  position: relative;
  z-index: 10;
}
.ab-about-funfact-item:nth-child(2) {
  background: #040303;
  width: calc(100% - 100px);
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-about-funfact-item:nth-child(2) {
    width: 100%;
  }
}
.ab-about-funfact-item:nth-child(3) {
  background: #0c0c0b;
  width: calc(100% - 200px);
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-about-funfact-item:nth-child(3) {
    width: 100%;
  }
}
.ab-about-funfact-title {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  z-index: 10;
  color: var(--ab-white);
}
.ab-about-funfact-num {
  position: relative;
  z-index: 10;
  font-weight: 700;
  font-size: 32px;
  margin-top: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ab-primary);
}
.ab-about-thumb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  column-gap: 30px;
  position: relative;
  z-index: 10;
}
@media 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: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-about-thumb svg {
    width: 100%;
  }
}
@media 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) {
  .ab-about-thumb.pl-40 {
    padding-left: 0;
  }
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-about-thumb.pl-40 {
    padding-left: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
.ab-about-thumb-title {
  color: black;
  text-shadow: -1px -1px 0 var(--ab-primary), 1px -1px 0 var(--ab-primary), -1px 1px 0 var(--ab-primary), 1px 1px 0 var(--ab-primary);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-about-thumb-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-about .ab-section-title.mr-30 {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-about-home-2 .ab-about-thumb-home-2 img {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1600px) and (max-width: 2000px) {
  .ab-about-home-2 .ab-about-thumb-home-2 img {
    width: 100%;
  }
}

.nav-pills .nav-link.active {
  background-color: var(--ab-bg);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--ab-primary);
}

.nav-pills .nav-link {
  border-radius: 100px !important;
  background-color: var(--ab-bg);
  color: var(--ab-white);
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  font-family: var(--Teko);
  padding: 22px 47px;
}

.ab-contact {
  position: relative;
  border-radius: 16px;
  padding: 32px 40px 48px;
  background-color: var(--ab-dark);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-contact {
    border: 0;
    padding: 24px;
  }
}
.ab-contact-address-item {
  background-color: var(--ab-dark);
  border-radius: 100px;
  padding: 12px 32px 12px 12px;
}
.ab-contact-address-icon {
  border-radius: 100px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--ab-bg);
}
.ab-contact-blog-details::before {
  display: none;
}
.ab-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}
.ab-contact-thumb-img img {
  width: 80%;
}
.ab-contact label {
  font-family: var(--Teko);
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: 0.03em;
  color: var(--ab-white);
  margin-bottom: 8px;
}
.ab-contact textarea {
  border: none;
  padding: 16px;
  background-color: var(--ab-bg);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #BCBCBC;
  border-radius: 8px;
}
.ab-contact input {
  border-radius: 8px;
  background-color: var(--ab-bg);
  padding: 26px 18px;
  border: none;
}
.ab-contact-map {
  margin-bottom: -80px;
  width: 100%;
}
.ab-contact-map iframe {
  width: 100%;
}

input[type=radio] {
  width: 16px;
  height: 16px;
  outline: none;
  background-color: transparent;
}

.ab-cta {
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-cta {
    height: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-cta {
    height: 500px;
  }
}
.ab-cta-title {
  font-family: var(--teko);
  font-weight: 700;
  font-size: 100px;
  line-height: 108%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ab-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-cta-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-cta-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-cta-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-cta-title {
    font-size: 50px;
  }
}
.ab-cta-wrapper {
  border-left: 4px solid var(--ab-primary);
  padding-left: 48px;
}
.ab-cta-btn {
  position: relative;
  border-radius: 77px;
  padding: 3px;
  width: 80px;
  height: 80px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  background-color: var(--ab-primary);
  text-align: center;
}
.ab-cta-btn::before {
  content: "";
  border: 1px solid var(--ab-white);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  border-radius: 77px;
}
.ab-cta-home-2 {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}
.ab-cta-home-2 .ab-cta-btn {
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
}

.sb-fact {
  background-repeat: no-repeat;
  background-size: cover;
}
.sb-fact-marquee {
  background-color: var(--ab-bg);
}
.sb-fact-item {
  text-align: center;
  border: 1px solid rgba(188, 188, 188, 0.24);
  border-radius: 1000px;
  padding: 100px 0px;
  width: 364px;
  height: 364px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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), only screen and (min-width: 576px) and (max-width: 767px) {
  .sb-fact-item {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
  }
}
.sb-fact-title {
  font-weight: 700;
  font-size: 100px;
  line-height: 108%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .sb-fact-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .sb-fact-title {
    font-size: 70px;
  }
}
.sb-fact-desc {
  font-family: var(--Teko);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-white);
}
.sb-fact-icon {
  display: inline-flex;
  column-gap: 15px;
  align-items: center;
}

.project-main {
  position: relative;
  /* BUT we need previous, so use this instead */
}
.project-main .project-desc {
  padding: 24px 32px;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .project-main .project-desc {
    padding: 24px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-main .project-desc {
    padding: 24px 20px;
  }
}
.project-main .project-btn {
  background: var(--ab-bg);
  position: relative;
  z-index: 100;
  line-height: 56px;
  border-radius: 100px;
  text-align: center;
  width: 56px;
  height: 56px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.project-main .project-btn path {
  fill: var(--ab-white);
}
.project-main .project-btn:hover {
  background-color: var(--ab-primary);
}
.project-main .project-btn:hover path {
  fill: var(--ab-black);
}
.project-main .project-btn-next {
  position: absolute;
  right: 500px;
  bottom: 140px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .project-main .project-btn-next {
    right: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-main .project-btn-next {
    right: 250px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-main .project-btn-next {
    right: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .project-main .project-btn-next {
    position: static;
    align-items: center;
  }
}
.project-main .project-btn-prev {
  position: absolute;
  left: 500px;
  bottom: 140px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .project-main .project-btn-prev {
    left: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-main .project-btn-prev {
    left: 250px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-main .project-btn-prev {
    left: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .project-main .project-btn-prev {
    position: static;
    align-items: center;
  }
}
.project-main img {
  border-radius: 16px;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .project-main img {
    max-height: 270px;
    min-height: 270px;
    min-width: 270px;
    max-width: 270px;
  }
}
.project-main .swiper-slide {
  padding: 30px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.project-main .swiper-slide .project-item {
  transition: var(--bs-transition);
}
.project-main .project-item {
  position: relative;
  border-radius: 16px;
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .project-main .project-item {
    min-width: 300px;
    max-width: 300px;
  }
}
.project-main .project-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.project-main .project-item-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.project-main .project-item .icon {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  opacity: 0;
  z-index: 2;
  display: inline-flex;
  column-gap: 14px;
}
@media (max-width: 575.98px) {
  .project-main .project-item .icon {
    width: 50px;
    height: 50px;
  }
}
.project-main .project-item .icon:hover {
  color: var(--ab-primary);
}
.project-main .project-item .icon:hover .primary-btn-two-icon {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transform: rotate(43deg);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .project-main .project-item .icon {
    transform: none;
    width: 100%;
    left: 15px !important;
    display: inline-flex;
    align-items: center;
    top: inherit;
    bottom: 200px;
  }
}
.project-main .swiper-slide-next img, .project-main .swiper-slide-prev img {
  height: 450px;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .project-main .swiper-slide-next img, .project-main .swiper-slide-prev img {
    height: 270px;
  }
}
.project-main .swiper-slide-active .project-item {
  transform: scale(1.02);
  border: 1px solid var(--ab-primary);
  margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-main .swiper-slide-active .project-item {
    transform: scale(1);
    margin-top: 40px;
    width: 418px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .project-main .swiper-slide-active .project-item {
    transform: scale(1);
    margin-top: 0px;
    width: 418px !important;
  }
}
.project-main .swiper-slide-active .project-item-shape {
  opacity: 1;
  visibility: visible;
}
.project-main .swiper-slide-active .project-item .icon {
  opacity: 1;
}
.project-main .swiper-slide-active img {
  filter: blur(9px) brightness(0.8) saturate(1.2);
  width: 418px !important;
  height: 347px;
  object-fit: cover;
}
.project-main .swiper-slide-active .project-desc {
  opacity: 1;
  visibility: visible;
}

.ab-project {
  position: relative;
}
.ab-project-title {
  position: absolute;
  top: 130px;
  transform: translate(-15%, 0%);
  left: 28%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-project-title {
    transform: none;
    position: static;
  }
}
.ab-project-btn-wrapper {
  justify-content: center;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-project-btn-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.ab-project-three-slider {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  column-gap: 120px;
  align-items: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-project-three-slider {
    gap: 40px;
    flex-wrap: wrap;
  }
}
.ab-project-three-slider-Btn-1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 117%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ab-white);
  display: inline-block;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-project-three-thumb {
    overflow: hidden;
  }
}
.ab-project-three-thumb img {
  border-radius: 16px;
}
@media (max-width: 767px) {
  .ab-project-three-thumb .swiper {
    width: 250px;
    height: 420px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-project-three-thumb .swiper {
    width: 320px;
    height: 420px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-project-three-thumb .swiper {
    padding-left: 20px;
  }
}
.ab-project-three-thumb .swiper-slide-active img {
  border-radius: 16px;
  border: 1px solid var(--ab-primary);
}
.ab-project-Btn-3 {
  position: relative;
}
.ab-project-Btn-3::before {
  content: "";
  position: absolute;
  background-color: var(--ab-primary);
  width: 100%;
  height: 1px;
  bottom: -15px;
}

.ab-portfolio-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-portfolio-wrapper {
    flex-wrap: wrap;
  }
}

.portfolio-details-menu {
  background-color: var(--ab-dark);
  padding: 32px;
  border-radius: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-details-menu {
    padding: 20px;
  }
}
.portfolio-details-menu-item {
  border-top: 1px solid rgba(188, 188, 188, 0.12);
  padding-top: 24px;
  padding-bottom: 12px;
}

.ab-service-are {
  position: relative;
}

.ab-service {
  position: relative;
}
.ab-service-btn-three {
  display: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ab-service-icon {
  border-radius: 8px;
  width: 72px;
  height: 72px;
  background-color: var(--ab-bg);
  line-height: 72px;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ab-service-icon-three {
  border-radius: 100px;
  background-color: var(--ab-bg);
  width: 80px;
  height: 80px;
  line-height: 80px;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-service_thumb_midle img {
    width: 100%;
  }
}
.ab-service_thumb_icon {
  border-radius: 16px;
  text-align: center;
  width: 88px;
  height: 88px;
  line-height: 88px;
  background-color: var(--ab-bg);
  margin-bottom: 136px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-service_thumb_icon {
    margin-bottom: 194px !important;
  }
}
@media (max-width: 767px) {
  .ab-service_thumb_icon {
    margin-bottom: 89px !important;
  }
}
.ab-service_thumb_hover {
  position: absolute;
  top: 0;
  left: 0;
  perspective: 400px;
  width: 100%;
  visibility: hidden;
  transform-origin: bottom center;
  transform: scale(1, 0);
  transition: transform 300ms ease-in-out, visibility 300ms ease-in-out;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-service_thumb_hover img {
    width: 100%;
  }
}
.ab-service-thumb-two {
  transform: translateX(110%);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-service-thumb-two {
    width: 50%;
    height: 50%;
  }
  .ab-service-thumb-two img {
    width: 100%;
    height: 100%;
  }
  .ab-service-thumb-two svg {
    display: none;
  }
}
.ab-service-thumb-two.active {
  transform: translate(1px);
}
.ab-service-shape-1 {
  left: 20%;
  top: 0;
}
.ab-service-shape-2 {
  left: 545px;
  top: 69px;
}
.ab-service-shape-3 {
  right: 177px;
  bottom: 92px;
}
.ab-service-shape-two-1 {
  z-index: -1;
  right: 0;
  top: 0;
}
.ab-service-shape-three-1 {
  opacity: 0;
  visibility: hidden;
}
.ab-service__content {
  padding: 24px 40px 40px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-service__content {
    padding: 20px;
  }
}
.ab-service__content__two {
  padding: 110px 40px 40px 40px;
}
.ab-service__content__three {
  padding: 40px 15px;
}
@media 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) {
  .ab-service__content {
    padding: 22px;
  }
}
.ab-service__item {
  z-index: 1;
  background-color: #101010;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden !important;
}
.ab-service__item__three {
  border: 1px solid var(--ab-border);
  margin-right: -1px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ab-service__item__three:hover .ab-service-btn-three {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: inline-flex;
  position: relative;
  z-index: 10;
}
.ab-service__item__three:hover .ab-service-icon-three {
  margin: 15px 0;
  transition: 0.5s ease-in-out;
}
.ab-service__item__three:hover .ab-service-shape-three-1 {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.ab-service__item__three:hover .ab-service-shape-three-1 img {
  object-fit: cover;
  width: 100%;
}
.ab-service__item__two {
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.ab-service__item__two svg path {
  stroke: #CCFF00;
}
.ab-service__item__two:hover .ab-service-thumb-two {
  transform: translateX(1px);
}
.ab-service__item__two:hover .ab-service-icon {
  background-color: var(--ab-primary);
}
.ab-service__item__two:hover .ab-service-icon svg path {
  fill: var(--ab-bg);
}
.ab-service__item__itemtwo:hover .ab-service_thumb_icon {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: none;
}
.ab-service__item__itemtwo:hover .ab-service_thumb_hover {
  perspective: 400px;
  visibility: visible;
  transform-origin: top center;
  transform: scale(1, 1);
  position: static;
}
.ab-service__item__itemtwo__shape {
  position: absolute;
  right: 0;
  top: 182px;
}
.ab-service__item__itemtwo__shape__two {
  top: 88px;
}
.ab-service__item__itemtwo__shape__one {
  width: 90px;
  height: 32px;
  background-color: var(--ab-primary);
  opacity: 0.12;
}

.service-details-userReview {
  padding: 32px 40px;
  background-color: var(--ab-dark);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-details-userReview {
    padding: 32px;
  }
}
.service-details-userReview-shape {
  right: 0;
  bottom: 0;
}
.service-details .ab-box-icon {
  background: linear-gradient(180deg, rgba(179, 222, 79, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

.ab-temmember-are {
  background-size: cover;
  background-repeat: no-repeat;
}

.preview img {
  width: 100%;
  height: 460px;
  opacity: 0;
  object-fit: cover;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .preview img {
    height: 300px;
  }
}

.preview img.show {
  opacity: 1;
}

@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-55 {
    padding-left: 0;
  }
}

@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-45 {
    padding-left: 20px;
  }
}

.ab-teammember {
  position: relative;
  z-index: 1;
}
.ab-teammember-img {
  height: 162px;
  width: 165px;
  border-radius: 8px;
  overflow: hidden;
}
.ab-teammember-img img {
  border-radius: 8px;
  height: 162px;
  width: 165px;
  object-fit: cover;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-teammember-body.pl-55 {
    padding-left: 0;
  }
}
.ab-teammember-img {
  width: 162px;
  height: 165px;
  border-radius: 8px;
  object-fit: cover;
}
.ab-teammember-shape-1 {
  right: 0;
  top: 0;
}
.ab-teammember-shape-2 {
  left: 44px;
  bottom: 62px;
}
.ab-teammember-shape-3 {
  top: 145px;
  right: 34px;
}
.ab-teammember-btn {
  background: var(--ab-bg);
  position: relative;
  z-index: 100;
  line-height: 56px;
  border-radius: 100px;
  text-align: center;
  width: 56px;
  height: 56px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-teammember-btn path {
  fill: var(--ab-white);
}
.ab-teammember-btn:nth-child(2) {
  transform: rotate(90deg);
}
.ab-teammember-btn:hover {
  background-color: var(--ab-primary);
}
.ab-teammember-btn:hover path {
  fill: var(--ab-black);
}

.sb-team-title {
  font-family: var(--Teko);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-bg);
}
.sb-team-title:hover {
  color: var(--ab-bg);
  text-decoration: underline;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.sb-team-subtitle {
  font-family: var(--Kanit);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--ab-bg);
  opacity: 0.8;
}
.sb-team-social {
  flex-direction: column;
  row-gap: 12px;
  top: 24px;
  position: absolute;
  z-index: 2;
  left: -100px;
}
.sb-team-social a {
  border-radius: 100px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--ab-dark);
  color: #BCBCBC;
  height: 40px;
}
.sb-team-social a:hover {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--ab-primary);
  color: var(--ab-bg);
}
.sb-team-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.sb-team-item-thumb {
  position: relative;
  height: 100%;
  display: block;
}
.sb-team-item-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(193, 20, 37, 0), var(--ab-primary) 100%);
  transform: scale(1, 1);
  transition: transform 400ms ease-in-out, visibility 400ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom center;
  perspective: 400px;
}
.sb-team-item-content {
  border-radius: 45px 45px 0 0;
  position: absolute;
  bottom: 0px;
  padding: 15px 0px;
  left: 6px;
  right: 6px;
  text-align: center;
  z-index: 2;
  transform: translateY(100px);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.sb-team-item-content-innerpages {
  left: 50px;
  right: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .sb-team-item-content-innerpages {
    left: 30px;
    right: 30px;
  }
}
.sb-team-item:hover .sb-team-item-content {
  transform: translateY(0%);
}
.sb-team-item:hover .sb-team-social {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  left: 24px;
}
.sb-team-item:hover .sb-team-item-thumb::before {
  opacity: 85%;
  visibility: visible;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transform-origin: top center;
  transform: scale(1, 1);
}
.sb-team-item-details .sb-team-social {
  left: 24px;
}
.sb-team-item-details .sb-team-item-thumb::before {
  display: none;
}

.team-details-content {
  border-top: 1px solid rgba(188, 188, 188, 0.12);
  margin-top: 100px;
  padding-top: 48px;
}
.team-details-contactAddress {
  border: 1px solid rgba(188, 188, 188, 0.12);
  border-radius: 72px;
  padding: 0 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .team-details-contactAddress {
    border: 0;
    padding: 0 24px;
  }
}
.team-details-contactAddress-item {
  border-right: 1px solid rgba(188, 188, 188, 0.12);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .team-details-contactAddress-item {
    border: 0;
  }
}
.team-details-contactAddress-icon {
  border-radius: 100px;
  padding: 8px;
  width: 56px;
  height: 56px;
  background-color: var(--ab-primary);
  line-height: 35px;
  text-align: center;
}

.ab-testimonial-thumb {
  position: relative;
  z-index: 2;
  height: 440px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-testimonial-thumb {
    height: 385px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-testimonial-thumb {
    height: 400px;
  }
}
.ab-testimonial-thumb img {
  height: 400px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-testimonial-thumb img {
    height: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-testimonial-thumb img {
    height: 370px;
  }
}
.ab-testimonial-thumb-icon {
  border: 8px solid var(--ab-bg);
  border-radius: 100px;
  width: 88px;
  height: 88px;
  text-align: center;
  line-height: 70px;
  z-index: 5;
  left: 130px;
  position: absolute;
  transform: translateY(-50px);
  background-color: var(--ab-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-testimonial-thumb-icon {
    left: 115px;
  }
  .ab-testimonial-thumb-icon img {
    height: 100%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-testimonial-thumb-icon {
    left: 130px;
  }
  .ab-testimonial-thumb-icon img {
    height: 100%;
  }
}
.ab-testimonial-thumb-icon img {
  width: 56px;
  height: 56px;
}
.ab-testimonial-shape-1 {
  left: 123px;
  bottom: 150px;
}
.ab-testimonial-shape-2 {
  right: 360px;
  bottom: 64px;
}
.ab-testimonial-body {
  padding: 45px 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-testimonial-body {
    padding: 24px 0;
  }
}
.ab-testimonial-desc {
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--ab-white);
  opacity: 0.88;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-testimonial-desc {
    font-size: 20px;
  }
}
.ab-testimonial-num {
  font-weight: 700;
  font-size: 16px;
  color: var(--ab-white) !important;
}

.ab_testimonial_desc {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: var(--ab-white);
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab_testimonial_desc {
    font-size: 16px;
  }
}

.ab_testimonial_top.text-center {
  width: 500px;
  margin: auto;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab_testimonial_top.text-center {
    width: 100%;
  }
}
@media 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) {
  .ab_testimonial_desc br {
    display: none;
  }
}
.ab_testimonial_item_text_name {
  position: relative;
}
.ab_testimonial_item_text_name::after {
  content: "";
  width: 130px;
  height: 2px;
  background-color: var(--ab-border);
  display: inline-block;
  margin-left: 30px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .ab_testimonial_item_text_name::after {
    width: 40px;
    margin-left: 10px;
  }
}
.ab_testimonial_item_text_name::before {
  content: "";
  width: 130px;
  height: 2px;
  background-color: var(--ab-border);
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .ab_testimonial_item_text_name::before {
    width: 40px;
    margin-right: 10px;
  }
}
.ab_testimonial_item_text_name-white {
  color: var(--ab-white);
}
.ab_testimonial .button {
  border-radius: 100px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--ab-dark);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.ab_testimonial .button:hover {
  background-color: var(--ab-primary);
}
.ab_testimonial .button:hover svg path {
  fill: var(--ab-bg);
}

@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-testi-three-wrapper {
    overflow: hidden;
  }
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-testi-three .swiper {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-testi-three .swiper {
    padding-left: 20px;
  }
}
.ab-testi-three .swiper-slide:nth-child(odd) .ab-testi-card {
  background-color: #090808;
}
.ab-testi-three .swiper-slide:nth-child(even) .ab-testi-card {
  background-color: #0D0D0C;
}
.ab-testi-card {
  border-radius: 16px;
  padding: 48px;
  width: 486px;
  height: 537px;
  background-color: var(--ab-bg);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-testi-card {
    width: 450px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-testi-card {
    width: 60%;
    height: 100%;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-testi-card {
    padding: 20px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-testi-card {
    padding: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .ab-testi-card .ab-testi-user > img {
    display: none;
  }
}
.ab-testi-rating {
  backdrop-filter: blur(48px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(188, 188, 188, 0.16);
  border-radius: 100px;
  padding: 16px 25px;
  display: inline-flex;
  column-gap: 7px;
}
.ab-testi-desc {
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 164%;
  color: var(--ab-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-testi-desc {
    font-size: 18px;
  }
}
.ab-testi-user {
  border-top: 1px solid var(--ab-border);
  padding-top: 30px;
  margin-top: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-testi-user {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.swiper-pagination-current,
.ab-testimonial-num {
  font-family: var(--Teko);
  font-weight: 700;
  font-size: 48px;
  line-height: 117%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ab-white);
}

.ab-hero {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: var(--ab-bg);
}
.ab-hero-project {
  border-radius: 1000px;
  padding: 31px 43px;
  backdrop-filter: blur(116px);
  background: rgba(255, 255, 255, 0.06);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-project {
    padding: 31px 0;
    background-color: transparent;
  }
}
.ab-hero-project-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ab-hero-project img {
  border-radius: 5px;
}
.ab-hero-client {
  display: inline-flex;
  column-gap: 10px;
  align-items: flex-start;
}
.ab-hero-client-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 113%;
  letter-spacing: 0.01em;
  color: var(--ab-white);
}
.ab-hero-thumb-two {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 0%);
  left: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-thumb-two {
    position: static;
    left: 0;
    transform: none;
    text-align: center;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-hero-thumb-two img {
    width: 85%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-hero-thumb-two img {
    width: 65%;
  }
}
.ab-hero-thumb-three {
  margin-top: -20px;
}
.ab-hero-thumb-three-text {
  font-family: var(--Kanit);
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  opacity: 0.64;
  -webkit-text-stroke: 2px #BCBCBC; /* Width and Color */
  color: transparent; /* Text fill color */
  transform: translateY(-40px);
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-hero-thumb-three-text {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-thumb-three-text {
    font-size: 50px;
    transform: translateY(-30px);
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-hero-thumb-three-text {
    font-size: 110px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-hero-thumb-three-text {
    font-size: 88px;
    padding-left: 0px;
  }
}
.ab-hero .ab-hero-shape2 {
  position: a;
  position: absolute;
  bottom: -57px;
  right: 126px;
}
.ab-hero-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  column-gap: 50px;
}
.ab-hero-social a {
  color: var(--ab-white);
}
.ab-hero-shape-1 {
  bottom: 80px;
  right: 120px;
}
.ab-hero-shape-2 {
  left: 0;
  bottom: 0;
}
.ab-hero-shape-3 {
  left: 200px;
  top: 200px;
}
.ab-hero-shape-4 {
  right: 300px;
  top: 80px;
  background-color: var(--ab-bg);
  border-radius: 0 0 95px 95px;
  padding: 115px 11px 15px 11px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-hero-shape-4 {
    padding: 70px 11px 15px 11px;
    right: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-hero-shape-4 {
    padding: 70px 11px 15px 11px;
    right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-hero-shape-4 {
    padding: 115px 11px 15px 11px;
    right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-shape-4 {
    display: none;
  }
}
.ab-hero-shape-two-1 {
  bottom: 5px;
  left: 308px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-hero-shape-two-1 {
    left: 108px;
  }
}
.ab-hero-shape-two-2 {
  bottom: 0;
  left: 0;
}
.ab-hero-shape-three-1 {
  top: 175px;
  right: 110px;
  z-index: 1;
}
.ab-hero-shape-three-2 {
  top: 200px;
  left: 75px;
  z-index: 1;
}
.ab-hero-review-rating {
  font-weight: 700;
  font-size: 48px;
  color: var(--ab-primary);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.ab-hero-review-member {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  column-gap: 12px;
  align-items: center;
}
.ab-hero-title {
  font-weight: 700;
  font-size: 156px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: var(--ab-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-hero-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-title {
    font-size: 45px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-hero-title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-hero-title {
    font-size: 110px;
    padding-left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-hero-title {
    font-size: 86px;
    padding-left: 0px;
  }
}
.ab-hero-title-two {
  font-weight: 700;
  font-size: 172px;
  line-height: 1.09;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 1600px) and (max-width: 2000px) {
  .ab-hero-title-two {
    font-size: 160px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-hero-title-two {
    font-size: 130px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-hero-title-two {
    font-size: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-hero-title-two {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-hero-title-two {
    font-size: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-title-two {
    font-size: 70px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .ab-hero-title-two {
    font-size: 45px;
    padding-left: 0;
  }
}
.ab-hero-title-three {
  font-weight: 600;
  font-size: 88px;
  line-height: 114%;
  letter-spacing: 0.01em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-hero-title-three {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-hero-title-three {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .ab-hero-title-three {
    font-size: 50px;
    padding-left: 0;
  }
}
.ab-hero-title-three span {
  font-weight: 600;
  font-size: 88px;
  line-height: 114%;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .ab-hero-title-three span {
    font-size: 50px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-hero-title-three span {
    font-size: 60px;
  }
}
.ab-hero-title-right {
  color: black;
  text-shadow: -1px -1px 0 var(--ab-primary), 1px -1px 0 var(--ab-primary), -1px 1px 0 var(--ab-primary), 1px 1px 0 var(--ab-primary);
}
.ab-hero-title-white {
  color: var(--ab-white);
}
.ab-hero-content {
  padding: 235px 0 150px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-content {
    padding: 120px 0 80px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-hero-content .fs-18 br {
    display: none;
  }
}
.ab-hero-content-two {
  padding: 200px 0 100px;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-hero-content-two {
    padding: 120px 0 100px;
  }
}
.ab-hero-content-three {
  padding: 235px 0 54px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-hero-content-three {
    padding: 120px 0 0px;
  }
}

.hero-info {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  position: absolute;
  top: 82px;
  color: #B1B4BA;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100px;
  height: 100%;
  row-gap: 101px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-info {
    width: 70px;
  }
}
.hero-info .hero-info-text {
  transform: rotate(-90deg);
  display: block ruby;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-left: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-info .hero-info-text {
    display: none;
  }
}
.hero-info .hero-info-text:hover {
  color: var(--ab-primary);
}

.ab-blog {
  background-repeat: no-repeat;
}
.ab-blog-calender {
  position: absolute;
  transform: rotate(270deg);
  transform-origin: 0 0;
  display: block ruby;
  bottom: -56px;
  left: 0px;
  padding: 15px 42px;
  background: var(--ab-primary);
}
.ab-blog-calender span {
  color: var(--ab-bg);
}
.ab-blog-calender-one {
  background-color: var(--ab-primary);
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 24px 8px 32px;
  /* same shape as your SVG */
  clip-path: polygon(29px 0, 100% 0, 100% 100%, 0 100%);
}
.ab-blog-calender-one span {
  color: var(--ab-bg);
}
.ab-blog-heading {
  column-gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ab-blog-thumb > img {
  width: 100%;
  height: 272px;
  object-fit: cover;
}
.ab-blog-thumb-two-shape {
  bottom: -10px;
  left: 0;
}
.ab-blog-item {
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--ab-bg);
  height: 100%;
}
.ab-blog-item-midle .ab-blog-content-body {
  position: absolute;
  z-index: 1;
  bottom: 0;
}
.ab-blog-content-body {
  padding: 30px 24px;
}
.ab-blog-content-body .fs-32:hover {
  color: var(--ab-primary);
  -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: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-blog-content-body .date_blog {
    flex-wrap: wrap;
    gap: 13px !important;
  }
}
.ab-blog-date-blog {
  font-weight: 500;
  color: var(--ab-dark);
  font-size: 15px;
  position: relative;
  border-bottom: 1px solid var(--ab-border);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-blog-date-blog span {
    font-size: 15px;
  }
}
.ab-blog-date-blog-two {
  width: 52px;
  height: 52px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-bg);
  background-color: var(--ab-primary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-details-processbreak li {
    align-items: start !important;
  }
  .blog-details-processbreak .ml-6 {
    margin-left: 0;
  }
}
.blog-details-comment-item {
  border-bottom: 1px solid rgba(188, 188, 188, 0.12);
}
.blog-details-comment-item-reply {
  border: 0;
  padding-right: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-details-comment-item-reply {
    padding-right: 0;
  }
}
.blog-details-comment-desc {
  color: #464e5e;
}
.blog-details-comment-btn {
  background-color: var(--ab-primary);
  border-radius: 20px;
  padding: 4px 16px;
  color: var(--ab-bg);
  font-family: var(--Kanit);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}
.blog-details-comment-btn:hover {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--ab-dark);
  color: var(--ab-white);
}
.blog-details-comment-btn-reply {
  background-color: var(--ab-dark);
  color: var(--ab-white);
}
.blog-details-comment-btn-reply:hover {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--ab-primary);
  color: var(--ab-bg);
}
.blog-details-menu {
  padding: 32px;
  background-color: var(--ab-dark);
  border-radius: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-details-menu {
    padding: 20px;
  }
}
.blog-details-menu-item:hover {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.blog-details-menu-item:hover span {
  color: var(--ab-primary);
}
.blog-details-tag {
  padding: 32px;
  background-color: var(--ab-dark);
  border-radius: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-details-tag {
    padding: 20px;
  }
}
.blog-details-tag-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-details-tag-item {
  border-radius: 100px;
  padding: 4px 16px;
  background-color: var(--ab-bg);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--ab-white);
}
.blog-details-tag-item:hover {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--ab-primary);
  color: var(--ab-bg);
}
.blog-details-recentPost {
  padding: 32px;
  background-color: var(--ab-dark);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-details-recentPost {
    padding: 20px;
  }
}
.blog-details-title {
  border-bottom: 1px solid rgba(188, 188, 188, 0.12);
  padding-bottom: 10px;
}
.blog-details-title-two {
  padding-bottom: 24px;
}
.blog-details-search {
  padding: 32px;
  background-color: var(--ab-dark);
  border-radius: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-details-search {
    padding: 20px;
  }
}
.blog-details-search-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  background-color: var(--ab-bg);
  align-items: center;
  border-radius: 110px;
  padding: 16px;
}
.blog-details-search-icon {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: var(--ab-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-faq-trusted {
    padding: 50px 0;
  }
}
.ab-faq-shape-1 {
  top: 0;
  left: -24px;
}
.ab-faq-trusted-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--ab-black);
}
.ab-faq-trusted-icon {
  font-size: 80px;
  color: var(--ab-black);
}
.ab-faq .ab-accordion-item {
  border: 1px solid var(--ab-border);
  border-left: 0;
  border-right: 0;
  margin-top: -1px;
  padding: 30px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-faq .ab-accordion-item {
    padding: 20px 0;
  }
}
.ab-faq .ab-accordion-body {
  padding: 0 40px 0 0;
}
.ab-faq .ab-accordion-button {
  font-weight: 700;
  font-size: 24px;
  font-family: var(--Teko);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ab-white);
  display: block;
  width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-faq .ab-accordion-button {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-faq .ab-accordion-button {
    font-size: 22px;
  }
}
.ab-faq .ab-accordion-button span {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding-right: 12px;
}
.ab-faq .accordion-header {
  margin-bottom: 0;
}
.ab-faq .accordion-header:hover .accordion-btn-icon {
  transition: transform 0.3s ease-in-out;
  transform: translateX(80px);
  background-color: var(--ab-primary);
}
.ab-faq .accordion-header:hover .accordion-btn-icon svg path {
  fill: var(--ab-bg);
}
.ab-faq .accordion-header:hover .accordion-btn {
  transition: transform 0.3s ease-in-out;
  transform: translateX(-55px);
  color: var(--ab-primary);
}
.ab-faq .accordion-btn {
  transform: translateX(0px);
  color: var(--ab-white);
  font-family: var(--Kanit);
}
.ab-faq .accordion-btn-wrapper {
  width: 205px;
  /* display: inline-block; */
  /* width: 25%; */
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
}
.ab-faq .accordion-btn-icon {
  border: 1px solid var(--ab-primary);
  border-radius: 100px;
  text-align: center;
  min-width: 32px;
  height: 32px;
  line-height: 26px;
}

.abprice__area {
  position: relative;
}
.abprice__area .abprice-shape-1 {
  position: absolute;
  top: 258px;
  right: 282px;
}
@media only screen and (min-width: 1600px) and (max-width: 2000px) {
  .abprice__area .abprice-shape-1 {
    right: 162px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .abprice__area .abprice-shape-1 {
    display: none;
  }
}
.abprice__area .abprice-shape-2 {
  position: absolute;
  top: 40%;
  left: 170px;
}

.abprice {
  background-color: var(--ab-bg);
  border: 1px solid var(--ab-border);
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.abprice__titleBtn {
  display: inline-flex;
  column-gap: 24px;
}
.abprice__titleBtn-one {
  padding: 0px 12px 12px 12px;
  font-family: var(--Kanit);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-white) !important;
}
.abprice__titleBtn-one.active {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.16) 0%, rgba(204, 255, 0, 0.16) 100%);
  border-radius: 8px;
  padding: 0px 12px 12px 12px;
  font-family: var(--Kanit);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-white);
}
.abprice__titleBtn-three {
  border-radius: 22px;
  width: 41px;
  height: 20px;
  font-family: var(--Teko);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--ab-bg);
  background-color: var(--ab-primary);
  display: inline-block;
  margin-top: -2px;
}
.abprice__btn {
  background-color: var(--ab-dark);
  color: var(--ab-white);
  position: relative;
  border: 1px solid var(--ab-dark);
  padding: 16px 35px;
  border-radius: 100px;
}
.abprice__btn svg {
  transform: rotate(45deg);
}
.abprice__btn svg path {
  fill: var(--ab-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .abprice__btn {
    padding: 16px 28px;
  }
}
.abprice__btn::before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--ab-primary);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100px;
}
.abprice__btn:hover {
  color: var(--ab-bg) !important;
  z-index: 2;
  position: relative;
}
.abprice__btn:hover::before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  z-index: -2;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.abprice__btn:hover svg {
  transform: rotate(45deg);
}
.abprice__btn:hover svg path {
  fill: var(--ab-bg);
}
.abprice-midle {
  border: 1px solid var(--ab-primary);
}
.abprice__shape {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.abprice:hover .abprice__shape {
  visibility: visible;
  opacity: 1;
}
.abprice__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 114%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--ab-white);
}
.abprice__subtitle {
  background: var(--ab-bg);
  box-shadow: var(--ab-box-shadow);
  text-align: center;
  padding: 12px 20px;
  border-radius: 11px;
  position: absolute;
  top: -39px;
}
.abprice-btn {
  padding: 16px 35px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ab-white);
  border-radius: 32px;
  background-color: var(--ab-dark);
  text-align: center;
}
.abprice__price {
  background-color: var(--ab-dark);
  padding: 60px 0 40px;
  border-radius: 10px;
}
.abprice__price .ab-section-title {
  color: var(--ab-primary) !important;
}
.abprice__price__icon {
  width: 45px;
  height: 45px;
  border-radius: 7px;
  text-align: center;
  line-height: 45px;
}
.abprice__line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #57595C;
}
.abprice__futures {
  padding: 48px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .abprice__futures {
    padding: 24px;
  }
}
.abprice__futures li {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 25px;
}
.abprice__futures li span {
  margin-left: 10px;
}

.ab-showcase {
  border-top: 1px solid rgba(188, 188, 188, 0.24);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-showcase {
    border: 0;
  }
}
.ab-showcase-shape-1 {
  left: 0;
  top: 0;
}
.ab-showcase-shape-2 {
  top: 0;
  left: 0;
}
.ab-showcase-shape-3 {
  top: 145px;
  right: 34px;
}
.ab-showcase-card {
  border-left: 1px solid rgba(188, 188, 188, 0.24);
  border-right: 1px solid rgba(188, 188, 188, 0.24);
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 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), only screen and (min-width: 576px) and (max-width: 767px) {
  .ab-showcase-card {
    border: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-showcase-card {
    border: 0;
  }
}
.ab-showcase-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ab-primary);
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  position: relative;
}
.ab-showcase-subtitle::before {
  background: linear-gradient(90deg, #090808 0%, #cf0 100%);
  content: "";
  display: block;
  width: 32px;
  height: 1px;
}
.ab-showcase-subtitle::after {
  background-color: var(--ab-primary);
  position: absolute;
  content: "";
  display: block;
  border-radius: 40px;
  width: 8px;
  height: 8px;
  left: 32px;
}
.ab-showcase-box {
  transform: rotate(270deg);
  transform-origin: 0 0;
  position: absolute;
  top: 100%;
  gap: 20px;
  padding-bottom: 20px;
  width: 460px;
  left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-showcase-box {
    width: 340px;
  }
}
.ab-showcase-box-two {
  left: -140px;
}
@media (max-width: 991.98px) {
  .ab-showcase-box {
    transform: unset;
    position: static;
    width: 100%;
    transition: unset;
  }
}
.ab-showcase-item {
  gap: 60px;
}
.ab-showcase-item-innerpages .ab-showcase-card {
  padding: 0;
  border: 0;
  margin-bottom: 0;
}
.ab-showcase-item-innerpages .ab-showcase-card img {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-showcase .ab-showcase-thumb {
    width: 520px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-showcase .ab-showcase-thumb {
    width: 566px;
  }
}
@media (max-width: 991.98px) {
  .ab-showcase .ab-showcase-thumb {
    transform: unset;
    height: unset;
    width: 100%;
    margin-left: 0;
  }
}

.ab-breadcrum {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 230px 0px 150px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ab-breadcrum {
    padding: 150px 0px 80px;
  }
}
.ab-breadcrum-shape-2 {
  right: 0;
  bottom: 0;
}
.ab-breadcrum-shape-1 {
  right: 100px;
  bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-breadcrum-shape-1 {
    right: 0;
    bottom: 0;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-breadcrum-shape-1 {
    right: 0;
    bottom: 0;
    width: 30%;
  }
}
.ab-breadcrum-title {
  font-family: var(--Teko);
  font-weight: 700;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ab-breadcrum-title {
    font-size: 38px;
  }
}
.ab-breadcrum__content {
  z-index: 3;
  position: relative;
}
.ab-breadcrum__content__menu {
  display: inline-flex;
}
.ab-breadcrum__content__menu a {
  opacity: 0.7;
}
.ab-breadcrum__content__menu li {
  margin-right: 10px;
  font-family: var(--Kanit);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--ab-white);
  text-transform: capitalize !important;
}
.ab-breadcrum__content__menu li i {
  font-size: 15px;
}

.marquee {
  overflow-x: clip;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee svg {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .marquee svg {
    width: 50px;
    height: 50px;
  }
}
.marquee-item span {
  font-weight: 700;
  font-size: 48px;
  line-height: 0.99;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-white);
  padding: 0 40px;
  font-family: var(--Teko);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .marquee-item span {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item span svg {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .marquee-item span svg {
    width: 40px;
    height: 40px;
  }
}
.marquee-item-text {
  font-family: var(--Teko);
  font-weight: 700;
  font-size: 100px;
  line-height: 108%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item-text {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .marquee-item-text {
    font-size: 50px;
  }
}
.marquee-item-text-pri {
  color: var(--ab-primary);
}
.marquee-item-text-two {
  color: var(--ab-dark);
  text-shadow: -1px -1px 0 var(--ab-primary), 1px -1px 0 var(--ab-primary), -1px 1px 0 var(--ab-primary), 1px 2px 0 var(--ab-primary);
}
.marquee-item.style-1 {
  display: inline-flex;
  column-gap: 24px;
}

.marque-section-2 {
  transform: rotate(-2deg);
  z-index: 9;
  position: relative;
  top: 55px;
  background-color: var(--ab-primary);
}
.marque-section-2 .marquee-item span {
  color: var(--ab-bg);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .marque-section-2 {
    transform: rotate(0deg);
    top: 0;
  }
}
.marque-section-3 {
  transform: rotate(2deg);
  z-index: 10;
  position: relative;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
  background: var(--ab-bg);
  left: -10px;
  top: -36px;
  overflow-x: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .marque-section-3 {
    transform: rotate(0deg);
    top: 0;
  }
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 9;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .marquee-wrapper {
    height: 70px;
  }
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}
.marquee-item.style-1 .text-slider {
  padding-right: 101px;
}
.marquee-item.style-1 .text-style {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  padding-right: 27px;
}
.marquee-item.style-1 .text-style:hover {
  color: var(--ab-primary);
  background-size: 100% 3px;
  opacity: 0.7;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .mt-75 {
    margin-top: 20px;
  }
}

.ab-footer {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}
.ab-footer-contact {
  border-top: 1px solid var(--ab-border2);
}
.ab-footer-contact-select {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.ab-footer-title {
  font-weight: 700;
  font-size: 148px;
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--ab-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-footer-title {
    font-size: 100px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-footer-title {
    font-size: 70px;
    margin-bottom: 50px;
  }
}
.ab-footer-social {
  border-radius: 4px;
  width: 40px;
  height: 40px;
  background-color: var(--ab-bg);
  line-height: 40px;
  text-align: center;
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ab-footer-social-area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  column-gap: 12px;
}
.ab-footer-social:hover {
  background-color: var(--ab-primary);
}
.ab-footer-social:hover path {
  fill: var(--ab-black);
}
.ab-footer-midle {
  padding: 16px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-footer-midle .pt-119 {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 30px;
  }
}
.ab-footer-midle-three {
  border-bottom: 1px solid var(--ab-border);
  padding: 0;
}
.ab-footer-midle-logo {
  border-right: 1px solid var(--ab-border);
}
.ab-footer-midle-menu {
  border-left: 1px solid rgba(188, 188, 188, 0.24);
  column-gap: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-footer-midle-menu {
    border: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-footer-midle-menu .pt-120 {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 30px;
  }
}
.ab-footer-midle .main-menu ul li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
  -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: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-footer-midle .main-menu ul li {
    margin-right: 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-footer-midle .main-menu ul li {
    margin-right: 20px;
  }
}
.ab-footer-midle .main-menu ul li:last-child {
  margin-right: 0;
}
.ab-footer-midle .main-menu ul li:hover a,
.ab-footer-midle .main-menu ul li:hover i {
  color: var(--ab-primary);
}
.ab-footer-midle .main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 88px;
}
.ab-footer-midle .main-menu ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 70px;
}
.ab-footer-midle .main-menu ul li a {
  text-transform: uppercase;
  color: var(--ab-white);
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
}
.ab-footer-midle .main-menu ul li i {
  font-size: 12px;
  color: var(--ab-white);
}
.ab-footer-midle .main-menu ul li .sub-menu {
  position: absolute;
  top: 150px;
  left: 0;
  padding: 10px;
  width: 230px;
  background-color: #101010;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-footer-midle .main-menu ul li .sub-menu li {
  margin-right: 0;
  display: block;
  margin-bottom: 7px;
}
.ab-footer-midle .main-menu ul li .sub-menu li:nth-child(2):hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.ab-footer-midle .main-menu ul li .sub-menu li:nth-child(1):hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.ab-footer-midle .main-menu ul li .sub-menu li a {
  color: var(--ab-white);
  position: relative;
  padding: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-footer-midle .main-menu ul li .sub-menu li a::before {
  content: "";
  height: 3px;
  width: 10px;
  visibility: hidden;
  opacity: 0;
  background-color: var(--ab-white);
  margin-bottom: 4px;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ab-footer-midle .main-menu ul li .sub-menu li a:hover {
  transform: translateX(10px);
  color: var(--ab-primary);
}
.ab-footer-midle .main-menu ul li .sub-menu li a:hover::before {
  display: inline-block;
  visibility: visible;
  opacity: 1;
  background-color: var(--ab-primary);
}
.ab-footer-midle .main-menu ul li .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  top: 110%;
}
.ab-footer-btn {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background-color: #101010;
  transform: rotate(27deg);
  color: var(--ab-white);
  line-height: 56px;
  border-radius: 112px;
  display: inline-flex;
  column-gap: 15px;
  align-items: center;
  justify-content: center;
  width: 213px;
  height: 56px;
  left: -30px;
  top: 60px;
  position: absolute;
}
@media (max-width: 767px) {
  .ab-footer-btn {
    display: none;
  }
}
.ab-footer-btn:visited {
  color: var(--ab-white);
}
.ab-footer-btn cite {
  border-radius: 100px;
  width: 8px;
  height: 8px;
  background-color: var(--ab-primary);
  display: inline-block;
}
.ab-footer-btn-2 {
  transform: rotate(-27deg);
  right: -30px;
  top: 60px;
  left: inherit;
}
.ab-footer-newsletter-title {
  font-weight: 700;
  font-size: 172px;
  letter-spacing: -0.01em;
  color: var(--ab-white);
  text-align: center;
}
.ab-footer-newsletter-title-3 {
  font-weight: 700;
  font-size: 290px;
  color: var(--ab-white);
  text-align: center;
  font-family: var(--Teko);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-footer-newsletter-title-3 {
    font-size: 250px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ab-footer-newsletter-title-3 {
    font-size: 250px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-footer-newsletter-title-3 {
    font-size: 110px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-footer-newsletter-title-3 {
    font-size: 200px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-footer-newsletter-title-3 {
    font-size: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-footer-newsletter-title-3 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .ab-footer-newsletter-title-3 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-footer-newsletter-title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-footer-newsletter-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-footer-newsletter-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-footer-newsletter-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .ab-footer-newsletter-title {
    font-size: 50px;
  }
}
.ab-footer-newsletter-title-2 {
  color: black;
  text-shadow: -1px -1px 0 var(--ab-primary), 1px -1px 0 var(--ab-primary), -1px 1px 0 var(--ab-primary), 1px 2px 0 var(--ab-primary);
}

.ab-offcanvas-footer {
  border-left: 1px solid var(--ab-border2);
  margin-left: 100px;
  padding-left: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-offcanvas-footer {
    border-left: 1px solid var(--ab-border2);
    margin-left: 40px;
    padding-left: 41px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-offcanvas-footer {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ab-offcanvas-footer {
    margin-left: 0;
    padding-left: 0;
    border: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ab-offcanvas-footer .ml-24 {
    margin-left: 7px;
  }
}

.abfooter_copyright {
  padding-top: 30px;
  margin-top: 30px;
  opacity: 0.9;
}
.abfooter_copyright p {
  color: var(--ab-white);
  opacity: 0.9;
  text-align: center;
}
.abfooter_copyright .information {
  text-align: end;
}
.abfooter_copyright .information a {
  padding: 0 15px;
  font-size: 15px;
  font-weight: 500;
  border-left: 1px solid;
  color: var(--ab-white);
  opacity: 0.9;
}
@media (max-width: 767px) {
  .abfooter_copyright .information a {
    padding: 0 5px;
    margin-top: 15px;
  }
}
.abfooter_copyright .information a:last-child {
  padding-right: 0px;
}
.abfooter_copyright .information a:first-child {
  padding-left: 0;
  border-left: none;
}

.primary-btn {
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}
.primary-btn-one {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  position: relative;
  background-color: var(--ab-primary);
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
  text-transform: capitalize;
  text-align: center;
  padding: 16px 35px;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ab-bg);
  border: 1px solid var(--ab-primary);
  font-family: var(--Kanit);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .primary-btn-one {
    padding: 16px 25px;
  }
}
.primary-btn-one::before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--ab-bg);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.primary-btn-one:hover {
  color: var(--ab-white) !important;
}
.primary-btn-one:hover::before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.primary-btn-one:hover svg {
  transform: rotate(45deg);
}
.primary-btn-one:hover svg path {
  fill: aliceblue;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .primary-btn {
    padding: 16px 28px;
  }
}
.primary-btn-black {
  background-color: var(--ab-bg);
  color: var(--ab-primary);
  position: relative;
  padding: 16px 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .primary-btn-black {
    padding: 16px 28px;
  }
}
.primary-btn-black::before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--ab-primary);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100px;
}
.primary-btn-black:hover {
  color: var(--ab-bg) !important;
  z-index: 2;
  position: relative;
}
.primary-btn-black:hover::before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  z-index: -2;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.primary-btn-black:hover svg {
  transform: rotate(45deg);
}
.primary-btn-black:hover svg path {
  fill: var(--ab-bg);
}
.primary-btn-two {
  background-color: transparent;
  color: var(--ab-primary);
  padding: 0 !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration-skip-ink: none;
}
.primary-btn-two-icon {
  border-radius: 100px;
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 30px;
  background-color: var(--ab-primary);
}
.primary-btn-two-icon-two {
  border-radius: 100px;
  text-align: center;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: var(--ab-primary);
}
.primary-btn-two-icon-three {
  border-radius: 100px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--ab-primary);
}
.primary-btn-two:hover {
  color: var(--ab-primary);
}
.primary-btn-two:hover svg,
.primary-btn-two:hover img {
  transform: rotate(45deg);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.primary-btn-three {
  background: transparent;
  border: 1px solid var(--ab-primary);
  color: var(--ab-white);
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  font-family: var(--Teko);
  border-radius: 100px;
  padding: 22px 47px;
}
.primary-btn-three::before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--ab-primary);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100px;
}
.primary-btn-three:hover {
  color: var(--ab-bg) !important;
  z-index: 2;
  position: relative;
}
.primary-btn-three:hover::before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  z-index: -2;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.primary-btn-three:hover svg {
  transform: rotate(45deg);
}
.primary-btn-three:hover svg path {
  fill: var(--ab-bg);
}
.primary-btn-four {
  background: transparent;
  background-color: var(--ab-bg);
  color: var(--ab-white);
  padding: 24px 32px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  font-family: var(--Teko);
  padding: 22px 36px;
  border-radius: 100px;
  position: relative;
}
.primary-btn-four::before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--ab-primary);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100px;
}
.primary-btn-four:hover {
  color: var(--ab-bg) !important;
  z-index: 2;
  position: relative;
}
.primary-btn-four:hover::before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  z-index: -2;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.primary-btn-four:hover svg {
  transform: rotate(45deg);
}
.primary-btn-four:hover svg path {
  fill: var(--ab-bg);
}
.primary-btn-five {
  background: transparent;
  border: 1px solid var(--ab-primary);
  color: var(--ab-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  font-family: var(--Kanit);
  position: relative;
  border-radius: 100px;
  padding: 16px 45px;
}
.primary-btn-five::before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--ab-primary);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100px;
}
.primary-btn-five:hover {
  color: var(--ab-bg) !important;
  z-index: 2;
  position: relative;
}
.primary-btn-five:hover::before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  z-index: -2;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.primary-btn-five:hover svg {
  transform: rotate(45deg);
}
.primary-btn-five:hover svg path {
  fill: var(--ab-bg);
}
.primary-btn-six {
  background: var(--ab-primary);
  color: var(--ab-bg);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--Kanit);
  border-radius: 100px;
  padding: 16px 45px;
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .primary-btn {
    padding: 14px 20px;
    font-size: 16px;
  }
}
.primary-btn i {
  margin-left: 6px;
  position: relative;
  top: 1px;
}

.ab-section-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ab-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-section-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-section-title {
    font-size: 45px;
  }
}
.ab-section-title-2 {
  font-weight: 700;
  font-size: 48px;
  color: black;
  text-shadow: -1px -1px 0 var(--ab-primary), 1px -1px 0 var(--ab-primary), -1px 1px 0 var(--ab-primary), 1px 2px 0 var(--ab-primary);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-section-title-2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-section-title-2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-section-title-home3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ab-section-title-home3 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-section-title-home3 {
    font-size: 42px;
  }
}
.ab-section-subtitle {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: 0.03em;
  color: var(--ab-primary);
  align-items: center;
  display: inline-flex;
}
.ab-section-subtitle::after {
  content: "";
  width: 130px;
  height: 2px;
  background-color: var(--ab-primary);
  display: inline-block;
  margin-left: 10px;
  margin-top: -4px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-section-subtitle::after {
    width: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-section-subtitle::after {
    font-size: 70px;
  }
}
.ab-section-subtitle::before {
  content: "";
  position: absolute;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: var(--ab-primary);
  border-radius: 50%;
  top: 2px;
}
.ab-section-subtitle-white {
  color: var(--ab-white);
}
.ab-section-subtitle-two {
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ab-white);
}
.ab-section-subtitle-three {
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: 0.03em;
  color: var(--ab-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
}
.ab-section-subtitle-home3 {
  border: 1px solid var(--ab-primary);
  border-radius: 96px;
  width: 40px;
  height: 112px;
  font-family: var(--Teko);
  color: var(--ab-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -15px;
}
.ab-section-subtitle-home3 span {
  transform: rotate(-90deg);
  display: block ruby;
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--ab-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-skill-area {
    padding-bottom: 80px;
  }
}
.ab-skill-shape-1 {
  left: 300px;
  top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-skill-shape-1 {
    left: 105px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-skill-shape-1 {
    left: 260px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-skill-shape-1 {
    left: 0px;
    width: 90%;
    top: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-skill-shape-1 {
    display: none;
  }
}
.ab-skill-shape-2 {
  top: 0;
  left: -30px;
}
.ab-skill-top {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .ab-skill-top button {
    position: static !important;
  }
}
.ab-skill-top button:nth-child(1) {
  position: relative;
  top: 0;
  left: 132px;
}
.ab-skill-top button:nth-child(2) {
  transform: rotate(-37deg);
  position: absolute;
  top: 20px;
  left: 343px;
}
.ab-skill-top button:nth-child(3) {
  transform: rotate(-32deg);
  position: absolute;
  top: -20px;
  left: 500px;
}
.ab-skill-top button:nth-child(4) {
  transform: rotate(-32deg);
  position: absolute;
  top: -20px;
  left: 600px;
}
.ab-skill-top button:nth-child(5) {
  transform: rotate(-34deg);
  position: absolute;
  top: -24px;
  right: 465px;
}
.ab-skill-top button:nth-child(6) {
  transform: rotate(-30deg);
  position: absolute;
  top: -28px;
  right: 360px;
}
.ab-skill-top button:nth-child(7) {
  position: absolute;
  top: -20px;
  right: 240px;
}
.ab-skill-top button:nth-child(8) {
  position: absolute;
  top: -20px;
  right: 93px;
}
.ab-skill-heading {
  display: inline-flex;
  column-gap: 30px;
  justify-content: center;
  margin: 0 auto;
}
.ab-skill-btn {
  background-color: var(--ab-bg);
  backdrop-filter: blur(50px);
  border-radius: 32px;
  font-family: var(--Teko);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #faf2ee;
  padding: 12px 30px;
}

.animated-title .letter {
  animation: titleReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(50px) rotateX(90deg);
  transform-origin: bottom center;
  white-space: unset;
}

.letter {
  animation: titleReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(50px) rotateX(90deg);
  transform-origin: bottom center;
  white-space: unset;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  }
  50% {
    opacity: 1;
    text-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
  }
}
.ab-custom-anim-left {
  animation: abfadeinleft 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes abfadeinleft {
  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;
  }
}
.ab-custom-anim-right {
  animation: abfadeinlRight 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes abfadeinlRight {
  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;
  }
}
.ab-custom-anim-top {
  animation: abfadeinlTop 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes abfadeinlTop {
  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;
  }
}
.ab-custom-anim-totop {
  animation: bottomToTop 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes bottomToTop {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.ab-custom-anim-tobottom {
  animation: toptoBottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes toptoBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.ab-custom-anim-zoom-out {
  animation: zoomout 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes zoomout {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.ab-custom-anim-title {
  animation: tpanimtitle 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes tpanimtitle {
  0% {
    transform: scale(0.6) translate3d(0px, 0px, 0px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translate3d(50px 30px 10px 40px);
    opacity: 1;
  }
}
.ripple::before,
.ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--ienet-white-rgb, 255, 255, 255), 0.8);
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.ripple::after {
  animation-delay: 0.5s;
  content: "";
  position: absolute;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
.wave-anim {
  width: 105px;
  height: 69px;
  background-repeat: repeat;
  background-size: auto;
  animation: wave 70s linear infinite;
}

@keyframes wave {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left -2000px;
  }
}
.fancy-animation {
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
.movingX {
  animation: movingX 8s linear infinite;
}

@keyframes movingX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
.movingCar {
  animation: movingCar 25s linear infinite;
}

@keyframes movingCar {
  0% {
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    transform: translateX(calc(-100vw + 108%));
  }
  51% {
    transform: translateX(calc(-100vw + 108%)) rotateY(180deg);
  }
  100% {
    transform: translateX(0) rotateY(180deg);
  }
}
.moving {
  animation: moving 8s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.moving2 {
  animation: moving2 8s linear infinite;
}

@keyframes moving2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.moving3 {
  animation: moving3 8s linear infinite;
}

@keyframes moving3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.jump {
  animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}

@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.spin {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-color-ani,
.color-animate {
  animation: bgColor 6s linear infinite;
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}
.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.splt-txt .whitespace {
  width: 8px;
}
.splt-txt.animated .char {
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.rotate360 {
  animation: rotate360 10s linear infinite;
  -webkit-animation: rotate360 10s linear infinite;
}

.rotate360::before,
.rotate360::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--ienet-white-rgb, 255, 255, 255), 0.8);
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.rotate360::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.rotate360::after {
  animation-delay: 0.5s;
  content: "";
  position: absolute;
}

@keyframes rotate360 {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
#backToTop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  font-size: 20px;
  background-color: var(--ab-primary);
  color: var(--ab-bg);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  z-index: 20;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

#backToTop.visible {
  visibility: visible;
  animation: zoomout 0.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 1;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
#backToTop.visible:hover {
  background-color: var(--ab-primary);
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* Loader css */
.sb-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ab-bg);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sb-page-loader .loader {
  width: 100px;
  height: 100px;
  border: 2px solid;
  border-color: var(--ab-primary) transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ab-mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  z-index: 999999999;
}

.ab-cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 999999999;
  background-color: var(--ab-primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.ab-cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--ab-primary);
  opacity: 0.3;
}

.ab-cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--ab-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.ab-cursor-outer.cursor-hover {
  opacity: 0;
}

.ab-workflow {
  position: relative;
  z-index: 1;
}
.ab-workflow-shape-1 {
  left: 0;
  bottom: 0;
}
.ab-workflow-shape-2 {
  top: 0;
  right: 0;
}
.ab-workflow-shape-3 {
  top: 46px;
  right: 30%;
}

.client_logo-shape-2 {
  top: 0;
  right: 0;
}
.client_logo-shape-1 {
  top: -10px;
  right: 0;
}
.client_logo_item {
  border: 1px solid var(--ab-border);
  padding: 29px;
  margin-top: -1px;
  margin-right: -1px;
  border-top: none;
}
.client_logo_item:last-child {
  border-bottom: none;
}
.client_logo_item:nth-child(7) {
  border-bottom: none;
}
.client_logo_item:nth-child(6) {
  border-bottom: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .client_logo_item:nth-child(6) {
    border-bottom: 1px solid var(--ab-border);
  }
}
.client_logo_item:nth-child(5) {
  border-right: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .client_logo_item {
    padding: 25px 10px;
  }
}
.client_logo_wrapper {
  flex-wrap: wrap;
  border-top: 1px solid var(--ab-border);
}
.client_logo-award {
  backdrop-filter: blur(48px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--ab-primary);
  border-radius: 24px;
  padding: 40px 32px;
}

.error {
  text-align: center;
}
.error-desc {
  opacity: 0.8;
}
.error-title {
  font-family: var(--Teko);
  font-weight: 700;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ab-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .error-title {
    font-size: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
