@charset "UTF-8";
/*=================Scss Indexing=============
1.variables
2.typography
3.spacing
4.reset
5.forms
6.mixins
7.shortcode
8.animations
9.text-animation
10.sal
11.header
12.mobile-menu
13.button
14.nav
15.banner
16.swiper
17.funfacts
18.cta
19.about
20.common
21.service
22.projects
23.working-process
24.blog
25.blog-details
26.footer
27.search-input
28./side-bar
29.team
30.testimonials
31.faq
32.pricing
33.date-picker
34.time-picker
35.appoinment
36.awesome-feedback
37.contact
38.pre-loader.scss
39.back-to-top



==============================================  */
/* Default  */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&amp;family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap');
:root {
  --color-primary: #98ff03;
  --color-secondary: #1f1f25;
  --color-black: #000000;
  --color-bg-1: #f3f4f6;
  --color-bg-2: #ffd7b7;
  --color-bg-3: #daf2ff;
  --color-bg-4: #89d6ff;
  --color-bg-5: #fff5ee;
  --color-bg-dark: #181818;
  --color-bg-dark-2: #0b0b0b;
  --color-border: rgba(3, 7, 18, 0.1);
  --color-border-dark: #2c2c2c;
  --color-heading-1: #030712;
  --color-body-1: #6b7280;
  --color-body-dark: #9a9a9a;
  --color-title: #26262c;
  --color-title-nav: #26262c;
  --color-white: #fff;
  --color-service-heading: rgba(0, 0, 0, 0.8);
  --counter-title: #717383;
  --color-success: #26cf4b;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --subscribe-form:
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.8) 100%
    ),
    #bcbfdb;
  --footer-bg: linear-gradient(
    257deg,
    #deffe6 1.73%,
    rgba(201, 192, 255, 0.08) 98.79%
  );
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: all 0.6s;
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Urbanist', sans-serif;
  --font-three: 'Font Awesome 6 Pro';
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 22px;
  --line-height-b1: 1.5;
  --line-height-b2: 1.5;
  --line-height-b3: 1.5;
  --h1: 100px;
  --h2: 64px;
  --h3: 48px;
  --h4: 40px;
  --h5: 30px;
  --h6: 24px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-secondary);
  color: var(--color-body-1);
  font-weight: var(--p-regular);
  background-color: var(--body-bg);
  position: relative;
  overflow-x: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow-x: visible;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow-x: visible;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow-x: visible;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
  margin: 0;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: var(--font-primary);
  line-height: 1.2;
  color: var(--color-heading-1);
  text-transform: uppercase;
  font-weight: var(--s-medium);
  letter-spacing: -0.04em;
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 1.067;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
}

h3,
.h3 {
  font-size: var(--h3);
}

h4,
.h4 {
  font-size: var(--h4);
}

h5,
.h5 {
  font-size: var(--h5);
}

h6,
.h6 {
  font-size: var(--h6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
  transition: var(--transition);
}

.bg-color-tertiary h1,
.bg-color-tertiary h2,
.bg-color-tertiary h3,
.bg-color-tertiary h4,
.bg-color-tertiary h5,
.bg-color-tertiary h6,
.bg-color-tertiary .h1,
.bg-color-tertiary .h2,
.bg-color-tertiary .h3,
.bg-color-tertiary .h4,
.bg-color-tertiary .h5,
.bg-color-tertiary .h6 {
  color: #fff;
}
.bg-color-tertiary p {
  color: #6c7279;
}
.bg-color-tertiary a {
  color: #6c7279;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 38px;
  }

  h2,
  .h2 {
    font-size: 32px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h5,
  .h5 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 34px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 20px;
  }
}
p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: 500;
  color: var(--color-body-1);
  margin: 0 0 20px;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
p.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}
p.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}
p.has-large-font-size {
  line-height: 1.5;
  font-size: 36px;
}
p.has-medium-font-size {
  font-size: 24px;
  line-height: 36px;
}
p.has-small-font-size {
  font-size: 13px;
}
p.has-very-light-gray-color {
  color: var(--color-white);
}
p.has-background {
  padding: 20px 30px;
}
p.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}
p.b2 {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
}
p.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}
p:last-child {
  margin-bottom: 0;
}

.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}

.b2 {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
}

.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}

.b4 {
  font-size: var(--font-size-b4);
  line-height: var(--line-height-b4);
}

a {
  transition: var(--transition);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px;
  width: 100%;
}

table a,
table a:link,
table a:visited {
  text-decoration: none;
}

cite,
.wp-block-pullquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
  color: var(--color-heading);
}

var {
  font-family: var(--font-primary);
}

/*---------------------------
	List Style 
---------------------------*/
ul,
ol {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}
ul.liststyle.bullet li {
  font-size: 18px;
  line-height: 30px;
  color: var(--color-body-1);
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  ul.liststyle.bullet li {
    padding-left: 19px;
  }
}
ul.liststyle.bullet li::before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--color-body-1);
  left: 0;
  top: 10px;
}
ul.liststyle.bullet li + li {
  margin-top: 8px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body-1);
}
ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul li a:hover {
  color: var(--color-primary);
}
ul ul {
  margin-bottom: 0;
}

ol {
  margin-bottom: 30px;
}
ol li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  color: var(--color-body-1);
  margin-top: 10px;
  margin-bottom: 10px;
}
ol li a {
  color: var(--color-heading);
  text-decoration: none;
}
ol li a:hover {
  color: var(--color-primary);
}
ol ul {
  padding-left: 30px;
}

.typo-title-area .title {
  margin-top: 0;
}

.paragraph-area p.disc {
  margin-bottom: 20px;
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 64px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}

/*=========================
    Section Separation 
==========================*/
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

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

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

.m--0 {
  margin: 0;
}

.p--0 {
  padding: 0;
}

.wpr-section-gap {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gap {
    padding: 60px 0;
  }
}

.wpr-section-gapBottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gapBottom {
    padding-bottom: 60px;
  }
}

.wpr-section-gapTop {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gapTop {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gapTop {
    padding-top: 60px;
  }
}

.wpr-section-gap2 {
  padding: 130px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gap2 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gap2 {
    padding: 60px 0;
  }
}

.wpr-section-gap2Bottom {
  padding-bottom: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gap2Bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gap2Bottom {
    padding-bottom: 60px;
  }
}

.wpr-section-gap2Top {
  padding-top: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gap2Top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gap2Top {
    padding-top: 60px;
  }
}

.wpr-section-gap3 {
  padding: 150px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gap3 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gap3 {
    padding: 60px 0;
  }
}

.wpr-section-gap3Bottom {
  padding-bottom: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gap3Bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gap3Bottom {
    padding-bottom: 60px;
  }
}

.wpr-section-gap3Top {
  padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-section-gap3Top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-section-gap3Top {
    padding-top: 60px;
  }
}

.pl--0 {
  padding-left: 0;
}

.pr--0 {
  padding-right: 0;
}

.pt--0 {
  padding-top: 0;
}

.pb--0 {
  padding-bottom: 0;
}

.mr--0 {
  margin-right: 0;
}

.ml--0 {
  margin-left: 0;
}

.mt--0 {
  margin-top: 0;
}

.mb--0 {
  margin-bottom: 0;
}

.ptb--5 {
  padding: 5px 0;
}

.plr--5 {
  padding: 0 5px;
}

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

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

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

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

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

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

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

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

.ptb--10 {
  padding: 10px 0;
}

.plr--10 {
  padding: 0 10px;
}

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

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

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

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

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

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

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

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

.ptb--15 {
  padding: 15px 0;
}

.plr--15 {
  padding: 0 15px;
}

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

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

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

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

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

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

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

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

.ptb--20 {
  padding: 20px 0;
}

.plr--20 {
  padding: 0 20px;
}

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

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

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

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

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

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

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

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

.ptb--25 {
  padding: 25px 0;
}

.plr--25 {
  padding: 0 25px;
}

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

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

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

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

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

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

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

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

.ptb--30 {
  padding: 30px 0;
}

.plr--30 {
  padding: 0 30px;
}

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

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

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

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

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

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

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

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

.ptb--35 {
  padding: 35px 0;
}

.plr--35 {
  padding: 0 35px;
}

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

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

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

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

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

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

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

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

.ptb--40 {
  padding: 40px 0;
}

.plr--40 {
  padding: 0 40px;
}

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

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

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

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

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

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

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

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

.ptb--45 {
  padding: 45px 0;
}

.plr--45 {
  padding: 0 45px;
}

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

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

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

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

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

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

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

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

.ptb--50 {
  padding: 50px 0;
}

.plr--50 {
  padding: 0 50px;
}

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

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

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

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

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

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

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

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

.ptb--55 {
  padding: 55px 0;
}

.plr--55 {
  padding: 0 55px;
}

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

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

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

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

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

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

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

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

.ptb--60 {
  padding: 60px 0;
}

.plr--60 {
  padding: 0 60px;
}

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

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

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

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

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

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

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

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

.ptb--65 {
  padding: 65px 0;
}

.plr--65 {
  padding: 0 65px;
}

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

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

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

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

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

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

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

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

.ptb--70 {
  padding: 70px 0;
}

.plr--70 {
  padding: 0 70px;
}

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

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

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

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

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

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

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

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

.ptb--75 {
  padding: 75px 0;
}

.plr--75 {
  padding: 0 75px;
}

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

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

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

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

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

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

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

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

.ptb--80 {
  padding: 80px 0;
}

.plr--80 {
  padding: 0 80px;
}

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

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

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

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

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

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

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

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

.ptb--85 {
  padding: 85px 0;
}

.plr--85 {
  padding: 0 85px;
}

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

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

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

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

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

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

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

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

.ptb--90 {
  padding: 90px 0;
}

.plr--90 {
  padding: 0 90px;
}

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

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

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

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

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

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

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

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

.ptb--95 {
  padding: 95px 0;
}

.plr--95 {
  padding: 0 95px;
}

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

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

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

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

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

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

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

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

.ptb--100 {
  padding: 100px 0;
}

.plr--100 {
  padding: 0 100px;
}

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

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

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

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

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

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

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

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

.ptb--105 {
  padding: 105px 0;
}

.plr--105 {
  padding: 0 105px;
}

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

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

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

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

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

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

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

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

.ptb--110 {
  padding: 110px 0;
}

.plr--110 {
  padding: 0 110px;
}

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

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

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

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

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

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

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

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

.ptb--115 {
  padding: 115px 0;
}

.plr--115 {
  padding: 0 115px;
}

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

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

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

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

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

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

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

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

.ptb--120 {
  padding: 120px 0;
}

.plr--120 {
  padding: 0 120px;
}

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

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

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

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

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

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

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

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

.ptb--125 {
  padding: 125px 0;
}

.plr--125 {
  padding: 0 125px;
}

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

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

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

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

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

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

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

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

.ptb--130 {
  padding: 130px 0;
}

.plr--130 {
  padding: 0 130px;
}

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

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

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

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

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

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

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

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

.ptb--135 {
  padding: 135px 0;
}

.plr--135 {
  padding: 0 135px;
}

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

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

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

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

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

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

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

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

.ptb--140 {
  padding: 140px 0;
}

.plr--140 {
  padding: 0 140px;
}

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

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

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

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

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

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

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

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

.ptb--145 {
  padding: 145px 0;
}

.plr--145 {
  padding: 0 145px;
}

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

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

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

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

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

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

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

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

.ptb--150 {
  padding: 150px 0;
}

.plr--150 {
  padding: 0 150px;
}

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

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

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

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

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

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

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

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

.ptb--155 {
  padding: 155px 0;
}

.plr--155 {
  padding: 0 155px;
}

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

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

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

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

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

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

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

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

.ptb--160 {
  padding: 160px 0;
}

.plr--160 {
  padding: 0 160px;
}

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

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

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

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

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

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

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

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

.ptb--165 {
  padding: 165px 0;
}

.plr--165 {
  padding: 0 165px;
}

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

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

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

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

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

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

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

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

.ptb--170 {
  padding: 170px 0;
}

.plr--170 {
  padding: 0 170px;
}

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

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

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

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

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

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

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

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

.ptb--175 {
  padding: 175px 0;
}

.plr--175 {
  padding: 0 175px;
}

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

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

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

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

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

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

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

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

.ptb--180 {
  padding: 180px 0;
}

.plr--180 {
  padding: 0 180px;
}

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

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

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

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

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

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

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

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

.ptb--185 {
  padding: 185px 0;
}

.plr--185 {
  padding: 0 185px;
}

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

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

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

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

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

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

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

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

.ptb--190 {
  padding: 190px 0;
}

.plr--190 {
  padding: 0 190px;
}

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

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

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

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

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

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

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

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

.ptb--195 {
  padding: 195px 0;
}

.plr--195 {
  padding: 0 195px;
}

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

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

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

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

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

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

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

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

.ptb--200 {
  padding: 200px 0;
}

.plr--200 {
  padding: 0 200px;
}

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .ptb_lp--5 {
    padding: 5px 0;
  }

  .plr_lp--5 {
    padding: 0 5px;
  }

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

  .pb_lp--5 {
    padding-bottom: 5px;
  }

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

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

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

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

  .ptb_lp--10 {
    padding: 10px 0;
  }

  .plr_lp--10 {
    padding: 0 10px;
  }

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

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

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

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

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

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

  .ptb_lp--15 {
    padding: 15px 0;
  }

  .plr_lp--15 {
    padding: 0 15px;
  }

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

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

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

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

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

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

  .ptb_lp--20 {
    padding: 20px 0;
  }

  .plr_lp--20 {
    padding: 0 20px;
  }

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

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

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

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

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

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

  .ptb_lp--25 {
    padding: 25px 0;
  }

  .plr_lp--25 {
    padding: 0 25px;
  }

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

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

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

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

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

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

  .ptb_lp--30 {
    padding: 30px 0;
  }

  .plr_lp--30 {
    padding: 0 30px;
  }

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

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

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

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

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

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

  .ptb_lp--35 {
    padding: 35px 0;
  }

  .plr_lp--35 {
    padding: 0 35px;
  }

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

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

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

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

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

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

  .ptb_lp--40 {
    padding: 40px 0;
  }

  .plr_lp--40 {
    padding: 0 40px;
  }

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

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

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

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

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

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

  .ptb_lp--45 {
    padding: 45px 0;
  }

  .plr_lp--45 {
    padding: 0 45px;
  }

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

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

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

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

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

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

  .ptb_lp--50 {
    padding: 50px 0;
  }

  .plr_lp--50 {
    padding: 0 50px;
  }

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

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

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

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

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

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

  .ptb_lp--55 {
    padding: 55px 0;
  }

  .plr_lp--55 {
    padding: 0 55px;
  }

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

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

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

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

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

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

  .ptb_lp--60 {
    padding: 60px 0;
  }

  .plr_lp--60 {
    padding: 0 60px;
  }

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

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

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

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

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

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

  .ptb_lp--65 {
    padding: 65px 0;
  }

  .plr_lp--65 {
    padding: 0 65px;
  }

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

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

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

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

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

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

  .ptb_lp--70 {
    padding: 70px 0;
  }

  .plr_lp--70 {
    padding: 0 70px;
  }

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

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

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

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

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

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

  .ptb_lp--75 {
    padding: 75px 0;
  }

  .plr_lp--75 {
    padding: 0 75px;
  }

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

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

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

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

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

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

  .ptb_lp--80 {
    padding: 80px 0;
  }

  .plr_lp--80 {
    padding: 0 80px;
  }

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

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

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

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

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

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

  .ptb_lp--85 {
    padding: 85px 0;
  }

  .plr_lp--85 {
    padding: 0 85px;
  }

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

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

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

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

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

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

  .ptb_lp--90 {
    padding: 90px 0;
  }

  .plr_lp--90 {
    padding: 0 90px;
  }

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

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

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

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

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

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

  .ptb_lp--95 {
    padding: 95px 0;
  }

  .plr_lp--95 {
    padding: 0 95px;
  }

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

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

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

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

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

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

  .ptb_lp--100 {
    padding: 100px 0;
  }

  .plr_lp--100 {
    padding: 0 100px;
  }

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

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

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

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

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

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

  .ptb_lp--105 {
    padding: 105px 0;
  }

  .plr_lp--105 {
    padding: 0 105px;
  }

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

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

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

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

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

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

  .ptb_lp--110 {
    padding: 110px 0;
  }

  .plr_lp--110 {
    padding: 0 110px;
  }

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

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

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

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

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

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

  .ptb_lp--115 {
    padding: 115px 0;
  }

  .plr_lp--115 {
    padding: 0 115px;
  }

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

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

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

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

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

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

  .ptb_lp--120 {
    padding: 120px 0;
  }

  .plr_lp--120 {
    padding: 0 120px;
  }

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

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

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

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

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

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

  .ptb_lp--125 {
    padding: 125px 0;
  }

  .plr_lp--125 {
    padding: 0 125px;
  }

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

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

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

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

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

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

  .ptb_lp--130 {
    padding: 130px 0;
  }

  .plr_lp--130 {
    padding: 0 130px;
  }

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

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

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

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

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

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

  .ptb_lp--135 {
    padding: 135px 0;
  }

  .plr_lp--135 {
    padding: 0 135px;
  }

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

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

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

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

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

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

  .ptb_lp--140 {
    padding: 140px 0;
  }

  .plr_lp--140 {
    padding: 0 140px;
  }

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

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

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

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

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

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

  .ptb_lp--145 {
    padding: 145px 0;
  }

  .plr_lp--145 {
    padding: 0 145px;
  }

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

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

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

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

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

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

  .ptb_lp--150 {
    padding: 150px 0;
  }

  .plr_lp--150 {
    padding: 0 150px;
  }

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

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

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

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

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

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

  .ptb_lp--155 {
    padding: 155px 0;
  }

  .plr_lp--155 {
    padding: 0 155px;
  }

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

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

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

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

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

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

  .ptb_lp--160 {
    padding: 160px 0;
  }

  .plr_lp--160 {
    padding: 0 160px;
  }

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

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

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

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

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

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

  .ptb_lp--165 {
    padding: 165px 0;
  }

  .plr_lp--165 {
    padding: 0 165px;
  }

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

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

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

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

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

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

  .ptb_lp--170 {
    padding: 170px 0;
  }

  .plr_lp--170 {
    padding: 0 170px;
  }

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

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

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

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

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

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

  .ptb_lp--175 {
    padding: 175px 0;
  }

  .plr_lp--175 {
    padding: 0 175px;
  }

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

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

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

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

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

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

  .ptb_lp--180 {
    padding: 180px 0;
  }

  .plr_lp--180 {
    padding: 0 180px;
  }

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

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

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

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

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

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

  .ptb_lp--185 {
    padding: 185px 0;
  }

  .plr_lp--185 {
    padding: 0 185px;
  }

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

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

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

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

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

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

  .ptb_lp--190 {
    padding: 190px 0;
  }

  .plr_lp--190 {
    padding: 0 190px;
  }

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

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

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

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

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

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

  .ptb_lp--195 {
    padding: 195px 0;
  }

  .plr_lp--195 {
    padding: 0 195px;
  }

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

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

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

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

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

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

  .ptb_lp--200 {
    padding: 200px 0;
  }

  .plr_lp--200 {
    padding: 0 200px;
  }

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

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

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

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

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

  .mb_lp--200 {
    margin-bottom: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ptb_lg--5 {
    padding: 5px 0;
  }

  .plr_lg--5 {
    padding: 0 5px;
  }

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

  .pb_lg--5 {
    padding-bottom: 5px;
  }

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

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

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

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

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

  .ptb_lg--10 {
    padding: 10px 0;
  }

  .plr_lg--10 {
    padding: 0 10px;
  }

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

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

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

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

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

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

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

  .ptb_lg--15 {
    padding: 15px 0;
  }

  .plr_lg--15 {
    padding: 0 15px;
  }

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

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

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

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

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

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

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

  .ptb_lg--20 {
    padding: 20px 0;
  }

  .plr_lg--20 {
    padding: 0 20px;
  }

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

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

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

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

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

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

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

  .ptb_lg--25 {
    padding: 25px 0;
  }

  .plr_lg--25 {
    padding: 0 25px;
  }

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

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

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

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

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

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

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

  .ptb_lg--30 {
    padding: 30px 0;
  }

  .plr_lg--30 {
    padding: 0 30px;
  }

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

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

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

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

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

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

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

  .ptb_lg--35 {
    padding: 35px 0;
  }

  .plr_lg--35 {
    padding: 0 35px;
  }

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

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

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

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

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

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

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

  .ptb_lg--40 {
    padding: 40px 0;
  }

  .plr_lg--40 {
    padding: 0 40px;
  }

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

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

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

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

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

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

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

  .ptb_lg--45 {
    padding: 45px 0;
  }

  .plr_lg--45 {
    padding: 0 45px;
  }

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

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

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

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

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

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

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

  .ptb_lg--50 {
    padding: 50px 0;
  }

  .plr_lg--50 {
    padding: 0 50px;
  }

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

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

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

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

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

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

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

  .ptb_lg--55 {
    padding: 55px 0;
  }

  .plr_lg--55 {
    padding: 0 55px;
  }

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

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

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

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

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

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

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

  .ptb_lg--60 {
    padding: 60px 0;
  }

  .plr_lg--60 {
    padding: 0 60px;
  }

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

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

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

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

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

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

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

  .ptb_lg--65 {
    padding: 65px 0;
  }

  .plr_lg--65 {
    padding: 0 65px;
  }

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

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

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

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

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

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

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

  .ptb_lg--70 {
    padding: 70px 0;
  }

  .plr_lg--70 {
    padding: 0 70px;
  }

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

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

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

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

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

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

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

  .ptb_lg--75 {
    padding: 75px 0;
  }

  .plr_lg--75 {
    padding: 0 75px;
  }

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

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

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

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

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

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

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

  .ptb_lg--80 {
    padding: 80px 0;
  }

  .plr_lg--80 {
    padding: 0 80px;
  }

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

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

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

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

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

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

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

  .ptb_lg--85 {
    padding: 85px 0;
  }

  .plr_lg--85 {
    padding: 0 85px;
  }

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

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

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

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

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

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

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

  .ptb_lg--90 {
    padding: 90px 0;
  }

  .plr_lg--90 {
    padding: 0 90px;
  }

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

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

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

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

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

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

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

  .ptb_lg--95 {
    padding: 95px 0;
  }

  .plr_lg--95 {
    padding: 0 95px;
  }

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

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

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

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

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

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

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

  .ptb_lg--100 {
    padding: 100px 0;
  }

  .plr_lg--100 {
    padding: 0 100px;
  }

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

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

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

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

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

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

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

  .ptb_lg--105 {
    padding: 105px 0;
  }

  .plr_lg--105 {
    padding: 0 105px;
  }

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

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

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

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

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

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

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

  .ptb_lg--110 {
    padding: 110px 0;
  }

  .plr_lg--110 {
    padding: 0 110px;
  }

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

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

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

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

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

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

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

  .ptb_lg--115 {
    padding: 115px 0;
  }

  .plr_lg--115 {
    padding: 0 115px;
  }

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

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

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

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

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

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

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

  .ptb_lg--120 {
    padding: 120px 0;
  }

  .plr_lg--120 {
    padding: 0 120px;
  }

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

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

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

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

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

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

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

  .ptb_lg--125 {
    padding: 125px 0;
  }

  .plr_lg--125 {
    padding: 0 125px;
  }

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

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

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

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

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

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

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

  .ptb_lg--130 {
    padding: 130px 0;
  }

  .plr_lg--130 {
    padding: 0 130px;
  }

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

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

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

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

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

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

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

  .ptb_lg--135 {
    padding: 135px 0;
  }

  .plr_lg--135 {
    padding: 0 135px;
  }

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

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

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

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

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

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

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

  .ptb_lg--140 {
    padding: 140px 0;
  }

  .plr_lg--140 {
    padding: 0 140px;
  }

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

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

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

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

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

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

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

  .ptb_lg--145 {
    padding: 145px 0;
  }

  .plr_lg--145 {
    padding: 0 145px;
  }

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

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

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

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

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

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

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

  .ptb_lg--150 {
    padding: 150px 0;
  }

  .plr_lg--150 {
    padding: 0 150px;
  }

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

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

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

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

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

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

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

  .ptb_lg--155 {
    padding: 155px 0;
  }

  .plr_lg--155 {
    padding: 0 155px;
  }

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

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

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

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

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

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

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

  .ptb_lg--160 {
    padding: 160px 0;
  }

  .plr_lg--160 {
    padding: 0 160px;
  }

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

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

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

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

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

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

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

  .ptb_lg--165 {
    padding: 165px 0;
  }

  .plr_lg--165 {
    padding: 0 165px;
  }

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

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

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

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

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

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

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

  .ptb_lg--170 {
    padding: 170px 0;
  }

  .plr_lg--170 {
    padding: 0 170px;
  }

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

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

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

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

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

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

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

  .ptb_lg--175 {
    padding: 175px 0;
  }

  .plr_lg--175 {
    padding: 0 175px;
  }

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

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

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

  .pr_lg--175 {
    padding-right: 175px;
  }

  .mt_lg--175 {
    margin-top: 175px;
  }

  .mb_lg--175 {
    margin-bottom: 175px;
  }

  .ml_lg--175 {
    margin-left: 175px;
  }

  .ptb_lg--180 {
    padding: 180px 0;
  }

  .plr_lg--180 {
    padding: 0 180px;
  }

  .pt_lg--180 {
    padding-top: 180px;
  }

  .pb_lg--180 {
    padding-bottom: 180px;
  }

  .pl_lg--180 {
    padding-left: 180px;
  }

  .pr_lg--180 {
    padding-right: 180px;
  }

  .mt_lg--180 {
    margin-top: 180px;
  }

  .mb_lg--180 {
    margin-bottom: 180px;
  }

  .ml_lg--180 {
    margin-left: 180px;
  }

  .ptb_lg--185 {
    padding: 185px 0;
  }

  .plr_lg--185 {
    padding: 0 185px;
  }

  .pt_lg--185 {
    padding-top: 185px;
  }

  .pb_lg--185 {
    padding-bottom: 185px;
  }

  .pl_lg--185 {
    padding-left: 185px;
  }

  .pr_lg--185 {
    padding-right: 185px;
  }

  .mt_lg--185 {
    margin-top: 185px;
  }

  .mb_lg--185 {
    margin-bottom: 185px;
  }

  .ml_lg--185 {
    margin-left: 185px;
  }

  .ptb_lg--190 {
    padding: 190px 0;
  }

  .plr_lg--190 {
    padding: 0 190px;
  }

  .pt_lg--190 {
    padding-top: 190px;
  }

  .pb_lg--190 {
    padding-bottom: 190px;
  }

  .pl_lg--190 {
    padding-left: 190px;
  }

  .pr_lg--190 {
    padding-right: 190px;
  }

  .mt_lg--190 {
    margin-top: 190px;
  }

  .mb_lg--190 {
    margin-bottom: 190px;
  }

  .ml_lg--190 {
    margin-left: 190px;
  }

  .ptb_lg--195 {
    padding: 195px 0;
  }

  .plr_lg--195 {
    padding: 0 195px;
  }

  .pt_lg--195 {
    padding-top: 195px;
  }

  .pb_lg--195 {
    padding-bottom: 195px;
  }

  .pl_lg--195 {
    padding-left: 195px;
  }

  .pr_lg--195 {
    padding-right: 195px;
  }

  .mt_lg--195 {
    margin-top: 195px;
  }

  .mb_lg--195 {
    margin-bottom: 195px;
  }

  .ml_lg--195 {
    margin-left: 195px;
  }

  .ptb_lg--200 {
    padding: 200px 0;
  }

  .plr_lg--200 {
    padding: 0 200px;
  }

  .pt_lg--200 {
    padding-top: 200px;
  }

  .pb_lg--200 {
    padding-bottom: 200px;
  }

  .pl_lg--200 {
    padding-left: 200px;
  }

  .pr_lg--200 {
    padding-right: 200px;
  }

  .mt_lg--200 {
    margin-top: 200px;
  }

  .mb_lg--200 {
    margin-bottom: 200px;
  }

  .ml_lg--200 {
    margin-left: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb_md--0 {
    padding: 0;
  }

  .pl_md--0 {
    padding-left: 0;
  }

  .pr_md--0 {
    padding-right: 0;
  }

  .pt_md--0 {
    padding-top: 0;
  }

  .pb_md--0 {
    padding-bottom: 0;
  }

  .pb_md--80 {
    padding-bottom: 80px;
  }

  .pt_md--50 {
    padding-top: 50px;
  }

  .mr_md--0 {
    margin-right: 0;
  }

  .ml_md--0 {
    margin-left: 0;
  }

  .mt_md--0 {
    margin-top: 0;
  }

  .mb_md--0 {
    margin-bottom: 0;
  }

  .ptb_md--250 {
    padding: 250px 0;
  }

  .ptb_md--5 {
    padding: 5px 0;
  }

  .plr_md--5 {
    padding: 0 5px;
  }

  .pt_md--5 {
    padding-top: 5px;
  }

  .pb_md--5 {
    padding-bottom: 5px;
  }

  .pl_md--5 {
    padding-left: 5px;
  }

  .pr_md--5 {
    padding-right: 5px;
  }

  .mt_md--5 {
    margin-top: 5px;
  }

  .mb_md--5 {
    margin-bottom: 5px;
  }

  .ptb_md--10 {
    padding: 10px 0;
  }

  .plr_md--10 {
    padding: 0 10px;
  }

  .pt_md--10 {
    padding-top: 10px;
  }

  .pb_md--10 {
    padding-bottom: 10px;
  }

  .pl_md--10 {
    padding-left: 10px;
  }

  .pr_md--10 {
    padding-right: 10px;
  }

  .mt_md--10 {
    margin-top: 10px;
  }

  .mb_md--10 {
    margin-bottom: 10px;
  }

  .ptb_md--15 {
    padding: 15px 0;
  }

  .plr_md--15 {
    padding: 0 15px;
  }

  .pt_md--15 {
    padding-top: 15px;
  }

  .pb_md--15 {
    padding-bottom: 15px;
  }

  .pl_md--15 {
    padding-left: 15px;
  }

  .pr_md--15 {
    padding-right: 15px;
  }

  .mt_md--15 {
    margin-top: 15px;
  }

  .mb_md--15 {
    margin-bottom: 15px;
  }

  .ptb_md--20 {
    padding: 20px 0;
  }

  .plr_md--20 {
    padding: 0 20px;
  }

  .pt_md--20 {
    padding-top: 20px;
  }

  .pb_md--20 {
    padding-bottom: 20px;
  }

  .pl_md--20 {
    padding-left: 20px;
  }

  .pr_md--20 {
    padding-right: 20px;
  }

  .mt_md--20 {
    margin-top: 20px;
  }

  .mb_md--20 {
    margin-bottom: 20px;
  }

  .ptb_md--25 {
    padding: 25px 0;
  }

  .plr_md--25 {
    padding: 0 25px;
  }

  .pt_md--25 {
    padding-top: 25px;
  }

  .pb_md--25 {
    padding-bottom: 25px;
  }

  .pl_md--25 {
    padding-left: 25px;
  }

  .pr_md--25 {
    padding-right: 25px;
  }

  .mt_md--25 {
    margin-top: 25px;
  }

  .mb_md--25 {
    margin-bottom: 25px;
  }

  .ptb_md--30 {
    padding: 30px 0;
  }

  .plr_md--30 {
    padding: 0 30px;
  }

  .pt_md--30 {
    padding-top: 30px;
  }

  .pb_md--30 {
    padding-bottom: 30px;
  }

  .pl_md--30 {
    padding-left: 30px;
  }

  .pr_md--30 {
    padding-right: 30px;
  }

  .mt_md--30 {
    margin-top: 30px;
  }

  .mb_md--30 {
    margin-bottom: 30px;
  }

  .ptb_md--35 {
    padding: 35px 0;
  }

  .plr_md--35 {
    padding: 0 35px;
  }

  .pt_md--35 {
    padding-top: 35px;
  }

  .pb_md--35 {
    padding-bottom: 35px;
  }

  .pl_md--35 {
    padding-left: 35px;
  }

  .pr_md--35 {
    padding-right: 35px;
  }

  .mt_md--35 {
    margin-top: 35px;
  }

  .mb_md--35 {
    margin-bottom: 35px;
  }

  .ptb_md--40 {
    padding: 40px 0;
  }

  .plr_md--40 {
    padding: 0 40px;
  }

  .pt_md--40 {
    padding-top: 40px;
  }

  .pb_md--40 {
    padding-bottom: 40px;
  }

  .pl_md--40 {
    padding-left: 40px;
  }

  .pr_md--40 {
    padding-right: 40px;
  }

  .mt_md--40 {
    margin-top: 40px;
  }

  .mb_md--40 {
    margin-bottom: 40px;
  }

  .ptb_md--45 {
    padding: 45px 0;
  }

  .plr_md--45 {
    padding: 0 45px;
  }

  .pt_md--45 {
    padding-top: 45px;
  }

  .pb_md--45 {
    padding-bottom: 45px;
  }

  .pl_md--45 {
    padding-left: 45px;
  }

  .pr_md--45 {
    padding-right: 45px;
  }

  .mt_md--45 {
    margin-top: 45px;
  }

  .mb_md--45 {
    margin-bottom: 45px;
  }

  .ptb_md--50 {
    padding: 50px 0;
  }

  .plr_md--50 {
    padding: 0 50px;
  }

  .pt_md--50 {
    padding-top: 50px;
  }

  .pb_md--50 {
    padding-bottom: 50px;
  }

  .pl_md--50 {
    padding-left: 50px;
  }

  .pr_md--50 {
    padding-right: 50px;
  }

  .mt_md--50 {
    margin-top: 50px;
  }

  .mb_md--50 {
    margin-bottom: 50px;
  }

  .ptb_md--55 {
    padding: 55px 0;
  }

  .plr_md--55 {
    padding: 0 55px;
  }

  .pt_md--55 {
    padding-top: 55px;
  }

  .pb_md--55 {
    padding-bottom: 55px;
  }

  .pl_md--55 {
    padding-left: 55px;
  }

  .pr_md--55 {
    padding-right: 55px;
  }

  .mt_md--55 {
    margin-top: 55px;
  }

  .mb_md--55 {
    margin-bottom: 55px;
  }

  .ptb_md--60 {
    padding: 60px 0;
  }

  .plr_md--60 {
    padding: 0 60px;
  }

  .pt_md--60 {
    padding-top: 60px;
  }

  .pb_md--60 {
    padding-bottom: 60px;
  }

  .pl_md--60 {
    padding-left: 60px;
  }

  .pr_md--60 {
    padding-right: 60px;
  }

  .mt_md--60 {
    margin-top: 60px;
  }

  .mb_md--60 {
    margin-bottom: 60px;
  }

  .ptb_md--65 {
    padding: 65px 0;
  }

  .plr_md--65 {
    padding: 0 65px;
  }

  .pt_md--65 {
    padding-top: 65px;
  }

  .pb_md--65 {
    padding-bottom: 65px;
  }

  .pl_md--65 {
    padding-left: 65px;
  }

  .pr_md--65 {
    padding-right: 65px;
  }

  .mt_md--65 {
    margin-top: 65px;
  }

  .mb_md--65 {
    margin-bottom: 65px;
  }

  .ptb_md--70 {
    padding: 70px 0;
  }

  .plr_md--70 {
    padding: 0 70px;
  }

  .pt_md--70 {
    padding-top: 70px;
  }

  .pb_md--70 {
    padding-bottom: 70px;
  }

  .pl_md--70 {
    padding-left: 70px;
  }

  .pr_md--70 {
    padding-right: 70px;
  }

  .mt_md--70 {
    margin-top: 70px;
  }

  .mb_md--70 {
    margin-bottom: 70px;
  }

  .ptb_md--75 {
    padding: 75px 0;
  }

  .plr_md--75 {
    padding: 0 75px;
  }

  .pt_md--75 {
    padding-top: 75px;
  }

  .pb_md--75 {
    padding-bottom: 75px;
  }

  .pl_md--75 {
    padding-left: 75px;
  }

  .pr_md--75 {
    padding-right: 75px;
  }

  .mt_md--75 {
    margin-top: 75px;
  }

  .mb_md--75 {
    margin-bottom: 75px;
  }

  .ptb_md--80 {
    padding: 80px 0;
  }

  .plr_md--80 {
    padding: 0 80px;
  }

  .pt_md--80 {
    padding-top: 80px;
  }

  .pb_md--80 {
    padding-bottom: 80px;
  }

  .pl_md--80 {
    padding-left: 80px;
  }

  .pr_md--80 {
    padding-right: 80px;
  }

  .mt_md--80 {
    margin-top: 80px;
  }

  .mb_md--80 {
    margin-bottom: 80px;
  }

  .ptb_md--85 {
    padding: 85px 0;
  }

  .plr_md--85 {
    padding: 0 85px;
  }

  .pt_md--85 {
    padding-top: 85px;
  }

  .pb_md--85 {
    padding-bottom: 85px;
  }

  .pl_md--85 {
    padding-left: 85px;
  }

  .pr_md--85 {
    padding-right: 85px;
  }

  .mt_md--85 {
    margin-top: 85px;
  }

  .mb_md--85 {
    margin-bottom: 85px;
  }

  .ptb_md--90 {
    padding: 90px 0;
  }

  .plr_md--90 {
    padding: 0 90px;
  }

  .pt_md--90 {
    padding-top: 90px;
  }

  .pb_md--90 {
    padding-bottom: 90px;
  }

  .pl_md--90 {
    padding-left: 90px;
  }

  .pr_md--90 {
    padding-right: 90px;
  }

  .mt_md--90 {
    margin-top: 90px;
  }

  .mb_md--90 {
    margin-bottom: 90px;
  }

  .ptb_md--95 {
    padding: 95px 0;
  }

  .plr_md--95 {
    padding: 0 95px;
  }

  .pt_md--95 {
    padding-top: 95px;
  }

  .pb_md--95 {
    padding-bottom: 95px;
  }

  .pl_md--95 {
    padding-left: 95px;
  }

  .pr_md--95 {
    padding-right: 95px;
  }

  .mt_md--95 {
    margin-top: 95px;
  }

  .mb_md--95 {
    margin-bottom: 95px;
  }

  .ptb_md--100 {
    padding: 100px 0;
  }

  .plr_md--100 {
    padding: 0 100px;
  }

  .pt_md--100 {
    padding-top: 100px;
  }

  .pb_md--100 {
    padding-bottom: 100px;
  }

  .pl_md--100 {
    padding-left: 100px;
  }

  .pr_md--100 {
    padding-right: 100px;
  }

  .mt_md--100 {
    margin-top: 100px;
  }

  .mb_md--100 {
    margin-bottom: 100px;
  }

  .ptb_md--105 {
    padding: 105px 0;
  }

  .plr_md--105 {
    padding: 0 105px;
  }

  .pt_md--105 {
    padding-top: 105px;
  }

  .pb_md--105 {
    padding-bottom: 105px;
  }

  .pl_md--105 {
    padding-left: 105px;
  }

  .pr_md--105 {
    padding-right: 105px;
  }

  .mt_md--105 {
    margin-top: 105px;
  }

  .mb_md--105 {
    margin-bottom: 105px;
  }

  .ptb_md--110 {
    padding: 110px 0;
  }

  .plr_md--110 {
    padding: 0 110px;
  }

  .pt_md--110 {
    padding-top: 110px;
  }

  .pb_md--110 {
    padding-bottom: 110px;
  }

  .pl_md--110 {
    padding-left: 110px;
  }

  .pr_md--110 {
    padding-right: 110px;
  }

  .mt_md--110 {
    margin-top: 110px;
  }

  .mb_md--110 {
    margin-bottom: 110px;
  }

  .ptb_md--115 {
    padding: 115px 0;
  }

  .plr_md--115 {
    padding: 0 115px;
  }

  .pt_md--115 {
    padding-top: 115px;
  }

  .pb_md--115 {
    padding-bottom: 115px;
  }

  .pl_md--115 {
    padding-left: 115px;
  }

  .pr_md--115 {
    padding-right: 115px;
  }

  .mt_md--115 {
    margin-top: 115px;
  }

  .mb_md--115 {
    margin-bottom: 115px;
  }

  .ptb_md--120 {
    padding: 120px 0;
  }

  .plr_md--120 {
    padding: 0 120px;
  }

  .pt_md--120 {
    padding-top: 120px;
  }

  .pb_md--120 {
    padding-bottom: 120px;
  }

  .pl_md--120 {
    padding-left: 120px;
  }

  .pr_md--120 {
    padding-right: 120px;
  }

  .mt_md--120 {
    margin-top: 120px;
  }

  .mb_md--120 {
    margin-bottom: 120px;
  }

  .ptb_md--125 {
    padding: 125px 0;
  }

  .plr_md--125 {
    padding: 0 125px;
  }

  .pt_md--125 {
    padding-top: 125px;
  }

  .pb_md--125 {
    padding-bottom: 125px;
  }

  .pl_md--125 {
    padding-left: 125px;
  }

  .pr_md--125 {
    padding-right: 125px;
  }

  .mt_md--125 {
    margin-top: 125px;
  }

  .mb_md--125 {
    margin-bottom: 125px;
  }

  .ptb_md--130 {
    padding: 130px 0;
  }

  .plr_md--130 {
    padding: 0 130px;
  }

  .pt_md--130 {
    padding-top: 130px;
  }

  .pb_md--130 {
    padding-bottom: 130px;
  }

  .pl_md--130 {
    padding-left: 130px;
  }

  .pr_md--130 {
    padding-right: 130px;
  }

  .mt_md--130 {
    margin-top: 130px;
  }

  .mb_md--130 {
    margin-bottom: 130px;
  }

  .ptb_md--135 {
    padding: 135px 0;
  }

  .plr_md--135 {
    padding: 0 135px;
  }

  .pt_md--135 {
    padding-top: 135px;
  }

  .pb_md--135 {
    padding-bottom: 135px;
  }

  .pl_md--135 {
    padding-left: 135px;
  }

  .pr_md--135 {
    padding-right: 135px;
  }

  .mt_md--135 {
    margin-top: 135px;
  }

  .mb_md--135 {
    margin-bottom: 135px;
  }

  .ptb_md--140 {
    padding: 140px 0;
  }

  .plr_md--140 {
    padding: 0 140px;
  }

  .pt_md--140 {
    padding-top: 140px;
  }

  .pb_md--140 {
    padding-bottom: 140px;
  }

  .pl_md--140 {
    padding-left: 140px;
  }

  .pr_md--140 {
    padding-right: 140px;
  }

  .mt_md--140 {
    margin-top: 140px;
  }

  .mb_md--140 {
    margin-bottom: 140px;
  }

  .ptb_md--145 {
    padding: 145px 0;
  }

  .plr_md--145 {
    padding: 0 145px;
  }

  .pt_md--145 {
    padding-top: 145px;
  }

  .pb_md--145 {
    padding-bottom: 145px;
  }

  .pl_md--145 {
    padding-left: 145px;
  }

  .pr_md--145 {
    padding-right: 145px;
  }

  .mt_md--145 {
    margin-top: 145px;
  }

  .mb_md--145 {
    margin-bottom: 145px;
  }

  .ptb_md--150 {
    padding: 150px 0;
  }

  .plr_md--150 {
    padding: 0 150px;
  }

  .pt_md--150 {
    padding-top: 150px;
  }

  .pb_md--150 {
    padding-bottom: 150px;
  }

  .pl_md--150 {
    padding-left: 150px;
  }

  .pr_md--150 {
    padding-right: 150px;
  }

  .mt_md--150 {
    margin-top: 150px;
  }

  .mb_md--150 {
    margin-bottom: 150px;
  }

  .ptb_md--155 {
    padding: 155px 0;
  }

  .plr_md--155 {
    padding: 0 155px;
  }

  .pt_md--155 {
    padding-top: 155px;
  }

  .pb_md--155 {
    padding-bottom: 155px;
  }

  .pl_md--155 {
    padding-left: 155px;
  }

  .pr_md--155 {
    padding-right: 155px;
  }

  .mt_md--155 {
    margin-top: 155px;
  }

  .mb_md--155 {
    margin-bottom: 155px;
  }

  .ptb_md--160 {
    padding: 160px 0;
  }

  .plr_md--160 {
    padding: 0 160px;
  }

  .pt_md--160 {
    padding-top: 160px;
  }

  .pb_md--160 {
    padding-bottom: 160px;
  }

  .pl_md--160 {
    padding-left: 160px;
  }

  .pr_md--160 {
    padding-right: 160px;
  }

  .mt_md--160 {
    margin-top: 160px;
  }

  .mb_md--160 {
    margin-bottom: 160px;
  }

  .ptb_md--165 {
    padding: 165px 0;
  }

  .plr_md--165 {
    padding: 0 165px;
  }

  .pt_md--165 {
    padding-top: 165px;
  }

  .pb_md--165 {
    padding-bottom: 165px;
  }

  .pl_md--165 {
    padding-left: 165px;
  }

  .pr_md--165 {
    padding-right: 165px;
  }

  .mt_md--165 {
    margin-top: 165px;
  }

  .mb_md--165 {
    margin-bottom: 165px;
  }

  .ptb_md--170 {
    padding: 170px 0;
  }

  .plr_md--170 {
    padding: 0 170px;
  }

  .pt_md--170 {
    padding-top: 170px;
  }

  .pb_md--170 {
    padding-bottom: 170px;
  }

  .pl_md--170 {
    padding-left: 170px;
  }

  .pr_md--170 {
    padding-right: 170px;
  }

  .mt_md--170 {
    margin-top: 170px;
  }

  .mb_md--170 {
    margin-bottom: 170px;
  }

  .ptb_md--175 {
    padding: 175px 0;
  }

  .plr_md--175 {
    padding: 0 175px;
  }

  .pt_md--175 {
    padding-top: 175px;
  }

  .pb_md--175 {
    padding-bottom: 175px;
  }

  .pl_md--175 {
    padding-left: 175px;
  }

  .pr_md--175 {
    padding-right: 175px;
  }

  .mt_md--175 {
    margin-top: 175px;
  }

  .mb_md--175 {
    margin-bottom: 175px;
  }

  .ptb_md--180 {
    padding: 180px 0;
  }

  .plr_md--180 {
    padding: 0 180px;
  }

  .pt_md--180 {
    padding-top: 180px;
  }

  .pb_md--180 {
    padding-bottom: 180px;
  }

  .pl_md--180 {
    padding-left: 180px;
  }

  .pr_md--180 {
    padding-right: 180px;
  }

  .mt_md--180 {
    margin-top: 180px;
  }

  .mb_md--180 {
    margin-bottom: 180px;
  }

  .ptb_md--185 {
    padding: 185px 0;
  }

  .plr_md--185 {
    padding: 0 185px;
  }

  .pt_md--185 {
    padding-top: 185px;
  }

  .pb_md--185 {
    padding-bottom: 185px;
  }

  .pl_md--185 {
    padding-left: 185px;
  }

  .pr_md--185 {
    padding-right: 185px;
  }

  .mt_md--185 {
    margin-top: 185px;
  }

  .mb_md--185 {
    margin-bottom: 185px;
  }

  .ptb_md--190 {
    padding: 190px 0;
  }

  .plr_md--190 {
    padding: 0 190px;
  }

  .pt_md--190 {
    padding-top: 190px;
  }

  .pb_md--190 {
    padding-bottom: 190px;
  }

  .pl_md--190 {
    padding-left: 190px;
  }

  .pr_md--190 {
    padding-right: 190px;
  }

  .mt_md--190 {
    margin-top: 190px;
  }

  .mb_md--190 {
    margin-bottom: 190px;
  }

  .ptb_md--195 {
    padding: 195px 0;
  }

  .plr_md--195 {
    padding: 0 195px;
  }

  .pt_md--195 {
    padding-top: 195px;
  }

  .pb_md--195 {
    padding-bottom: 195px;
  }

  .pl_md--195 {
    padding-left: 195px;
  }

  .pr_md--195 {
    padding-right: 195px;
  }

  .mt_md--195 {
    margin-top: 195px;
  }

  .mb_md--195 {
    margin-bottom: 195px;
  }

  .ptb_md--200 {
    padding: 200px 0;
  }

  .plr_md--200 {
    padding: 0 200px;
  }

  .pt_md--200 {
    padding-top: 200px;
  }

  .pb_md--200 {
    padding-bottom: 200px;
  }

  .pl_md--200 {
    padding-left: 200px;
  }

  .pr_md--200 {
    padding-right: 200px;
  }

  .mt_md--200 {
    margin-top: 200px;
  }

  .mb_md--200 {
    margin-bottom: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .ptb_sm--250 {
    padding: 250px 0;
  }

  .ptb_sm--0 {
    padding: 0;
  }

  .pl_sm--0 {
    padding-left: 0;
  }

  .pr_sm--0 {
    padding-right: 0;
  }

  .pt_sm--0 {
    padding-top: 0;
  }

  .pb_sm--0 {
    padding-bottom: 0;
  }

  .pb_sm--80 {
    padding-bottom: 30px;
  }

  .pt_sm--50 {
    padding-top: 50px;
  }

  .mr_sm--0 {
    margin-right: 0;
  }

  .ml_sm--0 {
    margin-left: 0;
  }

  .mt_sm--0 {
    margin-top: 0;
  }

  .mb_sm--0 {
    margin-bottom: 0;
  }

  .pt_sm--150 {
    padding-top: 150px;
  }

  .pb_sm--110 {
    padding-bottom: 110px;
  }

  .ptb_sm--5 {
    padding: 5px 0;
  }

  .plr_sm--5 {
    padding: 0 5px;
  }

  .pt_sm--5 {
    padding-top: 5px;
  }

  .pb_sm--5 {
    padding-bottom: 5px;
  }

  .pl_sm--5 {
    padding-left: 5px;
  }

  .pr_sm--5 {
    padding-right: 5px;
  }

  .mt_sm--5 {
    margin-top: 5px;
  }

  .ml_sm--5 {
    margin-left: 5px;
  }

  .mr_sm--5 {
    margin-right: 5px;
  }

  .mb_sm--5 {
    margin-bottom: 5px;
  }

  .ptb_sm--10 {
    padding: 10px 0;
  }

  .plr_sm--10 {
    padding: 0 10px;
  }

  .pt_sm--10 {
    padding-top: 10px;
  }

  .pb_sm--10 {
    padding-bottom: 10px;
  }

  .pl_sm--10 {
    padding-left: 10px;
  }

  .pr_sm--10 {
    padding-right: 10px;
  }

  .mt_sm--10 {
    margin-top: 10px;
  }

  .ml_sm--10 {
    margin-left: 10px;
  }

  .mr_sm--10 {
    margin-right: 10px;
  }

  .mb_sm--10 {
    margin-bottom: 10px;
  }

  .ptb_sm--15 {
    padding: 15px 0;
  }

  .plr_sm--15 {
    padding: 0 15px;
  }

  .pt_sm--15 {
    padding-top: 15px;
  }

  .pb_sm--15 {
    padding-bottom: 15px;
  }

  .pl_sm--15 {
    padding-left: 15px;
  }

  .pr_sm--15 {
    padding-right: 15px;
  }

  .mt_sm--15 {
    margin-top: 15px;
  }

  .ml_sm--15 {
    margin-left: 15px;
  }

  .mr_sm--15 {
    margin-right: 15px;
  }

  .mb_sm--15 {
    margin-bottom: 15px;
  }

  .ptb_sm--20 {
    padding: 20px 0;
  }

  .plr_sm--20 {
    padding: 0 20px;
  }

  .pt_sm--20 {
    padding-top: 20px;
  }

  .pb_sm--20 {
    padding-bottom: 20px;
  }

  .pl_sm--20 {
    padding-left: 20px;
  }

  .pr_sm--20 {
    padding-right: 20px;
  }

  .mt_sm--20 {
    margin-top: 20px;
  }

  .ml_sm--20 {
    margin-left: 20px;
  }

  .mr_sm--20 {
    margin-right: 20px;
  }

  .mb_sm--20 {
    margin-bottom: 20px;
  }

  .ptb_sm--25 {
    padding: 25px 0;
  }

  .plr_sm--25 {
    padding: 0 25px;
  }

  .pt_sm--25 {
    padding-top: 25px;
  }

  .pb_sm--25 {
    padding-bottom: 25px;
  }

  .pl_sm--25 {
    padding-left: 25px;
  }

  .pr_sm--25 {
    padding-right: 25px;
  }

  .mt_sm--25 {
    margin-top: 25px;
  }

  .ml_sm--25 {
    margin-left: 25px;
  }

  .mr_sm--25 {
    margin-right: 25px;
  }

  .mb_sm--25 {
    margin-bottom: 25px;
  }

  .ptb_sm--30 {
    padding: 30px 0;
  }

  .plr_sm--30 {
    padding: 0 30px;
  }

  .pt_sm--30 {
    padding-top: 30px;
  }

  .pb_sm--30 {
    padding-bottom: 30px;
  }

  .pl_sm--30 {
    padding-left: 30px;
  }

  .pr_sm--30 {
    padding-right: 30px;
  }

  .mt_sm--30 {
    margin-top: 30px;
  }

  .ml_sm--30 {
    margin-left: 30px;
  }

  .mr_sm--30 {
    margin-right: 30px;
  }

  .mb_sm--30 {
    margin-bottom: 30px;
  }

  .ptb_sm--35 {
    padding: 35px 0;
  }

  .plr_sm--35 {
    padding: 0 35px;
  }

  .pt_sm--35 {
    padding-top: 35px;
  }

  .pb_sm--35 {
    padding-bottom: 35px;
  }

  .pl_sm--35 {
    padding-left: 35px;
  }

  .pr_sm--35 {
    padding-right: 35px;
  }

  .mt_sm--35 {
    margin-top: 35px;
  }

  .ml_sm--35 {
    margin-left: 35px;
  }

  .mr_sm--35 {
    margin-right: 35px;
  }

  .mb_sm--35 {
    margin-bottom: 35px;
  }

  .ptb_sm--40 {
    padding: 40px 0;
  }

  .plr_sm--40 {
    padding: 0 40px;
  }

  .pt_sm--40 {
    padding-top: 40px;
  }

  .pb_sm--40 {
    padding-bottom: 40px;
  }

  .pl_sm--40 {
    padding-left: 40px;
  }

  .pr_sm--40 {
    padding-right: 40px;
  }

  .mt_sm--40 {
    margin-top: 40px;
  }

  .ml_sm--40 {
    margin-left: 40px;
  }

  .mr_sm--40 {
    margin-right: 40px;
  }

  .mb_sm--40 {
    margin-bottom: 40px;
  }

  .ptb_sm--45 {
    padding: 45px 0;
  }

  .plr_sm--45 {
    padding: 0 45px;
  }

  .pt_sm--45 {
    padding-top: 45px;
  }

  .pb_sm--45 {
    padding-bottom: 45px;
  }

  .pl_sm--45 {
    padding-left: 45px;
  }

  .pr_sm--45 {
    padding-right: 45px;
  }

  .mt_sm--45 {
    margin-top: 45px;
  }

  .ml_sm--45 {
    margin-left: 45px;
  }

  .mr_sm--45 {
    margin-right: 45px;
  }

  .mb_sm--45 {
    margin-bottom: 45px;
  }

  .ptb_sm--50 {
    padding: 50px 0;
  }

  .plr_sm--50 {
    padding: 0 50px;
  }

  .pt_sm--50 {
    padding-top: 50px;
  }

  .pb_sm--50 {
    padding-bottom: 50px;
  }

  .pl_sm--50 {
    padding-left: 50px;
  }

  .pr_sm--50 {
    padding-right: 50px;
  }

  .mt_sm--50 {
    margin-top: 50px;
  }

  .ml_sm--50 {
    margin-left: 50px;
  }

  .mr_sm--50 {
    margin-right: 50px;
  }

  .mb_sm--50 {
    margin-bottom: 50px;
  }

  .ptb_sm--55 {
    padding: 55px 0;
  }

  .plr_sm--55 {
    padding: 0 55px;
  }

  .pt_sm--55 {
    padding-top: 55px;
  }

  .pb_sm--55 {
    padding-bottom: 55px;
  }

  .pl_sm--55 {
    padding-left: 55px;
  }

  .pr_sm--55 {
    padding-right: 55px;
  }

  .mt_sm--55 {
    margin-top: 55px;
  }

  .ml_sm--55 {
    margin-left: 55px;
  }

  .mr_sm--55 {
    margin-right: 55px;
  }

  .mb_sm--55 {
    margin-bottom: 55px;
  }

  .ptb_sm--60 {
    padding: 60px 0;
  }

  .plr_sm--60 {
    padding: 0 60px;
  }

  .pt_sm--60 {
    padding-top: 60px;
  }

  .pb_sm--60 {
    padding-bottom: 60px;
  }

  .pl_sm--60 {
    padding-left: 60px;
  }

  .pr_sm--60 {
    padding-right: 60px;
  }

  .mt_sm--60 {
    margin-top: 60px;
  }

  .ml_sm--60 {
    margin-left: 60px;
  }

  .mr_sm--60 {
    margin-right: 60px;
  }

  .mb_sm--60 {
    margin-bottom: 60px;
  }

  .ptb_sm--65 {
    padding: 65px 0;
  }

  .plr_sm--65 {
    padding: 0 65px;
  }

  .pt_sm--65 {
    padding-top: 65px;
  }

  .pb_sm--65 {
    padding-bottom: 65px;
  }

  .pl_sm--65 {
    padding-left: 65px;
  }

  .pr_sm--65 {
    padding-right: 65px;
  }

  .mt_sm--65 {
    margin-top: 65px;
  }

  .ml_sm--65 {
    margin-left: 65px;
  }

  .mr_sm--65 {
    margin-right: 65px;
  }

  .mb_sm--65 {
    margin-bottom: 65px;
  }

  .ptb_sm--70 {
    padding: 70px 0;
  }

  .plr_sm--70 {
    padding: 0 70px;
  }

  .pt_sm--70 {
    padding-top: 70px;
  }

  .pb_sm--70 {
    padding-bottom: 70px;
  }

  .pl_sm--70 {
    padding-left: 70px;
  }

  .pr_sm--70 {
    padding-right: 70px;
  }

  .mt_sm--70 {
    margin-top: 70px;
  }

  .ml_sm--70 {
    margin-left: 70px;
  }

  .mr_sm--70 {
    margin-right: 70px;
  }

  .mb_sm--70 {
    margin-bottom: 70px;
  }

  .ptb_sm--75 {
    padding: 75px 0;
  }

  .plr_sm--75 {
    padding: 0 75px;
  }

  .pt_sm--75 {
    padding-top: 75px;
  }

  .pb_sm--75 {
    padding-bottom: 75px;
  }

  .pl_sm--75 {
    padding-left: 75px;
  }

  .pr_sm--75 {
    padding-right: 75px;
  }

  .mt_sm--75 {
    margin-top: 75px;
  }

  .ml_sm--75 {
    margin-left: 75px;
  }

  .mr_sm--75 {
    margin-right: 75px;
  }

  .mb_sm--75 {
    margin-bottom: 75px;
  }

  .ptb_sm--80 {
    padding: 80px 0;
  }

  .plr_sm--80 {
    padding: 0 80px;
  }

  .pt_sm--80 {
    padding-top: 80px;
  }

  .pb_sm--80 {
    padding-bottom: 80px;
  }

  .pl_sm--80 {
    padding-left: 80px;
  }

  .pr_sm--80 {
    padding-right: 80px;
  }

  .mt_sm--80 {
    margin-top: 80px;
  }

  .ml_sm--80 {
    margin-left: 80px;
  }

  .mr_sm--80 {
    margin-right: 80px;
  }

  .mb_sm--80 {
    margin-bottom: 80px;
  }

  .ptb_sm--85 {
    padding: 85px 0;
  }

  .plr_sm--85 {
    padding: 0 85px;
  }

  .pt_sm--85 {
    padding-top: 85px;
  }

  .pb_sm--85 {
    padding-bottom: 85px;
  }

  .pl_sm--85 {
    padding-left: 85px;
  }

  .pr_sm--85 {
    padding-right: 85px;
  }

  .mt_sm--85 {
    margin-top: 85px;
  }

  .ml_sm--85 {
    margin-left: 85px;
  }

  .mr_sm--85 {
    margin-right: 85px;
  }

  .mb_sm--85 {
    margin-bottom: 85px;
  }

  .ptb_sm--90 {
    padding: 90px 0;
  }

  .plr_sm--90 {
    padding: 0 90px;
  }

  .pt_sm--90 {
    padding-top: 90px;
  }

  .pb_sm--90 {
    padding-bottom: 90px;
  }

  .pl_sm--90 {
    padding-left: 90px;
  }

  .pr_sm--90 {
    padding-right: 90px;
  }

  .mt_sm--90 {
    margin-top: 90px;
  }

  .ml_sm--90 {
    margin-left: 90px;
  }

  .mr_sm--90 {
    margin-right: 90px;
  }

  .mb_sm--90 {
    margin-bottom: 90px;
  }

  .ptb_sm--95 {
    padding: 95px 0;
  }

  .plr_sm--95 {
    padding: 0 95px;
  }

  .pt_sm--95 {
    padding-top: 95px;
  }

  .pb_sm--95 {
    padding-bottom: 95px;
  }

  .pl_sm--95 {
    padding-left: 95px;
  }

  .pr_sm--95 {
    padding-right: 95px;
  }

  .mt_sm--95 {
    margin-top: 95px;
  }

  .ml_sm--95 {
    margin-left: 95px;
  }

  .mr_sm--95 {
    margin-right: 95px;
  }

  .mb_sm--95 {
    margin-bottom: 95px;
  }

  .ptb_sm--100 {
    padding: 100px 0;
  }

  .plr_sm--100 {
    padding: 0 100px;
  }

  .pt_sm--100 {
    padding-top: 100px;
  }

  .pb_sm--100 {
    padding-bottom: 100px;
  }

  .pl_sm--100 {
    padding-left: 100px;
  }

  .pr_sm--100 {
    padding-right: 100px;
  }

  .mt_sm--100 {
    margin-top: 100px;
  }

  .ml_sm--100 {
    margin-left: 100px;
  }

  .mr_sm--100 {
    margin-right: 100px;
  }

  .mb_sm--100 {
    margin-bottom: 100px;
  }

  .ptb_sm--105 {
    padding: 105px 0;
  }

  .plr_sm--105 {
    padding: 0 105px;
  }

  .pt_sm--105 {
    padding-top: 105px;
  }

  .pb_sm--105 {
    padding-bottom: 105px;
  }

  .pl_sm--105 {
    padding-left: 105px;
  }

  .pr_sm--105 {
    padding-right: 105px;
  }

  .mt_sm--105 {
    margin-top: 105px;
  }

  .ml_sm--105 {
    margin-left: 105px;
  }

  .mr_sm--105 {
    margin-right: 105px;
  }

  .mb_sm--105 {
    margin-bottom: 105px;
  }

  .ptb_sm--110 {
    padding: 110px 0;
  }

  .plr_sm--110 {
    padding: 0 110px;
  }

  .pt_sm--110 {
    padding-top: 110px;
  }

  .pb_sm--110 {
    padding-bottom: 110px;
  }

  .pl_sm--110 {
    padding-left: 110px;
  }

  .pr_sm--110 {
    padding-right: 110px;
  }

  .mt_sm--110 {
    margin-top: 110px;
  }

  .ml_sm--110 {
    margin-left: 110px;
  }

  .mr_sm--110 {
    margin-right: 110px;
  }

  .mb_sm--110 {
    margin-bottom: 110px;
  }

  .ptb_sm--115 {
    padding: 115px 0;
  }

  .plr_sm--115 {
    padding: 0 115px;
  }

  .pt_sm--115 {
    padding-top: 115px;
  }

  .pb_sm--115 {
    padding-bottom: 115px;
  }

  .pl_sm--115 {
    padding-left: 115px;
  }

  .pr_sm--115 {
    padding-right: 115px;
  }

  .mt_sm--115 {
    margin-top: 115px;
  }

  .ml_sm--115 {
    margin-left: 115px;
  }

  .mr_sm--115 {
    margin-right: 115px;
  }

  .mb_sm--115 {
    margin-bottom: 115px;
  }

  .ptb_sm--120 {
    padding: 120px 0;
  }

  .plr_sm--120 {
    padding: 0 120px;
  }

  .pt_sm--120 {
    padding-top: 120px;
  }

  .pb_sm--120 {
    padding-bottom: 120px;
  }

  .pl_sm--120 {
    padding-left: 120px;
  }

  .pr_sm--120 {
    padding-right: 120px;
  }

  .mt_sm--120 {
    margin-top: 120px;
  }

  .ml_sm--120 {
    margin-left: 120px;
  }

  .mr_sm--120 {
    margin-right: 120px;
  }

  .mb_sm--120 {
    margin-bottom: 120px;
  }

  .ptb_sm--125 {
    padding: 125px 0;
  }

  .plr_sm--125 {
    padding: 0 125px;
  }

  .pt_sm--125 {
    padding-top: 125px;
  }

  .pb_sm--125 {
    padding-bottom: 125px;
  }

  .pl_sm--125 {
    padding-left: 125px;
  }

  .pr_sm--125 {
    padding-right: 125px;
  }

  .mt_sm--125 {
    margin-top: 125px;
  }

  .ml_sm--125 {
    margin-left: 125px;
  }

  .mr_sm--125 {
    margin-right: 125px;
  }

  .mb_sm--125 {
    margin-bottom: 125px;
  }

  .ptb_sm--130 {
    padding: 130px 0;
  }

  .plr_sm--130 {
    padding: 0 130px;
  }

  .pt_sm--130 {
    padding-top: 130px;
  }

  .pb_sm--130 {
    padding-bottom: 130px;
  }

  .pl_sm--130 {
    padding-left: 130px;
  }

  .pr_sm--130 {
    padding-right: 130px;
  }

  .mt_sm--130 {
    margin-top: 130px;
  }

  .ml_sm--130 {
    margin-left: 130px;
  }

  .mr_sm--130 {
    margin-right: 130px;
  }

  .mb_sm--130 {
    margin-bottom: 130px;
  }

  .ptb_sm--135 {
    padding: 135px 0;
  }

  .plr_sm--135 {
    padding: 0 135px;
  }

  .pt_sm--135 {
    padding-top: 135px;
  }

  .pb_sm--135 {
    padding-bottom: 135px;
  }

  .pl_sm--135 {
    padding-left: 135px;
  }

  .pr_sm--135 {
    padding-right: 135px;
  }

  .mt_sm--135 {
    margin-top: 135px;
  }

  .ml_sm--135 {
    margin-left: 135px;
  }

  .mr_sm--135 {
    margin-right: 135px;
  }

  .mb_sm--135 {
    margin-bottom: 135px;
  }

  .ptb_sm--140 {
    padding: 140px 0;
  }

  .plr_sm--140 {
    padding: 0 140px;
  }

  .pt_sm--140 {
    padding-top: 140px;
  }

  .pb_sm--140 {
    padding-bottom: 140px;
  }

  .pl_sm--140 {
    padding-left: 140px;
  }

  .pr_sm--140 {
    padding-right: 140px;
  }

  .mt_sm--140 {
    margin-top: 140px;
  }

  .ml_sm--140 {
    margin-left: 140px;
  }

  .mr_sm--140 {
    margin-right: 140px;
  }

  .mb_sm--140 {
    margin-bottom: 140px;
  }

  .ptb_sm--145 {
    padding: 145px 0;
  }

  .plr_sm--145 {
    padding: 0 145px;
  }

  .pt_sm--145 {
    padding-top: 145px;
  }

  .pb_sm--145 {
    padding-bottom: 145px;
  }

  .pl_sm--145 {
    padding-left: 145px;
  }

  .pr_sm--145 {
    padding-right: 145px;
  }

  .mt_sm--145 {
    margin-top: 145px;
  }

  .ml_sm--145 {
    margin-left: 145px;
  }

  .mr_sm--145 {
    margin-right: 145px;
  }

  .mb_sm--145 {
    margin-bottom: 145px;
  }

  .ptb_sm--150 {
    padding: 150px 0;
  }

  .plr_sm--150 {
    padding: 0 150px;
  }

  .pt_sm--150 {
    padding-top: 150px;
  }

  .pb_sm--150 {
    padding-bottom: 150px;
  }

  .pl_sm--150 {
    padding-left: 150px;
  }

  .pr_sm--150 {
    padding-right: 150px;
  }

  .mt_sm--150 {
    margin-top: 150px;
  }

  .ml_sm--150 {
    margin-left: 150px;
  }

  .mr_sm--150 {
    margin-right: 150px;
  }

  .mb_sm--150 {
    margin-bottom: 150px;
  }

  .ptb_sm--155 {
    padding: 155px 0;
  }

  .plr_sm--155 {
    padding: 0 155px;
  }

  .pt_sm--155 {
    padding-top: 155px;
  }

  .pb_sm--155 {
    padding-bottom: 155px;
  }

  .pl_sm--155 {
    padding-left: 155px;
  }

  .pr_sm--155 {
    padding-right: 155px;
  }

  .mt_sm--155 {
    margin-top: 155px;
  }

  .ml_sm--155 {
    margin-left: 155px;
  }

  .mr_sm--155 {
    margin-right: 155px;
  }

  .mb_sm--155 {
    margin-bottom: 155px;
  }

  .ptb_sm--160 {
    padding: 160px 0;
  }

  .plr_sm--160 {
    padding: 0 160px;
  }

  .pt_sm--160 {
    padding-top: 160px;
  }

  .pb_sm--160 {
    padding-bottom: 160px;
  }

  .pl_sm--160 {
    padding-left: 160px;
  }

  .pr_sm--160 {
    padding-right: 160px;
  }

  .mt_sm--160 {
    margin-top: 160px;
  }

  .ml_sm--160 {
    margin-left: 160px;
  }

  .mr_sm--160 {
    margin-right: 160px;
  }

  .mb_sm--160 {
    margin-bottom: 160px;
  }

  .ptb_sm--165 {
    padding: 165px 0;
  }

  .plr_sm--165 {
    padding: 0 165px;
  }

  .pt_sm--165 {
    padding-top: 165px;
  }

  .pb_sm--165 {
    padding-bottom: 165px;
  }

  .pl_sm--165 {
    padding-left: 165px;
  }

  .pr_sm--165 {
    padding-right: 165px;
  }

  .mt_sm--165 {
    margin-top: 165px;
  }

  .ml_sm--165 {
    margin-left: 165px;
  }

  .mr_sm--165 {
    margin-right: 165px;
  }

  .mb_sm--165 {
    margin-bottom: 165px;
  }

  .ptb_sm--170 {
    padding: 170px 0;
  }

  .plr_sm--170 {
    padding: 0 170px;
  }

  .pt_sm--170 {
    padding-top: 170px;
  }

  .pb_sm--170 {
    padding-bottom: 170px;
  }

  .pl_sm--170 {
    padding-left: 170px;
  }

  .pr_sm--170 {
    padding-right: 170px;
  }

  .mt_sm--170 {
    margin-top: 170px;
  }

  .ml_sm--170 {
    margin-left: 170px;
  }

  .mr_sm--170 {
    margin-right: 170px;
  }

  .mb_sm--170 {
    margin-bottom: 170px;
  }

  .ptb_sm--175 {
    padding: 175px 0;
  }

  .plr_sm--175 {
    padding: 0 175px;
  }

  .pt_sm--175 {
    padding-top: 175px;
  }

  .pb_sm--175 {
    padding-bottom: 175px;
  }

  .pl_sm--175 {
    padding-left: 175px;
  }

  .pr_sm--175 {
    padding-right: 175px;
  }

  .mt_sm--175 {
    margin-top: 175px;
  }

  .ml_sm--175 {
    margin-left: 175px;
  }

  .mr_sm--175 {
    margin-right: 175px;
  }

  .mb_sm--175 {
    margin-bottom: 175px;
  }

  .ptb_sm--180 {
    padding: 180px 0;
  }

  .plr_sm--180 {
    padding: 0 180px;
  }

  .pt_sm--180 {
    padding-top: 180px;
  }

  .pb_sm--180 {
    padding-bottom: 180px;
  }

  .pl_sm--180 {
    padding-left: 180px;
  }

  .pr_sm--180 {
    padding-right: 180px;
  }

  .mt_sm--180 {
    margin-top: 180px;
  }

  .ml_sm--180 {
    margin-left: 180px;
  }

  .mr_sm--180 {
    margin-right: 180px;
  }

  .mb_sm--180 {
    margin-bottom: 180px;
  }

  .ptb_sm--185 {
    padding: 185px 0;
  }

  .plr_sm--185 {
    padding: 0 185px;
  }

  .pt_sm--185 {
    padding-top: 185px;
  }

  .pb_sm--185 {
    padding-bottom: 185px;
  }

  .pl_sm--185 {
    padding-left: 185px;
  }

  .pr_sm--185 {
    padding-right: 185px;
  }

  .mt_sm--185 {
    margin-top: 185px;
  }

  .ml_sm--185 {
    margin-left: 185px;
  }

  .mr_sm--185 {
    margin-right: 185px;
  }

  .mb_sm--185 {
    margin-bottom: 185px;
  }

  .ptb_sm--190 {
    padding: 190px 0;
  }

  .plr_sm--190 {
    padding: 0 190px;
  }

  .pt_sm--190 {
    padding-top: 190px;
  }

  .pb_sm--190 {
    padding-bottom: 190px;
  }

  .pl_sm--190 {
    padding-left: 190px;
  }

  .pr_sm--190 {
    padding-right: 190px;
  }

  .mt_sm--190 {
    margin-top: 190px;
  }

  .ml_sm--190 {
    margin-left: 190px;
  }

  .mr_sm--190 {
    margin-right: 190px;
  }

  .mb_sm--190 {
    margin-bottom: 190px;
  }

  .ptb_sm--195 {
    padding: 195px 0;
  }

  .plr_sm--195 {
    padding: 0 195px;
  }

  .pt_sm--195 {
    padding-top: 195px;
  }

  .pb_sm--195 {
    padding-bottom: 195px;
  }

  .pl_sm--195 {
    padding-left: 195px;
  }

  .pr_sm--195 {
    padding-right: 195px;
  }

  .mt_sm--195 {
    margin-top: 195px;
  }

  .ml_sm--195 {
    margin-left: 195px;
  }

  .mr_sm--195 {
    margin-right: 195px;
  }

  .mb_sm--195 {
    margin-bottom: 195px;
  }

  .ptb_sm--200 {
    padding: 200px 0;
  }

  .plr_sm--200 {
    padding: 0 200px;
  }

  .pt_sm--200 {
    padding-top: 200px;
  }

  .pb_sm--200 {
    padding-bottom: 200px;
  }

  .pl_sm--200 {
    padding-left: 200px;
  }

  .pr_sm--200 {
    padding-right: 200px;
  }

  .mt_sm--200 {
    margin-top: 200px;
  }

  .ml_sm--200 {
    margin-left: 200px;
  }

  .mr_sm--200 {
    margin-right: 200px;
  }

  .mb_sm--200 {
    margin-bottom: 200px;
  }

  .pl_sm--0 {
    padding-left: 0;
  }

  .pr_sm--0 {
    padding-right: 0;
  }

  .pt_sm--0 {
    padding-top: 0;
  }

  .pb_sm--0 {
    padding-bottom: 0;
  }

  .mr_sm--0 {
    margin-right: 0;
  }

  .ml_sm--0 {
    margin-left: 0;
  }

  .mt_sm--0 {
    margin-top: 0;
  }

  .mb_sm--0 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .ptb_mobile--5 {
    padding: 5px 0;
  }

  .plr_mobile--5 {
    padding: 0 5px;
  }

  .pt_mobile--5 {
    padding-top: 5px;
  }

  .pb_mobile--5 {
    padding-bottom: 5px;
  }

  .pl_mobile--5 {
    padding-left: 5px;
  }

  .pr_mobile--5 {
    padding-right: 5px;
  }

  .mt_mobile--5 {
    margin-top: 5px;
  }

  .mb_mobile--5 {
    margin-bottom: 5px;
  }

  .ptb_mobile--10 {
    padding: 10px 0;
  }

  .plr_mobile--10 {
    padding: 0 10px;
  }

  .pt_mobile--10 {
    padding-top: 10px;
  }

  .pb_mobile--10 {
    padding-bottom: 10px;
  }

  .pl_mobile--10 {
    padding-left: 10px;
  }

  .pr_mobile--10 {
    padding-right: 10px;
  }

  .mt_mobile--10 {
    margin-top: 10px;
  }

  .mb_mobile--10 {
    margin-bottom: 10px;
  }

  .ptb_mobile--15 {
    padding: 15px 0;
  }

  .plr_mobile--15 {
    padding: 0 15px;
  }

  .pt_mobile--15 {
    padding-top: 15px;
  }

  .pb_mobile--15 {
    padding-bottom: 15px;
  }

  .pl_mobile--15 {
    padding-left: 15px;
  }

  .pr_mobile--15 {
    padding-right: 15px;
  }

  .mt_mobile--15 {
    margin-top: 15px;
  }

  .mb_mobile--15 {
    margin-bottom: 15px;
  }

  .ptb_mobile--20 {
    padding: 20px 0;
  }

  .plr_mobile--20 {
    padding: 0 20px;
  }

  .pt_mobile--20 {
    padding-top: 20px;
  }

  .pb_mobile--20 {
    padding-bottom: 20px;
  }

  .pl_mobile--20 {
    padding-left: 20px;
  }

  .pr_mobile--20 {
    padding-right: 20px;
  }

  .mt_mobile--20 {
    margin-top: 20px;
  }

  .mb_mobile--20 {
    margin-bottom: 20px;
  }

  .ptb_mobile--25 {
    padding: 25px 0;
  }

  .plr_mobile--25 {
    padding: 0 25px;
  }

  .pt_mobile--25 {
    padding-top: 25px;
  }

  .pb_mobile--25 {
    padding-bottom: 25px;
  }

  .pl_mobile--25 {
    padding-left: 25px;
  }

  .pr_mobile--25 {
    padding-right: 25px;
  }

  .mt_mobile--25 {
    margin-top: 25px;
  }

  .mb_mobile--25 {
    margin-bottom: 25px;
  }

  .ptb_mobile--30 {
    padding: 30px 0;
  }

  .plr_mobile--30 {
    padding: 0 30px;
  }

  .pt_mobile--30 {
    padding-top: 30px;
  }

  .pb_mobile--30 {
    padding-bottom: 30px;
  }

  .pl_mobile--30 {
    padding-left: 30px;
  }

  .pr_mobile--30 {
    padding-right: 30px;
  }

  .mt_mobile--30 {
    margin-top: 30px;
  }

  .mb_mobile--30 {
    margin-bottom: 30px;
  }

  .ptb_mobile--35 {
    padding: 35px 0;
  }

  .plr_mobile--35 {
    padding: 0 35px;
  }

  .pt_mobile--35 {
    padding-top: 35px;
  }

  .pb_mobile--35 {
    padding-bottom: 35px;
  }

  .pl_mobile--35 {
    padding-left: 35px;
  }

  .pr_mobile--35 {
    padding-right: 35px;
  }

  .mt_mobile--35 {
    margin-top: 35px;
  }

  .mb_mobile--35 {
    margin-bottom: 35px;
  }

  .ptb_mobile--40 {
    padding: 40px 0;
  }

  .plr_mobile--40 {
    padding: 0 40px;
  }

  .pt_mobile--40 {
    padding-top: 40px;
  }

  .pb_mobile--40 {
    padding-bottom: 40px;
  }

  .pl_mobile--40 {
    padding-left: 40px;
  }

  .pr_mobile--40 {
    padding-right: 40px;
  }

  .mt_mobile--40 {
    margin-top: 40px;
  }

  .mb_mobile--40 {
    margin-bottom: 40px;
  }

  .ptb_mobile--45 {
    padding: 45px 0;
  }

  .plr_mobile--45 {
    padding: 0 45px;
  }

  .pt_mobile--45 {
    padding-top: 45px;
  }

  .pb_mobile--45 {
    padding-bottom: 45px;
  }

  .pl_mobile--45 {
    padding-left: 45px;
  }

  .pr_mobile--45 {
    padding-right: 45px;
  }

  .mt_mobile--45 {
    margin-top: 45px;
  }

  .mb_mobile--45 {
    margin-bottom: 45px;
  }

  .ptb_mobile--50 {
    padding: 50px 0;
  }

  .plr_mobile--50 {
    padding: 0 50px;
  }

  .pt_mobile--50 {
    padding-top: 50px;
  }

  .pb_mobile--50 {
    padding-bottom: 50px;
  }

  .pl_mobile--50 {
    padding-left: 50px;
  }

  .pr_mobile--50 {
    padding-right: 50px;
  }

  .mt_mobile--50 {
    margin-top: 50px;
  }

  .mb_mobile--50 {
    margin-bottom: 50px;
  }

  .ptb_mobile--55 {
    padding: 55px 0;
  }

  .plr_mobile--55 {
    padding: 0 55px;
  }

  .pt_mobile--55 {
    padding-top: 55px;
  }

  .pb_mobile--55 {
    padding-bottom: 55px;
  }

  .pl_mobile--55 {
    padding-left: 55px;
  }

  .pr_mobile--55 {
    padding-right: 55px;
  }

  .mt_mobile--55 {
    margin-top: 55px;
  }

  .mb_mobile--55 {
    margin-bottom: 55px;
  }

  .ptb_mobile--60 {
    padding: 60px 0;
  }

  .plr_mobile--60 {
    padding: 0 60px;
  }

  .pt_mobile--60 {
    padding-top: 60px;
  }

  .pb_mobile--60 {
    padding-bottom: 60px;
  }

  .pl_mobile--60 {
    padding-left: 60px;
  }

  .pr_mobile--60 {
    padding-right: 60px;
  }

  .mt_mobile--60 {
    margin-top: 60px;
  }

  .mb_mobile--60 {
    margin-bottom: 60px;
  }

  .ptb_mobile--65 {
    padding: 65px 0;
  }

  .plr_mobile--65 {
    padding: 0 65px;
  }

  .pt_mobile--65 {
    padding-top: 65px;
  }

  .pb_mobile--65 {
    padding-bottom: 65px;
  }

  .pl_mobile--65 {
    padding-left: 65px;
  }

  .pr_mobile--65 {
    padding-right: 65px;
  }

  .mt_mobile--65 {
    margin-top: 65px;
  }

  .mb_mobile--65 {
    margin-bottom: 65px;
  }

  .ptb_mobile--70 {
    padding: 70px 0;
  }

  .plr_mobile--70 {
    padding: 0 70px;
  }

  .pt_mobile--70 {
    padding-top: 70px;
  }

  .pb_mobile--70 {
    padding-bottom: 70px;
  }

  .pl_mobile--70 {
    padding-left: 70px;
  }

  .pr_mobile--70 {
    padding-right: 70px;
  }

  .mt_mobile--70 {
    margin-top: 70px;
  }

  .mb_mobile--70 {
    margin-bottom: 70px;
  }

  .ptb_mobile--75 {
    padding: 75px 0;
  }

  .plr_mobile--75 {
    padding: 0 75px;
  }

  .pt_mobile--75 {
    padding-top: 75px;
  }

  .pb_mobile--75 {
    padding-bottom: 75px;
  }

  .pl_mobile--75 {
    padding-left: 75px;
  }

  .pr_mobile--75 {
    padding-right: 75px;
  }

  .mt_mobile--75 {
    margin-top: 75px;
  }

  .mb_mobile--75 {
    margin-bottom: 75px;
  }

  .ptb_mobile--80 {
    padding: 80px 0;
  }

  .plr_mobile--80 {
    padding: 0 80px;
  }

  .pt_mobile--80 {
    padding-top: 80px;
  }

  .pb_mobile--80 {
    padding-bottom: 80px;
  }

  .pl_mobile--80 {
    padding-left: 80px;
  }

  .pr_mobile--80 {
    padding-right: 80px;
  }

  .mt_mobile--80 {
    margin-top: 80px;
  }

  .mb_mobile--80 {
    margin-bottom: 80px;
  }

  .ptb_mobile--85 {
    padding: 85px 0;
  }

  .plr_mobile--85 {
    padding: 0 85px;
  }

  .pt_mobile--85 {
    padding-top: 85px;
  }

  .pb_mobile--85 {
    padding-bottom: 85px;
  }

  .pl_mobile--85 {
    padding-left: 85px;
  }

  .pr_mobile--85 {
    padding-right: 85px;
  }

  .mt_mobile--85 {
    margin-top: 85px;
  }

  .mb_mobile--85 {
    margin-bottom: 85px;
  }

  .ptb_mobile--90 {
    padding: 90px 0;
  }

  .plr_mobile--90 {
    padding: 0 90px;
  }

  .pt_mobile--90 {
    padding-top: 90px;
  }

  .pb_mobile--90 {
    padding-bottom: 90px;
  }

  .pl_mobile--90 {
    padding-left: 90px;
  }

  .pr_mobile--90 {
    padding-right: 90px;
  }

  .mt_mobile--90 {
    margin-top: 90px;
  }

  .mb_mobile--90 {
    margin-bottom: 90px;
  }

  .ptb_mobile--95 {
    padding: 95px 0;
  }

  .plr_mobile--95 {
    padding: 0 95px;
  }

  .pt_mobile--95 {
    padding-top: 95px;
  }

  .pb_mobile--95 {
    padding-bottom: 95px;
  }

  .pl_mobile--95 {
    padding-left: 95px;
  }

  .pr_mobile--95 {
    padding-right: 95px;
  }

  .mt_mobile--95 {
    margin-top: 95px;
  }

  .mb_mobile--95 {
    margin-bottom: 95px;
  }

  .ptb_mobile--100 {
    padding: 100px 0;
  }

  .plr_mobile--100 {
    padding: 0 100px;
  }

  .pt_mobile--100 {
    padding-top: 100px;
  }

  .pb_mobile--100 {
    padding-bottom: 100px;
  }

  .pl_mobile--100 {
    padding-left: 100px;
  }

  .pr_mobile--100 {
    padding-right: 100px;
  }

  .mt_mobile--100 {
    margin-top: 100px;
  }

  .mb_mobile--100 {
    margin-bottom: 100px;
  }
}
.slick-gutter-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.slick-gutter-5 .slick-slide {
  padding-left: 5px;
  padding-right: 5px;
}

.slick-gutter-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.slick-gutter-10 .slick-slide {
  padding-left: 10px;
  padding-right: 10px;
}

.slick-gutter-15 {
  margin-left: -15px;
  margin-right: -15px;
}
.slick-gutter-15 .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

.slick-gutter-20 {
  margin-left: -20px;
  margin-right: -20px;
}
.slick-gutter-20 .slick-slide {
  padding-left: 20px;
  padding-right: 20px;
}

.slick-gutter-25 {
  margin-left: -25px;
  margin-right: -25px;
}
.slick-gutter-25 .slick-slide {
  padding-left: 25px;
  padding-right: 25px;
}

.slick-gutter-30 {
  margin-left: -30px;
  margin-right: -30px;
}
.slick-gutter-30 .slick-slide {
  padding-left: 30px;
  padding-right: 30px;
}

.slick-gutter-35 {
  margin-left: -35px;
  margin-right: -35px;
}
.slick-gutter-35 .slick-slide {
  padding-left: 35px;
  padding-right: 35px;
}

.slick-gutter-40 {
  margin-left: -40px;
  margin-right: -40px;
}
.slick-gutter-40 .slick-slide {
  padding-left: 40px;
  padding-right: 40px;
}

.slick-gutter-45 {
  margin-left: -45px;
  margin-right: -45px;
}
.slick-gutter-45 .slick-slide {
  padding-left: 45px;
  padding-right: 45px;
}

.slick-gutter-50 {
  margin-left: -50px;
  margin-right: -50px;
}
.slick-gutter-50 .slick-slide {
  padding-left: 50px;
  padding-right: 50px;
}

.slick-gutter-55 {
  margin-left: -55px;
  margin-right: -55px;
}
.slick-gutter-55 .slick-slide {
  padding-left: 55px;
  padding-right: 55px;
}

.slick-gutter-60 {
  margin-left: -60px;
  margin-right: -60px;
}
.slick-gutter-60 .slick-slide {
  padding-left: 60px;
  padding-right: 60px;
}

.slick-gutter-65 {
  margin-left: -65px;
  margin-right: -65px;
}
.slick-gutter-65 .slick-slide {
  padding-left: 65px;
  padding-right: 65px;
}

.slick-gutter-70 {
  margin-left: -70px;
  margin-right: -70px;
}
.slick-gutter-70 .slick-slide {
  padding-left: 70px;
  padding-right: 70px;
}

.slick-gutter-75 {
  margin-left: -75px;
  margin-right: -75px;
}
.slick-gutter-75 .slick-slide {
  padding-left: 75px;
  padding-right: 75px;
}

.slick-gutter-80 {
  margin-left: -80px;
  margin-right: -80px;
}
.slick-gutter-80 .slick-slide {
  padding-left: 80px;
  padding-right: 80px;
}

.slick-gutter-85 {
  margin-left: -85px;
  margin-right: -85px;
}
.slick-gutter-85 .slick-slide {
  padding-left: 85px;
  padding-right: 85px;
}

.slick-gutter-90 {
  margin-left: -90px;
  margin-right: -90px;
}
.slick-gutter-90 .slick-slide {
  padding-left: 90px;
  padding-right: 90px;
}

.slick-gutter-95 {
  margin-left: -95px;
  margin-right: -95px;
}
.slick-gutter-95 .slick-slide {
  padding-left: 95px;
  padding-right: 95px;
}

.slick-gutter-100 {
  margin-left: -100px;
  margin-right: -100px;
}
.slick-gutter-100 .slick-slide {
  padding-left: 100px;
  padding-right: 100px;
}

.mt-dec-30 {
  margin-top: -30px;
}

.mt_dec--30 {
  margin-top: -30px;
}

.mt-dec-100 {
  margin-top: -100px;
}

@media only screen and (max-width: 479px) {
  .small-margin-pricing {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 479px) {
  .contact-input {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb_dec--35 {
    margin-bottom: -50px;
  }
}

@media only screen and (max-width: 767px) {
  .mb_dec--35 {
    margin-bottom: -75px;
  }
}
@media only screen and (max-width: 575px) {
  .mb_dec--35 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .mt-contact-sm {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-pb {
    padding-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-input {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-input {
    padding-bottom: 30px;
  }
}

.pb_xl--130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1199px) {
  .pb_xl--130 {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 1199px) {
  .mt_experience {
    margin-top: -10px;
  }
}

.mt_dec--120 {
  margin-top: -120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .plr_md--0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.padding-contorler-am-slide {
  padding-left: 246px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .padding-contorler-am-slide {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-contorler-am-slide {
    padding-left: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .padding-contorler-am-slide {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .padding-contorler-am-slide {
    padding-left: 15px;
  }
}

.padding-contorler-am-slide-11 {
  padding-left: 246px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .padding-contorler-am-slide-11 {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-contorler-am-slide-11 {
    padding-left: 0;
  }
}

.padding-contorler-am-slide-right {
  padding-right: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .padding-contorler-am-slide-right {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-contorler-am-slide-right {
    padding-right: 30px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .padding-contorler-am-slide-right {
    padding-right: 30px;
    padding-top: 50px;
  }
}

.g-24 {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.g-40 {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: #e40f4a;
}

a:focus {
  outline: none;
}

address {
  margin: 0 0 24px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

mark {
  background: var(--color-primary);
  color: #ffffff;
}

code,
kbd,
pre,
samp {
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}

kbd,
ins {
  color: #ffffff;
}

pre {
  font-family: 'Raleway', sans-serif;
  font-size: var(--font-size-b3);
  margin: 10px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-body);
  background: var(--color-lighter);
}

small {
  font-size: smaller;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl {
  margin-top: 0;
  margin-bottom: 10px;
}

dd {
  margin: 0 15px 15px;
}

dt {
  font-weight: bold;
  color: var(--color-heading);
}

menu,
ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

li > ul,
li > ol {
  margin: 0;
}

ol ul {
  margin-bottom: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid var(--color-border);
  margin: 0 2px;
  min-width: inherit;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type='checkbox'],
input[type='radio'] {
  padding: 0;
}

input[type='search'] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}

input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

caption,
th,
td {
  font-weight: normal;
}

th {
  font-weight: 500;
  text-transform: uppercase;
}

td,
.wp-block-calendar tfoot td {
  border: 1px solid var(--color-border);
  padding: 7px 10px;
}

del {
  color: #333;
}

ins {
  background: rgba(255, 47, 47, 0.4);
  text-decoration: none;
}

hr {
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}

table a,
table a:link,
table a:visited {
  text-decoration: underline;
}

dt {
  font-weight: bold;
  margin-bottom: 10px;
}

dd {
  margin: 0 15px 15px;
}

caption {
  caption-side: top;
}

kbd {
  background: var(--heading-color);
}

dfn,
cite,
em {
  font-style: italic;
}

/* BlockQuote  */
blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

blockquote {
  font-size: var(--font-size-b1);
  font-style: italic;
  font-weight: var(--p-light);
  margin: 24px 40px;
}

blockquote blockquote {
  margin-right: 0;
}

blockquote cite,
blockquote small {
  font-size: var(--font-size-b3);
  font-weight: normal;
}

blockquote strong,
blockquote b {
  font-weight: 700;
}

/* ========= Forms Styles ========= */
input,
button,
select,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
  border-radius: 12px;
}
input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='number'],
input[type='tel'],
input[type='url'],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  /* -- Placeholder -- */
}
input[type='text']::placeholder,
input[type='password']::placeholder,
input[type='email']::placeholder,
input[type='number']::placeholder,
input[type='tel']::placeholder,
input[type='url']::placeholder,
textarea::placeholder {
  color: var(--body-color);
  /* Firefox */
  opacity: 1;
}
input[type='text']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='url']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}
input[type='text']::-ms-input-placeholder,
input[type='password']::-ms-input-placeholder,
input[type='email']::-ms-input-placeholder,
input[type='number']::-ms-input-placeholder,
input[type='tel']::-ms-input-placeholder,
input[type='url']::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}
input[type='text'].p-holder__active,
.input-active input[type='text'],
input[type='text'].input-active,
input[type='password'].p-holder__active,
.input-active input[type='password'],
input[type='password'].input-active,
input[type='email'].p-holder__active,
.input-active input[type='email'],
input[type='email'].input-active,
input[type='number'].p-holder__active,
.input-active input[type='number'],
input[type='number'].input-active,
input[type='tel'].p-holder__active,
.input-active input[type='tel'],
input[type='tel'].input-active,
input[type='url'].p-holder__active,
.input-active input[type='url'],
input[type='url'].input-active,
textarea.p-holder__active,
textarea.input-active {
  border-color: var(--color-primary);
  /* -- Placeholder -- */
}
input[type='text'].p-holder__active::placeholder,
.input-active input[type='text']::placeholder,
input[type='text'].input-active::placeholder,
input[type='password'].p-holder__active::placeholder,
.input-active input[type='password']::placeholder,
input[type='password'].input-active::placeholder,
input[type='email'].p-holder__active::placeholder,
.input-active input[type='email']::placeholder,
input[type='email'].input-active::placeholder,
input[type='number'].p-holder__active::placeholder,
.input-active input[type='number']::placeholder,
input[type='number'].input-active::placeholder,
input[type='tel'].p-holder__active::placeholder,
.input-active input[type='tel']::placeholder,
input[type='tel'].input-active::placeholder,
input[type='url'].p-holder__active::placeholder,
.input-active input[type='url']::placeholder,
input[type='url'].input-active::placeholder,
textarea.p-holder__active::placeholder,
textarea.input-active::placeholder {
  color: var(--color-primary);
  /* Firefox */
  opacity: 1;
}
input[type='text'].p-holder__active:-ms-input-placeholder,
.input-active input[type='text']:-ms-input-placeholder,
input[type='text'].input-active:-ms-input-placeholder,
input[type='password'].p-holder__active:-ms-input-placeholder,
.input-active input[type='password']:-ms-input-placeholder,
input[type='password'].input-active:-ms-input-placeholder,
input[type='email'].p-holder__active:-ms-input-placeholder,
.input-active input[type='email']:-ms-input-placeholder,
input[type='email'].input-active:-ms-input-placeholder,
input[type='number'].p-holder__active:-ms-input-placeholder,
.input-active input[type='number']:-ms-input-placeholder,
input[type='number'].input-active:-ms-input-placeholder,
input[type='tel'].p-holder__active:-ms-input-placeholder,
.input-active input[type='tel']:-ms-input-placeholder,
input[type='tel'].input-active:-ms-input-placeholder,
input[type='url'].p-holder__active:-ms-input-placeholder,
.input-active input[type='url']:-ms-input-placeholder,
input[type='url'].input-active:-ms-input-placeholder,
textarea.p-holder__active:-ms-input-placeholder,
textarea.input-active:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-primary);
}
input[type='text'].p-holder__active::-ms-input-placeholder,
.input-active input[type='text']::-ms-input-placeholder,
input[type='text'].input-active::-ms-input-placeholder,
input[type='password'].p-holder__active::-ms-input-placeholder,
.input-active input[type='password']::-ms-input-placeholder,
input[type='password'].input-active::-ms-input-placeholder,
input[type='email'].p-holder__active::-ms-input-placeholder,
.input-active input[type='email']::-ms-input-placeholder,
input[type='email'].input-active::-ms-input-placeholder,
input[type='number'].p-holder__active::-ms-input-placeholder,
.input-active input[type='number']::-ms-input-placeholder,
input[type='number'].input-active::-ms-input-placeholder,
input[type='tel'].p-holder__active::-ms-input-placeholder,
.input-active input[type='tel']::-ms-input-placeholder,
input[type='tel'].input-active::-ms-input-placeholder,
input[type='url'].p-holder__active::-ms-input-placeholder,
.input-active input[type='url']::-ms-input-placeholder,
input[type='url'].input-active::-ms-input-placeholder,
textarea.p-holder__active::-ms-input-placeholder,
textarea.input-active::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color-primary);
}
input[type='text'].p-holder__error,
.input-error input[type='text'],
input[type='text'].input-error,
input[type='password'].p-holder__error,
.input-error input[type='password'],
input[type='password'].input-error,
input[type='email'].p-holder__error,
.input-error input[type='email'],
input[type='email'].input-error,
input[type='number'].p-holder__error,
.input-error input[type='number'],
input[type='number'].input-error,
input[type='tel'].p-holder__error,
.input-error input[type='tel'],
input[type='tel'].input-error,
input[type='url'].p-holder__error,
.input-error input[type='url'],
input[type='url'].input-error,
textarea.p-holder__error,
textarea.input-error {
  border-color: #f4282d;
  /* -- Placeholder -- */
}
input[type='text'].p-holder__error::placeholder,
.input-error input[type='text']::placeholder,
input[type='text'].input-error::placeholder,
input[type='password'].p-holder__error::placeholder,
.input-error input[type='password']::placeholder,
input[type='password'].input-error::placeholder,
input[type='email'].p-holder__error::placeholder,
.input-error input[type='email']::placeholder,
input[type='email'].input-error::placeholder,
input[type='number'].p-holder__error::placeholder,
.input-error input[type='number']::placeholder,
input[type='number'].input-error::placeholder,
input[type='tel'].p-holder__error::placeholder,
.input-error input[type='tel']::placeholder,
input[type='tel'].input-error::placeholder,
input[type='url'].p-holder__error::placeholder,
.input-error input[type='url']::placeholder,
input[type='url'].input-error::placeholder,
textarea.p-holder__error::placeholder,
textarea.input-error::placeholder {
  color: #f4282d;
  /* Firefox */
  opacity: 1;
}
input[type='text'].p-holder__error:-ms-input-placeholder,
.input-error input[type='text']:-ms-input-placeholder,
input[type='text'].input-error:-ms-input-placeholder,
input[type='password'].p-holder__error:-ms-input-placeholder,
.input-error input[type='password']:-ms-input-placeholder,
input[type='password'].input-error:-ms-input-placeholder,
input[type='email'].p-holder__error:-ms-input-placeholder,
.input-error input[type='email']:-ms-input-placeholder,
input[type='email'].input-error:-ms-input-placeholder,
input[type='number'].p-holder__error:-ms-input-placeholder,
.input-error input[type='number']:-ms-input-placeholder,
input[type='number'].input-error:-ms-input-placeholder,
input[type='tel'].p-holder__error:-ms-input-placeholder,
.input-error input[type='tel']:-ms-input-placeholder,
input[type='tel'].input-error:-ms-input-placeholder,
input[type='url'].p-holder__error:-ms-input-placeholder,
.input-error input[type='url']:-ms-input-placeholder,
input[type='url'].input-error:-ms-input-placeholder,
textarea.p-holder__error:-ms-input-placeholder,
textarea.input-error:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #f4282d;
}
input[type='text'].p-holder__error::-ms-input-placeholder,
.input-error input[type='text']::-ms-input-placeholder,
input[type='text'].input-error::-ms-input-placeholder,
input[type='password'].p-holder__error::-ms-input-placeholder,
.input-error input[type='password']::-ms-input-placeholder,
input[type='password'].input-error::-ms-input-placeholder,
input[type='email'].p-holder__error::-ms-input-placeholder,
.input-error input[type='email']::-ms-input-placeholder,
input[type='email'].input-error::-ms-input-placeholder,
input[type='number'].p-holder__error::-ms-input-placeholder,
.input-error input[type='number']::-ms-input-placeholder,
input[type='number'].input-error::-ms-input-placeholder,
input[type='tel'].p-holder__error::-ms-input-placeholder,
.input-error input[type='tel']::-ms-input-placeholder,
input[type='tel'].input-error::-ms-input-placeholder,
input[type='url'].p-holder__error::-ms-input-placeholder,
.input-error input[type='url']::-ms-input-placeholder,
input[type='url'].input-error::-ms-input-placeholder,
textarea.p-holder__error::-ms-input-placeholder,
textarea.input-error::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #f4282d;
}
input[type='text'].p-holder__error:focus,
.input-error input[type='text']:focus,
input[type='text'].input-error:focus,
input[type='password'].p-holder__error:focus,
.input-error input[type='password']:focus,
input[type='password'].input-error:focus,
input[type='email'].p-holder__error:focus,
.input-error input[type='email']:focus,
input[type='email'].input-error:focus,
input[type='number'].p-holder__error:focus,
.input-error input[type='number']:focus,
input[type='number'].input-error:focus,
input[type='tel'].p-holder__error:focus,
.input-error input[type='tel']:focus,
input[type='tel'].input-error:focus,
input[type='url'].p-holder__error:focus,
.input-error input[type='url']:focus,
input[type='url'].input-error:focus,
textarea.p-holder__error:focus,
textarea.input-error:focus {
  border-color: #f4282d;
}
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='url']:focus,
textarea:focus {
  border-color: var(--color-primary);
}

input[type='checkbox'],
input[type='radio'] {
  opacity: 0;
  position: absolute;
}
input[type='checkbox'] ~ label,
input[type='radio'] ~ label {
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}
input[type='checkbox'] ~ label::before,
input[type='radio'] ~ label::before {
  content: ' ';
  position: absolute;
  top: 1 px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #5d5d7e;
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
input[type='checkbox'] ~ label::after,
input[type='radio'] ~ label::after {
  content: ' ';
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type='checkbox']:checked ~ label::after,
input[type='radio']:checked ~ label::after {
  opacity: 1;
}

input:checked ~ .rn-check-box-label::before {
  background: var(--color-primary) !important;
}

input[type='radio'] ~ label::before {
  border-radius: 50%;
}
input[type='radio'] ~ label::after {
  width: 8px;
  height: 8px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.form-group input {
  border: 0 none;
  border-radius: 4px;
  height: 50px;
  font-size: var(--font-size-b2);
  transition: var(--transition);
  padding: 0 20px;
  background-color: var(--color-lightest);
  border: 1px solid transparent;
  transition: var(--transition);
}
.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}
.form-group textarea {
  min-height: 160px;
  border: 0 none;
  border-radius: 4px;
  resize: none;
  padding: 15px;
  font-size: var(--font-size-b2);
  transition: var(--transition);
  background-color: var(--color-lightest);
  border: 1px solid transparent;
}
.form-group textarea:focus {
  border-color: var(--color-primary);
}

input[type='submit'] {
  width: auto;
  padding: 0 30px;
  border-radius: 500px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--p-medium);
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}
input[type='submit']:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-5px);
}

/*==============================
 *  Utilities
=================================*/
.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}

.clearfix:after {
  clear: both;
}

.fix {
  overflow: hidden;
}

.slick-initialized .slick-slide {
  margin-bottom: -10px;
}

.slick-gutter-15 {
  margin: -30px -15px;
}
.slick-gutter-15 .slick-slide {
  padding: 30px 15px;
}

iframe {
  width: 100%;
}

/*===============================
    Background Color 
=================================*/
.bg-color-primary {
  background: var(--color-primary);
}

.bg-color-secondary {
  background: var(--color-secondary);
}

.bg-color-tertiary {
  background: var(--color-tertiary);
}

.bg-color-gray {
  background: var(--color-gray);
}

.bg-color-white {
  background: #ffffff;
}

.bg-color-black {
  background: #1a1a1a;
}

.bg-color-extra03 {
  background: var(--color-extra03);
}

/*===========================
Background Image 
=============================*/
.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg_image--1 {
  background-image: url(../images/bg/bg-image-1.html);
}

.bg_image--2 {
  background-image: url(../images/bg/bg-image-2.html);
}

.bg_image--3 {
  background-image: url(../images/bg/bg-image-3.html);
}

.bg_image--4 {
  background-image: url(../images/bg/bg-image-4.html);
}

.bg_image--5 {
  background-image: url(../images/bg/bg-image-5.html);
}

.bg_image--6 {
  background-image: url(../images/bg/bg-image-6.html);
}

.bg_image--7 {
  background-image: url(../images/bg/bg-image-7.html);
}

.bg_image--8 {
  background-image: url(../images/bg/bg-image-8.html);
}

.bg_image--9 {
  background-image: url(../images/bg/bg-image-9.html);
}

.bg_image--10 {
  background-image: url(../images/bg/bg-image-10.html);
}

.bg_image--11 {
  background-image: url(../images/bg/bg-image-11.html);
}

.bg_image--12 {
  background-image: url(../images/bg/bg-image-12.html);
}

.bg_image--13 {
  background-image: url(../images/bg/bg-image-13.html);
}

.bg_image--14 {
  background-image: url(../images/bg/bg-image-14.html);
}

.bg_image--15 {
  background-image: url(../images/bg/bg-image-15.html);
}

.bg_image--16 {
  background-image: url(../images/bg/bg-image-16.html);
}

.bg_image--17 {
  background-image: url(../images/bg/bg-image-17.html);
}

.bg_image--18 {
  background-image: url(../images/bg/bg-image-18.html);
}

.bg_image--19 {
  background-image: url(../images/bg/bg-image-19.html);
}

.bg_image--20 {
  background-image: url(../images/bg/bg-image-20.html);
}

.bg_image--21 {
  background-image: url(../images/bg/bg-image-21.html);
}

.bg_image--22 {
  background-image: url(../images/bg/bg-image-22.html);
}

.bg_image--23 {
  background-image: url(../images/bg/bg-image-23.html);
}

.bg_image--24 {
  background-image: url(../images/bg/bg-image-24.html);
}

.bg_image--25 {
  background-image: url(../images/bg/bg-image-25.html);
}

.bg_image--26 {
  background-image: url(../images/bg/bg-image-26.html);
}

.bg_image--27 {
  background-image: url(../images/bg/bg-image-27.html);
}

.bg_image--28 {
  background-image: url(../images/bg/bg-image-28.html);
}

.bg_image--29 {
  background-image: url(../images/bg/bg-image-29.html);
}

.bg_image--30 {
  background-image: url(../images/bg/bg-image-30.html);
}

.bg_image--31 {
  background-image: url(../images/bg/bg-image-31.html);
}

.bg_image--32 {
  background-image: url(../images/bg/bg-image-32.html);
}

.bg_image--33 {
  background-image: url(../images/bg/bg-image-33.html);
}

.bg_image--34 {
  background-image: url(../images/bg/bg-image-34.html);
}

.bg_image--35 {
  background-image: url(../images/bg/bg-image-35.html);
}

.bg_image--36 {
  background-image: url(../images/bg/bg-image-36.html);
}

.bg_image--37 {
  background-image: url(../images/bg/bg-image-37.html);
}

.bg_image--38 {
  background-image: url(../images/bg/bg-image-38.html);
}

.bg_image--39 {
  background-image: url(../images/bg/bg-image-39.html);
}

.bg_image--40 {
  background-image: url(../images/bg/bg-image-40.html);
}

.bg_tr-image--1 {
  background-image: url(../images/bg/bg-image-41.html) !important;
  background-size: cover !important;
}

.bg_tr-image--2 {
  background-image: url(../images/bg/bg-image-42.html) !important;
  background-size: cover !important;
}

.bg_tr-image--3 {
  background-image: url(../images/bg/bg-image-43.html) !important;
  background-size: cover !important;
}

.bg_tr-image--4 {
  background-image: url(../images/bg/bg-image-44.html) !important;
  background-size: cover !important;
}

.bg_tr-image--5 {
  background-image: url(../images/bg/bg-image-45.html) !important;
  background-size: cover !important;
}

.bg_tr-image--6 {
  background-image: url(../images/bg/bg-image-46.html) !important;
  background-size: cover !important;
}

.bg_tr-image--7 {
  background-image: url(../images/bg/bg-image-47.html) !important;
  background-size: cover !important;
}

.bg_tr-image--8 {
  background-image: url(../images/bg/bg-image-48.html) !important;
  background-size: cover !important;
}

.bg_tr-image--9 {
  background-image: url(../images/bg/bg-image-49.html) !important;
  background-size: cover !important;
}

.bg_tr-image--10 {
  background-image: url(../images/bg/bg-image-50.html) !important;
  background-size: cover !important;
}

.bg_tr-image--11 {
  background-image: url(../images/bg/bg-image-51.html) !important;
  background-size: cover !important;
}

.bg_tr-image--12 {
  background-image: url(../images/bg/bg-image-52.html) !important;
  background-size: cover !important;
}

.bg_tr-image--13 {
  background-image: url(../images/bg/bg-image-53.html) !important;
  background-size: cover !important;
}

.bg_tr-image--14 {
  background-image: url(../images/bg/bg-image-54.html) !important;
  background-size: cover !important;
}

.bg_tr-image--15 {
  background-image: url(../images/bg/bg-image-55.html) !important;
  background-size: cover !important;
}

.bg_tr-image--16 {
  background-image: url(../images/bg/bg-image-56.html) !important;
  background-size: cover !important;
}

.bg_tr-image--17 {
  background-image: url(../images/bg/bg-image-57.html) !important;
  background-size: cover !important;
}

.bg_tr-image--18 {
  background-image: url(../images/bg/bg-image-58.html) !important;
  background-size: cover !important;
}

.bg_tr-image--19 {
  background-image: url(../images/bg/bg-image-59.html) !important;
  background-size: cover !important;
}

.bg_tr-image--20 {
  background-image: url(../images/bg/bg-image-60.html) !important;
  background-size: cover !important;
}

/* Height and width */
.fullscreen {
  min-height: 980px;
  width: 100%;
}

/*===================
Custom Row
======================*/
.row--0 {
  margin-left: 0px;
  margin-right: 0px;
}
.row--0 > [class*='col'] {
  padding-left: 0px;
  padding-right: 0px;
}

.row--5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row--5 > [class*='col'] {
  padding-left: 5px;
  padding-right: 5px;
}

.row--10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row--10 > [class*='col'] {
  padding-left: 10px;
  padding-right: 10px;
}

.row--20 {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--20 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--20 > [class*='col'],
.row--20 > [class*='col-'] {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--20 > [class*='col'],
  .row--20 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--20 > [class*='col'],
  .row--20 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--20 > [class*='col'],
  .row--20 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--20 > [class*='col'],
  .row--20 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--25 {
  margin-left: -25px;
  margin-right: -25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--25 > [class*='col'],
.row--25 > [class*='col-'] {
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 > [class*='col'],
  .row--25 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 > [class*='col'],
  .row--25 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 > [class*='col'],
  .row--25 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 > [class*='col'],
  .row--25 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--30 {
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--30 > [class*='col'],
.row--30 > [class*='col-'] {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 > [class*='col'],
  .row--30 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 > [class*='col'],
  .row--30 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 > [class*='col'],
  .row--30 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 > [class*='col'],
  .row--30 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--45 {
  margin-left: -45px;
  margin-right: -45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--45 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--45 > [class*='col'],
.row--45 > [class*='col-'] {
  padding-left: 45px;
  padding-right: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--45 > [class*='col'],
  .row--45 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--45 > [class*='col'],
  .row--45 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--45 > [class*='col'],
  .row--45 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--45 > [class*='col'],
  .row--45 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--40 {
  margin-left: -40px;
  margin-right: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--40 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--40 > [class*='col'],
.row--40 > [class*='col-'] {
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--40 > [class*='col'],
  .row--40 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--40 > [class*='col'],
  .row--40 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--40 > [class*='col'],
  .row--40 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--40 > [class*='col'],
  .row--40 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--60 {
  margin-left: -60px;
  margin-right: -60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--60 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--60 > [class*='col'],
.row--60 > [class*='col-'] {
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--60 > [class*='col'],
  .row--60 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--60 > [class*='col'],
  .row--60 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--60 > [class*='col'],
  .row--60 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--60 > [class*='col'],
  .row--60 > [class*='col-'] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
}

/*=============================
	Overlay styles 
==============================*/
[data-overlay],
[data-black-overlay],
[data-white-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay] > div,
[data-overlay] > *,
[data-black-overlay] > div,
[data-black-overlay] > *,
[data-white-overlay] > div,
[data-white-overlay] > * {
  position: relative;
  z-index: 2;
}

[data-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

[data-overlay]:before {
  background: var(--color-primary);
}

[data-black-overlay]:before {
  background-color: #000000;
}

[data-white-overlay]:before {
  background-color: #ffffff;
}

[data-overlay='1']:before,
[data-black-overlay='1']:before,
[data-white-overlay='1']:before {
  opacity: 0.1;
}

[data-overlay='2']:before,
[data-black-overlay='2']:before,
[data-white-overlay='2']:before {
  opacity: 0.2;
}

[data-overlay='3']:before,
[data-black-overlay='3']:before,
[data-white-overlay='3']:before {
  opacity: 0.3;
}

[data-overlay='4']:before,
[data-black-overlay='4']:before,
[data-white-overlay='4']:before {
  opacity: 0.4;
}

[data-overlay='5']:before,
[data-black-overlay='5']:before,
[data-white-overlay='5']:before {
  opacity: 0.5;
}

[data-overlay='6']:before,
[data-black-overlay='6']:before,
[data-white-overlay='6']:before {
  opacity: 0.6;
}

[data-overlay='7']:before,
[data-black-overlay='7']:before,
[data-white-overlay='7']:before {
  opacity: 0.7;
}

[data-overlay='8']:before,
[data-black-overlay='8']:before,
[data-white-overlay='8']:before {
  opacity: 0.8;
}

[data-overlay='9']:before,
[data-black-overlay='9']:before,
[data-white-overlay='9']:before {
  opacity: 0.9;
}

[data-overlay='10']:before,
[data-black-overlay='10']:before,
[data-white-overlay='10']:before {
  opacity: 1;
}

/*------------------------------
    Scroll Up 
--------------------------------*/
#scrollUp {
  width: 70px;
  height: 80px;
  right: 100px;
  bottom: 60px;
  text-align: center;
  z-index: 9811 !important;
  text-decoration: none;
  background: #fff;
  line-height: 80px;
  color: #757589;
  font-size: 15px;
  font-weight: 400;
  transition: var(--transition);
  display: inline-block;
  background: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #scrollUp {
    right: 20px;
    bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #scrollUp {
    right: 20px;
    bottom: 40px;
  }
}
#scrollUp::before {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 2, 72, 0.1);
  content: '';
  position: absolute;
  z-index: -1;
  transform-style: preserve-3d;
  transform: rotateY(-10deg);
  filter: blur(50px);
}
#scrollUp::after {
  background: #ffffff;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform-style: preserve-3d;
  transform: rotateY(-10deg);
}
@media only screen and (max-width: 767px) {
  #scrollUp {
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 60px;
    line-height: 60px;
  }
}
#scrollUp span.text {
  position: relative;
  display: inline-block;
  margin-top: 7px;
}
@media only screen and (max-width: 767px) {
  #scrollUp span.text {
    margin-top: 3px;
  }
}
#scrollUp span.text::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  border-color: transparent transparent var(--color-primary) transparent;
  position: absolute;
  content: '';
  left: 50%;
  top: 21%;
  transform: translateX(-50%);
}
#scrollUp:hover span.text {
  color: var(--color-primary);
}

@keyframes customOne {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    opacity: 0;
  }
}
@keyframes liveAuction {
  0% {
    background: var(--color-white);
  }
  100% {
    background: var(--color-danger);
  }
}
.cd-intro {
  margin: 4em auto;
}

@media only screen and (min-width: 768px) {
  .cd-intro {
    margin: 5em auto;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    margin: 6em auto;
  }
}
.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .cd-headline {
    font-size: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .cd-headline {
    font-size: 26px;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xclip 

-------------------------------- */
.cd-headline.clip span {
  display: inline-block;
  padding: 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: middle;
  position: relative;
  margin-top: -20px;
}
.cd-headline.clip .cd-words-wrapper b {
  font-weight: 700;
}

.cd-headline.clip .cd-words-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-primary-3);
  transform: translateY(-50%);
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/**
 * Settings
 */
/**
  * Easings
  */
/**
  * Core
  */
[data-sal] {
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-duration: var(--sal-duration, 0.2s);
  transition-delay: var(--sal-delay, 0s);
  transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration='200'] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration='250'] {
  transition-duration: 0.25s;
}

[data-sal][data-sal-duration='300'] {
  transition-duration: 0.3s;
}

[data-sal][data-sal-duration='350'] {
  transition-duration: 0.35s;
}

[data-sal][data-sal-duration='400'] {
  transition-duration: 0.4s;
}

[data-sal][data-sal-duration='450'] {
  transition-duration: 0.45s;
}

[data-sal][data-sal-duration='500'] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration='550'] {
  transition-duration: 0.55s;
}

[data-sal][data-sal-duration='600'] {
  transition-duration: 0.6s;
}

[data-sal][data-sal-duration='650'] {
  transition-duration: 0.65s;
}

[data-sal][data-sal-duration='700'] {
  transition-duration: 0.7s;
}

[data-sal][data-sal-duration='750'] {
  transition-duration: 0.75s;
}

[data-sal][data-sal-duration='800'] {
  transition-duration: 0.8s;
}

[data-sal][data-sal-duration='850'] {
  transition-duration: 0.85s;
}

[data-sal][data-sal-duration='900'] {
  transition-duration: 0.9s;
}

[data-sal][data-sal-duration='950'] {
  transition-duration: 0.95s;
}

[data-sal][data-sal-duration='1000'] {
  transition-duration: 1s;
}

[data-sal][data-sal-duration='1050'] {
  transition-duration: 1.05s;
}

[data-sal][data-sal-duration='1100'] {
  transition-duration: 1.1s;
}

[data-sal][data-sal-duration='1150'] {
  transition-duration: 1.15s;
}

[data-sal][data-sal-duration='1200'] {
  transition-duration: 1.2s;
}

[data-sal][data-sal-duration='1250'] {
  transition-duration: 1.25s;
}

[data-sal][data-sal-duration='1300'] {
  transition-duration: 1.3s;
}

[data-sal][data-sal-duration='1350'] {
  transition-duration: 1.35s;
}

[data-sal][data-sal-duration='1400'] {
  transition-duration: 1.4s;
}

[data-sal][data-sal-duration='1450'] {
  transition-duration: 1.45s;
}

[data-sal][data-sal-duration='1500'] {
  transition-duration: 1.5s;
}

[data-sal][data-sal-duration='1550'] {
  transition-duration: 1.55s;
}

[data-sal][data-sal-duration='1600'] {
  transition-duration: 1.6s;
}

[data-sal][data-sal-duration='1650'] {
  transition-duration: 1.65s;
}

[data-sal][data-sal-duration='1700'] {
  transition-duration: 1.7s;
}

[data-sal][data-sal-duration='1750'] {
  transition-duration: 1.75s;
}

[data-sal][data-sal-duration='1800'] {
  transition-duration: 1.8s;
}

[data-sal][data-sal-duration='1850'] {
  transition-duration: 1.85s;
}

[data-sal][data-sal-duration='1900'] {
  transition-duration: 1.9s;
}

[data-sal][data-sal-duration='1950'] {
  transition-duration: 1.95s;
}

[data-sal][data-sal-duration='2000'] {
  transition-duration: 2s;
}

[data-sal][data-sal-delay='50'] {
  transition-delay: 0.05s;
}

[data-sal][data-sal-delay='100'] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-delay='150'] {
  transition-delay: 0.15s;
}

[data-sal][data-sal-delay='200'] {
  transition-delay: 0.2s;
}

[data-sal][data-sal-delay='250'] {
  transition-delay: 0.25s;
}

[data-sal][data-sal-delay='300'] {
  transition-delay: 0.3s;
}

[data-sal][data-sal-delay='350'] {
  transition-delay: 0.35s;
}

[data-sal][data-sal-delay='400'] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-delay='450'] {
  transition-delay: 0.45s;
}

[data-sal][data-sal-delay='500'] {
  transition-delay: 0.5s;
}

[data-sal][data-sal-delay='550'] {
  transition-delay: 0.55s;
}

[data-sal][data-sal-delay='600'] {
  transition-delay: 0.6s;
}

[data-sal][data-sal-delay='650'] {
  transition-delay: 0.65s;
}

[data-sal][data-sal-delay='700'] {
  transition-delay: 0.7s;
}

[data-sal][data-sal-delay='750'] {
  transition-delay: 0.75s;
}

[data-sal][data-sal-delay='800'] {
  transition-delay: 0.8s;
}

[data-sal][data-sal-delay='850'] {
  transition-delay: 0.85s;
}

[data-sal][data-sal-delay='900'] {
  transition-delay: 0.9s;
}

[data-sal][data-sal-delay='950'] {
  transition-delay: 0.95s;
}

[data-sal][data-sal-delay='1000'] {
  transition-delay: 1s;
}

[data-sal][data-sal-easing='linear'] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing='ease'] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing='ease-in'] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing='ease-out'] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing='ease-in-out'] {
  transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing='ease-in-cubic'] {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing='ease-out-cubic'] {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing='ease-in-out-cubic'] {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing='ease-in-circ'] {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing='ease-out-circ'] {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing='ease-in-out-circ'] {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing='ease-in-expo'] {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing='ease-out-expo'] {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing='ease-in-out-expo'] {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing='ease-in-quad'] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing='ease-out-quad'] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing='ease-in-out-quad'] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing='ease-in-quart'] {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing='ease-out-quart'] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing='ease-in-out-quart'] {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing='ease-in-quint'] {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing='ease-out-quint'] {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing='ease-in-out-quint'] {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing='ease-in-sine'] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing='ease-out-sine'] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing='ease-in-out-sine'] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing='ease-in-back'] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing='ease-out-back'] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing='ease-in-out-back'] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/**
  * Animations
  */
[data-sal|='fade'] {
  opacity: 0;
  transition-property: opacity;
}

[data-sal|='fade'].sal-animate,
body.sal-disabled [data-sal|='fade'] {
  opacity: 1;
}

[data-sal|='slide'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal='slide-up'] {
  transform: translateY(20%);
}

[data-sal='slide-down'] {
  transform: translateY(-20%);
}

[data-sal='slide-left'] {
  transform: translateX(20%);
}

[data-sal='slide-right'] {
  transform: translateX(-20%);
}

[data-sal|='slide'].sal-animate,
body.sal-disabled [data-sal|='slide'] {
  opacity: 1;
  transform: none;
}

[data-sal|='zoom'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal='zoom-in'] {
  transform: scale(0.5);
}

[data-sal='zoom-out'] {
  transform: scale(1.1);
}

[data-sal|='zoom'].sal-animate,
body.sal-disabled [data-sal|='zoom'] {
  opacity: 1;
  transform: none;
}

[data-sal|='flip'] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-sal='flip-left'] {
  transform: perspective(2000px) rotateY(-91deg);
}

[data-sal='flip-right'] {
  transform: perspective(2000px) rotateY(91deg);
}

[data-sal='flip-up'] {
  transform: perspective(2000px) rotateX(-91deg);
}

[data-sal='flip-down'] {
  transform: perspective(2000px) rotateX(91deg);
}

[data-sal|='flip'].sal-animate,
body.sal-disabled [data-sal|='flip'] {
  transform: none;
}

/* header styles */
.header-style-one .header-top {
  background: var(--color-heading-1);
  padding: 8px 0;
}
.header-style-one .header-top .header-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.header-style-one .header-top .header-top-inner .text {
  margin-bottom: 0;
  line-height: 1;
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 500;
}
.header-style-one .header-top .header-top-inner .text span {
  color: var(--color-primary);
  margin-left: 6px;
}
.header-style-one .header-style-one-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin: 16px 0 0; */
  background: var(--color-white);
  border: 1px solid rgba(3, 7, 18, 0.1);
  position: relative;
  z-index: 3;
}
.header-style-one .header-style-one-wrapper .left-area {
  padding: 10px;
  border-right: 1px solid rgba(3, 7, 18, 0.1);
}
.header-style-one .header-style-one-wrapper .button-area-start {
  padding: 12px 50px;
  border-left: 1px solid rgba(3, 7, 18, 0.1);
  display: flex;
  gap: 20px;
}

.main-nav-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav-area ul li {
  margin: 0;
  position: relative;
}
.main-nav-area ul li:hover a::after {
  width: 100%;
}
.main-nav-area ul li a {
  color: black;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-primary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.main-nav-area ul li a::after {
  content: '';
  position: absolute;
  z-index: 1;
  background: var(--color-heading-1);
  height: 1px;
  width: 0;
  bottom: 1px;
  left: 0;
  transition: var(--transition);
}
.main-nav-area ul li.has-dropdown {
  cursor: pointer;
  padding: 24px 0;
}
.main-nav-area ul li.has-dropdown:hover .sub-menu {
  pointer-events: all;
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.main-nav-area ul li.has-dropdown .sub-menu {
  position: absolute;
  top: 100%;
  background-color: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px 0px;
  min-width: 150px;
  left: -10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  padding: 12px 0px !important;
  display: block;
}
.main-nav-area ul li.has-dropdown .sub-menu .item-link::before {
  display: none;
}
.main-nav-area ul li.has-dropdown .sub-menu li > a {
  padding: 7px 16px;
  display: block;
  text-align: start;
}
.main-nav-area ul li.has-dropdown .sub-menu li > a::after {
  display: none;
}
.main-nav-area ul li.active .main-element::after {
  width: 100%;
}

.side-bar {
  position: absolute;
  overflow: hidden;
  top: 121px;
  right: 0;
  width: 100%;
  padding: 0;
  height: auto;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1;
  transition: all 0.4s;
  display: none;
  flex-direction: column;
  overflow: hidden;
  height: 0;
}
.side-bar .inner-main-wrapper-desk .thumbnail {
  display: flex;
  justify-content: center;
}
.side-bar .inner-main-wrapper-desk .thumbnail img {
  width: 85%;
  margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content {
  text-align: center;
  margin-top: 30px;
}
.side-bar .inner-main-wrapper-desk .inner-content p {
  max-width: 95%;
  text-align: center;
  margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content .title {
  font-weight: 600;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer {
  padding-top: 50px;
  margin-top: 80px;
  border-top: 1px solid #c2c2c2;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .title {
  font-weight: 500;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer a.wpr-btn {
  margin: auto;
}
.side-bar .button-area {
  margin-top: 30px;
}
.side-bar .button-area .wpr-btn {
  max-width: 100%;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.side-bar .sidebar-inner {
  padding: 40px 25px;
}

.side-bar.show {
  right: 0;
  height: auto;
}

#menu-btn {
  cursor: pointer;
  padding: 10px;
  display: none;
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -3px 0px #1a1a1a,
    inset 0px -4px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #menu-btn {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #menu-btn {
    display: block;
  }
}
#menu-btn span {
  display: block;
  background: var(--color-white);
  width: 25px;
  height: 2px;
  transition: all 0.3s;
}
#menu-btn.cross span.one {
  transform: rotate(45deg) translateY(2px) translateX(4px);
}
#menu-btn.cross span.two {
  transform: rotate(-45deg) translateY(-2px) translateX(4px);
}

#side-bar .mobile-menu-main {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}

.mobile-menu-main {
  overflow: scroll;
}
.mobile-menu-main nav ul {
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu-main nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-menu-main nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown {
  position: relative;
}
.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
  border-bottom: 2px solid var(--color-primary);
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
}
.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: '\f054';
  font-family: 'Font Awesome 6 pro' !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: rgba(38, 38, 44, 0.5);
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown.mm-active::after {
  content: '\f077';
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl::after {
  font-size: 10px;
  padding: 3px 10px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
  padding: 0 20px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
  margin: 10px 0 !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
  color: var(--color-primary);
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.mobile-menu-main nav ul li .main-element {
  display: block;
  max-width: max-content;
  font-family: var(--font-primary);
  color: var(--color-heading-1);
  padding: 0;
  font-size: 16px;
}
.mobile-menu-main nav ul li ul {
  gap: 10px;
  padding-top: 15px !important;
}
.mobile-menu-main nav ul li ul li {
  line-height: 1;
}
.mobile-menu-main nav ul li ul li a {
  font-size: 14px;
  color: var(--color-heading-1);
}
.mobile-menu-main .social-wrapper-one {
  margin-top: 50px;
}

/* elements */
.container {
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-2 {
  max-width: 1064px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199px) {
  .container-2 {
    padding: 0 15px;
  }
}

.section-bg {
  background: var(--section-bg-gray);
}

.bg_white {
  background: var(--body-bg);
}

.g-48 {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 48px;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .g-lg-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
}

.bg-gray {
  background: #f8f9fb;
}

.bg-gray-2 {
  background: var(--bg-gray-2);
}

.overflow-right-div {
  width: 125%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .overflow-right-div {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .overflow-right-div {
    width: 100%;
  }
}

.gsap-marker-end,
.gsap-marker-start,
.gsap-marker-scroller-end,
.gsap-marker-scroller-start {
  display: none !important;
}

.bg-dark {
  background: var(--color-bg-dark) !important;
}

.bg-dark2 {
  background: var(--color-bg-dark-2) !important;
}

.bg-dark-color {
  background: var(--footer-bg-2);
}

.bg-primary {
  background: var(--color-primary) !important;
}

.border-radious-top-section {
  border-radius: 32px 32px 0px 0px;
}

.radius-0 {
  border-radius: 0 !important;
}

.color-secondary-2 {
  color: var(--color-secondary-2);
  -webkit-text-fill-color: var(--color-secondary-2) !important;
}

@media (max-width: 991px) {
  .order-change {
    order: 2;
  }
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--color-white);
  width: 50%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.loaded .loader-wrapper .loader-section.section-right {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

.loader:after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 4px solid transparent;
  border-top-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: 1001;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.container,
.custom-container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.custom-container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1.6rem);
  padding-left: var(--bs-gutter-x, 1.6rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1408px;
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .custom-container {
    max-width: 1575px;
  }
}
.section-title-area .sub-title {
  color: var(--color-heading-1);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  position: relative;
  padding: 4px 5px 3px 24px;
  z-index: 1;
  background: #f3f4f6;
  max-width: max-content;
  font-family: var(--font-primary);
}
.section-title-area .sub-title::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: #cf1440;
}
.section-title-area .sub-title.with-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-title-area .section-title {
  color: var(--color-heading-1);
  margin-bottom: 8px;
  text-transform: capitalize;
}
.section-title-area .desc {
  color: var(--color-body-1);
  font-weight: 500;
  margin-top: 10px;
}
.section-title-area.center-style {
  text-align: center;
}
.section-title-area.center-style .sub-title {
  margin-left: auto;
  margin-right: auto;
  max-width: max-content;
}

.cp {
  color: var(--color-primary) !important;
}

.cw {
  color: var(--color-white) !important;
}

.ch {
  color: var(--color-heading-1) !important;
}

.cb {
  color: #0d0d0d !important;
}

.body-bg-one {
  background: var(--color-bg-1) !important;
}

ul {
  padding: 0 !important;
}
ul li {
  list-style: none !important;
}

.mb--16 {
  margin-bottom: 16px;
}

.second-font {
  font-family: var(--font-secondary);
}

.font-normal {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-normal {
  text-transform: none !important;
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-input-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}

.search-input-area .search-input-inner .input-div input {
  background: #f7f7f7;
  border-radius: 5px;
  height: 55px;
  border: 1px solid transparent;
}
.search-input-area .search-input-inner .input-div input:focus {
  border: 1px solid var(--color-primary);
}

.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 18px 21px;
  background: var(--color-primary);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
}

.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 38px;
  top: 22px;
}

.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 18px;
}
.search-input-area .search-close-icon i:hover {
  color: #f7f7f7;
}
.search-input-area .search-close-icon i:hover::after {
  background: var(--color-primary);
}

.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: '';
  border-radius: 5px;
  background: #553cdf14;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

.title-hover {
  background-size: 200% 2px;
  background-position: 100% 95%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, #000),
    color-stop(50%, transparent)
  );
  background-image: linear-gradient(to right, #000 50%, transparent 50%);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.title-hover:hover {
  background-position: 0% 95%;
  color: #000;
}

.title-w-hover {
  background-size: 200% 2px;
  background-position: 100% 95%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, #ffffff),
    color-stop(50%, transparent)
  );
  background-image: linear-gradient(to right, #ffffff 50%, transparent 50%);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.title-w-hover:hover {
  background-position: 0% 95%;
  color: #ffffff;
}

.title-p-hover {
  background-size: 200% 2px;
  background-position: 101% 95%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, var(--color-primary)),
    color-stop(50%, transparent)
  );
  background-image: linear-gradient(
    to right,
    var(--color-primary) 50%,
    transparent 50%
  );
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.title-p-hover:hover {
  background-position: 0% 95%;
  color: var(--color-primary);
}

.image-transform {
  overflow: hidden;
}
.image-transform .hover-image {
  transform: scale(107%);
  transition: var(--transition);
}
.image-transform:hover .hover-image {
  transform: scale(100%);
}

.home-bg {
  background: var(--color-bg-1);
}

.square-dot {
  position: relative;
  z-index: 1;
}
.square-dot .square-shape {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  background: var(--color-heading-1);
}
.square-dot .square-shape.top-left {
  top: -3px;
  left: -3px;
}
.square-dot .square-shape.bottom-left {
  bottom: -3px;
  left: -3px;
}
.square-dot .square-shape.top-right {
  top: -3px;
  right: -3px;
}
.square-dot .square-shape.bottom-right {
  bottom: -3px;
  right: -3px;
}

@keyframes zoomEffect {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.wow {
  visibility: hidden;
}

@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.scaleInFade {
  -webkit-animation-name: scaleInFade;
  animation-name: scaleInFade;
}

@-webkit-keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}
@keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}
.scaleOut {
  -webkit-animation-name: scaleOutFade;
  animation-name: scaleOutFade;
}

@-webkit-keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
@keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
/* Flip In X */
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

.widthInFade {
  -webkit-animation-name: widthInFade;
  animation-name: widthInFade;
}

.radius-4 {
  border-radius: 4px !important;
}

.radius-6 {
  border-radius: 6px !important;
}

.radius-10 {
  border-radius: 10px !important;
}

.position-bottom-center {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.m-w-100 {
  max-width: 100% !important;
}

.border-1 {
  border: 1px solid var(--color-border);
}

.border-top,
.border-bottom,
.border-left,
.border-right {
  border-color: var(--color-border);
  border-style: solid;
}

.border-top {
  border-width: 1px 0 0;
}

.border-bottom {
  border-width: 0 0 1px;
}

.border-left {
  border-width: 0 0 0 1px;
}

.border-right {
  border-width: 0 1px 0 0;
}

.w-max {
  max-width: max-content;
}

.anim-scale {
  overflow: hidden;
  transition: var(--transition);
}
.anim-scale .scale-image {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.anim-scale:hover .scale-image {
  transform: scale(1.1);
}

.anime-overlay {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.anime-overlay::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;
  transition: all 0.6s;
}
.anime-overlay:hover::after {
  height: 250%;
  background-color: transparent;
  transition: all 500ms linear;
}

.after-none::after {
  display: none !important;
}

.gap-26px {
  gap: 26px;
}

.gap-30px {
  gap: 30px;
}

.c-w {
  color: var(--color-white) !important;
}

.c-p {
  color: var(--color-primary);
}

.c-b {
  color: var(--color-body-1) !important;
}

.c-h {
  color: var(--color-heading-1) !important;
}

.lp-6 {
  letter-spacing: -0.06em !important;
}

.h-300 {
  height: 300px;
}

.h-370 {
  height: 370px;
}

.m-w-400 {
  max-width: 400px;
}

.m-w-420 {
  max-width: 420px;
}

.m-w-450 {
  max-width: 450px;
}

.w-100 {
  width: 100% !important;
}

.m-w-100 {
  max-width: 100% !important;
}

.bg-dark .section-title-area .desc {
  color: var(--color-body-dark);
}

.font-normal {
  font-weight: 400 !important;
}

.skew-up > div {
  overflow: hidden;
}

.split-parent {
  overflow: hidden;
}

.gsap-marker-end {
  display: none !important;
}

.social-area a,
.social-wrapper a {
  position: relative;
  z-index: 1;
}
.social-area a:hover::after,
.social-wrapper a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(30px);
}
.social-area a::after,
.social-wrapper a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 6px 8px;
  line-height: 1;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.overflow-x-visible {
  overflow-x: visible;
}

.white-low {
  color: rgba(255, 255, 255, 0.1) !important;
}

section {
  border-width: 1px 0;
  border-style: solid;
  border-color: transparent;
}
@media (max-width: 1440px) {
  section {
    border-color: rgba(3, 7, 18, 0.1);
  }
}
section .section-inner.border-1 {
  border-width: 1px 1px !important;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
}
@media (max-width: 1440px) {
  section .section-inner.border-1 {
    border-width: 0 1px !important;
  }
}

.preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  --preloader-clip: 0;
  clip-path: inset(0 0 0 var(--preloader-clip));
  background-color: var(--color-black);
}

.preloader span {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  overflow-x: hidden;
}

.preloader .preloader-gutters {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
}

.preloader .preloader-gutters .bar {
  width: 12.5%;
  height: 100%;
  background: transparent;
  position: relative;
}

.preloader .preloader-gutters .bar .inner-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-white);
}

.preloader .preloader-overlay {
  background-color: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  transform: translateX(-100%);
  opacity: 0.2;
}

.preloader .site-name {
  background-color: var(--color-secondary);
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.preloader .site-name span {
  font-size: 80px;
}

@media only screen and (max-width: 767px) {
  .preloader .site-name span {
    font-size: 40px;
  }
}
/*-- Button Go Top --*/
#goTop {
  position: fixed;
  padding: 0;
  bottom: 40px;
  right: 20px;
  width: 38px;
  height: 38px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  border-radius: 99px;
  box-shadow: 0px 4px 20px 0px #ffffff1a;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#goTop .border-progress {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 99px;
  border: 2px solid var(--color-primary);
  mask-image: conic-gradient(
    var(--color-primary) var(--progress-angle, 0deg),
    transparent 0
  );
  -webkit-mask-image: conic-gradient(
    var(--color-primary) var(--progress-angle, 0deg),
    transparent 0
  );
  content: '';
  z-index: 1;
  transition: var(--transition);
}
#goTop.show {
  opacity: 1;
  visibility: visible;
}
#goTop .icon {
  font-size: 16px;
  color: var(--color-white);
  aspect-ratio: 1;
}
#goTop .ic-wrap {
  transition: var(--transition);
  animation: iconBounce 2s linear 0s infinite;
  display: flex;
}
#goTop:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.wpr-btn {
  max-width: max-content;
  padding: 16px 24px 16px;
  line-height: 1;
  transition: var(--transition);
  font-weight: 600;
  background-color: var(--color-primary);
  overflow: hidden;
  position: relative;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 25px;
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #e1013f 21.13%, #e1013f 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -3px 0px #1a1a1a,
    inset 0px -4px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.wpr-btn.btn-white {
  transition: var(--transition);
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.04),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  border-radius: 12px;
  transition: var(--transition);
}
.wpr-btn.btn-white:hover {
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.18),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -6px 0px #e4e4e4,
    inset 0px 0px 0px 1px #fafafa;
}
.wpr-btn.with-icon {
  padding: 24px 24px 24px 24px;
}
.wpr-btn.with-icon .inner {
  position: absolute;
  width: 95%;
  height: 52px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wpr-btn.with-icon .icon {
  background: linear-gradient(178.82deg, #e2013f 1.01%, #e20441 105.12%);
  box-shadow:
    4px 8px 2px rgba(0, 0, 0, 0.08),
    inset 0px -2px 0.5px #e1013f,
    inset 0px 1px 0px #ffffff;
  border-radius: 8px;
  width: 52px;
  height: 52px;
  line-height: 52px;
  display: block;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
  transition: var(--transition);
  overflow: hidden;
}
.wpr-btn.with-icon .icon span img {
  min-width: 19px;
  opacity: 1;
  animation: none;
}
.wpr-btn.with-icon .icon .fixed-arrow {
  margin-bottom: 2px;
}
.wpr-btn.with-icon:hover .icon {
  width: 100%;
}
.wpr-btn.with-icon:hover .icon span img {
  opacity: 0.15;
  animation: fadeMove 1.2s infinite;
}
.wpr-btn.with-icon:hover .icon span:nth-child(6) img {
  animation-delay: 0.5s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(5) img {
  animation-delay: 0.4s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(4) img {
  animation-delay: 0.3s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(3) img {
  animation-delay: 0.2s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(2) img {
  animation-delay: 0.1s;
}
.wpr-btn.with-icon:hover .icon span:nth-child(1) img {
  animation-delay: 0s;
}
.wpr-btn:focus {
  border: none;
  box-shadow: none;
}

.under-line-btn {
  color: var(--color-primary);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.32px;
  position: relative;
  transition: all 0.4s;
}
.under-line-btn::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -5px;
  height: 1px;
  background: #bcbfdb;
  width: 100%;
}
.under-line-btn::before {
  position: absolute;
  content: '';
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--color-primary);
  width: 0;
  z-index: 1;
  transition: all 0.4s;
}
.under-line-btn:hover::before {
  left: 0;
  width: 100%;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
  background-color: var(--color-primary);
  border-color: unset;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wpr-banner-area {
  position: relative;
  z-index: 0;
  margin: 0 0 16px;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
  background-color: white;
}
.wpr-banner-area .banner-content-area {
  height: 800px;
  padding: 172px 0 115px;
  position: relative;
  z-index: 1;
  border-width: 0 1px;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
  overflow: hidden;
}
.wpr-banner-area .banner-content-area .top-shape {
  position: absolute;
  width: 100px;
  height: 30%;
  background: var(--color-bg-1);
  border-width: 0 1px;
  border-style: dotted;
  border-color: rgba(67, 67, 67, 0.5);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.wpr-banner-area .banner-content-area .section-title {
  display: flex;
  align-items: center;
  font-size: 60px;
  font-weight: 500;
}
.wpr-banner-area .banner-content-area .section-title .left-area {
  max-width: 100%;
  width: 100%;
  text-align: center;
  background: var(--color-bg-1);
  padding: 35px 0;
  border-width: 1px 0;
  border-style: dotted;
  border-color: rgba(67, 67, 67, 0.5);
}
.wpr-banner-area .banner-content-area .section-title .left-area .arrow-track {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 38px;
  padding: 0;
  position: absolute;
  width: 94%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35px;
  overflow: hidden;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow {
  height: 16px;
  opacity: 0.15;
  display: flex;
  animation: fadeMove 1.2s infinite;
  min-width: 13px;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow
  img {
  position: unset;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(10) {
  animation-delay: 0.9s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(9) {
  animation-delay: 0.8s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(8) {
  animation-delay: 0.7s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(7) {
  animation-delay: 0.6s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(6) {
  animation-delay: 0.5s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(5) {
  animation-delay: 0.4s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(4) {
  animation-delay: 0.3s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(3) {
  animation-delay: 0.2s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(2) {
  animation-delay: 0.1s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .left-area
  .arrow-track
  .arrow:nth-child(1) {
  animation-delay: 0s;
}
.wpr-banner-area .banner-content-area .section-title .right-area {
  max-width: 100%;
  width: 100%;
  text-align: center;
  background: var(--color-bg-1);
  padding: 35px 0;
  border-width: 1px 0;
  border-style: dotted;
  border-color: rgba(67, 67, 67, 0.5);
  position: relative;
  z-index: 1;
}
.wpr-banner-area .banner-content-area .section-title .right-area .arrow-track {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0;
  position: absolute;
  width: 94%;
  right: 50%;
  transform: translateX(50%);
  top: -35px;
  overflow: hidden;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow {
  height: 16px;
  opacity: 0.15;
  display: flex;
  animation: fadeMove 1.2s infinite;
  min-width: 13px;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow
  img {
  position: unset;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(1) {
  animation-delay: 0.9s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(2) {
  animation-delay: 0.8s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(3) {
  animation-delay: 0.7s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(4) {
  animation-delay: 0.6s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(5) {
  animation-delay: 0.5s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(6) {
  animation-delay: 0.4s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(7) {
  animation-delay: 0.3s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(8) {
  animation-delay: 0.2s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(9) {
  animation-delay: 0.1s;
}
.wpr-banner-area
  .banner-content-area
  .section-title
  .right-area
  .arrow-track
  .arrow:nth-child(10) {
  animation-delay: 0s;
}
.wpr-banner-area .banner-content-area .section-title .mid-icon {
  min-width: max-content;
}
.wpr-banner-area .banner-content-area .section-title .text {
  text-align: center;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  background:
    linear-gradient(137.66deg, #55595c 21.13%, #000000 80.53%), #030712;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wpr-banner-area .banner-content-area .bg-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -2;
}
.wpr-banner-area .banner-content-area .bg-shape img {
  width: 100%;
  height: 100%;
}
.wpr-banner-area .banner-content-area .banner-shape-area img {
  position: absolute;
  z-index: 1;
}
.wpr-banner-area .banner-content-area .banner-shape-area img.one {
  top: 0;
  left: 0;
}
.wpr-banner-area .banner-content-area .banner-shape-area img.two {
  bottom: 0;
  right: 0;
}
.wpr-banner-area .banner-content-area .text-area {
  text-align: center;
  max-width: 529px;
  margin: auto;
  margin-top: 52px;
}
.wpr-banner-area .banner-content-area .text-area .desc {
  margin-bottom: 25px;
  color: var(--color-heading-1);
}
.wpr-banner-area .banner-content-area .text-area .button-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.wpr-banner-area .banner-content-area .text-area .button-area .wpr-btn {
  font-size: 18px;
}
.wpr-banner-area .banner-content-area .text-area .button-area .btn-white {
  padding: 26px 24px 28px;
  color: var(--color-heading-1);
}
.wpr-banner-area.breadcrumb .banner-content-area {Confidential Maintenance Report | Coastal Farmer | Period: June 2026
  height: auto;
  padding: 100px 0;
}
.wpr-banner-area.breadcrumb .banner-content-area .section-title {
  text-align: center;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  background:
    linear-gradient(137.66deg, #cf1440 21.13%, #e1013f 80.53%), #cf1440;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  justify-content: center;
  margin-bottom: 20px;
}
.wpr-banner-area.breadcrumb .banner-content-area .desc {
  max-width: max-content;
  margin: auto;
  text-align: center;
  font-size: 22px;
}

.bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

@keyframes moveright {
  from {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes moveLeft {
  from {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.move-right {
  animation: moveright 1.4s linear;
}

.move-left {
  animation: moveLeft 4.4s linear;
}

@keyframes fadeMove {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.15;
    transform: scale(1);
  }
}
.wpr-banner-area.error-page .banner-content-area .section-title {
  font-size: 72px;
}
.wpr-banner-area.error-page .banner-content-area .desc {
  margin-bottom: 30px;
}
.wpr-banner-area.error-page .banner-content-area .button-area {
  max-width: max-content;
  margin: auto;
}

.wpr-brand-area .section-inner {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgba(3, 7, 18, 0.1);
}
.wpr-brand-area .section-inner .left-text {
  min-width: 200px;
  height: 100%;
  text-align: center;
}
.wpr-brand-area .section-inner .left-text p {
  text-align: start;
  max-width: max-content;
  margin: auto;
  color: var(--color-heading-1);
  font-size: 14px;
}
.wpr-brand-area .section-inner .right-marquee-area {
  border-left: 1px solid rgba(3, 7, 18, 0.1);
  overflow: hidden;
}
.wpr-brand-area .section-inner .right-marquee-area .brand-inner {
  display: flex;
  align-items: center;
  will-change: transform;
  animation: marquee 20s linear infinite;
}
.wpr-brand-area .section-inner .right-marquee-area .brand-wrapper {
  width: 200px;
  height: 200px;
  border-width: 0 1px;
  border-style: solid;
  border-color: rgba(3, 7, 18, 0.1);
  text-align: center;
  line-height: 200px;
  display: block;
  flex: 0 0 auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.title-style-one-center {
  text-align: center;
}
.title-style-one-center span {
  color: var(--color-primary);
  text-align: center;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.28px;
}
@media screen and (max-width: 576px) {
  .title-style-one-center br {
    display: none;
  }
}
.title-style-one-center .title {
  color: var(--color-title);
  text-align: center;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: -1.92px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .title-style-one-center .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-one-center .title {
    font-size: 32px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 576px) {
  .title-style-one-center .title br {
    display: none;
  }
}

.title-style-one-left {
  text-align: left;
}
.title-style-one-left span {
  color: var(--color-primary);
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.28px;
}
.title-style-one-left .title {
  color: var(--color-title);
  text-align: left;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: -1.92px;
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .title-style-one-left .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .title-style-one-left .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-one-left .title {
    font-size: 30px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 576px) {
  .title-style-one-left .title br {
    display: none;
  }
}

.title-hover {
  background-size: 200% 1px;
  background-position: 100% 95%;
  background-repeat: no-repeat;
  transition: all 500ms;
  color: #000;
}
.title-hover:hover {
  background-position: 0% 95%;
  background-image: linear-gradient(
    to right,
    currentColor 50%,
    transparent 50%
  );
}

.wpr-pricing-plans-area .section-inner .section-top-area {
  padding: 100px 0 60px;
}
.wpr-pricing-plans-area .section-inner .section-mid-area {
  display: flex;
  border-top: 1px solid #e5e7eb;
}
.wpr-pricing-plans-area .section-inner .section-mid-area .pricing-inner {
  width: 50%;
  padding: 60px;
  border-right: 1px solid #e5e7eb;
  z-index: 9;
}
.wpr-pricing-plans-area
  .section-inner
  .section-mid-area
  .pricing-inner:last-child {
  border: none;
}

.pricing-wrapper {
  background: linear-gradient(137.66deg, #f5f5f5 21.13%, #f2f2f2 80.53%);
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  border-radius: 12px;
  padding: 16px 16px 54px;
}
.pricing-wrapper .pricing-header {
  background: var(--color-white);
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}
.pricing-wrapper .pricing-header .plan-type {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.pricing-wrapper .pricing-header .plan-type .h6 {
  font-family: var(--font-secondary);
  text-transform: none;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  font-size: 18px;
}
.pricing-wrapper .pricing-header .plan-type p {
  font-size: 14px;
  line-height: 1;
  padding: 3px 6px 3px 22px;
  background: rgba(152, 255, 3, 0.15);
  position: relative;
  z-index: 1;
  font-family: var(--font-primary);
  color: var(--color-heading-1);
  font-weight: 400;
}
.pricing-wrapper .pricing-header .plan-type p::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
}
.pricing-wrapper .pricing-header .title {
  font-family: var(--font-secondary);
  text-transform: none;
  font-weight: 600;
  margin-bottom: 65px;
  font-size: 32px;
  letter-spacing: -0.01em;
}
.pricing-wrapper .pricing-header .title span {
  color: var(--color-body-1);
}
.pricing-wrapper .pricing-header .bottom-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-wrapper .pricing-header .bottom-pricing .price {
  font-family: var(--font-secondary);
  text-transform: none;
  font-weight: 600;
  margin-bottom: 0;
}
.pricing-wrapper .pricing-header .bottom-pricing .price span {
  font-size: 14px;
  color: var(--color-body-1);
  font-weight: 400;
  letter-spacing: 0;
}
.pricing-wrapper .pricing-header .bottom-pricing .button-area .wpr-btn {
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    60px 50px 80px rgba(0, 0, 0, 0.15),
    20px 41.7776px 33.4221px rgba(0, 0, 0, 0.1503),
    10px 22.3363px 17.869px rgba(0, 0, 0, 0.1417),
    4px 12.5216px 10.0172px rgba(0, 0, 0, 0.135),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -3px 0px #1a1a1a,
    inset 0px -4px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  max-width: 100%;
  width: 253px;
  text-align: center;
  justify-content: center;
}
.pricing-wrapper .pricing-header .shape-one {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.pricing-wrapper .pricing-header .shape-two {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.pricing-wrapper .pricing-body {
  padding: 54px 24px 0 24px;
}
.pricing-wrapper .pricing-body ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.pricing-wrapper .pricing-body ul li {
  width: 48%;
  padding: 0;
  margin: 0;
  color: var(--color-heading-1);
  font-weight: 500;
  display: flex;
  line-height: 1;
  gap: 10px;
}
.pricing-wrapper.dark {
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  border-radius: 12px;
}
.pricing-wrapper.dark .pricing-header {
  background: rgba(255, 255, 255, 0.1);
}
.pricing-wrapper.dark .pricing-header .plan-type .h6 {
  color: #f9fafb;
}
.pricing-wrapper.dark .pricing-header .plan-type p {
  background: rgba(255, 255, 255, 0.2);
  color: #f9fafb;
}
.pricing-wrapper.dark .pricing-header .title {
  color: var(--color-white);
}
.pricing-wrapper.dark .pricing-header .title span {
  color: rgba(255, 255, 255, 0.6);
}
.pricing-wrapper.dark .pricing-header .bottom-pricing .price {
  color: #f9fafb;
}
.pricing-wrapper.dark .pricing-header .bottom-pricing .price span {
  color: #f9fafb;
}
.pricing-wrapper.dark .pricing-header .bottom-pricing .button-area .wpr-btn {
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    60px 50px 80px rgba(0, 0, 0, 0.15),
    20px 41.7776px 33.4221px rgba(0, 0, 0, 0.1503),
    10px 22.3363px 17.869px rgba(0, 0, 0, 0.1417),
    4px 12.5216px 10.0172px rgba(0, 0, 0, 0.135),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -3px 0px #1a1a1a,
    inset 0px -4px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.pricing-wrapper.dark .pricing-body ul li {
  color: #f9fafb;
}

.wpr-services-area .section-top-area {
  padding: 100px 0 60px;
}
.wpr-services-area .section-bottom-content {
  display: flex;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--color-border);
}
.wpr-services-area .section-bottom-content .service-wrapper {
  flex-basis: 25%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-right: 1px solid var(--color-border);
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper:hover::after {
  transform: translate(-51%, -49%) scale(0);
  opacity: 0;
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper:hover
  .image-area
  img {
  transform: scale(1.15);
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper:hover
  .content
  .top
  .desc {
  opacity: 1;
  color: #d1d5db;
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper:hover
  .content
  .top
  .tag {
  background: #f3f4f6;
  color: var(--color-heading-1);
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper:hover
  .content
  .mid
  h2 {
  color: rgba(249, 250, 251, 0.8);
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper:hover
  .content
  .bottom
  ul
  li {
  color: #f9fafb;
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper:hover
  .content
  .bottom
  .service-btn-area {
  opacity: 1;
}
.wpr-services-area .section-bottom-content .service-wrapper .image-area img {
  transform: scale(1);
  transition: all 0.8s;
}
.wpr-services-area .section-bottom-content .service-wrapper::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 101%;
  height: 101%;
  top: 49%;
  left: 51%;
  background: var(--color-white);
  transform: translate(-51%, -49%) scale(1);
  opacity: 1;
  transition: all 0.8s;
}
.wpr-services-area .section-bottom-content .service-wrapper .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wpr-services-area .section-bottom-content .service-wrapper .content .top .tag {
  color: #f9fafb;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  position: relative;
  padding: 4px 5px 3px 24px;
  z-index: 1;
  background: var(--color-heading-1);
  max-width: max-content;
  font-family: var(--font-primary);
  transition: var(--transition);
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper
  .content
  .top
  .tag::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: var(--color-primary);
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper
  .content
  .top
  .desc {
  font-size: 14px;
  opacity: 0;
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper .content .mid {
  text-align: center;
  margin-top: 10px;
}
.wpr-services-area .section-bottom-content .service-wrapper .content .mid h2 {
  font-size: 200px;
  line-height: 1;
  color: rgba(3, 7, 18, 0.1);
  margin-bottom: 0;
  transition: var(--transition);
}
.wpr-services-area .section-bottom-content .service-wrapper .content .bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper
  .content
  .bottom
  ul {
  border-left: 2px solid var(--color-primary);
  padding: 0;
  padding-left: 16px !important;
  margin: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper
  .content
  .bottom
  ul
  li {
  padding: 0;
  margin: 0;
  font-weight: 600;
  line-height: 1;
  color: #030712;
  transition: var(--transition);
}
.wpr-services-area
  .section-bottom-content
  .service-wrapper
  .content
  .bottom
  .service-btn-area {
  background: var(--color-white);
  border-radius: 12px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  display: block;
  transition: var(--transition);
  opacity: 0;
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.04),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
}

.inner .section-bottom-content {
  flex-wrap: wrap;
}
.inner .wpr-services-area {
  width: 25%;
}

.services-details-banner .section-inner {
  padding: 70px;
}
.services-details-banner .section-inner .image-area {
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 40px;
}
.services-details-banner .section-inner .service-overview {
  max-width: 100%;
  margin: auto;
}
.services-details-banner .section-inner .service-overview .h5 {
  font-family: var(--color-secondary);
  font-weight: 600;
}
.services-details-banner .section-inner .service-overview .approach-area {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.services-details-banner .section-inner .service-overview .approach-area .left {
  max-width: 50%;
}
.services-details-banner
  .section-inner
  .service-overview
  .approach-area
  .left
  ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-details-banner
  .section-inner
  .service-overview
  .approach-area
  .left
  ul
  li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-weight: 500;
}
.services-details-banner
  .section-inner
  .service-overview
  .approach-area
  .left
  ul
  li
  svg
  path {
  fill: var(--color-primary);
}
.services-details-banner
  .section-inner
  .service-overview
  .approach-area
  .right
  img {
  border-radius: 26px;
  filter: grayscale(1);
}
.services-details-banner
  .section-inner
  .service-overview
  .feature-wrapper-area {
  display: flex;
  gap: 20px;
}
.services-details-banner
  .section-inner
  .service-overview
  .feature-wrapper-area
  .feature-box {
  flex-basis: 50%;
  padding: 25px;
  border-radius: 26px;
  background-color: #f4f4f5;
  box-shadow:
    0px 7.77px 16px 0px #0000000f,
    0px 3px 3px 0px #0000001a,
    0px -8px 0px 0px #0000000d inset,
    0px 4px 0px 0px #ffffff99 inset;
}
.services-details-banner
  .section-inner
  .service-overview
  .feature-wrapper-area
  .feature-box
  .top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.services-details-banner
  .section-inner
  .service-overview
  .feature-wrapper-area
  .feature-box
  .top
  .text {
  color: var(--color-heading-1);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}

.wpr-service-extended-area .section-inner {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .section-inner {
    padding: 60px 40px;
    gap: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .section-inner {
    padding: 40px 24px;
    gap: 40px;
  }
}
.wpr-service-extended-area .service-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.wpr-service-extended-area .service-tags-row .service-tag {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: var(--p-medium);
  color: var(--color-body-1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  transition: var(--transition);
  cursor: default;
}
.wpr-service-extended-area .service-tags-row .service-tag:hover,
.wpr-service-extended-area .service-tags-row .service-tag.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-secondary);
}
.wpr-service-extended-area .service-images-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .service-images-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-images-row {
    grid-template-columns: 1fr;
  }
}
.wpr-service-extended-area .service-images-row .service-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.wpr-service-extended-area .service-images-row .service-img-wrap--tall {
  height: 480px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .service-images-row .service-img-wrap--tall {
    height: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-images-row .service-img-wrap--tall {
    height: 280px;
  }
}
.wpr-service-extended-area .service-images-row .service-img-wrap--short {
  height: 360px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .service-images-row .service-img-wrap--short {
    height: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-images-row .service-img-wrap--short {
    height: 220px;
  }
}
.wpr-service-extended-area .service-images-row .service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wpr-service-extended-area .service-images-row .service-img-wrap:hover img {
  transform: scale(1.04);
}
.wpr-service-extended-area
  .service-images-row
  .service-img-wrap
  .service-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: var(--p-semi-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.wpr-service-extended-area .service-what-we-do {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 70px;
  border-top: 1px solid var(--color-border);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .service-what-we-do {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-what-we-do {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.wpr-service-extended-area .service-what-we-do .service-what-left .sub-title {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: var(--p-semi-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-body-1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wpr-service-extended-area
  .service-what-we-do
  .service-what-left
  .sub-title::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}
.wpr-service-extended-area
  .service-what-we-do
  .service-what-left
  .section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--color-heading-1);
  margin-bottom: 0;
}
.wpr-service-extended-area .service-what-we-do .service-what-right {
  padding-top: 6px;
}
.wpr-service-extended-area .service-what-we-do .service-what-right .desc {
  color: var(--color-body-1);
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}
.wpr-service-extended-area .service-what-we-do .service-what-right .mt--20 {
  margin-top: 20px;
}
.wpr-service-extended-area .service-deliverables {
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}
.wpr-service-extended-area .service-deliverables .service-deliverables-header {
  margin-bottom: 40px;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area
    .service-deliverables
    .service-deliverables-header {
    flex-direction: column;
    gap: 10px;
  }
}
.wpr-service-extended-area
  .service-deliverables
  .service-deliverables-header
  .sub-title {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: var(--p-semi-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-body-1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  margin-bottom: 20px;
}
.wpr-service-extended-area
  .service-deliverables
  .service-deliverables-header
  .sub-title::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}
.wpr-service-extended-area
  .service-deliverables
  .service-deliverables-header
  h3 {
  margin: 0;
  color: var(--color-heading-1);
  font-size: var(--h5);
}
.wpr-service-extended-area .service-deliverables .service-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wpr-service-extended-area .service-deliverables .service-deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .service-deliverables .service-deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-deliverables .service-deliverables-grid {
    grid-template-columns: 1fr;
  }
}
.wpr-service-extended-area .service-deliverables .deliverable-card {
  background: #fff;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease;
}
.wpr-service-extended-area .service-deliverables .deliverable-card:hover {
  background: var(--color-bg-1);
}
.wpr-service-extended-area
  .service-deliverables
  .deliverable-card
  .deliverable-number {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: var(--p-semi-bold);
  color: var(--color-primary);
  letter-spacing: 0.06em;
  background: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 28px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: flex-start;
}
.wpr-service-extended-area
  .service-deliverables
  .deliverable-card
  .deliverable-title {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: var(--s-semi-bold);
  color: var(--color-heading-1);
  line-height: 1.3;
  margin: 0;
}
.wpr-service-extended-area .service-deliverables .deliverable-card .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body-1);
  margin: 0;
}
.wpr-service-extended-area .service-included {
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}
.wpr-service-extended-area .service-included .service-included-header {
  margin-bottom: 40px;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-included .service-included-header {
    flex-direction: column;
    gap: 10px;
  }
}
.wpr-service-extended-area
  .service-included
  .service-included-header
  .sub-title {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: var(--p-semi-bold);
  text-transform: uppercase;
  color: var(--color-body-1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  margin-bottom: 20px;
}
.wpr-service-extended-area
  .service-included
  .service-included-header
  .sub-title::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}
.wpr-service-extended-area .service-included .service-included-header h3 {
  margin: 0;
  color: var(--color-heading-1);
  font-size: var(--h5);
}
.wpr-service-extended-area .service-included .service-included-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px 60px;
  align-items: start;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wpr-service-extended-area .service-included .service-included-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .wpr-service-extended-area
    .service-included
    .service-included-wrapper
    .included-cta {
    grid-column: 1/-1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .service-included .service-included-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .wpr-service-extended-area
    .service-included
    .service-included-wrapper
    .included-cta {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-included .service-included-wrapper {
    display: block;
  }
}
.wpr-service-extended-area .service-included .included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wpr-service-extended-area .service-included .included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: var(--p-medium);
  color: var(--color-heading-1);
  line-height: 1.4;
  padding: 0;
  margin: 0;
}
.wpr-service-extended-area .service-included .included-list li .included-check {
  display: inline-flex;
  flex-shrink: 0;
}
.wpr-service-extended-area
  .service-included
  .included-list
  li
  .included-check
  svg {
  width: 20px;
  height: 20px;
}
.wpr-service-extended-area .service-included .included-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  padding-left: 40px;
  border-left: 1px solid var(--color-border);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wpr-service-extended-area .service-included .included-cta {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wpr-service-extended-area .service-included .included-cta {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .wpr-service-extended-area .service-included .included-cta {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    margin-top: 40px;
  }
}
.wpr-service-extended-area .service-included .included-cta .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body-1);
  max-width: 240px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wpr-service-extended-area .service-included .included-cta .desc {
    max-width: 100%;
  }
}
.wpr-service-extended-area .service-included .included-cta .wpr-btn {
  align-self: flex-start;
}

.wpr-about-area .section-inner .section-top-area {
  padding: 100px 56px 80px;
}
.wpr-about-area .section-inner .section-top-area .section-title-area {
  max-width: 740px;
}
.wpr-about-area .section-inner .about-bottom-content {
  /* display: flex; */
}
.wpr-about-area .section-inner .about-bottom-content .left-area {
  max-width: 100vw;
  width: 100%;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul {
  padding: 0;
  margin: 0;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul li {
  padding: 26px 56px;
  margin: 0;
}
.wpr-about-area .section-inner .about-bottom-content .left-area ul li p {
  color: var(--color-body-1);
}
.wpr-about-area
  .section-inner
  .about-bottom-content
  .left-area
  ul
  li
  p.top-description {
  font-size: 14px;
}
.wpr-about-area
  .section-inner
  .about-bottom-content
  .left-area
  ul
  li.with-icon {
  display: flex;
  align-items: center;
  gap: 22px;
}
.wpr-about-area
  .section-inner
  .about-bottom-content
  .left-area
  ul
  li.with-icon
  .text
  .title {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.wpr-about-area .section-inner .about-bottom-content .right-area .image-area {
  position: relative;
  z-index: 1;
}
.wpr-about-area
  .section-inner
  .about-bottom-content
  .right-area
  .image-area
  .image-shape-right-bottom {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}

.approch-area-left .title-area-left-wrapper .section-title-area .section-title {
  margin-bottom: 20px;
}
.approch-area-left p.disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787c;
}

.our-approch-area-style-one {
  position: relative;
  z-index: 10;
}
.our-approch-area-style-one .section-inner {
  padding: 56px;
  border: 1px solid rgba(3, 7, 18, 0.1);
}

.single-approach-area-start {
  padding: 28px;
  background-color: var(--color-white);
  border-radius: 6px;
  position: relative;
  margin-bottom: 20px;
  transition: 0.3s;
  overflow: hidden;
  z-index: 2;
  width: 519px;
  border: 1px solid rgba(3, 7, 18, 0.1);
}
.single-approach-area-start.two::after {
  content: '02' !important;
}
.single-approach-area-start.two::before {
  background-image: url(../images/banner/24.html);
}
.single-approach-area-start.three::after {
  content: '03' !important;
}
.single-approach-area-start.three::before {
  background-image: url(../images/banner/25.html);
}
.single-approach-area-start::before {
  background-image: url(../images/banner/03.html);
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  width: 0%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.6s;
}
.single-approach-area-start:hover {
  background-color: none;
}
.single-approach-area-start:hover .title {
  color: var(--color-white);
}
.single-approach-area-start:hover .title::after {
  width: 100%;
  left: 0;
}
.single-approach-area-start:hover .title::before {
  font-size: 22px;
  right: -35px;
  opacity: 1;
}
.single-approach-area-start:hover p.disc {
  color: #fff;
}
.single-approach-area-start:hover::before {
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
}
.single-approach-area-start:hover::after {
  color: rgba(0, 0, 0, 0);
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #bdbdbd;
}
.single-approach-area-start::after {
  position: absolute;
  content: '01';
  font-size: 72px;
  right: 20px;
  top: 30px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #282828;
  font-weight: 700;
  transition: 0.3s;
}
.single-approach-area-start .title {
  color: var(--color-heading-1);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 10px;
  transition: all 0.3s;
  position: relative;
  max-width: max-content;
  font-family: var(--font-secondary);
}
.single-approach-area-start .title::after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  height: 1px;
  background: #fff;
  width: 0%;
  transition: 0.5s;
}
.single-approach-area-start p.disc {
  color: #74787c;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  min-width: max-content;
  transition: transform 50s ease-in;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  padding-right: 5px;
  margin-left: -2px;
  letter-spacing: -0.02em;
}

.odometer.odometer-auto-theme .odometer-digit:first-child {
  padding-right: 3px;
}

.wpr-working-process .section-inner {
  padding: 100px 56px;
}
.wpr-working-process .working-process-left {
  display: flex;
  flex-direction: column;
  gap: 188px;
  position: sticky;
  top: 100px;
}
.wpr-working-process .working-process-left .text-area .desc {
  margin-bottom: 20px;
}
.wpr-working-process .working-process-left .text-area .wpr-btn {
  padding: 24px 24px 28px 78px;
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #e1013f 21.13%, #e1013f 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    60px 50px 80px rgba(0, 0, 0, 0.15),
    20px 41.7776px 33.4221px rgba(0, 0, 0, 0.1503),
    10px 22.3363px 17.869px rgba(0, 0, 0, 0.1417),
    4px 12.5216px 10.0172px rgba(0, 0, 0, 0.135),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #1a1a1a,
    inset 0px -6px 0px 1px rgba(255, 255, 255, 0.1);
}
.wpr-working-process .working-process-left .text-area .wpr-btn .icon {
  gap: 17px;
}
.wpr-working-process
  .working-process-left
  .text-area
  .wpr-btn
  .icon
  .fixed-arrow {
  margin-bottom: 2px;
}
.wpr-working-process .working-process-left .text-area .wpr-btn .inner {
  top: 47%;
  transform: translate(-50%, -47%);
}

.working-process-wrapper {
  position: relative;
  z-index: 1;
  background: linear-gradient(137.66deg, #f5f5f5 21.13%, #f2f2f2 80.53%);
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  border-radius: 12px;
  padding: 16px 16px 32px 16px;
  transition: all 0.5s;
  margin-bottom: 24px;
  position: sticky;
  top: 100px;
}
.working-process-wrapper:hover .image-area img {
  transform: scale(1.1);
}
.working-process-wrapper .image-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 12px;
}
.working-process-wrapper .image-area img {
  transform: scale(1);
  transition: all 0.5s;
}
.working-process-wrapper .content-area {
  display: flex;
  gap: 30px;
  padding: 25px 20px 0;
}
.working-process-wrapper .content-area .number {
  font-size: 18px;
  line-height: 1;
  margin-top: 4px;
}
.working-process-wrapper .content-area .title {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.working-process-wrapper:last-child {
  margin-bottom: 0;
}

.wpr-marquee-area .section-inner .title {
  min-width: max-content;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 120px;
  letter-spacing: -0.04em;
  margin: 0;
}
.wpr-marquee-area .section-inner .title span {
  display: flex;
  margin: 0 50px;
}
.wpr-marquee-area .section-inner .first-text {
  transform: translateX(-40%);
}
.wpr-marquee-area .section-inner .text-wrapper {
  padding: 30px 0;
}
.wpr-marquee-area .section-inner .text-wrapper:last-child {
  border-top: 1px solid var(--color-border);
}

.scrollingtext-1 {
  display: inline-block;
  white-space: nowrap;
}

.wpr-testimonials-area .section-inner {
  position: relative;
  z-index: 1;
}
.wpr-testimonials-area .section-inner .testimonials-content-slider {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  max-width: 582px;
  width: 100%;
  border-width: 1px 0px 0px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(46px);
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .testimonials-content {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(46px);
  opacity: 0;
  width: 100%;
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .testimonials-content
  .top {
  padding: 40px 32px;
  height: 244px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .testimonials-content
  .top
  .title {
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 32px;
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .testimonials-content
  .top
  .desc {
  color: #f9fafb;
  font-size: 18px;
  font-weight: 500;
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .testimonials-content
  .author-area {
  padding: 34px 30px;
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .testimonials-content
  .author-area
  .h6 {
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-secondary);
  line-height: 1;
  text-transform: none;
  margin-bottom: 10px;
  letter-spacing: 0;
  font-weight: 400;
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .testimonials-content
  .author-area
  p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}
.wpr-testimonials-area
  .section-inner
  .testimonials-content-slider
  .swiper-slide-active
  .testimonials-content {
  opacity: 1;
}
.wpr-testimonials-area .section-inner .swiper-navigation {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  max-width: max-content;
  display: flex;
}
.wpr-testimonials-area .section-inner .swiper-navigation .swiper-btn {
  position: unset;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  display: block;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-testimonials-area .section-inner .top-left-shape {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  z-index: 1;
}

.wpr-blog-area .section-inner {
  padding: 60px 40px;
}

.article-blog {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-white);
  background: var(--color-white);
}
.article-blog .blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}
.article-blog .blog-content .infor h6 {
  margin-bottom: 0;
  text-transform: none;
}
.article-blog .btn-action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--color-white);
  flex-shrink: 0;
}
.article-blog .btn-action .icon {
  font-size: 20px;
}
.article-blog .btn-action:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.article-blog .infor_sub {
  margin-bottom: 8px;
}
.article-blog .infor_name {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
@media (min-width: 426px) {
  .article-blog.style-horizontal {
    display: flex;
    background: var(--color-white);
  }
  .article-blog.style-horizontal .blog-image {
    max-width: 300px;
  }
  .article-blog.style-horizontal .blog-image img {
    aspect-ratio: 1.5;
  }
}
@media (min-width: 1199px) {
  .article-blog .btn-action {
    width: 50px;
    height: 50px;
  }
}

.wg-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.wg-pagination .pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border-radius: 10px;
  background-color: #272727;
  box-shadow:
    0px -3px 0px 0px #080808 inset,
    0px 1px 0px 0px rgba(255, 255, 255, 0.3019607843) inset,
    0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.1215686275),
    0px 3px 3px 0px rgba(0, 0, 0, 0.1411764706),
    0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.1333333333),
    0px 22.34px 17.87px 0px rgba(0, 0, 0, 0.1411764706),
    0px 41.78px 33.42px 0px rgba(0, 0, 0, 0.1490196078),
    0px 100px 80px 0px rgba(0, 0, 0, 0.1490196078);
}
.wg-pagination .pagination-item.active,
.wg-pagination .pagination-item:hover {
  color: var(--color-heading-1);
  background-color: var(--color-primary);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
  position: sticky;
  top: 30px;
}
.blog-sidebar .sidebar-title {
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: none;
}
@media (min-width: 1199px) {
  .blog-sidebar {
    gap: 32px;
  }
}

.list-relatest-post .relatest-post-item:not(:last-child) {
  margin-bottom: 10px;
}

.relatest-post-item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.relatest-post-item .image {
  width: 80px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.relatest-post-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.relatest-post-item .title {
  font-weight: 600;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1;
  text-transform: none;
}

.sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sidebar-categories .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.list-tags a {
  display: flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 99px;
  color: #d4d4d8;
  background: #3f3f46;
  border: 1px solid #3f3f46;
}
.list-tags a:hover {
  color: var(--color-primary);
}

.blog-single-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-single-wrap .image img {
  width: 100%;
  border-radius: 16px;
}

.meta-list {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.meta-list .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.meta-list .meta-item .icon {
  color: var(--color-primary);
  font-size: 24px;
}

.entry-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.entry-footer .tags-links {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 420px;
}
.entry-footer .tags-links .text-body-1 {
  min-width: max-content;
}
.entry-footer .tf-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.entry-footer .social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 99px;
  font-size: 24px;
  color: var(--color-white);
  background:
    linear-gradient(0deg, #272727, #272727),
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow:
    0px -3px 0px 0px #080808 inset,
    0px 1px 0px 0px #ffffff4d inset,
    0px 2.77px 2.21px 0px #0000001f,
    0px 6.65px 5.32px 0px #00000021,
    0px 12.52px 10.02px 0px #00000022,
    0px 22.34px 17.87px 0px #00000024,
    0px 41.78px 33.42px 0px #00000026,
    0px 100px 80px 0px #00000026,
    0px 3px 3px 0px #00000024,
    0px 2.77px 2.21px 0px #0000001f;
}
.entry-footer .social-item:hover {
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(0deg, #272727, #272727);
  box-shadow:
    0px -3px 0px 0px #080808 inset,
    0px 1px 0px 0px #ffffff4d inset,
    0px 2.77px 2.21px 0px #0000001f,
    0px 6.65px 5.32px 0px #00000021,
    0px 12.52px 10.02px 0px #00000022,
    0px 22.34px 17.87px 0px #00000024,
    0px 41.78px 33.42px 0px #00000026,
    0px 100px 80px 0px #00000026,
    0px 3px 3px 0px #00000024,
    0px 2.77px 2.21px 0px #0000001f;
}

.blockquote-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  padding: 74px 39px 80px 56px;
  background-color: #09090b;
  box-shadow: 0px 0px 20px 0px rgba(103, 103, 103, 0.25) inset;
}
.blockquote-wrap .h5 {
  text-transform: none;
  margin-bottom: 0;
}
.blockquote-wrap svg {
  position: absolute;
  bottom: 0px;
  right: 56px;
  z-index: -1;
}
@media (min-width: 767px) {
  .blockquote-wrap {
    padding: 40px 30px;
  }
}

.social-links {
  display: flex;
  gap: 8px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff1a;
  box-shadow: 0px 0px 15px 0px #dddddd26 inset;
  backdrop-filter: blur(6px);
  font-size: 16px;
}
.social-links a:hover {
  background-color: #fff;
  color: #151515;
}

.comment-wrap .heading {
  margin-bottom: 25px;
  font-size: 28px;
  font-family: var(--font-secondary);
  font-weight: 600;
}
.comment-wrap .author {
  position: relative;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.comment-wrap .author:not(:last-child) {
  margin-bottom: 20px;
}
.comment-wrap .author.type-reply {
  margin-left: 20px;
}
.comment-wrap .name {
  margin-bottom: 5px;
  margin-top: -7px;
}
.comment-wrap .image {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50% !important;
  overflow: hidden;
  filter: grayscale(100%);
}
.comment-wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-wrap .time {
  margin-bottom: 20px;
}
.comment-wrap .reply {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (min-width: 991px) {
  .comment-wrap .author {
    gap: 18px;
  }
  .comment-wrap .author.type-reply {
    margin-left: 66px;
  }
}

.post-comment .heading {
  margin-bottom: 35px;
  font-size: 28px;
  font-family: var(--font-secondary);
  font-weight: 600;
}
.post-comment .text {
  margin-bottom: 25px;
}
.post-comment .form-cta .form-content {
  gap: 24px;
  margin-bottom: 40px;
}
.post-comment .form-cta textarea {
  height: 100px;
}
.post-comment fieldset {
  border: none;
  padding: 0;
}
.post-comment fieldset input,
.post-comment fieldset textarea {
  padding-right: 30px;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 0 0 11px 0px;
  border: 0;
  border-bottom: 1px solid #d4d4d8;
  border-radius: 0;
  background-color: transparent;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-comment form {
  position: relative;
  z-index: 30;
}
.post-comment form textarea,
.post-comment form input[type='text'],
.post-comment form input[type='password'],
.post-comment form input[type='datetime'],
.post-comment form input[type='datetime-local'],
.post-comment form input[type='date'],
.post-comment form input[type='month'],
.post-comment form input[type='time'],
.post-comment form input[type='week'],
.post-comment form input[type='number'],
.post-comment form input[type='email'],
.post-comment form input[type='url'],
.post-comment form input[type='search'],
.post-comment form input[type='tel'],
.post-comment form input[type='color'] {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 0 0 11px 0px;
  border: 0;
  border-bottom: 1px solid #d4d4d8;
  background-color: transparent;
  color: var(--color-primary);
}
.post-comment form textarea::placeholder,
.post-comment form input[type='text']::placeholder,
.post-comment form input[type='password']::placeholder,
.post-comment form input[type='datetime']::placeholder,
.post-comment form input[type='datetime-local']::placeholder,
.post-comment form input[type='date']::placeholder,
.post-comment form input[type='month']::placeholder,
.post-comment form input[type='time']::placeholder,
.post-comment form input[type='week']::placeholder,
.post-comment form input[type='number']::placeholder,
.post-comment form input[type='email']::placeholder,
.post-comment form input[type='url']::placeholder,
.post-comment form input[type='search']::placeholder,
.post-comment form input[type='tel']::placeholder,
.post-comment form input[type='color']::placeholder {
  color: var(--color-body-1);
}
.post-comment form button,
.post-comment form input[type='button'],
.post-comment form input[type='reset'],
.post-comment form input[type='submit'] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}
.post-comment form textarea {
  height: 150px;
  border-radius: 32px;
  resize: none;
}
.post-comment form .form-content {
  display: grid;
  gap: 20px;
}
.post-comment form .form-content label {
  color: var(--color-heading-1);
  font-weight: 600;
}
.post-comment form .form-action .wpr-btn {
  max-width: 100%;
  width: 100%;
  padding: 16px 24px 16px;
  justify-content: center;
}

.hover-img .img-style {
  overflow: hidden;
}
.hover-img .img-style > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition:
    opacity 0.5s ease,
    transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
  transition:
    opacity 0.5s ease,
    transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.hover-img:hover .img-style > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.hover-img .img-style2 {
  overflow: hidden;
  border-radius: 10px;
}
.hover-img .img-style2 .img-hv {
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: transform 500ms ease;
}

.section-blog .tf-grid-layout {
  gap: 30px;
}

.tf-grid-layout {
  display: grid;
  column-gap: 24px;
  row-gap: 32px;
}
.tf-grid-layout.tf-col-2 {
  grid-template-columns: 1fr 1fr;
}
.tf-grid-layout.tf-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tf-grid-layout.tf-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tf-grid-layout.tf-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.tf-grid-layout.tf-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.tf-grid-layout.tf-col-7 {
  grid-template-columns: repeat(7, 1fr);
}
.tf-grid-layout .wd-full {
  grid-column: 1/-1;
}
.tf-grid-layout .wd-2-cols {
  grid-column: span 2;
}
@media (min-width: 575px) {
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 767px) {
  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.md-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 991px) {
  .tf-grid-layout.lg-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1199px) {
  .tf-grid-layout {
    column-gap: 30px;
    row-gap: 40px;
  }
  .tf-grid-layout.row-xl-gap-40 {
    row-gap: 40px;
  }
  .tf-grid-layout.row-xl-gap-56 {
    row-gap: 56px;
  }
  .tf-grid-layout.xl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1439px) {
  .tf-grid-layout.xxl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xxl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xxl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xxl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xxl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xxl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}

.tf-btn-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-white);
  border-radius: 99px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 14px 24px;
  color: var(--color-heading);
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(0deg, #f5f5f5, #f5f5f5);
  box-shadow:
    0px -3px 0px 0px #e9e9e9 inset,
    0px 1px 0px 0px #ffffffb2 inset,
    0px 2.77px 2.21px 0px #0000001f,
    0px 3px 3px 0px #00000024;
  overflow: hidden;
}
.tf-btn-2:hover {
  color: var(--color-primary);
}

.form-search {
  position: relative;
}
.form-search fieldset {
  border: none;
  padding: 0;
}
.form-search fieldset input {
  padding-right: 30px;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 0 0 11px 0px;
  border: 0;
  border-bottom: 1px solid #d4d4d8;
  border-radius: 0;
  background-color: transparent;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-search button {
  position: absolute;
  right: 5px;
  top: 8px;
  color: var(--color-heading-1);
  background: none;
  border: none;
  width: max-content;
}
.form-search button .icon {
  color: var(--color-heading-1);
}

.section-inner .tf-grid-layout {
  gap: 30px;
}
.section-inner .tf-grid-layout .hover-img .img-style {
  display: inline-block;
}

@media (min-width: 576px) {
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.text-body-1 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}

.text-body-2 {
  font-size: 16px;
  line-height: 24px;
}

.text-body-3 {
  font-size: 14px;
  line-height: 20px;
}

.gap-12 {
  gap: 12px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.wpr-footer-area .footer-top {
  padding: 64px 56px;
}
.wpr-footer-area .footer-top ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wpr-footer-area .footer-top ul li {
  padding: 0;
  margin: 0;
}
.wpr-footer-area .footer-top ul li.square-dot {
  width: 12px;
  height: 12px;
  background: #d1d5db;
}
.wpr-footer-area .footer-top ul li a {
  color: var(--color-heading-1);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.wpr-footer-area .footer-top ul li a:hover::after {
  width: 100%;
}
.wpr-footer-area .footer-top ul li a::after {
  content: '';
  position: absolute;
  z-index: 1;
  background: var(--color-heading-1);
  height: 1px;
  width: 0;
  bottom: 4px;
  left: 0;
  transition: var(--transition);
}
.wpr-footer-area .footer-logo-area {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--color-border);
}
.wpr-footer-area .footer-logo-area .shape {
  position: absolute;
  z-index: 1;
  max-width: max-content;
}
.wpr-footer-area .footer-logo-area .shape.one {
  top: 0;
  left: 0;
}
.wpr-footer-area .footer-logo-area .shape.two {
  bottom: 0;
  right: 0;
}
.wpr-footer-area .copyright-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
}
.wpr-footer-area .copyright-area .left-social-area {
  width: 33%;
}
.wpr-footer-area .copyright-area .left-social-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.wpr-footer-area .copyright-area .left-social-area ul li {
  padding: 0;
  margin: 0;
}
.wpr-footer-area .copyright-area .left-social-area ul li a {
  color: var(--color-heading-1);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.wpr-footer-area .copyright-area .left-social-area ul li a:hover::after {
  width: 100%;
}
.wpr-footer-area .copyright-area .left-social-area ul li a::after {
  content: '';
  position: absolute;
  z-index: 1;
  background: var(--color-heading-1);
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.wpr-footer-area .copyright-area p {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
  width: 33%;
  text-align: center;
}
.wpr-footer-area .copyright-area .scroll-top-btn {
  max-width: 33%;
  width: 100%;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading-1);
  display: flex;
  justify-content: end;
  gap: 7px;
}

.social-area-one {
  display: flex;
  align-items: center;
  padding: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  gap: 20px;
  list-style: none;
  justify-content: center;
}
.social-area-one li {
  margin: 0;
  padding: 1px;
}
.social-area-one li a i {
  transition: 0.3s;
  font-size: 20px;
}
.social-area-one li a:hover i {
  color: var(--color-primary);
}

.bg-dark-border-radious {
  border-radius: 32px 32px 0px 0px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%),
    #bcbfdb;
}
.bg-dark-border-radious .title-style-one-left .pre {
  color: #bcbfdb;
}
.bg-dark-border-radious .title-style-one-left .title {
  color: #fff;
}

.wpr-team-area .section-inner .content-area {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.wpr-team-area .section-inner .content-area .section-bg-shape {
  position: absolute;
  width: 100%;
  left: 0;
  top: 60px;
  z-index: -1;
}
.wpr-team-area .section-bottom-inner {
  margin-top: 50px;
  padding: 0 56px;
}

.team-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.team-wrapper .shape {
  position: absolute;
  z-index: 1;
}
.team-wrapper .shape.shape-top-left {
  top: 0;
  left: 0;
}
.team-wrapper .shape.shape-bottom-left {
  bottom: 0;
  left: 0;
}
.team-wrapper .shape.shape-top-right {
  top: 0;
  right: 0;
}
.team-wrapper .shape.shape-bottom-right {
  bottom: 0;
  right: 0;
}
.team-wrapper:hover .author-area .social {
  margin-top: 3px;
}
.team-wrapper:hover .author-area .social ul li a {
  height: 40px;
  opacity: 1;
  pointer-events: all;
}
.team-wrapper .author-area {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  width: 100%;
  background: linear-gradient(0deg, #ffffff, #ffffff), #ffffff;
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  border-radius: 12px;
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.team-wrapper .author-area .title {
  font-family: var(--font-secondary);
  text-transform: none;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
.team-wrapper .author-area .designation {
  margin-bottom: 0;
  line-height: 1;
}
.team-wrapper .author-area .social {
  margin-top: -10px;
  transition: var(--transition);
}
.team-wrapper .author-area .social ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.team-wrapper .author-area .social ul li {
  padding: 0;
  margin: 0;
}
.team-wrapper .author-area .social ul li a {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 0;
  line-height: 40px;
  display: block;
  text-align: center;
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -2px 0px #1a1a1a,
    inset 0px -3px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.team-wrapper .author-area .social ul li a:hover::after {
  opacity: 1;
}
.team-wrapper .author-area .social ul li a::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  box-shadow:
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197),
    0px 3px 3px rgba(0, 0, 0, 0.1),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -2px 0px #1a1a1a,
    inset 0px -3px 0px 1px rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  border-radius: 8px;
}
.team-wrapper.down {
  transform: translateY(48px);
}

.team-apply-wrapper {
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    60px 50px 80px rgba(0, 0, 0, 0.15),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #1a1a1a,
    inset 0px -6px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 48px 32px 40px;
  transform: translateY(48px);
  height: 94%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.team-apply-wrapper .top-content .square-dot {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  margin-bottom: 15px;
}
.team-apply-wrapper .top-content .title {
  color: var(--color-white);
  line-height: 1.3;
}
.team-apply-wrapper .top-content p.desc {
  color: rgba(249, 250, 251, 0.7);
  font-size: 14px;
}
.team-apply-wrapper .wpr-btn {
  width: 100%;
  max-width: 100%;
}
.team-apply-wrapper .wpr-btn .icon {
  min-width: 52px;
}
.team-apply-wrapper .wpr-btn .icon span img {
  min-width: 20px;
}
.team-apply-wrapper .wpr-btn span {
  display: block;
  width: 100%;
  text-align: center;
}
.team-apply-wrapper .shape {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
}

.wpr-awards-area .section-inner .section-title-area {
  max-width: max-content;
  margin: auto;
  padding: 100px 0 70px;
}
.wpr-awards-area .section-inner .section-title-area .section-title {
  margin-bottom: 0;
}
.wpr-awards-area .section-inner .award-accordion-area {
  margin-bottom: 100px;
}

.award-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 56px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.award-item:first-child {
  border-top: 1px solid #e5e7eb;
}
.award-item.active .left .content .desc {
  height: 70px;
  pointer-events: all;
  opacity: 1;
  margin-top: 40px;
}
.award-item.active .award-header .toggle span.plus {
  opacity: 0;
}
.award-item.active .award-header .toggle span.minus {
  opacity: 1;
}
.award-item.active .image-area {
  opacity: 1;
}
.award-item.active .image-area img {
  transform: scale(1);
}
.award-item .image-area {
  position: absolute;
  top: 50%;
  right: 11%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.award-header {
  display: flex;
  justify-content: space-between;
}
.award-header .left {
  display: flex;
  align-items: start;
  justify-content: space-between;
  max-width: 55%;
  width: 100%;
}
.award-header .left .content {
  max-width: 415px;
  width: 100%;
}
.award-header .left .content .title {
  text-transform: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
  letter-spacing: 0;
}
.award-header .left .content .desc {
  font-size: 14px;
  color: var(--color-body-1);
  margin-top: 0;
  transition: var(--transition);
  height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.award-header .toggle span {
  transition: var(--transition);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.award-header .toggle span.plus {
  opacity: 1;
  font-weight: 300;
  font-size: 19px;
}
.award-header .toggle span.minus {
  opacity: 0;
  font-size: 25px;
  font-weight: 300;
}

.date {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body-1);
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.toggle {
  width: 32px;
  height: 32px;
  color: #9dff00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
  background: linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  border-radius: 4px;
}

.wpr-cta-area .section-inner {
  position: relative;
  z-index: 1;
  padding: 77px 0 160px;
  text-align: center;
}
.wpr-cta-area .section-inner .section-title-area {
  position: relative;
  z-index: 1;
  padding: 0 100px;
  max-width: max-content;
  margin: auto;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  position: absolute;
  width: 120px;
  top: 52px;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track.right {
  right: 0;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track.left {
  left: 0;
  justify-content: end;
}
.wpr-cta-area
  .section-inner
  .section-title-area
  .arrow-track.left
  .arrow:nth-child(3) {
  animation-delay: 0.4s;
}
.wpr-cta-area
  .section-inner
  .section-title-area
  .arrow-track.left
  .arrow:nth-child(2) {
  animation-delay: 0.2s;
}
.wpr-cta-area
  .section-inner
  .section-title-area
  .arrow-track.left
  .arrow:nth-child(1) {
  animation-delay: 0s;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track .arrow {
  height: 32px;
  opacity: 0.15;
  display: flex;
  animation: fadeMove 1s infinite;
}
.wpr-cta-area .section-inner .section-title-area .arrow-track .arrow img {
  position: unset;
}
.wpr-cta-area
  .section-inner
  .section-title-area
  .arrow-track
  .arrow:nth-child(1) {
  animation-delay: 0.4s;
}
.wpr-cta-area
  .section-inner
  .section-title-area
  .arrow-track
  .arrow:nth-child(2) {
  animation-delay: 0.2s;
}
.wpr-cta-area
  .section-inner
  .section-title-area
  .arrow-track
  .arrow:nth-child(3) {
  animation-delay: 0s;
}
.wpr-cta-area .section-inner .section-title {
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 30px;
  text-transform: uppercase;
  background:
    linear-gradient(137.66deg, #55595c 21.13%, #000000 80.53%), #030712;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.wpr-cta-area .section-inner .logo img {
  width: 105px;
}
.wpr-cta-area .section-inner .bg-shape {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.wpr-cta-area .section-inner .section-bottom-shape {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.wpr-cta-area .section-inner .section-bottom-shape .tag {
  color: #f9fafb;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  padding: 4px 5px 3px 24px;
  background: #111827;
  max-width: max-content;
  font-family: var(--font-primary);
  position: absolute;
  z-index: 1;
  bottom: 48px;
}
.wpr-cta-area .section-inner .section-bottom-shape .tag::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: var(--color-primary);
}
.wpr-cta-area .section-inner .section-bottom-shape .tag.left {
  left: 56px;
}
.wpr-cta-area .section-inner .section-bottom-shape .tag.right {
  right: 56px;
}

.wpr-contact-area .section-inner {
  background: #030712;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wpr-contact-area .section-inner .left-content-area {
  max-width: 714px;
  width: 100%;
  margin: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.wpr-contact-area .section-inner .left-content-area .get-in-touch {
  display: flex;
  gap: 46px;
}
.wpr-contact-area .section-inner .left-content-area .get-in-touch .sub-title {
  color: #f9fafb;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  padding: 4px 5px 3px 24px;
  background: rgba(243, 244, 246, 0.15);
  max-width: max-content;
  font-family: var(--font-primary);
  position: relative;
  z-index: 1;
  margin-top: 8px;
  height: max-content;
}
.wpr-contact-area
  .section-inner
  .left-content-area
  .get-in-touch
  .sub-title::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: var(--color-primary);
}
.wpr-contact-area .section-inner .left-content-area .get-in-touch ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wpr-contact-area .section-inner .left-content-area .get-in-touch ul li {
  padding: 0;
  margin: 0;
}
.wpr-contact-area .section-inner .left-content-area .get-in-touch ul li a {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  color: #f9fafb;
  font-family: var(--font-secondary);
}
.wpr-contact-area .section-inner .left-content-area .location-area {
  display: flex;
  gap: 46px;
}
.wpr-contact-area .section-inner .left-content-area .location-area .sub-title {
  color: #f9fafb;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  line-height: 1;
  padding: 4px 5px 3px 24px;
  background: rgba(243, 244, 246, 0.15);
  max-width: max-content;
  font-family: var(--font-primary);
  position: relative;
  z-index: 1;
  height: max-content;
  margin-top: 10px;
}
.wpr-contact-area
  .section-inner
  .left-content-area
  .location-area
  .sub-title::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background: var(--color-primary);
}
.wpr-contact-area .section-inner .left-content-area .location-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 80px;
}
.wpr-contact-area .section-inner .left-content-area .location-area ul li {
  padding: 0;
  margin: 0;
}
.wpr-contact-area .section-inner .left-content-area .location-area ul li .h4 {
  color: #f9fafb;
  margin-bottom: 15px;
  text-transform: none;
  font-weight: 600;
  font-family: var(--font-secondary);
}
.wpr-contact-area .section-inner .left-content-area .location-area ul li p {
  color: rgba(249, 250, 251, 0.6);
  font-size: 20px;
}
.wpr-contact-area .section-inner .contact-form-area {
  max-width: 500px;
  width: 100%;
  padding: 60px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.wpr-contact-area .section-inner .contact-form-area form .single-input {
  margin-bottom: 32px;
}
.wpr-contact-area .section-inner .contact-form-area form .single-input label {
  color: #f9fafb;
  font-size: 14px;
  margin-bottom: 10px;
}
.wpr-contact-area .section-inner .contact-form-area form .single-input input {
  height: 40px;
  color: var(--color-white);
  padding: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-family: var(--font-secondary);
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input
  input::placeholder {
  color: rgba(249, 250, 251, 0.6) !important;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input
  input:focus {
  border: none;
  border-bottom: 1px solid var(--color-primary);
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input
  textarea {
  height: 145px;
  color: var(--color-white);
  padding: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-family: var(--font-secondary);
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input
  textarea::placeholder {
  color: rgba(249, 250, 251, 0.6) !important;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input
  textarea:focus {
  border: none;
  border-bottom: 1px solid var(--color-primary);
}
.wpr-contact-area .section-inner .contact-form-area form .single-input.last {
  position: relative;
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input.last
  label {
  cursor: pointer;
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input.last
  label
  i {
  color: var(--color-primary);
  margin-right: 10px;
}
.wpr-contact-area
  .section-inner
  .contact-form-area
  form
  .single-input.last
  input {
  height: unset;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.wpr-contact-area .section-inner .contact-form-area form .form-btn-area {
  margin-top: 50px;
}
.wpr-contact-area .section-inner .contact-form-area form .form-btn-area button {
  width: 100%;
  max-width: 100%;
  text-align: center;
  justify-content: center;
  background:
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(137.66deg, #e1013f 21.13%, #e1013f 80.53%);
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    60px 50px 80px rgba(0, 0, 0, 0.15),
    20px 41.7776px 33.4221px rgba(0, 0, 0, 0.1503),
    10px 22.3363px 17.869px rgba(0, 0, 0, 0.1417),
    4px 12.5216px 10.0172px rgba(0, 0, 0, 0.135),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -3px 0px #1a1a1a,
    inset 0px -4px 0px 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--color-white);
}
.wpr-contact-area.inner .section-inner {
  background: transparent;
}
.wpr-contact-area.inner .section-inner .left-content-area .get-in-touch ul li a,
.wpr-contact-area.inner
  .section-inner
  .left-content-area
  .get-in-touch
  .sub-title,
.wpr-contact-area.inner
  .section-inner
  .left-content-area
  .location-area
  ul
  li
  .h4,
.wpr-contact-area.inner
  .section-inner
  .left-content-area
  .location-area
  .sub-title,
.wpr-contact-area.inner
  .section-inner
  .contact-form-area
  form
  .single-input
  label {
  color: var(--color-heading-1);
}
.wpr-contact-area.inner
  .section-inner
  .left-content-area
  .location-area
  ul
  li
  p {
  color: var(--color-body-1);
}
.wpr-contact-area.inner .section-inner .contact-form-area {
  border-left: 1px solid rgba(3, 7, 18, 0.1);
}
.wpr-contact-area.inner
  .section-inner
  .contact-form-area
  form
  .single-input
  label {
  font-weight: 600;
}
.wpr-contact-area.inner
  .section-inner
  .contact-form-area
  form
  .single-input
  input {
  border-bottom: 1px solid rgba(3, 7, 18, 0.1);
}
.wpr-contact-area.inner
  .section-inner
  .contact-form-area
  form
  .single-input
  input::placeholder {
  color: var(--color-body-1) !important;
  font-weight: 400 !important;
}
.wpr-contact-area.inner
  .section-inner
  .contact-form-area
  form
  .single-input
  textarea {
  border-bottom: 1px solid rgba(3, 7, 18, 0.1);
}
.wpr-contact-area.inner
  .section-inner
  .contact-form-area
  form
  .single-input
  textarea::placeholder {
  color: var(--color-body-1) !important;
  font-weight: 400 !important;
}

.wpr-get-in-touch .section-inner {
  padding: 100px 60px;
}

.box-contact-item {
  text-align: center;
  padding: 40px;
  border-radius: 32px;
  background-color: #f4f4f5;
  box-shadow:
    0px 7.77px 16px 0px #0000000f,
    0px 3px 3px 0px #0000001a,
    0px -8px 0px 0px #0000000d inset,
    0px 4px 0px 0px #ffffff99 inset;
}
.box-contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 40px;
  color: var(--color-white);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  border-radius: 16px;
  background:
    linear-gradient(0deg, #272727, #272727),
    radial-gradient(
      62.56% 62.56% at 28.14% -10.42%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow:
    0px -3px 0px 0px #080808 inset,
    0px 1px 0px 0px #ffffff4d inset,
    0px 2.77px 2.21px 0px #0000001f,
    0px 3px 3px 0px #00000024,
    0px 12.52px 10.02px 0px #00000022,
    0px 22.34px 17.87px 0px #00000024,
    0px 41.78px 33.42px 0px #00000026,
    0px 100px 80px 0px #00000026;
}
.box-contact-item .title {
  margin-bottom: 8px;
}
@media (min-width: 1199px) {
  .box-contact-item {
    padding: 30px 24px !important;
    border-radius: 24px;
  }
}

.wpr-map {
  padding: 12px !important;
}
.wpr-map iframe {
  border-radius: 24px;
}

.wpr-faq-area .section-inner {
  position: relative;
  z-index: 1;
}
.wpr-faq-area .section-inner .section-content-area {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.wpr-faq-area .section-inner .section-content-area .accordion-one {
  max-width: 856px;
  width: 100%;
  margin: auto;
  margin-top: 60px;
}
.wpr-faq-area .section-inner .section-content-area .accordion-one {
  border-radius: 10px;
  overflow: hidden;
}
.wpr-faq-area
  .section-inner
  .section-content-area
  .accordion-one
  .accordion-item {
  border: none;
  padding: 26px 32px;
  margin-bottom: 16px;
  background: linear-gradient(137.66deg, #f5f5f5 21.13%, #f2f2f2 80.53%);
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  border-radius: 12px;
}
.wpr-faq-area
  .section-inner
  .section-content-area
  .accordion-one
  .accordion-header
  button {
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-secondary);
  text-transform: none;
  letter-spacing: 0;
  background: transparent;
  box-shadow: none !important;
  padding: 0;
  color: var(--color-heading-1);
}
.wpr-faq-area
  .section-inner
  .section-content-area
  .accordion-one
  .accordion-header
  button::after {
  content: '—';
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: var(--color-heading-1);
  background: linear-gradient(137.66deg, #40454a 21.13%, #292c2e 80.53%);
  border-radius: 4px;
  color: var(--color-primary);
  font-family: 'Font Awsome 6 Pro';
  transform: none;
  display: block;
  text-align: center;
  font-size: 10px;
}
.wpr-faq-area
  .section-inner
  .section-content-area
  .accordion-one
  .accordion-header
  button.collapsed:after {
  content: '+';
  font-size: 16px;
  transition: var(--transition);
}
.wpr-faq-area
  .section-inner
  .section-content-area
  .accordion-one
  .accordion-body {
  padding: 0;
  padding-top: 20px;
}
.wpr-faq-area
  .section-inner
  .section-content-area
  .accordion-one
  .accordion-body
  p {
  color: var(--color-heading-1);
  font-weight: 500;
}
.wpr-faq-area .section-inner .top-left-shape {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.wpr-faq-area .section-inner .bg-shape {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.accordion-collapse {
  transition:
    height 0.4s ease,
    opacity 0.4s ease;
}

.wpr-why-choose-us-area {
  position: relative;
  z-index: 1;
}
.wpr-why-choose-us-area .wpr-content-area {
  padding: 100px 0;
}
.wpr-why-choose-us-area .wpr-content-area .content-inner .section-title-area {
  margin-bottom: 60px;
}
.wpr-why-choose-us-area .wpr-content-area .content-inner .bottom-button-area {
  margin-top: 64px;
}
.wpr-why-choose-us-area
  .wpr-content-area
  .content-inner
  .bottom-button-area
  .wpr-btn {
  margin: auto;
  max-width: 253px;
  width: 100%;
  text-align: center;
  justify-content: center;
  box-shadow:
    0px 3px 3px rgba(0, 0, 0, 0.1),
    60px 50px 80px rgba(0, 0, 0, 0.15),
    20px 41.7776px 33.4221px rgba(0, 0, 0, 0.1503),
    10px 22.3363px 17.869px rgba(0, 0, 0, 0.1417),
    4px 12.5216px 10.0172px rgba(0, 0, 0, 0.135),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.1283),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.1197),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #1a1a1a,
    inset 0px -6px 0px 1px rgba(255, 255, 255, 0.1);
  padding: 16px 24px 20px;
  transition: var(--transition);
}
.wpr-why-choose-us-area
  .wpr-content-area
  .content-inner
  .bottom-button-area
  .wpr-btn:hover {
  box-shadow: none;
}

.why-choose-wrapper {
  padding: 16px 16px 40px;
  background: linear-gradient(137.66deg, #f5f5f5 21.13%, #f2f2f2 80.53%);
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  border-radius: 12px;
  max-width: 416px !important;
}
.why-choose-wrapper.ml-auto {
  margin-left: auto;
}
.why-choose-wrapper .wrapper-header {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  height: 104px;
  display: flex;
  align-items: center;
}
.why-choose-wrapper .wrapper-header img.shape {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.why-choose-wrapper .wrapper-header .title {
  margin-bottom: 0;
  font-size: 32px;
}
.why-choose-wrapper .wrapper-header .title span {
  color: var(--color-body-1);
}
.why-choose-wrapper .wrapper-header.two {
  padding: 34px 24px 14px;
}
.why-choose-wrapper .wrapper-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 24px !important;
}
.why-choose-wrapper .wrapper-list li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}
.why-choose-wrapper .wrapper-list.two li {
  color: var(--color-heading-1);
}

.wpr-why-choose-us-area2 .section-inner {
  position: relative;
  z-index: 1;
}
.wpr-why-choose-us-area2 .section-inner .section-title-area {
  padding: 100px 56px 100px;
}
.wpr-why-choose-us-area2 .section-inner .section-title-area .sub-title {
  background: var(--color-white);
}
.wpr-why-choose-us-area2 .section-inner .bottom-content-area {
  display: flex;
  border-top: 1px solid rgba(3, 7, 18, 0.1);
}
.wpr-why-choose-us-area2 .section-inner .top-right-shape {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
}

.why-choose-wrapper2 {
  width: 25%;
  padding: 56px;
  border-right: 1px solid rgba(3, 7, 18, 0.1);
}
.why-choose-wrapper2 .icon {
  margin-bottom: 45px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.why-choose-wrapper2 .title {
  line-height: 1.2;
  margin-bottom: 12px;
}
.why-choose-wrapper2 .desc {
  font-weight: 500;
}
.why-choose-wrapper2:last-child {
  border: none;
}

.vedio-icone .video-play-button {
  position: relative;
  z-index: 1;
  box-sizing: content-box;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  display: block;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.vedio-icone .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid var(--color-primary);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 47%;
}
.vedio-icone .video-play-button span.outer-text {
  border: none;
  min-width: max-content;
  margin-left: 75px;
  position: relative;
  margin-top: -12px;
  color: var(--color-primary);
  font-weight: 500;
}
.vedio-icone .video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
  display: none;
}
.vedio-icone .video-overlay iframe {
  width: 70%;
  height: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.vedio-icone .video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
  display: block;
}
.vedio-icone .video-overlay .video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
  50% {
    opacity: 0.9;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=90)';
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}
.wpr-project-area .section-inner {
  position: relative;
  z-index: 1;
}
.wpr-project-area .section-inner .space {
  display: block;
  height: 200px;
}
.wpr-project-area .section-inner .floating-content {
  position: sticky;
  z-index: -1;
  left: 0;
  max-width: 100%;
  width: 100%;
  top: 32.5%;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .wpr-project-area .section-inner .floating-content {
    top: 28%;
  }
}
@media (max-width: 1500px) {
  .wpr-project-area .section-inner .floating-content {
    top: 32%;
  }
}
@media (max-width: 991px) {
  .wpr-project-area .section-inner .floating-content {
    top: 35%;
  }
}
.wpr-project-area
  .section-inner
  .floating-content
  .section-title-area
  .section-title {
  margin-bottom: 40px;
}
.wpr-project-area
  .section-inner
  .floating-content
  .section-title-area
  .section-title
  span {
  display: inline-block;
  padding-top: 10px;
}
.wpr-project-area
  .section-inner
  .floating-content
  .section-title-area
  .section-title
  span
  span {
  padding-top: 0;
}
.wpr-project-area
  .section-inner
  .floating-content
  .section-title-area
  .section-title
  span
  img {
  margin-left: 10px;
  margin-top: -15px;
}
.wpr-project-area .section-inner .floating-content .section-title-area .desc {
  max-width: 463px;
  margin: auto;
}
.wpr-project-area .section-top-area {
  padding: 100px 0 60px;
}

.wpr-project-area .wpr-video-pin {
  position: relative;
  display: block;
  height: 100vh !important;
}
.wpr-project-area .wpr-video-wrapper {
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.wpr-project-area .wpr-video-wrapper .swiper-navigation {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(46px);
}
.wpr-project-area .wpr-video-wrapper .swiper-navigation .swiper-btn {
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  display: block;
  border: none;
  border-radius: 0;
}
.wpr-project-area
  .wpr-video-wrapper
  .swiper-navigation
  .swiper-btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-project-area .wpr-video-wrapper .swiper-navigation.dark {
  background: rgba(0, 0, 0, 0.35);
}
.wpr-project-area .gsap-slider {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}
.wpr-project-area .gsap-slider.scale-done .slide .slide-content {
  opacity: 1;
  pointer-events: all;
}
.wpr-project-area .project-slider {
  height: 100%;
}
.wpr-project-area .slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wpr-project-area .slide .slide-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wpr-project-area .slide .slide-content .product-intro {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  max-width: 582px;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(46px);
}
.wpr-project-area .slide .slide-content .product-intro .top {
  padding: 40px 32px;
}
.wpr-project-area .slide .slide-content .product-intro .top .title {
  color: var(--color-white);
  text-transform: none;
}
.wpr-project-area .slide .slide-content .product-intro .top .desc {
  color: rgba(255, 255, 255, 0.7);
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul li {
  margin: 0;
  width: 100%;
  padding: 24px 32px;
}
.wpr-project-area
  .slide
  .slide-content
  .product-intro
  .bottom
  ul
  li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul li .h5 {
  font-size: 32px;
  line-height: 1;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
}
.wpr-project-area .slide .slide-content .product-intro .bottom ul li p {
  color: rgba(255, 255, 255, 0.7);
}
.wpr-project-area .slide .slide-content .button-area {
  position: absolute;
  top: 35%;
  right: 15%;
  z-index: 2;
  max-width: max-content;
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: all 3.5s;
}
.wpr-project-area .slide .slide-content .button-area .box {
  width: 24px;
  height: 24px;
  background: var(--color-heading-1);
}
.wpr-project-area .slide .slide-content .button-area a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  background: var(--color-heading-1);
  margin-top: 24px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
}
.wpr-project-area .slide .image-area {
  position: relative;
  z-index: 1;
}
.wpr-project-area .slide .image-area .shape {
  position: absolute;
  z-index: 1;
}
.wpr-project-area .slide .image-area .shape.top-left-shape {
  top: 0;
  left: 0;
}
.wpr-project-area .slide .image-area .shape.top-right-shape {
  top: 0;
  right: 0;
}
.wpr-project-area .image-area,
.wpr-project-area .video-img {
  width: 100%;
  height: 100%;
}
.wpr-project-area .image-area img,
.wpr-project-area .video-img img {
  object-fit: cover;
}
.wpr-project-area .pin-spacer {
  margin: 0 !important;
}

.project-wrapper {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.project-wrapper .slide-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transition: var(--transition);
}
.project-wrapper .slide-content .shape {
  position: absolute;
  z-index: 1;
}
.project-wrapper .slide-content .shape.top-left-shape {
  top: 0;
  left: 0;
}
.project-wrapper .slide-content .shape.top-right-shape {
  top: 0;
  right: 0;
}
.project-wrapper .slide-content .product-intro {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  max-width: 582px;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(46px);
}
.project-wrapper .slide-content .product-intro .top {
  padding: 40px 32px;
}
.project-wrapper .slide-content .product-intro .top .title {
  color: var(--color-white);
  text-transform: none;
}
.project-wrapper .slide-content .product-intro .top .desc {
  color: rgba(255, 255, 255, 0.7);
}
.project-wrapper .slide-content .product-intro .bottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.project-wrapper .slide-content .product-intro .bottom ul li {
  margin: 0;
  width: 100%;
  padding: 24px 32px;
}
.project-wrapper .slide-content .product-intro .bottom ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.project-wrapper .slide-content .product-intro .bottom ul li h5 {
  font-size: 32px;
  line-height: 1;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
}
.project-wrapper .slide-content .product-intro .bottom ul li p {
  color: rgba(255, 255, 255, 0.7);
}
.project-wrapper .slide-content .button-area {
  position: absolute;
  top: 35%;
  right: 15%;
  z-index: 2;
  max-width: max-content;
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: all 3.5s;
}
.project-wrapper .slide-content .button-area .box {
  width: 24px;
  height: 24px;
  background: var(--color-heading-1);
}
.project-wrapper .slide-content .button-area a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  background: var(--color-heading-1);
  margin-top: 24px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
}

.swiper-slide-active .project-wrapper .slide-content .button-area {
  opacity: 1;
  transform: translateY(0);
}

.project-slider-inner {
  position: relative;
  z-index: 1;
}
.project-slider-inner .slider-btn {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(46px);
}
.project-slider-inner .slider-btn .swiper-btn {
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  display: block;
  border: none;
  border-radius: 0;
}
.project-slider-inner .slider-btn .swiper-btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.project-slider-inner .slider-btn.dark {
  background: rgba(0, 0, 0, 0.35);
}

.work-details-banner .text-area {
  padding: 40px 56px;
  display: flex;
  justify-content: space-between;
}
.work-details-banner .text-area p.desc {
  font-family: var(--font-secondary);
  font-weight: 500;
}
.work-details-banner .text-area h6 {
  text-transform: none;
  font-family: var(--font-secondary);
  letter-spacing: -0.01em;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}
.work-details-banner .text-area .left-content {
  max-width: 310px;
}
.work-details-banner .text-area .right-content {
  max-width: 900px;
}
.work-details-banner .text-area .right-content .h6 {
  line-height: 1.3;
}
.work-details-banner .image-area-2 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wpr-project-area.inner .project-slider-inner {
  padding: 0 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.project-wrapper2 {
  width: 100%;
  flex-shrink: 0;
  z-index: 1;
  display: flex;
  gap: 30px;
  position: sticky;
  top: 60px;
  transition: var(--transition);
}
.project-wrapper2:hover .image-area .video-img {
  transform: scale(107%);
}
.project-wrapper2 .image-area {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    inset 0px 1px 0px rgba(255, 255, 255, 0.6),
    inset 0px -5px 0px #e4e4e4,
    inset 0px -6px 0px 1px #fafafa;
  transition: all 0.6s;
}
.project-wrapper2 .image-area .shape {
  position: absolute;
  z-index: 1;
}
.project-wrapper2 .image-area .shape.top-left-shape {
  top: 0;
  left: 0;
}
.project-wrapper2 .image-area .shape.top-right-shape {
  top: 0;
  right: 0;
}
.project-wrapper2 .image-area .over-link {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.project-wrapper2 .image-area .video-img {
  transform: scale(100%);
  transition: all 0.6s;
}
.project-wrapper2 .slide-content {
  position: relative;
  z-index: 1;
  width: 100%;
  transition: var(--transition);
  border-radius: 16px;
  overflow: hidden;
}
.project-wrapper2 .slide-content .product-intro {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-wrapper2 .slide-content .product-intro .top {
  padding: 40px 32px;
}
.project-wrapper2 .slide-content .product-intro .top .title {
  color: var(--color-white);
  text-transform: none;
}
.project-wrapper2 .slide-content .product-intro .top .desc {
  color: rgba(255, 255, 255, 0.7);
}
.project-wrapper2 .slide-content .product-intro .bottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.project-wrapper2 .slide-content .product-intro .bottom ul li {
  margin: 0;
  width: 100%;
  padding: 24px 32px;
}
.project-wrapper2 .slide-content .product-intro .bottom ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.project-wrapper2 .slide-content .product-intro .bottom ul li h4 {
  font-size: 32px;
  line-height: 1;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
}
.project-wrapper2 .slide-content .product-intro .bottom ul li p {
  color: rgba(255, 255, 255, 0.7);
}
.project-wrapper2 .slide-content .button-area {
  position: absolute;
  top: 35%;
  right: 15%;
  z-index: 2;
  max-width: max-content;
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: all 3.5s;
}
.project-wrapper2 .slide-content .button-area .box {
  width: 24px;
  height: 24px;
  background: var(--color-heading-1);
}
.project-wrapper2 .slide-content .button-area a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  background: var(--color-heading-1);
  margin-top: 24px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
}

.hover_mouse {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  transition: transform 0.5s ease-out;
  transform: translate3d(0, 0, 0);
}
.hover_mouse a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  background: var(--color-heading-1);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
  position: relative;
  z-index: 1;
  transform: scale(0);
}
.hover_mouse a::after {
  content: '';
  position: absolute;
  top: -24px;
  left: -24px;
  width: 24px;
  height: 24px;
  background: var(--color-heading-1);
  z-index: 1;
}
.hover_mouse.active .box {
  opacity: 1;
}
.hover_mouse.active a {
  transform: scale(1);
}

.wpr-delay-stats-area .section-inner .section-top-area {
  padding: 100px 0 64px;
}
.wpr-delay-stats-area .section-inner .delay-stats-rows {
  padding: 0 40px;
  border-top: 1px solid #e0e0e0;
}
.wpr-delay-stats-area .section-inner .delay-stats-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  align-items: stretch;
  border-bottom: 1px solid #e0e0e0;
}
.wpr-delay-stats-area .section-inner .delay-stats-row:last-child {
  border-bottom: none;
}
.wpr-delay-stats-area .section-inner .delay-stats-label {
  padding: 40px 40px 40px 0;
  border-right: 1px solid #e0e0e0;
}
.wpr-delay-stats-area .section-inner .delay-stats-label .index {
  display: block;
  font-family: var(--font-primary);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-body-1);
  margin-bottom: 10px;
}
.wpr-delay-stats-area .section-inner .delay-stats-label .title {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  text-transform: none;
  color: var(--color-heading-1);
  margin-bottom: 0;
  margin-top: 0;
}
.wpr-delay-stats-area .section-inner .delay-stats-bar-column {
  padding: 40px 0 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}
.wpr-delay-stats-area .section-inner .delay-stats-bar-column .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wpr-delay-stats-area .section-inner .delay-stats-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.wpr-delay-stats-area .section-inner .suffix {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-body-1);
}
.wpr-delay-stats-area .section-inner .delay-stats-track {
  height: 10px;
  border-radius: 999px;
  background: #f2f2f2;
  overflow: visible;
  position: relative;
}
.wpr-delay-stats-area .section-inner .delay-stats-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #98ff03;
  position: relative;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.wpr-delay-stats-area .section-inner .delay-stats-fill::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #98ff03;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1.5px #98ff03;
}
.wpr-delay-stats-area .section-inner .pct {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading-1);
  line-height: 1;
}
@media (max-width: 991px) {
  .wpr-delay-stats-area .section-inner .delay-stats-rows {
    padding: 0 24px 60px;
  }
  .wpr-delay-stats-area .section-inner .delay-stats-row {
    grid-template-columns: 1fr;
  }
  .wpr-delay-stats-area .section-inner .delay-stats-label {
    padding: 32px 0 24px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .wpr-delay-stats-area .section-inner .delay-stats-bar-column {
    padding: 24px 0 32px;
  }
}

.wpr-next-project-area .section-inner .section-top-area {
  padding: 100px 0 60px;
}
.wpr-next-project-area .section-inner .section-mid-area .slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wpr-next-project-area .section-inner .section-mid-area .slide .slide-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  max-width: 582px;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(46px);
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .top {
  padding: 40px 32px;
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .top
  .title {
  color: var(--color-white);
  text-transform: none;
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .top
  .desc {
  color: rgba(255, 255, 255, 0.7);
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .bottom
  ul {
  margin: 0;
  padding: 0;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .bottom
  ul
  li {
  margin: 0;
  width: 100%;
  padding: 24px 32px;
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .bottom
  ul
  li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .bottom
  ul
  li
  .h5 {
  font-size: 32px;
  line-height: 1;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .product-intro
  .bottom
  ul
  li
  p {
  color: rgba(255, 255, 255, 0.7);
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .button-area {
  position: absolute;
  top: 35%;
  right: 15%;
  z-index: 2;
  max-width: max-content;
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: all 3.5s;
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .button-area
  .box {
  width: 24px;
  height: 24px;
  background: var(--color-heading-1);
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .slide
  .slide-content
  .button-area
  a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 8px;
  background: var(--color-heading-1);
  margin-top: 24px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
}
.wpr-next-project-area .section-inner .section-mid-area .image-area .shape {
  position: absolute;
  z-index: 1;
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .image-area
  .shape.top-left-shape {
  top: 0;
  left: 0;
}
.wpr-next-project-area
  .section-inner
  .section-mid-area
  .image-area
  .shape.top-right-shape {
  top: 0;
  right: 0;
}
.wpr-next-project-area .section-inner .section-mid-area .image-area,
.wpr-next-project-area .section-inner .section-mid-area .video-img {
  width: 100%;
  height: 100%;
}
.wpr-next-project-area .section-inner .section-mid-area .image-area img,
.wpr-next-project-area .section-inner .section-mid-area .video-img img {
  object-fit: cover;
}

@media (max-width: 1439px) {
  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    min-width: 250px;
  }

  .wpr-banner-area .banner-content-area .section-title {
    font-size: 100px;
  }

  .wpr-about-area .section-inner .about-bottom-content .right-area .image-area {
    height: 100%;
  }
  .wpr-about-area
    .section-inner
    .about-bottom-content
    .right-area
    .image-area
    img:nth-child(1) {
    height: 100%;
    object-fit: cover;
  }

  .wpr-pricing-plans-area .section-inner .section-mid-area .pricing-inner {
    padding: 60px 40px;
  }

  .pricing-wrapper .pricing-header .bottom-pricing .button-area .wpr-btn {
    width: 100%;
  }

  .wpr-testimonials-area .section-inner .top-left-shape {
    max-width: 300px;
  }

  .why-choose-wrapper .wrapper-header .title {
    font-size: 42px;
  }

  .why-choose-wrapper .wrapper-list {
    padding: 0 10px !important;
  }

  .why-choose-wrapper .wrapper-list li {
    font-size: 14px;
  }

  .approch-area-left .section-title-area .section-title {
    font-size: 54px;
  }

  .single-approach-area-start {
    width: 100%;
  }

  .single-approach-area-start::after {
    font-size: 54px;
    line-height: 1;
    top: 15px;
  }

  .wpr-working-process
    .working-process-left
    .section-title-area
    .section-title {
    font-size: 60px;
  }

  .work-details-banner .text-area .right-content {
    max-width: 650px;
  }

  .work-details-banner .image-area-2 .image:not(:last-child) {
    flex-basis: 49%;
  }
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .wpr-services-area
    .section-bottom-content
    .service-wrapper
    .content
    .mid
    .h2 {
    font-size: 180px;
  }

  .why-choose-wrapper2 {
    padding: 56px 28px;
  }

  .team-apply-wrapper {
    padding: 20px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content {
    padding: 32px 20px 40px;
  }

  .wpr-services-area
    .section-bottom-content
    .service-wrapper
    .content
    .bottom
    ul
    li {
    font-size: 14px;
  }

  .wpr-services-area
    .section-bottom-content
    .service-wrapper
    .content
    .bottom
    .service-btn-area {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wpr-project-area
    .section-inner
    .floating-content
    .section-title-area
    .section-title {
    font-size: 50px;
  }

  .project-wrapper2 .slide-content .product-intro .top {
    padding: 25px;
  }

  .project-wrapper2 .slide-content .product-intro .bottom ul li {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .wpr-contact-area .section-inner .left-content-area {
    max-width: 714px;
    width: 45%;
    margin: 0 56px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  
  .wpr-contact-area .section-inner .left-content-area .get-in-touch ul li a {
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    color: #f9fafb;
    font-family: var(--font-secondary);
  }
  .f_19px {
    font-size: 17px;
    text-align: center;
}
}
@media (max-width: 1200px) {
  .container {
    padding-left: 0;
    padding-right: 5px;
  }

  .order-lg-change {
    order: -1;
  }

  .header-style-one .header-style-one-wrapper .left-area {
    padding: 10px 6px 10px;
  }

  .header-style-one .header-style-one-wrapper .button-area-start {
    padding: 5px 5px;
  }

  .main-nav-area ul {
    gap: 20px;
  }

  .wpr-banner-area .banner-content-area .section-title {
    font-size: 80px;
  }

  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    min-width: 200px;
  }

  .wpr-banner-area .banner-content-area .section-title .right-area,
  .wpr-banner-area .banner-content-area .section-title .left-area {
    padding: 25px 0;
  }

  .wpr-banner-area .banner-content-area .banner-shape-area img.one,
  .wpr-banner-area .banner-content-area .banner-shape-area img.two {
    width: 225px;
  }

  .wpr-services-area .section-bottom-content {
    flex-wrap: wrap;
  }

  .wpr-services-area .section-bottom-content .service-wrapper {
    flex-basis: 50%;
  }
  .wpr-services-area .section-bottom-content .service-wrapper:nth-child(3),
  .wpr-services-area .section-bottom-content .service-wrapper:nth-child(4) {
    border-top: 1px solid var(--color-border);
  }

  .wpr-contact-area .section-inner .left-content-area .location-area ul {
    flex-direction: column;
    gap: 30px;
  }

  .wpr-footer-area .footer-logo-area a img {
    max-width: 500px;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 100px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track {
    top: 35px;
  }

  .wpr-faq-area .section-inner .top-left-shape {
    max-width: 225px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 450px;
  }

  .wpr-testimonials-area .section-inner .testimonials-content-slider {
    max-width: 480px;
  }

  .wpr-banner-area.breadcrumb .banner-content-area .banner-shape-area img.one,
  .wpr-banner-area.breadcrumb .banner-content-area .banner-shape-area img.two {
    width: 165px;
  }

  .project-wrapper .slide-content .product-intro {
    max-width: 470px;
  }

  .award-header .left .content {
    max-width: 350px;
  }

  .award-item {
    padding: 40px 30px;
  }

  .award-header .left .content .title br {
    display: none;
  }

  .wpr-footer-area .copyright-area {
    padding: 24px;
  }

  .wpr-working-process
    .working-process-left
    .section-title-area
    .section-title {
    font-size: 48px;
  }

  .project-wrapper2 {
    flex-direction: column;
    position: unset;
  }

  .work-details-banner .text-area {
    padding: 40px 30px;
  }

  .work-details-banner .text-area .right-content {
    max-width: 540px;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  .why-choose-wrapper2 {
    padding: 40px 20px;
  }

  .why-choose-wrapper2 .title {
    font-size: 18px;
  }

  .why-choose-wrapper2 .desc {
    font-size: 14px;
  }

  .pricing-wrapper .pricing-header .title br {
    display: none;
  }

  .pricing-wrapper .pricing-header .bottom-pricing .price {
    font-size: 30px;
  }

  .wpr-pricing-plans-area .section-inner .section-mid-area .pricing-inner {
    padding: 50px 30px;
  }

  .pricing-wrapper .pricing-header .title {
    font-size: 32px;
  }

  .pricing-wrapper .pricing-body {
    padding: 54px 0 0 0;
  }

  .pricing-wrapper .pricing-body ul li {
    font-size: 14px;
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content
    .top {
    height: 200px;
    padding: 20px;
  }

  .project-wrapper .slide-content .product-intro .bottom ul li {
    padding: 15px 10px;
  }

  .project-wrapper .slide-content .product-intro .bottom ul li .h5 {
    font-size: 24px;
  }

  .award-item.active .left .content .desc {
    height: 80px;
  }

  .approch-area-left .section-title-area .section-title {
    font-size: 42px;
  }

  .single-approach-area-start p.disc br {
    display: none;
  }

  .single-approach-area-start .title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .wpr-banner-area .banner-content-area .section-title {
    font-size: 60px;
  }

  .wpr-banner-area .banner-content-area .section-title .right-area .arrow-track,
  .wpr-banner-area .banner-content-area .section-title .left-area .arrow-track {
    width: 80%;
  }

  .wpr-contact-area .section-inner .left-content-area .get-in-touch ul li a {
    font-size: 23px;
  }

  .wpr-contact-area .section-inner .left-content-area {
    margin: 0 30px;
  }

  .wpr-footer-area .footer-logo-area .shape {
    max-width: 200px;
  }

  .wpr-footer-area .copyright-area {
    padding: 24px;
  }

  .wpr-why-choose-us-area2 .section-inner .bottom-content-area {
    flex-wrap: wrap;
  }

  .why-choose-wrapper2 {
    width: 50%;
  }
  .why-choose-wrapper2:nth-child(1),
  .why-choose-wrapper2:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }
  .why-choose-wrapper2:nth-child(2) {
    border-right: none;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 72px;
  }

  .wpr-faq-area .section-inner .section-content-area .accordion-one {
    max-width: 90%;
  }

  .wpr-pricing-plans-area .section-inner .section-mid-area {
    flex-direction: column;
  }

  .wpr-pricing-plans-area .section-inner .section-mid-area .pricing-inner {
    width: 100%;
  }
  .wpr-pricing-plans-area
    .section-inner
    .section-mid-area
    .pricing-inner:first-child {
    border-bottom: 1px solid var(--color-border);
    border-right: none;
  }

  .pricing-wrapper .pricing-header .title {
    font-size: 36px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 400px;
  }

  .wpr-testimonials-area .section-inner .testimonials-content-slider {
    max-width: 100%;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    background: rgba(0, 0, 0, 0.67);
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content {
    background: rgba(0, 0, 0, 0.67);
  }

  .wpr-testimonials-area .section-inner .top-left-shape {
    max-width: 250px;
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content
    .top {
    height: auto;
  }

  .award-header .left {
    flex-direction: column;
    gap: 20px;
  }

  .award-item.active .left .content .desc {
    margin-top: 25px;
    height: 80px;
  }

  .wpr-why-choose-us-area .wpr-content-area .content-inner {
    margin: 0 20px;
  }

  .why-choose-wrapper .wrapper-header .title {
    font-size: 38px;
  }

  .wpr-working-process .working-process-left {
    margin-bottom: 50px;
  }

  .wpr-working-process .working-process-left {
    gap: 40px;
  }

  .header-style-one .header-style-one-wrapper .left-area {
    padding: 21px 25px 20px;
  }

  .main-nav-area ul {
    gap: 15px;
  }

  .side-bar {
    display: flex;
  }

  .header-style-one .header-style-one-wrapper .button-area-start {
    padding: 12px 25px;
  }

  .project-wrapper .slide-content {
    position: unset;
  }

  .project-wrapper .slide-content .product-intro {
    position: unset;
    max-width: 100%;
  }

  .project-slider-inner .slider-btn {
    display: none;
  }

  .wpr-footer-area .copyright-area p {
    width: max-content;
  }

  .wpr-footer-area .copyright-area .scroll-top-btn {
    max-width: max-content;
  }

  .main-nav-area {
    display: none;
  }

  .header-style-one
    .header-style-one-wrapper
    .left-area.square-dot
    .square-shape.top-right,
  .header-style-one
    .header-style-one-wrapper
    .left-area.square-dot
    .square-shape.bottom-right,
  .header-style-one
    .header-style-one-wrapper
    .button-area-start.square-dot
    .square-shape.top-left,
  .header-style-one
    .header-style-one-wrapper
    .button-area-start.square-dot
    .square-shape.bottom-left {
    display: none;
  }

  .header-style-one .header-style-one-wrapper .button-area-start,
  .header-style-one .header-style-one-wrapper .left-area {
    border-width: 0 0 0 0;
  }

  .approch-area-left {
    margin-bottom: 50px;
  }

  .wpr-project-area
    .section-inner
    .floating-content
    .section-title-area
    .section-title
    span
    img {
    width: 100px;
  }

  .wpr-project-area .slide .slide-content .product-intro {
    max-width: 500px;
  }

  .working-process-wrapper {
    top: 50px;
  }

  .services-details-banner .section-inner {
    padding: 60px 40px;
  }

  .work-details-banner .image-area-2 .image:not(:last-child) {
    flex-basis: 48.7%;
  }

  .work-details-banner .text-area {
    flex-direction: column;
    gap: 20px;
  }

  .work-details-banner .text-area .left-content,
  .work-details-banner .text-area .right-content {
    max-width: 100%;
  }

  .wpr-get-in-touch .section-inner {
    padding: 60px 30px;
  }

  .wpr-project-area .slide .slide-content .product-intro .bottom ul li {
    padding: 24px 18px;
  }

  .wpr-brand-area .section-inner .right-marquee-area .brand-inner {
    min-width: max-content;
  }
}
@media (max-width: 768px) {
  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    min-width: 135px;
  }

  .wpr-banner-area .banner-content-area .section-title .right-area,
  .wpr-banner-area .banner-content-area .section-title .left-area {
    padding: 17px 0;
  }

  .wpr-banner-area .banner-content-area .section-title {
    font-size: 48px;
  }

  .header-style-one .header-top .header-top-inner {
    gap: 25px;
  }

  .wpr-about-area .section-inner .about-bottom-content {
    flex-direction: column;
  }

  .wpr-about-area .section-inner .about-bottom-content .left-area {
    max-width: 100%;
  }

  .wpr-services-area
    .section-bottom-content
    .service-wrapper
    .content
    .mid
    .h2 {
    font-size: 150px;
  }

  .wpr-services-area
    .section-bottom-content
    .service-wrapper
    .content
    .bottom
    .service-btn-area {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wpr-contact-area .section-inner {
    flex-direction: column;
  }

  .wpr-contact-area .section-inner .left-content-area {
    max-width: 100%;
    margin: 0;
    padding: 30px;
  }

  .wpr-contact-area .section-inner .contact-form-area {
    max-width: 100%;
    border: none;
    padding: 0 30px 30px;
  }

  .wpr-footer-area .footer-logo-area a img {
    max-width: 400px;
  }

  .wpr-footer-area .footer-logo-area {
    padding: 40px 0 40px;
  }

  .wpr-footer-area .copyright-area {
    flex-wrap: wrap;
    gap: 30px;
  }

  .wpr-footer-area .copyright-area .left-social-area {
    width: 100%;
  }
  .wpr-footer-area .copyright-area .left-social-area ul {
    justify-content: center;
  }

  .why-choose-wrapper2 {
    padding: 40px 20px;
  }

  .wpr-footer-area .footer-top {
    padding: 50px 25px;
  }

  .wpr-footer-area .footer-top ul li a {
    font-size: 20px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track .arrow {
    height: 20px;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 54px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track {
    top: 15px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag.right {
    right: 20px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag.left {
    left: 20px;
  }

  .pricing-wrapper .pricing-body {
    padding: 54px 15px 0 15px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 300px;
  }

  .wpr-why-choose-us-area2 .section-inner .section-title-area {
    padding: 100px 30px;
  }

  .wpr-testimonials-area .section-inner .top-left-shape {
    max-width: 200px;
  }

  .award-item .image-area {
    position: relative;
    transform: none;
    top: unset;
    right: unset;
    height: 0;
  }

  .award-header .left {
    max-width: 90%;
  }

  .award-item.active .image-area {
    margin-top: 30px;
    height: auto;
  }

  .team-wrapper.down,
  .team-apply-wrapper {
    transform: translateY(0);
  }

  .team-apply-wrapper {
    gap: 30px;
  }

  .team-apply-wrapper .wpr-btn {
    height: 100px;
  }

  .wpr-working-process .section-inner {
    padding: 60px 20px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .content {
    padding: 32px 20px 40px;
  }

  .wpr-services-area
    .section-bottom-content
    .service-wrapper
    .content
    .bottom
    ul
    li {
    font-size: 14px;
  }

  .wpr-services-area
    .section-bottom-content
    .service-wrapper
    .content
    .bottom
    .service-btn-area {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }

  .wpr-banner-area.breadcrumb .banner-content-area .banner-shape-area img.one,
  .wpr-banner-area.breadcrumb .banner-content-area .banner-shape-area img.two {
    width: 150px;
  }

  .project-wrapper .slide-content .product-intro .top {
    height: 200px;
  }

  .project-wrapper .slide-content .product-intro .bottom ul li {
    padding: 15px 10px;
  }

  .project-wrapper .slide-content .product-intro .bottom ul li .h5 {
    font-size: 24px;
  }

  .project-wrapper .slide-content .shape.top-right-shape {
    width: 150px;
  }

  .project-wrapper .image-area {
    height: 500px;
  }

  .why-choose-wrapper {
    max-width: 100% !important;
  }

  .why-choose-wrapper.ml-auto {
    margin-left: 0;
  }

  .our-approch-area-style-one .section-inner {
    padding: 40px 30px;
  }

  .approch-area-left .section-title-area .section-title {
    font-size: 42px;
  }

  .wpr-banner-area.breadcrumb .banner-content-area .desc {
    max-width: 80%;
  }
  .wpr-banner-area.breadcrumb .banner-content-area .desc br {
    display: none;
  }

  .working-process-wrapper {
    top: 30px;
  }

  .wpr-pricing-plans-area .section-inner .section-mid-area .pricing-inner {
    padding: 60px 20px;
  }

  .services-details-banner
    .section-inner
    .service-overview
    .feature-wrapper-area {
    flex-direction: column;
  }

  .wpr-project-area.inner .project-slider-inner {
    padding: 0 30px 60px;
  }

  .project-wrapper2 .slide-content .product-intro .bottom ul li {
    padding: 20px 18px;
  }

  .work-details-banner .image-area-2 .image {
    flex-basis: 100% !important;
  }
  .work-details-banner .image-area-2 .image img {
    width: 100%;
  }

  .wpr-banner-area.error-page .banner-content-area .section-title {
    font-size: 50px;
  }

  .wpr-service-extended-area .service-included .included-list {
    margin-bottom: 18px;
  }

  .wpr-project-area .section-inner .space {
    height: 100px;
  }

  .wpr-project-area .section-inner .floating-content {
    position: relative;
    top: unset;
    left: unset;
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .wpr-project-area .wpr-video-pin {
    height: auto !important;
  }

  .wpr-next-project-area .slide .slide-content,
  .wpr-project-area .slide .slide-content {
    position: relative !important;
  }

  .wpr-next-project-area .slide .slide-content .product-intro,
  .wpr-project-area .slide .slide-content .product-intro {
    position: relative !important;
    height: 100%;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation .swiper-btn {
    height: 85px;
    width: 85px;
    line-height: 85px;
  }

  .wpr-next-project-area .slide .image-area .shape.top-left-shape,
  .wpr-next-project-area .slide .image-area .shape.top-right-shape,
  .wpr-project-area .slide .image-area .shape.top-left-shape,
  .wpr-project-area .slide .image-area .shape.top-right-shape {
    width: 100px;
  }

  .wpr-project-area
    .section-inner
    .floating-content
    .section-title-area
    .section-title
    span
    img {
    margin-left: 5px;
    margin-top: -5px;
  }
}
@media (max-width: 768px) and (min-width: 576px) {
  .box-contact-item {
    padding: 40px 20px;
  }
}
@media (max-width: 576px) {
  .header-style-one .header-top {
    display: none;
  }

  .wpr-banner-area .banner-content-area .section-title {
    flex-direction: column;
  }

  .wpr-banner-area .banner-content-area .section-title .left-area .arrow-track,
  .wpr-banner-area
    .banner-content-area
    .section-title
    .right-area
    .arrow-track {
    display: none;
  }

  .wpr-banner-area .banner-content-area .banner-shape-area img.one,
  .wpr-banner-area .banner-content-area .banner-shape-area img.two {
    max-width: 200px;
  }

  .wpr-banner-area .banner-content-area .section-title .mid-icon {
    max-width: 150px;
    padding: 20px 0;
  }

  .wpr-banner-area .banner-content-area {
    height: auto;
  }

  .wpr-banner-area .banner-content-area .text-area .button-area {
    flex-direction: column;
  }

  .wpr-banner-area .banner-content-area .top-shape {
    display: none;
  }

  .wpr-banner-area
    .banner-content-area
    .section-title
    .right-area
    .square-shape,
  .wpr-banner-area
    .banner-content-area
    .section-title
    .left-area
    .square-shape {
    display: none;
  }

  .wpr-about-area .section-inner .section-top-area {
    padding: 70px 40px;
  }

  .wpr-about-area .section-inner .about-bottom-content .left-area ul li {
    padding: 26px 30px;
  }

  .wpr-services-area .section-bottom-content .service-wrapper {
    flex-basis: 100%;
  }

  .wpr-services-area .section-bottom-content .service-wrapper .image-area img {
    width: 100%;
    height: 580px;
    object-fit: cover;
  }

  .wpr-contact-area .section-inner .left-content-area .get-in-touch,
  .wpr-contact-area .section-inner .left-content-area .location-area {
    flex-direction: column;
    gap: 20px;
  }

  .wpr-footer-area .footer-logo-area .shape {
    max-width: 150px;
  }

  .wpr-footer-area .footer-logo-area a img {
    max-width: 280px;
  }

  .why-choose-wrapper2 {
    width: 100%;
  }
  .why-choose-wrapper2:nth-child(1),
  .why-choose-wrapper2:nth-child(3),
  .why-choose-wrapper2:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .wpr-footer-area .footer-top ul li a {
    font-size: 16px;
  }

  .wpr-footer-area .footer-top ul li.square-dot {
    height: 8px;
    width: 8px;
  }

  .wpr-cta-area .section-inner .section-title-area .arrow-track {
    display: none;
  }

  .wpr-cta-area .section-inner .section-title-area {
    padding: 0 35px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag {
    bottom: 20px;
  }

  .wpr-cta-area .section-inner {
    padding: 70px 0 100px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag {
    font-size: 12px;
  }

  .pricing-wrapper .pricing-header .title br {
    display: none;
  }

  .pricing-wrapper .pricing-body ul li {
    width: 100%;
  }

  .pricing-wrapper .pricing-header .title {
    font-size: 32px;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 200px;
  }

  .wpr-why-choose-us-area2 .section-inner .section-title-area {
    padding: 60px 30px;
  }

  .wpr-testimonials-area .section-inner .top-left-shape {
    max-width: 130px;
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content
    .author-area {
    padding: 25px 20px;
  }

  .wpr-testimonials-area .section-inner .swiper-navigation .swiper-btn {
    width: 70px;
    height: 92px;
    line-height: 92px;
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content
    .top {
    height: 250px;
    padding: 40px 20px;
  }

  .wpr-team-area .section-bottom-inner {
    padding: 0 20px;
  }

  .wpr-marquee-area .section-inner .title {
    font-size: 64px;
  }

  .working-process-wrapper .content-area {
    flex-direction: column;
    gap: 15px;
  }

  .header-style-one .header-style-one-wrapper .button-area-start .wpr-btn {
    display: none;
  }

  .header-style-one .header-style-one-wrapper .left-area {
    padding: 21px 20px 20px;
  }

  .header-style-one .header-style-one-wrapper .button-area-start {
    padding: 12px 20px;
  }

  .wpr-banner-area.breadcrumb .banner-content-area .section-title {
    font-size: 32px;
  }

  .wpr-banner-area.breadcrumb .banner-content-area .banner-shape-area img.one,
  .wpr-banner-area.breadcrumb .banner-content-area .banner-shape-area img.two {
    width: 120px;
  }

  .project-wrapper .slide-content .product-intro .bottom ul {
    flex-wrap: wrap;
  }

  .project-wrapper .slide-content .product-intro .bottom ul li {
    width: 50%;
    text-align: center;
  }
  .project-wrapper
    .slide-content
    .product-intro
    .bottom
    ul
    li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .approch-area-left p.disc br {
    display: none;
  }

  .approch-area-left .section-title-area .section-title {
    font-size: 34px;
  }

  .single-approach-area-start p.disc br {
    display: none;
  }

  .wpr-working-process
    .working-process-left
    .section-title-area
    .section-title {
    font-size: 42px;
  }

  .wpr-awards-area .section-inner .award-accordion-area {
    margin-bottom: 0;
  }

  .wpr-faq-area .section-inner .section-content-area {
    padding: 100px 0 40px;
  }

  .services-details-banner .section-inner {
    padding: 60px 20px;
  }

  .services-details-banner .section-inner .service-overview .approach-area {
    flex-direction: column;
  }

  .services-details-banner
    .section-inner
    .service-overview
    .approach-area
    .left {
    max-width: 100%;
  }

  .services-details-banner
    .section-inner
    .service-overview
    .approach-area
    .right
    img {
    width: 100%;
  }

  .project-wrapper2 .slide-content .product-intro .bottom ul li:last-child {
    display: none;
  }

  .wpr-project-area.inner .project-slider-inner {
    padding: 0 20px 60px;
  }

  .project-wrapper2 .slide-content .product-intro .top {
    padding: 40px 20px;
  }

  .work-details-banner .text-area {
    padding: 40px 20px;
  }

  .work-details-banner .text-area .right-content .h6 {
    font-size: 20px;
  }

  .article-blog.style-horizontal {
    flex-direction: column;
  }

  .article-blog.style-horizontal .blog-image {
    max-width: 100%;
  }

  .wpr-blog-area .section-inner {
    padding: 60px 20px;
  }

  .blockquote-wrap {
    padding: 50px 25px 60px 25px;
  }

  .side-bar .sidebar-inner {
    padding: 20px 20px;
  }

  .why-choose-wrapper .wrapper-list {
    align-items: self-start;
    gap: 20px;
  }

  .why-choose-wrapper .wrapper-list li {
    align-items: start;
    line-height: 1.4;
  }

  .wpr-next-project-area .slide .slide-content .product-intro .bottom ul,
  .wpr-project-area .slide .slide-content .product-intro .bottom ul {
    flex-wrap: wrap;
    padding: 40px 32px !important;
    gap: 20px;
    height: 316px;
  }

  .wpr-next-project-area
    .section-inner
    .section-mid-area
    .slide
    .slide-content
    .product-intro
    .bottom
    ul
    li,
  .wpr-project-area .slide .slide-content .product-intro .bottom ul li {
    border: none;
    padding: 0;
  }

  .wpr-next-project-area
    .section-inner
    .section-mid-area
    .slide
    .slide-content
    .product-intro
    .bottom
    ul
    li:not(:last-child),
  .wpr-project-area
    .slide
    .slide-content
    .product-intro
    .bottom
    ul
    li:not(:last-child) {
    border: none;
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation {
    bottom: 0;
    top: unset;
    transform: none;
  }
}
@media (max-width: 450px) {
  .wpr-banner-area .banner-content-area .text-area .desc br {
    display: none;
  }

  .wpr-brand-area .section-inner .right-marquee-area .brand-wrapper {
    height: 180px;
    line-height: 150px;
    width: 180px;
  }

  .wpr-brand-area .section-inner .left-text {
    min-width: 150px;
  }

  .wpr-banner-area .banner-content-area .banner-shape-area img.one,
  .wpr-banner-area .banner-content-area .banner-shape-area img.two {
    max-width: 100px;
    min-width: 100px;
  }

  .wpr-banner-area .banner-content-area {
    padding: 100px 0;
  }

  .wpr-footer-area .footer-logo-area .shape {
    max-width: 120px;
  }

  .wpr-footer-area .copyright-area {
    justify-content: center;
  }

  .wpr-footer-area .footer-top ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .wpr-cta-area .section-inner .section-title {
    font-size: 36px;
  }

  .wpr-cta-area .section-inner .section-bottom-shape .tag {
    display: none;
  }

  .wpr-faq-area
    .section-inner
    .section-content-area
    .accordion-one
    .accordion-item {
    padding: 20px;
  }

  .wpr-faq-area
    .section-inner
    .section-content-area
    .accordion-one
    .accordion-header
    button {
    font-size: 16px;
  }

  .wpr-faq-area
    .section-inner
    .section-content-area
    .accordion-one
    .accordion-body
    p {
    font-size: 14px;
  }

  .wpr-faq-area .section-inner .section-content-area {
    padding: 100px 0 60px;
  }

  .wpr-faq-area .section-inner .top-left-shape {
    max-width: 170px;
  }

  .pricing-wrapper .pricing-header {
    padding: 30px 20px;
  }

  .pricing-wrapper .pricing-header .plan-type {
    flex-direction: column;
    align-items: self-start;
  }

  .pricing-wrapper .pricing-header .title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .pricing-wrapper .pricing-header .shape-one {
    max-width: 75px;
  }

  .pricing-wrapper .pricing-header .bottom-pricing {
    flex-direction: column;
    align-items: self-start;
    gap: 15px;
  }

  .pricing-wrapper .pricing-body {
    padding: 40px 0 0;
  }

  .wpr-pricing-plans-area .section-inner .section-top-area {
    padding: 60px 0;
  }

  .wpr-why-choose-us-area2 .section-inner .top-right-shape {
    max-width: 140px;
  }

  .wpr-pricing-plans-area .section-inner .section-mid-area .pricing-inner {
    padding: 60px 20px;
  }

  .wpr-testimonials-area .section-inner .top-left-shape {
    max-width: 100px;
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content
    .top
    .desc {
    font-size: 16px;
  }

  .wpr-testimonials-area .section-inner .swiper-navigation .swiper-btn {
    width: 50px;
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content
    .top {
    height: 280px;
  }

  .award-header .left .content .title {
    font-size: 20px;
  }

  .why-choose-wrapper .wrapper-list {
    padding: 0 !important;
  }

  .why-choose-wrapper .wrapper-header .title {
    font-size: 32px;
  }

  .wpr-marquee-area .section-inner .title {
    font-size: 56px;
  }

  .working-process-wrapper .content-area {
    padding: 25px 0 0;
  }

  .wpr-about-area .section-inner .section-top-area {
    padding: 60px 25px;
  }

  .wpr-about-area
    .section-inner
    .about-bottom-content
    .left-area
    ul
    li
    p.top-description
    br {
    display: none;
  }

  .project-wrapper .slide-content .product-intro .bottom ul li {
    width: 100%;
    text-align: left;
    padding-left: 25px;
  }

  .project-wrapper .slide-content .product-intro .top {
    padding: 25px;
  }

  .project-wrapper .slide-content .shape.top-left-shape,
  .project-wrapper .slide-content .shape.top-right-shape {
    width: 100px;
  }

  .approch-area-left .section-title-area .section-title {
    font-size: 26px;
  }

  .single-approach-area-start {
    padding: 28px 20px;
  }

  .single-approach-area-start .title {
    font-size: 20px;
  }

  .single-approach-area-start::after {
    font-size: 36px;
    top: 10px;
    right: 10px;
  }

  .wpr-testimonials-area
    .section-inner
    .testimonials-content-slider
    .testimonials-content
    .top
    .title {
    font-size: 28px;
  }

  .wpr-working-process
    .working-process-left
    .section-title-area
    .section-title {
    font-size: 32px;
  }

  .wpr-banner-area.breadcrumb .banner-content-area .desc {
    max-width: 90%;
  }

  .our-approch-area-style-one .section-inner {
    padding: 40px 24px;
  }

  .services-details-banner
    .section-inner
    .service-overview
    .feature-wrapper-area
    .feature-box
    .top
    .icon
    svg {
    width: 25px;
  }

  .services-details-banner
    .section-inner
    .service-overview
    .feature-wrapper-area
    .feature-box
    .top
    .text {
    font-size: 20px;
  }

  .services-details-banner .section-inner .service-overview .h5 {
    font-size: 18px;
  }

  .project-wrapper2 .slide-content .product-intro .bottom ul li h4 {
    font-size: 24px;
  }

  .project-wrapper2 .slide-content .product-intro .bottom ul li p {
    font-size: 14px;
  }

  .project-wrapper2 .slide-content .product-intro .bottom ul li {
    padding: 20px 14px;
  }

  .box-contact-item {
    padding: 40px 20px;
  }

  .wpr-map iframe {
    height: 400px;
  }

  .wpr-project-area .slide .slide-content .product-intro .bottom ul li p {
    color: var(--color-white);
  }

  .wpr-project-area .slide .slide-content .product-intro .top {
    padding: 40px 32px 35px;
  }

  .wpr-project-area .slide .slide-content .product-intro .top .title {
    margin-bottom: 13px;
  }

  .wpr-project-area .wpr-video-wrapper .swiper-navigation .swiper-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

  .wpr-next-project-area .slide .slide-content .product-intro,
  .wpr-project-area .slide .slide-content .product-intro {
    height: 545px;
  }
}
/*# sourceMappingURL=../maps/style.css.map */
/* Container for the split layout */
.banner-split-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  gap: 50px;
}

.banner-text-content {
  flex: 1;
  max-width: 500px;
}

.banner-video-column {
  flex: 1;
  position: relative;
  height: 500px; /* Adjust based on design */
  overflow: hidden;
  border-radius: 20px; /* Optional rounded corners */
}

/* This is the element that actually moves */
.parallax-video-wrapper {
  position: absolute;
  top: -10%; /* Start slightly higher */
  left: 0;
  width: 100%;
  height: 120%; /* Taller than parent to allow movement */
  will-change: transform;
}

.side-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  display: block;
  /* color: #your-primary-color; */
}

/* Ensures the video fills the ratio container without distortion */
.ratio video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional: Smooth scaling for the title */
.display-4 {
  font-size: calc(1.5rem + 2.5vw);
}

/* Gallery Layout */
.gallery-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
  font-family: sans-serif;
}

.gallery-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Lightbox Modal Overlay */
/* 1. FORCE THE LIGHTBOX OVERLAY TO BE THE POSITIONING ANCHOR */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

/* 2. PREVENT THE INNER CONTENT FROM SQUEEZING THE BUTTONS */
.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: static; /* Crucial: Allows absolute buttons inside to look at .lightbox instead */
  height: 100vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 10px;
  animation: zoomIn 0.3s ease;
}

/* 3. FIX THE BUTTONS BY CORNERING THEM TO THE SCREEN VIEWPORT */
.nav-btn {
  position: absolute; /* Keeps it absolute, but works with position: static above */
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
  border: none;
  color: white;
  font-size: 2.5rem;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 8px;
  transition:
    background 0.2s,
    transform 0.1s;
  user-select: none;
  width: 50px !important;
  z-index: 1010; /* Forces it completely above the image layers */
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* 4. PUSH THEM TO THE FAR LEFT AND RIGHT SIDES OF THE SCREEN */
.prev-btn {
  left: 5vw; /* Uses viewport width to stay fixed relative to the screen edge */
}

.next-btn {
  right: 5vw; /* Uses viewport width to stay fixed relative to the screen edge */
}

/* 5. FIX THE CLOSE BUTTON SO IT LIVES IN THE TOP RIGHT CORNER */
.close-btn {
  position: absolute;
  top: 4vh;
  right: 4vw;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1020;
}

.close-btn:hover {
  color: #ff4d4d;
}

/* Centers the container under the grid */
.gallery-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  width: 100%;
}

/* Fixes the button squeeze issue */
.gallery-actions .wpr-btn {
  flex-shrink: 0; /* Prevents flexbox from squeezing the button */
  min-width: 215px; /* Forces a healthy, stable width for the text and icons */
  display: inline-flex; /* Keeps internal text and arrow structures perfectly aligned */
  justify-content: flex-end;
  align-items: center;
}

.desc-f-18 {
  font-size: 18px !important;
}

.video-container {
  overflow: hidden; /* Keeps the zoomed video inside the box */
  width: 100%; /* Match your layout needs */
}

.custom-ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 70%);
}
.clientele-img {
  display: block;
  margin: 0 auto;
  padding-top: 40px;
  width: 100%; /* Default mobile width */
}

@media (min-width: 768px) {
  .clientele-img {
    width: 80%; /* Desktop width */
  }
}

/* Styling for the floating badge */
/* Sharp container styling */ /* Sharp container rule to prevent layout bleeding */
#parallax-container {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Positions the wrapper exactly at the bottom-center of the outer layout */
.audio-badge-wrapper {
  position: absolute !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  z-index: 9999 !important; /* Forces it to sit over the video layer */
  pointer-events: none; /* Allows clicks to pass through to the video if needed */
}

/* The standalone clickable badge */
.audio-badge {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 30px;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  pointer-events: auto; /* Restores the click state to the badge button itself */
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.audio-badge:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.03);
}

.audio-badge i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .custom-ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 140%) !important;
  }
}

.zoom-1x-video {
  transform: scale(1);
  transform-origin: center center;
}
.zoom-2x-video {
  transform: scale(1.35);
  transform-origin: center center;
}

/* Slider CSS Property */

/* Update your slide overlay to position text on the left-center */
.slide-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;

  /* A modern subtle dark gradient fading from left to right to protect white text */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 100%
  );

  /* Flexbox settings to perfectly center the text vertically, aligned to the left */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers text vertically */
  align-items: flex-start; /* Aligns text to the left */

  /* Your requested 30px left padding */
  padding-left: 30px;
  box-sizing: border-box; /* Ensures padding doesn't break layout width */
}

/* Style for the slider headings to make them bold and highly visible */
.slide-content-overlay h1 {
  font-weight: 700;
  color: #ffffff;
  font-size: 7rem;
  margin: 0 0 20px 50px;
  text-transform: uppercase;
  text-shadow:
    0px 2px 4px rgb(0 0 0),
    0px 4px 16px rgb(0 0 0);
}

/* Style for subheadings/paragraphs directly under the heading */
.slide-content-overlay p {
  font-weight: 400;
  color: #e0e0e0;
  font-size: 2rem;
  margin: 0 0 20px 50px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 1);
}

/* slider button*/
.custom-left {
  margin: 20px 0 0 50px;
}

/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 500px) {
  .custom-ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 120%) !important;
  }
  .slide-content-overlay h1 {
    font-size: 1.8rem;
    margin: 0 0 10px 20px;
  }
  .slide-content-overlay p {
    font-size: 1.6rem;
    margin: 0 0 20px 20px;
  }
  .custom-left {
    margin: 10px 0 0 50px;
  }
  .wpr-brand-area .section-inner .right-marquee-area .brand-inner {
    display: flex;
    align-items: center;
    will-change: transform;
    animation: marquee 60s linear infinite;
  }
  .zoom-1x-video {
    transform: scale(1.3);
    transform-origin: center center;
  }
}

@media only screen and (max-width: 767px) {
  .slide-content-overlay h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 30px;
  }
  .slide-content-overlay p {
    font-size: 1.6rem;
    margin: 0 0 20px 30px;
  }
  .swiper-button-next:after {
    font-size: 20px;
  }
  .swiper-button-prev:after {
    font-size: 20px;
  }
  .custom-left {
    margin: 20px 0 0 30px;
  }
  .custom-ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%) !important;
  }
  .wpr-btn.with-icon {
    padding: 15px 15px 15px 15px;
    font-size: 1.6rem;
  }
  .slide-content-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6) 0%,
      rgb(0 0 0 / 65%) 40%,
      rgb(0 0 0 / 65%) 100%
    );
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
  }
}

.content-area-portfolio {
  padding: 0 0;
}
.content-area-portfolio-next {
  padding: 80px 0 30px 0;
}
.section-title-area-portfolio {
  padding: 20px 0;
}
.custom-p-50px {
  padding: 20vh 0;
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 800px; /* Adjust to match your design */
  aspect-ratio: 16 / 8; /* Matches your image aspect ratio to prevent layout shifts */
  overflow: hidden;
  user-select: none;
}

.before-after-slider .img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-after-slider .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The 'Before' container starts at 50% width and gets clipped */
.before-after-slider .before-img {
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

/* Force the inner image to stay at full width even when parent shrinks */
.before-after-slider .before-img img {
  width: width of .before-after-slider;
  max-width: none;
  /* Adjust based on container layout if necessary, or let JS handle it if dynamic */
}

/* Slider Bar Line */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #ffffff;
  cursor: ew-resize;
  z-index: 3;
  transform: translateX(-50%);
}

/* Slider Center Circle Button */
.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Simple CSS Arrows inside the button */
.slider-button::before {
  content: '◀ ▶';
  color: #333333;
  font-size: 12px;
  font-weight: bold;
}

/* Keeps your background SVG shape on top of the layout but below the slider mechanics if needed */
.image-shape-right-bottom {
  z-index: 1;
  pointer-events: none; /* Keeps it from blocking drag actions */
}

.right-area {
  width: 100%;
}

.custom-icon-size {
  width: 140px;
}

.f_19px {
  font-size: 22px;
  text-align: center;
}

.caption-text {
  color: #ffffff;
  margin-top: 15px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* Add this anywhere in your CSS file */
body.no-scroll {
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 415px;
  overflow: hidden;
  margin-top: 20px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* Total duration = 12s (4s per image) */
  animation: fadeCarousel 12s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 4s;
}
.slide:nth-child(3) {
  animation-delay: 8s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeCarousel {
  /* Each image is visible for about 33% of the time, with a small fade overlap */
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.custom-slider-caption {
  display: flex; /* Enables the flex container */
  justify-content: space-around; /* Pushes the children to the far left and right edges */
  align-items: center; /* Vertically centers the headings */
  width: 100%; /* Ensures it takes the full width available */
  margin-top: 10px;
}

.custom-slider-caption h5 {
  margin: 0; /* Removes default browser margins for better alignment */
}
.custom-left-area ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
  flex-wrap: wrap;
}

.custom-left-area ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  /* Optional: Adjust padding for a cleaner look */
  padding: 10px 0;
}

/* Update border to fit horizontal layout */
.custom-left-area ul li.border-top {
  border-top: none; /* Remove old vertical border */
  border-left: 1px solid #e0e0e0; /* Add subtle separator between items */
  padding: 30px;
}

/* Remove the border from the very first item */
.custom-left-area ul li:first-child {
  border-left: none;
}

/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 500px) {
  .custom-left-area ul {
    flex-direction: column;
}
}
.right-area-mobile {
    display: none;
}

@media only screen and (max-width: 500px) {
  .right-area {
    display: none;
  }
  .right-area-mobile {
    display: block;
  }
  .carousel-container {
    position: relative;
    height: 500px;
    margin-top: 0;
}
.nav-btn {
            position: absolute;
        top: 45%;
        transform: translateY(-50%);
        background: rgb(0 0 0 / 70%);
        border: none;
        color: #ffffff;
        font-size: 1.5rem;
        padding: 5px 5px;
        cursor: pointer;
        border-radius: 8px;
        transition: background 0.2s, transform 0.1s;
        user-select: none;
        width: 23px !important;
        z-index: 1010;
}
.caption-text {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
}

/* Base button styles to keep things aligned */
.wpr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 160px; /* Prevents the button from shrinking when text hides */
  cursor: pointer;
}

/* The actual spinner graphic */
.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3); /* Change to match your text color background */
  border-radius: 50%;
  border-top-color: #fff; /* The spinning accent color */
  animation: spin 0.8s linear infinite;
}

/* Spinner rotation animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toggle state when loading */
.wpr-btn.loading .btn-text {
  display: none; /* Hide the text */
}

.wpr-btn.loading .btn-spinner {
  display: inline-block; /* Show the spinner */
}

/* Optional: Disable button while loading to prevent double submissions */
.wpr-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}