@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/Poppins-Regular.woff2') format('woff2'),
    url('fonts/poppins/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/Poppins-Medium.woff2') format('woff2'),
    url('fonts/poppins/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
    url('fonts/poppins/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins/Poppins-Bold.woff2') format('woff2'),
    url('fonts/poppins/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/urbanist/Urbanist-ExtraLight.woff2') format('woff2'),
    url('fonts/urbanist/Urbanist-ExtraLight.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/urbanist/Urbanist-Regular.woff2') format('woff2'),
    url('fonts/urbanist/Urbanist-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/urbanist/Urbanist-Medium.woff2') format('woff2'),
    url('fonts/urbanist/Urbanist-Medium.woff2') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/urbanist/Urbanist-SemiBold.woff2') format('woff2'),
    url('fonts/urbanist/Urbanist-SemiBold.woff2') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/urbanist/Urbanist-Bold.woff2') format('woff2'),
    url('fonts/urbanist/Urbanist-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/urbanist/Urbanist-ExtraBold.woff2') format('woff2'),
    url('fonts/urbanist/Urbanist-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
Default
========================================================================== */
:root {
  --color-primary: #141414;
  --color-secondary: #1F1F25;
  --color-body: #74787C;
  --color-heading-1: #fff;
  --color-white: #fff;
  --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: 0.3s;
  --font-primary: "Urbanist", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-3: "fontawesome", sans-serif;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}
* {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}
body {

  position: relative;
  overflow-x: hidden;
  background-color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
  margin: 0;
}
h1,
.h1 {
  font-size: var(--h1);
  line-height: 91px;
  font-weight: 700;
}
h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.23;
}
h3,
.h3 {
  font-size: var(--h3);
  line-height: 54px;
}
h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.25;
}
h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.24;
}
h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.25;
}
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;
}
@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: 18px;
  }
}
@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;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--s-bold);
}
h4,
.h4,
h5,
.h5 {
  font-weight: var(--s-bold);
}
h6,
.h6 {
  font-weight: var(--s-bold);
}
p {
  font-family: 'Urbanist';
  color: #fff;
  font-size:20px;
  letter-spacing: 0;
  line-height: 30px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 18px;
    line-height:26px;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px;
  width: 100%;
}
table a,
table a:link,
table a:visited {
  text-decoration: none;
}
/* ==========================================================================
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);
  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);
  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);
}
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);
  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: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 30px;
  }
}

/*=======================================================
Formulário de contato via WhatsApp
========================================================*/
.lead-form-section {
  position: relative;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 600px;
  padding: 120px 0;
  background: #0b0b0c;
  overflow: hidden;
}
.lead-form-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(150, 255, 0, 0.08);
  filter: blur(18px);
  pointer-events: none;
}
.lead-form-wrapper {
  position: relative;
  display: grid;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
  padding: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}
.lead-form-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #96ff00;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lead-form-intro h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
}
.lead-form-intro > p {
  max-width: 530px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}
.lead-form-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lead-form-benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 13px;
  color: #fff;
  font-size: 16px;
}
.lead-form-benefits i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #96ff00;
  color: #121213;
  font-size: 12px;
}
.lead-form {
  padding: 36px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}
.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.lead-form-field-full {
  grid-column: 1 / -1;
}
.lead-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #1b1b1c;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.lead-form-field label span {
  color: #727272;
  font-weight: 400;
}
.lead-form-field input,
.lead-form-field select,
.lead-form-field textarea {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  outline: none;
  background: #f8f8f8;
  color: #202020;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lead-form-field textarea {
  min-height: 112px;
  resize: vertical;
}
.lead-form-field input:focus,
.lead-form-field select:focus,
.lead-form-field textarea:focus {
  border-color: #78ce00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(150, 255, 0, 0.2);
}
.lead-form-field .is-invalid,
.lead-form-consent.is-invalid {
  border-color: #c92a2a;
}
.lead-form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 22px 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.lead-form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #78ce00;
}
.lead-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 50px;
  background: #96ff00;
  color: #121213;
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lead-form-submit:hover {
  background: #82df00;
  transform: translateY(-2px);
}
.lead-form-submit i {
  font-size: 21px;
}
.lead-form-feedback {
  display: none;
  margin: 14px 0 0;
  color: #b42318;
  font-size: 14px;
}
.lead-form-feedback.is-visible {
  display: block;
}
@media only screen and (max-width: 991px) {
  .lead-form-section {
    padding: 85px 0;
  }
  .lead-form-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 44px;
  }
}
@media only screen and (max-width: 575px) {
  .lead-form-section {
    padding: 65px 0;
  }
  .lead-form-wrapper {
    gap: 32px;
    padding: 28px 18px;
    border-radius: 20px;
  }
  .lead-form-intro h2 {
    font-size: 36px;
  }
  .lead-form-intro > p {
    font-size: 16px;
  }
  .lead-form {
    padding: 24px 18px;
  }
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
  .lead-form-field-full {
    grid-column: auto;
  }
}
@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: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@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: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
/*=========================
    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;
}
.rts-section-gap {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap {
    padding: 0 0;
  }
}
.rts-section-gapBottom {
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapBottom {
    padding-bottom: 60px;
  }
}
.rts-section-gapTop {
  padding-top: 50px;
  padding-bottom: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapTop {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapTop {
    padding-top: 60px;
  }
}
.pl--0 {
  padding-left: 0 !important;
}
.pr--0 {
  padding-right: 0 !important;
}
.pt--0 {
  padding-top: 0 !important;
}
.pb--0 {
  padding-bottom: 0 !important;
}
.mr--0 {
  margin-right: 0 !important;
}
.ml--0 {
  margin-left: 0 !important;
}
.mt--0 {
  margin-top: 0 !important;
}
.mb--0 {
  margin-bottom: 0 !important;
}
.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;
  }
  .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;
  }
  .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) {
}
@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: 24px;
  --bs-gutter-y: 24px;
}
* {
  -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: var(--color-primary);
}
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-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;
}
/* ==========================================================================
 *  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%;
}
/* 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;
  }
}
/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/*jump animation */
@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
    transform: translate3d(0, 50px, 0) scale(0.7);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
    transform: translate3d(0, 20px, 0) scale(0.8);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand-2 {
  from {
    transform: scale3d(1, 1, 1);
  }
  0% {
    transform: scale3d(1, 0.95, 1);
  }
  50% {
    transform: scale3d(1, 0, 1);
  }
  100% {
    transform: scale3d(1, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-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;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft2 {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight-2 {
  from {
    transform: translate3d(30%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp2 {
  from {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes slideInUp3 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
[data-aos=slideInUp2] {
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=slideInUp2].aos-animate {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  [data-aos=slideInUp2] {
    transform: translateY(30px);
  }
  [data-aos=slideInUp2].aos-animate {
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateIt2 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shape-service-1 {
  0% {
    right: -40%;
    top: 30%;
  }
  100% {
    right: -23%;
    top: 0;
  }
}
@keyframes animate-floting {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(40%);
  }
}
@keyframes animate-floting-2 {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(-40%);
  }
}
@keyframes animate-floting-3 {
  0% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-20%);
  }
}
.floting-line {
  animation: animate-floting 15s linear infinite;
}
.floting-line:hover {
  animation-play-state: paused;
}
.floting-line-2 {
  animation: animate-floting-2 15s linear infinite;
}
.floting-line-2:hover {
  animation-play-state: paused;
}
@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(1.4, 1.4);
    transform: scale(1.4, 1.4);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes vsmorph {
  0% {
    border-radius: var(--morp-value);
  }
  50% {
    border-radius: var(--morp-md-value);
  }
  100% {
    border-radius: 40% 60%;
  }
}
@keyframes morpspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.reveal-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.reveal-item .reveal-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: var(--color-primary);
}
.reveal-item .reveal-animation::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-400);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}
.reveal-animation.reveal-primary::before {
  background: #0c0c0a;
}
.reveal-animation.reveal-dark::before {
  background: #000;
}
.reveal-animation.reveal-white::before {
  background: #000;
}
.reveal-animation.reveal-top.aos-animate::before,
.reveal-animation.reveal-bottom.aos-animate::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.reveal-animation.reveal-start.aos-animate::before,
.reveal-animation.reveal-end.aos-animate::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.reveal-animation.reveal-top::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
.reveal-animation.reveal-start::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
.reveal-animation.reveal-end::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
.reveal-animation.reveal-bottom::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
[data-aos=reveal-top],
[data-aos=reveal-start],
[data-aos=reveal-end],
[data-aos=reveal-bottom] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
[data-aos=reveal-top] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
[data-aos=reveal-top].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
[data-aos=reveal-start] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
[data-aos=reveal-start].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
[data-aos=reveal-end] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
[data-aos=reveal-end].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
[data-aos=reveal-bottom] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
[data-aos=reveal-bottom].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
[data-aos=reveal-item] {
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
[data-aos=reveal-item].aos-animate {
  visibility: visible;
}
@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);
  }
}
/* -------------------------------- 
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;
}
.container {
  max-width: 1290px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .container {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
.container-150 {
  max-width: 1620px;
  margin: auto;
  padding: 0 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .container-150 {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .container-150 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-150 {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .container-150 {
    padding: 0 20px;
  }
}
.container-160 {
  max-width: 1600px;
  margin: auto;
}
.mt--100 {
  margin-top: 100px !important;
}
.sub-title {
  text-transform: uppercase;
  font-family: 'Poppins';
  color: #ff4911;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
}
.container-2 {
  max-width: 1473px;
  margin: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .container-2 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .container-2 {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-2 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .container-2 {
    padding: 0 20px;
  }
  .mt--100 {
    margin-top: 20px !important;
  }
}

/* ==========================================================================
Header
========================================================================== */
.header-area.header-one {
  position: absolute;
  width: 100%;
  margin: auto;
  z-index: 5;
}
.header-area.header-one .header-container-one {
  padding:40px 100px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-area.header-one .header-container-one {
    padding: 25px 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area.header-one .header-container-one {
    padding: 25px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .header-area.header-one .header-container-one {
    padding: 20px 15px;
  }
}
.header-area.header-one .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-area.header-one .header-wrapper .header-right {
  display: flex;
  align-items: center;
}
.header-area.header-one .header-wrapper .header-right .nav-area {
  margin-right: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.header-one .header-wrapper .header-right .nav-area {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-area.header-one .header-wrapper .header-right .nav-area {
    display: none;
  }
}
.header-area.header-one .header-wrapper .header-right .nav-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul li {
  margin: 0 20px;
}
.header-area.header-one .header-wrapper .header-right .nav-area ul li.main-nav-on {
  padding: 10px 0;
}

.whats {
  float: left;
  background: #96ff00;
  font-family: 'Urbanist';
  color: #121213;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px 15px 25px;
  border-radius: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.whats i {
  font-size: 16px;
  position: relative;
  padding-left: 5px;
  vertical-align: middle;
}

.whats:hover {
  background: #05ad2f;
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-area.header-one .header-wrapper .header-right .action-area {
  display: flex;
  align-items: center;
  gap: 25px;
}
.logo img {
  max-width: 82px;
}
nav.nav-area ul {
  display: flex;
  align-items: baseline;
  padding: 0px;
  margin: 0;
}
nav.nav-area ul li {
  margin: 0 20px;
}
nav.nav-area ul li:last-child {
  margin-right: 0;
}
nav.nav-area ul li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}
.header--sticky {
  transition: none !important;
  top: 0;
  z-index: 5;
  position: relative;
}

.sticky-150 {
  top: -150px;
  transition: 2s;
}
.container-n {
  width: 100%;
  max-width: 1760px;
  margin: auto;
}
@media only screen and (max-width: 575px) {
  .container-n {
    padding: 0 15px;
  }
}

/* ==========================================================================
Banner Header
========================================================================== */

.banner-bg-1 {
  background:#f8f8f8 url('../images/bg-header.webp')repeat top center;
  height:882px;
}
.banner-one-wrapper .title {
  position: relative;
  font-family: 'Urbanist';
  color: #96ff00;
  font-weight:600;
  font-size: 50px;
  letter-spacing: -2px;
  line-height:72px;
  padding-right: 250px;
  
}
@media only screen and (max-width: 1199px) {
  .banner-one-wrapper .title {
    font-size: 60px;
    line-height: 80px;
    letter-spacing:-1px;
    padding-right:0px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-one-wrapper .title {
    font-size: 46px;
    line-height: 60px;
    margin-top: 20px;
  }
  .rts-mouse-move-button {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .banner-one-wrapper .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.banner-one-wrapper .title span {
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.banner-one-wrapper .title span::after {
  position: absolute;
  content: "";
  left: 10px;
  bottom: 12px;
  width: 100%;
  height: 3px;
  background: #A8A8A8;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .banner-one-wrapper .title span::after {
    position: absolute;
    content: "";
    left: 4px;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background: #fff;
    max-width: 100%;
    overflow: hidden;
  }
}
@media only screen and (max-width: 479px) {
  .banner-one-wrapper .title span::after {
    left: 3px;
    bottom: 2px;
    width: 100%;
    height: 1px;
  }
}
.banner-one-wrapper .title .border-bottom-1 {
  color: #A8A8A8;
}
.banner-one-wrapper .para-wraph {
  float: left;
  width:60%;
  margin-top: 20px;
}

.banner-one-wrapper .para-wraph p {
  color: #fff;
  font-family: 'Urbanist';
  font-weight:400;
  font-size:20px;
  line-height: 26px;
  padding-right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-wrapper .para-wraph p {
    width:100%;
  }
}
@media only screen and (max-width: 767px) {
  .banner-one-wrapper .para-wraph {
  width:100%;
  margin-top:20px;
}

  .banner-one-wrapper .para-wraph p {
    width:100%;
    padding-right:0;
  }
}
@media only screen and (max-width: 575px) {
  .banner-one-wrapper .para-wraph p {
    width:100%;
    margin-top:0;
    font-size:18px;
    line-height: 24px;
  }
}
.banner-area.banner-style-one {
  position: relative;
  z-index: 0;
}
.banner-area.banner-style-one .explore-button {
  position: absolute;
  top: 62%;
  left: 21%;
  transform: translate(-50%, -50%);
}
.vedio-button-area-banner-one {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 160px;
}
.banner-area.banner-style-one {
  position: relative;
}
.banner-area.banner-style-one .top-center-image {
  position: absolute;
  left: 75%;
  top: 35%;
}
@media only screen and (max-width: 1199px) {
  .banner-area.banner-style-one .top-center-image {
    top: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .banner-area.banner-style-one .top-center-image {
    left: 68%;
    top: 45%;
  }
  .ocultar-mobile{
    display: none;
  }

  .serv-margin{
    position: relative;
    margin-top:-70px;
    padding-top: 60px;
    z-index: 1000;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area.banner-style-one .top-center-image {
    left: 63%;
    top: 58%;
  }
}
@media only screen and (max-width: 479px) {
  .banner-bg-1 {
    background-image: url(../images/bg-header-responsivo.webp);
    height: 100vh;
  }
  .banner-one-wrapper .title {
    margin-top: 0;
  }
  .banner-area.banner-style-one .top-center-image {
    left: 24%;
    top: 57%;
    padding: 0;
  }
}
@media only screen and (max-width:389px) {
  .banner-one-wrapper .title {
    margin-top: -30px;
  }
}
.banner-area.banner-style-one .top-center-image .speen-shape {
  margin-top: 50px;
  position: absolute;
  left: 55%;
  top: 63%;
  border-radius: 50%;
  padding:6px;
  background: rgb(55,55,55);
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}
.banner-area.banner-style-one .top-center-image .speen-shape text textPath {
  color: #fff !important;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 6px;
  letter-spacing: 1.6px;
}
.banner-area.banner-style-one .top-center-image .speen-shape .isotipo {
  position: absolute;
  left:34%;
  top: 38%;
  width:46px;
}
.banner-area.banner-style-one .top-center-image .uni-animation-spin {
  display: inline-flex;
  animation: spin 10s linear 0s infinite;
}
.banner-area.banner-style-one .top-center-image .uni-circle-text-path {
  fill: currentColor;
  height: auto;
  max-width: 250px;
  right: 10%;
  transform-origin: center;
  text-transform: uppercase;
}
.banner-area.banner-style-one .top-center-image .uni-circle-text-path {
  fill: currentColor;
  height: auto;
  max-width: 250px;
  right: 10%;
  transform-origin: center;
  text-transform: uppercase;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.banner-area.banner-style-one .top-center-image .speen-shape::before {
  content: "";
  display: block;
  width: 108px;
  height: 108px;
  position: absolute;
  transform: scale(0.5);
  left: 0;
  top: 0;
  transform: translate(20px, 20px);
  border-radius: 100%;
}
.mt--120 {
  margin-top: 120px !important;
}

.inner-page.portfolio-nine .header-three .inner .header-right .menu-btn {
  color: #000;
}
.inner-page.portfolio-nine {
  background: #fff;
  position: relative;
}
.inner-page.portfolio-nine .banner-portfolio-nine {
  position: fixed;
  left: 140px;
  top: 280px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .inner-page.portfolio-nine .banner-portfolio-nine {
    left: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page.portfolio-nine .banner-portfolio-nine {
    left: 50px;
    top: 156px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page.portfolio-nine .banner-portfolio-nine {
    top: 130px;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page.portfolio-nine .banner-portfolio-nine {
    top: 130px;
    position: relative;
    left: 15px;
  }
}
.inner-page.portfolio-nine .portfolio-nine-wrapper-main span.pre {
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  display: block;
}
.inner-page.portfolio-nine .portfolio-nine-wrapper-main .title {
  color: #141414;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 58px;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .inner-page.portfolio-nine .portfolio-nine-wrapper-main .title {
    font-size: 32px;
    line-height: 48px;
  }
}
.inner-page.portfolio-nine .portfolio-nine-wrapper-main p.disc {
  color: #74787C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.inner-page.portfolio-nine .product-wrapper-9 {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page.portfolio-nine .product-wrapper-9 {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page.portfolio-nine .product-wrapper-9 {
    padding: 0 15px;
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .inner-page.portfolio-nine .product-wrapper-9 {
    flex-direction: column;
  }
}
.inner-page.portfolio-nine .product-wrapper-9 .product-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.inner-page.portfolio-nine .product-wrapper-9 .product-row .inner {
  transform: translate3d(0, 0, 0);
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.inner-page.portfolio-nine .product-wrapper-9 .product-row .inner .single-product-9 {
  margin-bottom: 30px;
}
.inner-page.portfolio-nine .product-wrapper-9 .product-row .inner .single-product-9:last-child {
  margin-bottom: 0;
}
.inner-page.portfolio-nine .product-wrapper-9 .product-row.two .inner {
  transform: translate3d(0, 0, 0);
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes VarticleSlide {
  100% {
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes VarticleSlide-2 {
  100% {
    transform: translate3d(0, 50%, 0);
  }
}
.inner-page.portfolio-ten {
  height: 100vh;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .inner-page.portfolio-ten {
    height: 120vh;
    position: relative;
    z-index: 1;
  }
}
.inner-page.portfolio-ten .banner-10-swiper-wrapper-main {
  display: flex;
  align-items: center;
  position: absolute;
  right: 5%;
  top: 55%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main {
    display: flex;
    align-items: center;
    position: absolute;
    left: 15px;
    top: 40%;
    z-index: 5;
    flex-direction: column;
    align-items: flex-start;
    right: auto;
  }
}
@media only screen and (max-width: 479px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main {
    top: 100px;
  }
}
.inner-page.portfolio-ten .banner-10-swiper-wrapper-main:hover {
  z-index: 50;
}
.inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title {
  margin: 0 15px;
  position: relative;
}
.inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title span {
  position: absolute;
  top: -80px;
  left: 0;
  color: #fff;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 120px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1199px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title span {
    top: -55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title span {
    top: -37px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title span {
    top: 5px;
    left: 0;
    color: #FFF;
    font-size: 24px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title span {
    top: -25px;
  }
}
.inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title .title {
  color: #dddddd;
  font-size: calc(60px + 2.2vw);
  font-style: normal;
  font-weight: 800;
  line-height: 120px;
  text-transform: capitalize;
  transition: 0.3s;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title .title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title .title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title .title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 575px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title .title {
    font-size: 36px;
    line-height: 71px;
  }
}
.inner-page.portfolio-ten .banner-10-swiper-wrapper-main .single-portfolio-tem-title .title:hover {
  color: #fff !important;
}
.inner-page.portfolio-ten .banner-10-swiper-wrapper-main.two {
  top: 75%;
  left: 5%;
}
@media only screen and (max-width: 767px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main.two {
    top: 39%;
    right: 5%;
    left: auto;
  }
}
@media only screen and (max-width: 479px) {
  .inner-page.portfolio-ten .banner-10-swiper-wrapper-main.two {
    top: 51%;
    left: 15px;
  }
}
.inner-page.portfolio-ten .portfolio-main-10-wrapper {
  display: flex;
  flex-direction: column;
}
.inner-page.portfolio-ten .portfolio-main-10-wrapper:hover .single-portfolio-tem-title .title {
  color: #ffffff00;
  -webkit-text-stroke: 1px #ffffff;
}
.inner-page.portfolio-ten .hover-slider-main-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.inner-page.portfolio-ten .hover-slider-main-wrapper .rts-portfolio-wrapper-10 .rts-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: all 0.4s ease-in-out;
}
.inner-page.portfolio-ten .hover-slider-main-wrapper .rts-portfolio-wrapper-10 .rts-img-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.inner-page.portfolio-ten .hover-slider-main-wrapper .rts-portfolio-wrapper-10 .rts-img-hover.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.inner-page.portfolio-ten::before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0404044d;
  z-index: 5;
  opacity: 1;
  pointer-events: none;
}
.inner-page.portfolio-five {
  height: 100vh;
  overflow: hidden;
  display: block;
}
.border40{
  border-radius:40px !important;
}
.grow {
  transform: scale(0.8);
}
.sticky-column {
  position: sticky;
  top: 0;
}
.content {
  flex: 1;
}

@media (max-width: 575px) {
  .border40{
    border-radius:20px !important;
  }
  .grow{
    margin-top: 20px;
  transform: scale(1);
}
}
.rts-btn {
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  border-radius: 3px;
  display: block;
  max-width: max-content;
  transition: 0.3s;
}
.rts-btn.btn-primary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.rts-btn.btn-primary:hover {
  background: #fff;
  color: #141414;
}
.rts-btn.btn-primary.btn-md {
  padding: 13px 26px;
  font-size: 16px;
}
.rts-btn.btn-primary.btn-lg {
  padding: 16px 30px;
  font-size: 18px;
}
.rts-btn.btn-primary.btn-xl {
  padding: 18px 34px;
  font-size: 20px;
}
.rts-btn.btn-primary-1 {
  background: #393939;
  border-radius: 100px;
  color: #fff;
}
.rts-btn.btn-primary-1.btn-md {
  padding: 13px 26px;
  font-size: 16px;
}
.rts-btn.btn-primary-1.btn-lg {
  padding: 16px 30px;
  font-size: 18px;
}
.rts-btn.btn-primary-1.btn-xl {
  padding: 18px 34px;
  font-size: 20px;
}
.rts-mouse-move-button .btn-wrapper {
  position: relative;
  z-index: 1;
  min-width: 450px;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-left: -98px !important;
  margin-right: auto;
}
.rts-mouse-move-button .rts-btn-mouse-move {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  padding: 10px 25px;
  border: 1px solid #fff;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.rts-mouse-move-button .rts-btn-mouse-move i {
  font-size: 18px;
  margin-top: 5px;
  vertical-align: middle;
  padding-left: 10px;
}
.rts-mouse-move-button .rts-btn-mouse-move:hover {
  color: #03ac2f;
  border: 1px solid #03ac2f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.rts-team__item {
  padding-bottom: 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  scale: 0.5;
  opacity: 0;
}
.rts-team__item:nth-child(even) {
  top: 50%;
}
.rts-team__item {
  -webkit-transform: perspective(4000px) rotateX(90deg);
  transform: perspective(4000px) rotateX(90deg);
}
.image-wrapper-main-about {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 0;
}
.mt-dec-135 {
  margin-top: -135px;
}
.rts-about-area-1 {
  position: relative;
  z-index: 52;
}
.rts-about-area-1 {
  position: relative;
  z-index: 10;
}
.text-split-wrap-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .text-split-wrap-about {
    margin-top: 20px;
  }
}
.text-split-wrap-about h2 {
  font-family: Urbanist;
  font-weight: 600;
  font-size: 100px;
  line-height: 110px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  min-width: max-content;
}
@media only screen and (max-width: 767px) {
  .text-split-wrap-about h2 {
    font-size:50px;
      line-height:50px;
  }
}
.about-area-right-start .inner-about-wrapper .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  text-transform: uppercase;
  color: #141414;
  text-align: left;
}
@media only screen and (max-width: 1199px) {
  .about-area-right-start .inner-about-wrapper .title {
    font-size: 36px !important;
    line-height: 46px !important;
  }
}
@media only screen and (max-width: 767px) {
  .about-area-right-start .inner-about-wrapper .title {
    font-size: 26px !important;
    line-height: 36px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-area-right-start .inner-about-wrapper .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .about-area-right-start .inner-about-wrapper .title br {
    display: none;
  }
}
.about-area-right-start .inner-about-wrapper p.disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .about-area-right-start .inner-about-wrapper p.disc br {
    display: none;
  }
}
.rts-about-area-1 {
  position: relative;
  z-index: 1;
}
.rts-about-area-1 .shape-about-one {
  position: absolute;
  left: 55px;
  bottom: 7%;
  z-index: -1;
}
.left-main-about-inner {
  position: relative;
  max-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .left-main-about-inner {
    margin: auto;
  }
}
.left-main-about-inner .shape-about-two {
  position: absolute;
  right: 20px;
  top: -40px;
}
.single-progress-area-one {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .single-progress-area-one {
    width: 100%;
  }
}
.parallax-about figure,
.parallax-case figure {
  position: relative;
  margin: 0;
}
.parallax-about .pli-image-hover-zoom,
.parallax-case .pli-image-hover-zoom {
  transition: all 1s cubic-bezier(0.07, 0.72, 0.29, 0.96);
}
.parallax-about img,
.parallax-case img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.2);
  transform-origin: 50% 100%;
  width: 100%;
  height: auto;
  height: auto;
}
.rts-about-area .pli-image {
  max-width: max-content;
}
.rts-reveal-one {
  visibility: hidden;
  position: relative;
  width: 80%;
  height: 80%;
  max-width: max-content;
  margin-left: auto;
  right: 0;
  overflow: hidden;
}
.scrolltext-wrapper {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
}
.scrolltext-wrapper h2.title {
  width: 500vw;
  min-width: max-content;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .scrolltext-wrapper h2.title {
    margin-bottom: 100px !important;
  }
}

/*=======================================================
Destaques
========================================================*/

.destaques {
    float: left;
    width: 100%;
    margin:-200px auto 70px;
    position: relative;
}

.destaques .destaque img {
    float: left;
    display: block;
    position: relative;
    width: 15%;
    padding-right: 12px;
}

.destaques .destaque p {
    margin-top:15px;
    font-family: 'Urbanist', sans-serif;
    font-size:18px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    padding-right:120px;
}

.destaques .clientes-img img {
    float: left;
    display: block;
    position: relative;
    width: 50%;
    padding-right: 12px;
}

.destaques .clientes-img p {
    padding-top: 20px;
    padding-right:10px;
    font-family: 'Urbanist', sans-serif;
    font-size:18px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
.destaques {
    margin:50px auto 70px;
}

.destaques .destaque p {
    padding-right:20px;
    padding-bottom: 40px;
}

}

/*=======================================================
Serviços
========================================================*/

.service-area-main-wrapper-style-one {
  display: block;
  margin-top: 80px;
}

.service-area-main-wrapper-style-one .single-service-start {
  display: flex;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #F0F0F0;
}
.service-area-main-wrapper-style-one .single-service-start:first-child {
  border-top: 1px solid #F0F0F0;
}
.service-area-main-wrapper-style-one .single-service-start .left-area {
  flex-basis: 50%;
}
.service-area-main-wrapper-style-one .single-service-start .left-area a .title {
  color: #141414;
}
.service-area-main-wrapper-style-one .single-service-start .right-area {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-area-main-wrapper-style-one .single-service-start .right-area .button-arrow a {
  display: flex;
  display: flex;
  align-items: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid #141414;
  justify-content: center;
  transition: 0.3s;
}
.service-area-main-wrapper-style-one .single-service-start .right-area .button-arrow a i {
  color: #141414;
}
.service-area-main-wrapper-style-one .single-service-start .right-area .button-arrow a:hover {
  background: #141414;
  border-color: #141414;
  transform: scale(1.2);
}
.service-area-main-wrapper-style-one .single-service-start .right-area .button-arrow a:hover i {
  color: #fff;
  transform: scale(0.9);
}
.service-area-main-wrapper-style-one .single-service-start .right-area p.disc {
  margin-bottom: 0;
  color: #141414;
}
.our-service-area-start .categories-wrapper {
  height: max-content;
}
.our-service-area-start .categories-wrapper .categories {
  width: 100%;
  height: auto;
}
.our-service-area-start .categories-wrapper .images {
  position: relative;
  z-index: 1;
}
.our-service-area-start .categories-wrapper .images img {
  position: absolute;
  height: 300px;
  width: max-content;
  opacity: 0;
  z-index: -1;
  transform: scale(0.8);
}

/*=======================================================
Quem Somos
========================================================*/
.sobre{
  float: left;
  width: 100%;
  margin:120px auto 0;
}

.sobre h1{
  position: relative;
  font-family: 'Urbanist';
  color: #96ff00;
  font-weight:600;
  font-size:80px;
  letter-spacing: -2px;
  line-height:78px;
  padding-right: 150px;
}

.sobre p{
  margin-top: 50px;
}

.sobre .destaque{
  margin-left: 50px;
}

.sobre .destaque img {
    margin-top:30px;
    display: block;
    position: relative;
    width:12%;
    background:#96ff00;
    padding: 13px;
    border-radius: 12px;
}

.sobre .destaque h2 {
    margin-top:25px;
    font-family: 'Urbanist', sans-serif;
    font-size:24px !important;
    font-weight: 600;
    color: #96ff00;
}

.sobre .destaque p {
    margin-top:15px;
    font-family: 'Urbanist', sans-serif;
    font-size:18px !important;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    padding-right:40px;
}

@media only screen and (max-width:767px) {
  .sobre{
    float: left;
    width: 100%;
    margin:60px auto 50px;
  }

  .sobre h1{
    font-size:40px;
    letter-spacing: -1px;
    line-height:44px;
    padding-right:0px;
  }

  .sobre p{
    font-size: 18px;
    line-height:26px;
    margin-top:20px;
  }

  .sobre .destaque{
  margin-left:0;
}

  .sobre .destaque img {
    margin-top:0;
    width:16%;
}

.sobre .destaque h2 {
    margin-top:25px;
    font-family: 'Urbanist', sans-serif;
    font-size:24px !important;
    font-weight: 600;
    color: #96ff00;
}

.sobre .destaque p {
    padding-right:0;
}
}

/*=======================================================
Diferenciais
========================================================*/

.diferenciais {
    float: left;
    width: 100%;
    margin:0 auto 40px;
    position: relative;
}

.diferenciais h1 {
    position: relative;
    font-family: 'Urbanist', sans-serif;
    font-size:48px;
    font-weight: 600;
    color: #fff;
    line-height: 48px;
    margin: 0 auto;
}

.diferenciais .destaque img {
    margin-top:80px;
    display: block;
    position: relative;
    width:17%;
    background:#96ff00;
    padding: 13px;
    border-radius: 12px;
}

.diferenciais .destaque h2 {
    margin-top:25px;
    font-family: 'Urbanist', sans-serif;
    font-size:24px !important;
    font-weight: 600;
    color: #96ff00;
}

.diferenciais .destaque p {
    margin-top:15px;
    padding-right:10px;
    font-family: 'Urbanist', sans-serif;
    font-size:18px !important;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    padding-right:40px;
}

@media only screen and (max-width: 575px) {

  .diferenciais h1 {
      font-size:36px;
      line-height:36px;
  }

  .diferenciais .destaque img {
    margin-top:30px;
}
}

/*----------------------------------------*/
/*  17. SERVICE CSS START
/*----------------------------------------*/
.rts-breadcrumb-area {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .rts-breadcrumb-area {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .rts-breadcrumb-area {
    height: auto;
    padding-top: 120px;
  }
}
.rts-breadcrumb-area .inner .works {
  font-family: 'Poppins';
  color: #ff4911;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .rts-breadcrumb-area .inner .works {
    font-size: 16px;
  }
}
.rts-breadcrumb-area .inner .title {
  margin-top: -10px;
  font-family: 'Urbanist';
  color: #fff;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1400px) {
  .rts-breadcrumb-area .inner .title {
    font-size: 94px;
  }
}
@media (max-width: 1200px) {
  .rts-breadcrumb-area .inner .title {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .rts-breadcrumb-area .inner .title {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  .rts-breadcrumb-area .inner .title {
    font-size: 36px;
  }
}
.rts-service-1 {
  padding-top: 70px;
  position: relative;
}
.rts-service-item-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -ms-grid-columns: 50% 35% 15%;
  grid-template-columns: 50% 35% 15%;
  padding: 55px 0 50px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-service-item-1 {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-service-item-1 {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.rts-service-item-1:hover .service__btn-3 .button-arrow a {
  border-color: #141414;
  background: #141414;
  transform: scale(1.3);
}
.rts-service-item-1:hover .service__btn-3 .button-arrow a i {
  color: #ffffff;
  transform: scale(0.5);
}
.rts-service-item-1 .service__btn-3 .button-arrow a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #141414;
  transition: 0.3s;
}
.rts-service-item-1 .service__btn-3 .button-arrow a i {
  color: #74787C;
  transition: 0.3s;
  font-size: 22px;
}
.service__title-2,
.service__title-3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #141414;
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
}
.service__content-3 {
  max-width: 340px;
  position: relative;
  z-index: 1;
}
.service__content-3 p {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
}
.service__content-3 ul {
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.service__content-3 ul li {
  font-size: 18px;
  color: #000;
}
.service__btn-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.service__btn-3 #btn_wrapper,
.service__btn-3 .btn_wrapper {
  width: 200px;
  height: 200px;
  margin-right: -15px;
}
.btn_wrapper,
#btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 250px;
  width: 250px;
  border-radius: 100%;
  margin-left: -40px;
}
.btn-item {
  position: absolute;
}
.wc-btn-primary,
.wc-btn-black,
.wc-btn-light,
.wc-btn-pink,
.wc-btn-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--black-3);
  border: 1px solid var(--gray);
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wc-btn-black span {
  background-color: var(--black-2);
}
.rts-service-hover-bg {
  width: 300px;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -200px 0 0 -150px;
  overflow: hidden;
  pointer-events: none;
}
.rts-service-item-1:hover .rts-service-hover-bg {
  opacity: 1;
}
.service-area-one-main-wrapper .single-item-service-one {
  width: 100%;
  position: relative;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .service-area-one-main-wrapper .single-item-service-one {
    height: auto !important;
    display: flex;
    width: 100%;
    position: relative;
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    align-items: center;
  }
}
@media only screen and (max-width: 1199px) {
  .service-area-one-main-wrapper .single-item-service-one {
    height: auto !important;
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 0;
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    align-items: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-area-one-main-wrapper .single-item-service-one {
    align-items: center;
    display: flex;
    height: auto;
  }
}
.service-area-one-main-wrapper .single-item-service-one:hover .rts-img-contaciner {
  width: 11vw !important;
}
.service-area-one-main-wrapper .single-item-service-one:hover .list-title {
  transform: translateX(10vw);
}
.service-area-one-main-wrapper .single-item-service-one:hover .list-info {
  opacity: 1;
  font-family: 'Poppins';
  transform: translateX(15%);
}
@media only screen and (max-width: 767px) {
  .service-area-one-main-wrapper .single-item-service-one:hover .list-info {
    font-family: 'Poppins';
    opacity: 1 !important;
  }
}
.service-area-one-main-wrapper .single-item-service-one:hover .button-area svg {
  transform: rotate(-45deg);
}
@media only screen and (max-width: 575px) {
  .service-area-one-main-wrapper .single-item-service-one:hover .rts-img-contaciner {
    width: 32.22vw !important;
  }
  .service-area-one-main-wrapper .single-item-service-one:hover .list-title {
    transform: translateX(38.5vw);
  }
  .service-area-one-main-wrapper .single-item-service-one:hover .list-info {
    font-family: 'Poppins';
    opacity: 0;
    transform: translateX(45%);
  }
}
@media only screen and (max-width: 575px) and (max-width: 767px) {
  .service-area-one-main-wrapper .single-item-service-one:hover .list-info {
    font-family: 'Poppins';
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 575px) {
  .service-area-one-main-wrapper .single-item-service-one:hover a .button-area {
    margin: auto 43vw auto auto;
  }
}
.service-area-one-main-wrapper .single-item-service-one {
  display: flex;
  border-top: solid 1px #313131;
  width: 100%;
  align-items: center;
  padding: 70px 0;
}
@media only screen and (max-width: 767px) {
  .service-area-one-main-wrapper .single-item-service-one {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-area-one-main-wrapper .single-item-service-one .rts-img-contaciner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 70%;
  width: 0;
  margin: auto 0;
  overflow: hidden;
  font-size: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.service-area-one-main-wrapper .single-item-service-one .rts-img-contaciner .list-img {
  position: absolute;
  left: 50%;
  top: 22%;
  overflow: unset;
  -webkit-transform: translateX(-50%) scale(1.4);
  -ms-transform: translateX(-50%) scale(1.4);
  transform: translateX(-50%) scale(1.4);
  height:55%;
  width: auto;
  margin: auto;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.service-area-one-main-wrapper .single-item-service-one .rts-img-contaciner .list-img .list-img {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.service-area-one-main-wrapper .single-item-service-one .list-title {
  height: 30%;
  margin: auto 0;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.service-area-one-main-wrapper .single-item-service-one .list-title h3 {
  width: 30vw;
  padding-right: 0;
  font-family: 'Urbanist';
  font-size:32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #96ff00;
}
@media only screen and (max-width: 767px) {
  .service-area-one-main-wrapper .single-item-service-one {
    display: flex;
    border-top: solid 1px #fff;
    width: 100%;
    align-items: center;
    padding: 20px 0;
  }
  .service-area-one-main-wrapper .single-item-service-one .list-title h3 {
    font-size:26px;
    width: 100%;
    margin-top: 20px;
  }
  .service-area-one-main-wrapper .single-item-service-one .rts-img-contaciner {
    height: 40%;
  }
}
.service-area-one-main-wrapper .single-item-service-one .list-info {
  height: 53%;
  margin: auto 0 auto 0;
  padding-top: 4pt;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.service-area-one-main-wrapper .single-item-service-one .button-area {
  height: 0%;
  margin: auto 0 auto auto;
}
@media only screen and (max-width: 767px) {
  .service-area-one-main-wrapper .single-item-service-one .button-area {
    margin: 0;
  }

  /* Em telas touch, mantém os serviços estáticos e dentro da viewport. */
  .service-area-one-main-wrapper .single-item-service-one:hover .rts-img-contaciner {
    width: 0 !important;
  }
  .service-area-one-main-wrapper .single-item-service-one:hover .list-title,
  .service-area-one-main-wrapper .single-item-service-one:hover .list-info {
    transform: none;
  }
  .service-area-one-main-wrapper .single-item-service-one:hover .list-info {
    opacity: 1 !important;
  }
}
.title-top-service-varticle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
  margin-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-top-service-varticle {
    flex-wrap: wrap;
    display: flex;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .title-top-service-varticle {
    flex-wrap: wrap;
    display: flex;
    gap: 0;
    margin-top: 0;
    margin-bottom: 50px;
  }
  .title-top-service-varticle .learn-more-btn {
    display: none;
  }
}
.title-top-service-varticle .title {
  margin: 0;
  font-family: 'Urbanist';
  color: #fff;
  font-size:56px;
  font-style: normal;
  font-weight:600;
}
@media only screen and (max-width: 1199px) {
  .title-top-service-varticle .title {
    font-size: 36px;
    line-height: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-top-service-varticle .title {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .title-top-service-varticle .title {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .title-top-service-varticle .title {
    font-size:42px;
  }
}
.title-top-service-varticle p.dsic {
  margin: 0;
  font-family: 'Poppins';
  color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-top-service-varticle p.dsic {
    max-width: 40%;
  }
}
@media only screen and (max-width: 1199px) {
  .title-top-service-varticle p.dsic {
    max-width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-top-service-varticle p.dsic {
    max-width: 40%;
  }
}
@media only screen and (max-width: 479px) {
  .title-top-service-varticle p.dsic {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-top-service-varticle p.dsic br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .title-top-service-varticle p.dsic br {
    display: none;
  }
}
.rts-service-area.list .title-top-service-varticle .title {
  color: #FFFFFF;
}
.rts-service-area.list .title-top-service-varticle .learn-more-btn {
  color: #FFFFFF;
}
.rts-service-area.list .title-top-service-varticle .learn-more-btn:hover i {
  background: #FFFFFF;
  border: transparent;
  color: #141414;
  transform: scale(1.2);
}
.rts-service-area.list .title-top-service-varticle .learn-more-btn i {
  border: 1px solid #FFFFFF;
}
.rts-service-area.list .service-area-one-main-wrapper .single-item-service-one:first-child a {
  border-top: none;
  padding-top: 0;
}
.rts-service-area.list .service-area-one-main-wrapper .single-item-service-one a {
  border-top: 1px solid #fff;
}
.rts-service-area.list .service-area-one-main-wrapper .single-item-service-one a .list-title h3 {
  color: #FFFFFF;
}
.rts-service-area.list .service-area-one-main-wrapper .single-item-service-one a .button-area svg path {
  fill: #FFFFFF;
}
.mt_sm--30 {
  margin-top: 30px !important;
}
.bg-dark-1 .title {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  .bg-dark-1 .title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 575px) {
  .bg-dark-1 .title {
    font-size: 26px;
    line-height: 36px;
  }
}
.bg-dark-1 .sub-title {
  border-color: #141414;
  color: #fff;
  display: block;
  margin-bottom: 30px;
  max-width: max-content;
  padding: 8px 16px;
}
.bg-dark-1 p.disc {
  color: #828282;
}
.bg-dark-1 a.learn-more-btn {
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: 0.3s;
  min-width: max-content;
}
.bg-dark-1 a.learn-more-btn:hover i {
  transform: scale(1.2);
  background: #fff;
  color: #141414;
}
.bg-dark-1 a.learn-more-btn i {
  margin-left: 30px;
  font-size: 20px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.use-case-area-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.use-case-area-start .content-wrapper .title {
  font-family: 'Urbanist';
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  padding-top: 20px;
  letter-spacing: 1px;
}
.use-case-area-start .content-wrapper p {
  padding-top: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
.img-wrapper .images {
  border-radius:30px;
}
@media only screen and (max-width: 575px) {
  .use-case-area-start {
    flex-direction: column-reverse;
  }
  .img-wrapper .images {
    border-radius: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .use-case-area-start .content-wrapper {
    min-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .use-case-area-start .content-wrapper {
    min-width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .use-case-area-start .content-wrapper {
    width: 100%;
  }
}
.use-case-area-start .content-wrapper br {
  display: block !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .use-case-area-start .content-wrapper .sub-title {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .use-case-area-start .content-wrapper .sub-title {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .use-case-area-start .content-wrapper .title {
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 767px) {
  .use-case-area-start .content-wrapper .title {
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .use-case-area-start .content-wrapper .title {
    font-size: 24px;
    line-height:28px;
  }
}
@media only screen and (max-width: 767px) {
  .use-case-area-start .content-wrapper br {
    display: none !important;
  }
}
@media only screen and (max-width: 1199px) {
  .use-case-area-start {
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .carticle-slide-active .container-full-150 {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .carticle-slide-active .container-full-150 {
    padding: 0 25px;
  }
}
.explore-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .explore-more-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.explore-more-wrapper p {
  margin-bottom: 0;
}
.large-image-option-start {
  position: relative;
}
.large-image-option-start .product-shape-left {
  position: absolute;
  left: 0;
  top: 24%;
}
.images-thumbnail-large-h1 {
  position: relative;
}
.images-thumbnail-large-h1 .top-center-image {
  position: absolute;
  left: 45%;
  top: -30px;
  animation: rotateIt 17s linear infinite;
}
.counter-up-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .counter-up-wrapper {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-up-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-up-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.counter-up-wrapper .counter-single {
  margin: 0;
  min-width: 319px;
  height: 260px;
  border-right: 1px dashed #282828;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-up-wrapper .counter-single:first-child {
  border-left: 1px solid transparent;
}
.counter-up-wrapper .counter-single:last-child {
  border-right: 1px solid transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .counter-up-wrapper .counter-single {
    min-width: 340px;
    height: 340px;
  }
}
@media only screen and (max-width: 1199px) {
  .counter-up-wrapper .counter-single {
    min-width: 270px;
    height: 270px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-up-wrapper .counter-single {
    margin: 0;
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .counter-up-wrapper .counter-single {
    margin: 0;
    border: none;
  }
}
.counter-up-wrapper .counter-single .inner {
  text-align: center;
}
.counter-up-wrapper .counter-single .inner .title {
  font-weight: 500;
  font-size: 60px;
  line-height: 90px;
  position: relative;
}
.counter-up-wrapper .counter-single .inner .title::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  height: 1px;
  width: 50px;
  background: #282828;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1199px) {
  .counter-up-wrapper .counter-single .inner .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-up-wrapper .counter-single .inner .title {
    font-size: 56px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-up-wrapper .counter-single .inner .title {
    font-size: 46px;
    line-height: 38px;
  }
}
.counter-up-wrapper .counter-single .inner .title span {
  margin-right: 5px;
  font-weight: 500;
  font-size: 80px;
  line-height: 90px;
  position: relative;
}
.counter-up-wrapper .counter-single .inner p {
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: #74787C;
  margin-top: 30px;
}
.rts-case-studies-three .learn-more-btn {
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: 100px;
  justify-content: center;
}
.rts-case-studies-three .learn-more-btn i {
  border-color: #fff;
}
.rts-case-service-area-h2 .water-txt-top {
  background: linear-gradient(270deg, #373737 0%, rgba(55, 55, 55, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 160px;
  line-height: 208px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .rts-case-service-area-h2 .water-txt-top {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-case-service-area-h2 .water-txt-top {
    font-size: 80px;
    line-height: 140px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-case-service-area-h2 .water-txt-top {
    font-size: 80px;
    line-height: 100px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-case-service-area-h2 .water-txt-top {
    font-size: 60px;
    line-height: 70px;
  }
}
.rts-case-service-area-h2 .case-area-start .water-txt-top {
  margin-top: -50px;
  margin-left: 55px;
}
@media only screen and (max-width: 767px) {
  .rts-case-service-area-h2 .case-area-start .water-txt-top {
    margin-left: 15px;
  }
}
.rts-signle-case_varticle {
  padding: 30px 0;
  border-bottom: 1px solid #1D1D1D;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .rts-signle-case_varticle {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.rts-signle-case_varticle:first-child {
  border-top: 1px solid #1D1D1D;
}
.rts-signle-case_varticle .left-area {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .rts-signle-case_varticle .left-area {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
.rts-signle-case_varticle .left-area span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border: 1px solid #393939;
  border-radius: 50%;
  color: #fff;
}
.rts-signle-case_varticle .left-area a .title {
  margin: 0;
  font-weight: 500;
  font-size: 30px;
  line-height: 39px;
  color: #fff;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .rts-signle-case_varticle .left-area a .title {
    font-size: 26px;
  }
}
.case-three-bg {
  background: #0E0E0E;
}
.single-case-main-wrapper {
  margin-bottom: 25px;
  position: relative;
}
.single-case-main-wrapper:last-child {
  margin-bottom: 0;
}
.single-case-main-wrapper .inner-content {
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.single-case-main-wrapper .inner-content span {
  display: block;
  max-width: max-content;
  background: #141414;
  padding: 9px 22px;
  text-transform: uppercase;
  color: #FFF;
  font-size: 14px;
  transition: 0.3s;
  line-height: 14px;
  margin-left: 0px;
  opacity: 0;
}
.single-case-main-wrapper .inner-content a {
  color: #141414;
  background: #fff;
  padding: 12px 22px;
  display: block;
  color: #141414;
  font-weight: 700;
  transition: 0.3s;
  font-size: 20px;
  margin-left: 115px;
  margin-bottom: 65px;
  opacity: 0;
}
.single-case-main-wrapper:hover .inner-content span {
  margin-left: 65px;
  opacity: 1;
}
.single-case-main-wrapper:hover .inner-content a {
  margin-left: 65px;
  margin-bottom: 65px;
  opacity: 1;
}
.cta-main-wrapper-three .cta-main-wrapper-inner {
  background: #121212;
  padding: 80px 80px 112px;
  display: flex;
  border-radius: 25px;
  border:#212121 solid 1px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .cta-main-wrapper-three .cta-main-wrapper-inner {
    padding: 25px 60px;
  }
}

.cta-main-wrapper-three .cta-main-wrapper-inner .left .title {
  padding-top: 20px;
  font-family: 'Urbanist';
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -1px;
  padding-right: 120px;
}
.cta-main-wrapper-three .cta-main-wrapper-inner .right p {
  color: #fff;
  font-family: 'Urbanist';
  font-weight: 500;
  font-size:18px;
  line-height: 24px; 
  padding-right:60px;
  margin-bottom:40px;
}
@media only screen and (max-width: 575px) {
  .cta-main-wrapper-three .cta-main-wrapper-inner .left .title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .cta-main-wrapper-three .cta-main-wrapper-inner .left .title {
    font-size: 32px;
    line-height: 36px;
    padding-right: 0;
    letter-spacing: 0;
  }
  .cta-main-wrapper-three .cta-main-wrapper-inner .right p {
    padding-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .cta-main-wrapper-three .cta-main-wrapper-inner {
    padding: 50px 30px 70px;
    border-radius: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-main-wrapper-three .cta-main-wrapper-inner .right p {
    padding-top: 10px;
  }
}
figure {
  position: relative;
  margin: 0;
}
.single-case-main-wrapper figure {
  position: relative;
  margin: 0;
}
.single-case-main-wrapper .pli-image-hover-zoom {
  transition: all 1s cubic-bezier(0.07, 0.72, 0.29, 0.96);
}
.single-case-main-wrapper img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.2);
  transform-origin: 50% 100%;
  width: 100%;
  height: auto;
  height: auto;
}
.g-80 {
  --bs-gutter-x: 80px;
  --bs-gutter-y: 80px;
}
.rts-signle-case_varticle {
  position: relative;
}
.rts-signle-case_varticle .rts-hover-show-img {
  position: absolute;
  transform: rotate(-15deg) translateY(-58%) skewY(10deg);
  right: 220px;
  top: 50%;
  width: 260px;
  transition: 0.45s;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
}
@media (max-width: 991px) {
  .rts-signle-case_varticle .rts-hover-show-img {
    width: 190px;
    right: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-signle-case_varticle .rts-hover-show-img {
    right: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-signle-case_varticle .rts-hover-show-img {
    right: 15px;
    max-width: 50%;
  }
}
.rts-signle-case_varticle .rts-hover-show-img img {
  width: 100%;
}
.rts-signle-case_varticle.active .rts-hover-show-img {
  opacity: 1;
  visibility: visible;
  transform: rotate(-15deg) translateY(-58%) skewY(0);
}
.rts-signle-case_varticle.active .rts-hover-show-img img {
  width: 100%;
}
main {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  overflow: hidden;
}
.scroller-wrapper {
  display: block;
  width: 100%;
  border-radius: 0.7vw;
  overflow: hidden;
}
.scroller-wrapper .scroller {
  display: block;
  white-space: nowrap;
}
.scroller-wrapper .scroller .slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
  font-weight: 600;
  border-radius: 1vw;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .scroller-wrapper .scroller {
    white-space: unset;
  }
  .scroller-wrapper .scroller .slide {
    margin-bottom: 40px;
    z-index: 1000;
  }
}
.short-breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .short-breadcrumb-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .short-breadcrumb-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .short-breadcrumb-wrapper {
    display: none;
  }
}
.short-breadcrumb-wrapper .title {
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .short-breadcrumb-wrapper .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 479px) {
  .short-breadcrumb-wrapper .title {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .short-breadcrumb-wrapper .title br {
    display: none;
  }
}
.short-breadcrumb-wrapper .learn-more-btn {
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .short-breadcrumb-wrapper .learn-more-btn {
    display: none;
  }
}
.short-breadcrumb-wrapper .learn-more-btn i {
  border-color: #fff;
}
.swiper-slider-main-main-wrapper-portfolio {
  cursor: url(../images/product/03.html), auto;
  margin-bottom: 0;
  position: relative;
}
.swiper-slider-main-main-wrapper-portfolio .single-swiper-item img {
  width: 100%;
}
.swiper-slider-main-main-wrapper-portfolio .single-swiper-item img {
  cursor: url(../images/product/03.html), auto;
}
.swiper.mySwiper_portfolio-3.swiper-container-horizontal .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 9%;
}
.swiper.mySwiper_portfolio-3.swiper-container-horizontal .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background: #1D1D1D;
}
.swiper.mySwiper_portfolio-3.swiper-container-horizontal .swiper-pagination .swiper-pagination-bullet-active {
  height: 25px;
  width: 25px;
  background: #1D1D1D;
  border: 1px solid #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .signle-portfolio-style-four-inner {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
.signle-portfolio-style-four-inner {
  position: relative;
  overflow: hidden;
}
.signle-portfolio-style-four-inner.last {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.signle-portfolio-style-four-inner.last::after {
  display: none;
}
.signle-portfolio-style-four-inner.last .inner-content {
  left: 110px;
}
.signle-portfolio-style-four-inner .thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: max-content;
  border-radius:30px;
      background: #000;
}
.signle-portfolio-style-four-inner .thumbnail img {
  transition: 0.8s;
}
.signle-portfolio-style-four-inner .thumbnail::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  transition: 0.5s;
}
.signle-portfolio-style-four-inner:hover .thumbnail img {
  transform: scale(1.1);
  opacity: 0.4;
}

.signle-portfolio-style-four-inner:hover .inner-content {
  left: 40px;
  opacity: 1;
}
.infos-cliente {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#cases .infos-cliente {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}
#cases .st-single-info-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 56px;
}
#cases .infos-cliente h2 {
  margin: 0 !important;
}
#parceiros .infos-cliente {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#parceiros .st-single-info-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 56px;
}
#parceiros .infos-cliente h1,
#parceiros .infos-cliente h2 {
  margin: 0;
}
.infos-cliente img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius:12px;
  background: #96ff00;
  width: 56px;
  height: 56px;
  padding:11px;
  margin-right: 12px;
}
#parceiros .infos-cliente .partner-logo {
  width: 80px;
  height: 56px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
}
.infos-cliente h1 {
  margin-top:8px;
  position: relative;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight:700;
  color: #fff;
  line-height: 22px;
  text-transform: uppercase;
}
.infos-cliente h2 {
  font-family: 'Urbanist';
  font-size: 16px;
  font-weight:500;
  color: #fff;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .signle-portfolio-style-four-inner:hover .inner-content {
    bottom: 50px;
  }
}
.signle-portfolio-style-four-inner:hover.last .inner-content {
  left: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .signle-portfolio-style-four-inner:hover.last .inner-content {
    left: 40px;
    bottom: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .signle-portfolio-style-four-inner:hover.last .inner-content {
    left: 40px;
    bottom: 50px;
  }
}
.signle-portfolio-style-four-inner .inner-content {
  position: absolute;
  bottom: 50px;
  opacity: 0;
  left: 30px;
  transition: 0.8s;
}
.signle-portfolio-style-four-inner .inner-content a {
  font-family: 'Poppins';
  padding: 10px 20px;
  border-radius: 25px;
  background: #96ff00;
  display: block;
}
.signle-portfolio-style-four-inner .inner-content a .name {
  color: #121213;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.signle-portfolio-style-four-inner .inner-content a .name i {
  padding-left: 5px;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.separetor-portfolio-bottom {
  position: relative;
}
.mySwiper_portfolio-5 .swiper-slide {
  opacity: 0.2;
  transition: all 0.4s;
}
.mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five a {
  pointer-events: none;
}
.mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five a img {
  transform: scale(90%);
  width: 100%;
  transition: all 0.3s;
}
.mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five .inner-content {
  position: absolute;
  bottom: 40px;
  opacity: 0;
  left: 30px;
  transition: 0.8s;
  transform: scale(1);
}
.mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five .inner-content span {
  display: block;
  padding: 11px 20px;
  max-width: max-content;
  background: #141414;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five .inner-content a {
  padding: 18px 25px;
  display: block;
}
.mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five .inner-content a .name {
  color: #141414;
  font-size: 47px;
  font-style: normal;
  margin-bottom: 0;
  color: var(--color-white);
  width: 100%;
  text-align: center;
  bottom: -57px;
  position: relative;
  text-transform: uppercase;
  line-height: 1.2;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: font-variation-settings;
  font-stretch: 120%;
  font-variation-settings: "wght" 300;
  opacity: 0;
  transition-delay: 2s;
  -webkit-transition: font-variation-settings 520ms, text-shadow 1.4s ease, opacity 1s;
  transition: font-variation-settings 520ms, text-shadow 1.4s ease, opacity 1s;
}
@media (max-width: 1600px) {
  .mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five .inner-content a .name {
    font-size: 47px;
  }
}
@media (max-width: 1200px) {
  .mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five .inner-content a .name {
    font-size: 37px;
  }
}
@media (max-width: 991px) {
  .mySwiper_portfolio-5 .swiper-slide .single-portfolio-style-five .inner-content a .name {
    font-size: 26px;
  }
}
.mySwiper_portfolio-5 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.mySwiper_portfolio-5 .swiper-slide.swiper-slide-active .single-portfolio-style-five {
  cursor: url(../images/product/03.html), auto;
}
.mySwiper_portfolio-5 .swiper-slide.swiper-slide-active .single-portfolio-style-five a {
  pointer-events: all;
}
.mySwiper_portfolio-5 .swiper-slide.swiper-slide-active .single-portfolio-style-five a img {
  transform: scale(100%);
  width: 100%;
  cursor: url(../images/product/03.html), auto;
  transition: all 0.4s;
}
.mySwiper_portfolio-5 .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content {
  left: 40px;
  opacity: 1;
  transition: all 0.4s;
  transform: scale(1);
}
@media (max-width: 768px) {
  .mySwiper_portfolio-5 .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content {
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
  }
}
@media (max-width: 450px) {
  .mySwiper_portfolio-5 .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content {
    width: 100%;
  }
}
.mySwiper_portfolio-5 .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content a .name {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: font-variation-settings;
  font-variation-settings: "wght" 900;
  transition-delay: 2s;
  opacity: 1;
  font-stretch: 80%;
  -webkit-transition: font-variation-settings 1s 0.8s, text-shadow 0.5s ease, opacity 1s 0.8s;
  transition: font-variation-settings 1s 0.8s, text-shadow 0.5s ease, opacity 1s 0.8s;
}
.mySwiper_portfolio-5 .swiper-button-next,
.mySwiper_portfolio-5 .swiper-button-prev {
  position: absolute;
  bottom: 10%;
  top: auto;
  display: block !important;
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-image: none;
  transition: 0.3s;
  transform: scale(0.8);
}
@media only screen and (max-width: 1199px) {
  .mySwiper_portfolio-5 .swiper-button-next,
  .mySwiper_portfolio-5 .swiper-button-prev {
    bottom: 20%;
  }
}
.mySwiper_portfolio-5 .swiper-button-next::after,
.mySwiper_portfolio-5 .swiper-button-prev::after {
  width: 38px !important;
  height: 13.692px;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.mySwiper_portfolio-5 .swiper-button-next:hover,
.mySwiper_portfolio-5 .swiper-button-prev:hover {
  border: 1px solid #ffffff4d;
}
.mySwiper_portfolio-5 .swiper-button-next {
  right: 40px;
  bottom: 20px;
}
.mySwiper_portfolio-5 .swiper-button-next:hover {
  border: 1px solid #ffffff4d;
  transform: translateX(30px) scale(1);
}
.mySwiper_portfolio-5 .swiper-button-prev {
  right: unset;
  width: 38px !important;
  left: 40px;
  top: auto;
  bottom: 20px;
}
.mySwiper_portfolio-5 .swiper-button-prev:hover {
  border: 1px solid #ffffff4d;
  transform: translateX(-30px) scale(1);
}
.single-portfolio-style-five {
  position: relative;
}
.mySwiper_portfolio-5-scale-none .swiper-slide {
  opacity: 1;
  transition: all 0.4s;
  cursor: url(../images/product/03.html), auto;
  height: 100vh;
  top: 0;
  display: flex;
  align-items: center;
}
.mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five a {
  pointer-events: none;
}
.mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five a img {
  transform: scale(90%);
  width: 100%;
  transition: all 0.3s;
  height: 60vh;
}
@media only screen and (max-width: 1199px) {
  .mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five a img {
    height: 40vh;
    width: 100%;
  }
}
.mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five .inner-content {
  position: absolute;
  bottom: 40px;
  opacity: 0;
  left: 30px;
  transition: 0.8s;
  transform: scale(1);
  mix-blend-mode: exclusion;
}
.mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five .inner-content span {
  display: block;
  padding: 11px 20px;
  max-width: max-content;
  background: #141414;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five .inner-content a {
  padding: 18px 25px;
  display: block;
}
.mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five .inner-content a .name {
  color: #141414;
  font-size: calc(0px + 2.2vw);
  font-style: normal;
  margin-bottom: 0;
  color: var(--color-white);
  width: 100%;
  text-align: center;
  bottom: -70px;
  position: relative;
  text-transform: uppercase;
  line-height: 1.2;
  left: 50%;
  transform: translateX(-50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: font-variation-settings;
  font-stretch: 120%;
  font-variation-settings: "wght" 300;
  opacity: 0;
  transition-delay: 2s;
  -webkit-transition: font-variation-settings 520ms, text-shadow 1.4s ease, opacity 1s;
  transition: font-variation-settings 520ms, text-shadow 1.4s ease, opacity 1s;
}
@media (max-width: 1600px) {
  .mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five .inner-content a .name {
    font-size: 36px;
  }
}
@media (max-width: 1200px) {
  .mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five .inner-content a .name {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .mySwiper_portfolio-5-scale-none .swiper-slide .single-portfolio-style-five .inner-content a .name {
    font-size: 26px;
  }
}
.mySwiper_portfolio-5-scale-none .swiper-slide.swiper-slide-active .single-portfolio-style-five {
  cursor: url(../images/product/03.html), auto;
}
.mySwiper_portfolio-5-scale-none .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content {
  left: 40px;
  opacity: 1;
  transition: all 0.4s;
  transform: scale(1);
}
@media (max-width: 768px) {
  .mySwiper_portfolio-5-scale-none .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content {
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
  }
}
@media (max-width: 450px) {
  .mySwiper_portfolio-5-scale-none .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content {
    width: 100%;
  }
}
.mySwiper_portfolio-5-scale-none .swiper-slide.swiper-slide-active .single-portfolio-style-five .inner-content a .name {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: font-variation-settings;
  font-variation-settings: "wght" 900;
  transition-delay: 2s;
  opacity: 1;
  font-stretch: 80%;
  -webkit-transition: font-variation-settings 1s 0.2s, text-shadow 0.5s ease, opacity 1s 0.2s;
  transition: font-variation-settings 1s 0.2s, text-shadow 0.5s ease, opacity 1s 0.2s;
}
.mySwiper_portfolio-5-scale-none .swiper-button-next,
.mySwiper_portfolio-5-scale-none .swiper-button-prev {
  position: absolute;
  bottom: 10%;
  top: auto;
  display: block !important;
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-image: none;
  transition: 0.3s;
  transform: scale(0.8);
  content: "" !important;
  background: #1D1D1D;
}
@media only screen and (max-width: 1199px) {
  .mySwiper_portfolio-5-scale-none .swiper-button-next,
  .mySwiper_portfolio-5-scale-none .swiper-button-prev {
    bottom: 20%;
  }
}
.mySwiper_portfolio-5-scale-none .swiper-button-next::after,
.mySwiper_portfolio-5-scale-none .swiper-button-prev::after {
  width: 38px !important;
  height: 13.692px;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.mySwiper_portfolio-5-scale-none .swiper-button-next:hover,
.mySwiper_portfolio-5-scale-none .swiper-button-prev:hover {
  border: 1px solid #ffffff4d;
}
.mySwiper_portfolio-5-scale-none .swiper-button-next {
  right: 40px;
  bottom: 20px;
}
.mySwiper_portfolio-5-scale-none .swiper-button-next:hover {
  border: 1px solid #ffffff4d;
  transform: translateX(20px) scale(1);
}
.mySwiper_portfolio-5-scale-none .swiper-button-prev {
  right: unset;
  width: 38px !important;
  left: 40px;
  top: auto;
  bottom: 20px;
}
.mySwiper_portfolio-5-scale-none .swiper-button-prev:hover {
  border: 1px solid #ffffff4d;
  transform: translateX(-20px) scale(1);
}
.bg_image-1 {
  background-repeat: no-repeat;
  background-size: cover;
}
.portfolio-center-scale-swiper-area .container-full {
  padding-top: 0;
}
@media (max-width: 1299px) {
  .portfolio-center-scale-swiper-area .container-full {
    padding-top: 0;
  }
}
.titulo {
  padding: 150px 0 0;
  background: #090909 !important;
}
.title-areas-wrapper-pd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-areas-wrapper-pd .left-area .title {
  font-family: 'Urbanist';
  color: #FFF;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-areas-wrapper-pd .left-area .title {
    font-size: 46px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .titulo {
    padding: 90px 0 0;
  }
  .title-areas-wrapper-pd .left-area .title {
    font-size: 46px;
    line-height: 60px;
  }
  .signle-portfolio-style-four-inner:hover .inner-content {
    left: 20px;
    opacity: 1;
  }
  .signle-portfolio-style-four-inner .inner-content {
    bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .title-areas-wrapper-pd .left-area .title {
    font-size: 28px;
    line-height: 36px;
  }
}
.title-areas-wrapper-pd .left-area .bottom-area {
  display: flex;
  align-items: center;
  gap: 85px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .title-areas-wrapper-pd .left-area .bottom-area {
    flex-wrap: wrap;
    gap: 50px;
  }
  .signle-portfolio-style-four-inner .thumbnail {
    margin-top: 30px;
    border-radius: 20px;
  }
  .infos-cliente h1 {
    line-height: 22px;
  }
}
.title-areas-wrapper-pd .left-area .bottom-area .single-categoiry {
  position: relative;
}
.title-areas-wrapper-pd .left-area .bottom-area .single-categoiry:last-child::after {
  display: none;
}
.title-areas-wrapper-pd .left-area .bottom-area .single-categoiry::after {
  position: absolute;
  right: -35px;
  height: 45px;
  width: 1px;
  background: #232323;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .title-areas-wrapper-pd .left-area .bottom-area .single-categoiry::after {
    display: none;
  }
}
.title-areas-wrapper-pd .left-area .bottom-area .single-categoiry .light {
  color: #ff4911;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.title-areas-wrapper-pd .left-area .bottom-area .single-categoiry span {
  font-family: 'Poppins';
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.title-areas-wrapper-pd .left-area .bottom-area .single-categoiry span a {
  color: #fff;
}
.title-areas-wrapper-pd .right .speen-shape {
  border-radius: 50%;
  border: 1px solid #515151;
  padding: 8px;
  margin-top: 50px;
  position: relative;
  display: block;
}
.title-areas-wrapper-pd .right .speen-shape .isotipo {
  position: absolute;
  left:38%;
  top: 36%;
  width:42px;
}
@media only screen and (max-width: 767px) {
  .title-areas-wrapper-pd .right .speen-shape {
    display: none;
  }
}
.title-areas-wrapper-pd .right .speen-shape::before {
  content: "";
  display: block;
  width: 108px;
  height: 108px;
  position: absolute;
  transform: scale(0.5);
  left: 0;
  top: 0;
  transform: translate(20px, 20px);
  border-radius: 100%;
}
.title-areas-wrapper-pd .right .speen-shape .uni-circle-text-path {
  fill: currentColor;
  height: auto;
  max-width: 250px;
  right: 10%;
  transform-origin: center;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-areas-wrapper-pd .right .speen-shape .uni-circle-text-path textPath {
  color: #ff4911 !important;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 6px;
  letter-spacing: 2.1px;
}
.title-areas-wrapper-pd .right .speen-shape .uni-animation-spin {
  display: inline-flex;
  animation: spin 10s linear 0s infinite;
}
.title-areas-wrapper-pd .right .speen-shape i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #919090;
}
.product-details-form .single-input label {
  color: #74787C;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.product-details-form .single-input input {
  width: 100%;
  height: 55px;
  border-radius: 5px;
  background: #212121;
  color: #fff;
}
.product-details-form .single-input textarea {
  width: 100%;
  height: 180px;
  border-radius: 5px;
  background: #212121;
  color: #fff;
}
.product-details-form .submit-pd {
  width: 180px;
  height: 55px;
  border-radius: 5px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 40px;
  display: block;
}
.inner-page.six {
  background: #fff;
}
.portfolio-six-single-swiper {
  height: 770px;
  display: flex;
  background: #0E0E0E;
}
@media (max-width: 1700px) {
  .portfolio-six-single-swiper {
    height: auto;
  }
}
.portfolio-six-single-swiper .left-content {
  top: 220px;
  position: absolute;
  z-index: 5;
  opacity: 0 !important;
  animation-delay: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .portfolio-six-single-swiper .left-content {
    top: 162px !important;
  }
}
@media only screen and (max-width: 575px) {
  .portfolio-six-single-swiper .left-content {
    padding-top: 20px;
  }
}
.portfolio-six-single-swiper .left-content .pre-tag {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.portfolio-six-single-swiper .left-content .title {
  color: #FFF;
  font-size: calc(0px + 2.8vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 5.76px;
  text-transform: uppercase;
  margin-top: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .portfolio-six-single-swiper .left-content .title {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .portfolio-six-single-swiper .left-content .title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
  }
}
.portfolio-six-single-swiper .left-content .title span {
  -webkit-text-stroke: 1px #cacaca;
  -webkit-text-fill-color: #000000;
}
.portfolio-six-single-swiper .right-content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 24%;
}
@media (max-width: 1200px) {
  .portfolio-six-single-swiper .right-content {
    align-items: flex-start;
    margin-left: 13%;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .portfolio-six-single-swiper .right-content {
    margin-right: 10%;
    margin-left: 3%;
  }
}
.portfolio-six-single-swiper .right-content .thumbnail {
  display: flex;
  align-items: flex-end;
  height: 100vh;
}
.inner-page.six.inner-page .rts-header-area-two {
  background: #1D1D1D;
}
.portfolio-six-single-swiper .right-content .thumbnail img {
  height: 68vh;
}
.swiper-slide.swiper-slide-active .portfolio-six-single-swiper .left-content {
  -webkit-transition: all 400ms;
  transition: all 400ms;
  animation: slideInUp-2 1.8s linear;
  opacity: 1 !important;
}
@media only screen and (max-width: 1199px) {
  .portfolio-six-single-swiper .right-content .thumbnail img {
    height: 450px;
  }
}
@-webkit-keyframes slideInUp-2 {
  0% {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    visibility: hidden;
  }
  80% {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@-webkit-keyframes text-height {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 300px;
  }
}
@keyframes text-height {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 300px;
  }
}
.portfolio-six-swiper-wrapper {
  position: relative;
}
.portfolio-six-swiper-wrapper .rts-reveal-one {
  height: 100%;
  width: 100%;
  z-index: 0;
}
.portfolio-six-swiper-wrapper .swiper-button-next,
.portfolio-six-swiper-wrapper .swiper-button-prev {
  position: absolute;
  right: 30%;
  bottom: 10%;
  top: auto;
  display: block !important;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-image: none;
  transition: 0.3s;
  transform: scale(0.8);
  background: #212121;
}
.portfolio-six-swiper-wrapper .swiper-button-next::after,
.portfolio-six-swiper-wrapper .swiper-button-prev::after {
  width: 38px !important;
  height: 13.692px;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.portfolio-six-swiper-wrapper .swiper-button-next:hover,
.portfolio-six-swiper-wrapper .swiper-button-prev:hover {
  border: 1px solid #ffffff4d;
}
@media only screen and (max-width: 767px) {
  .portfolio-six-swiper-wrapper .swiper-button-next {
    bottom: 5%;
  }
}
.portfolio-six-swiper-wrapper .swiper-button-next:hover {
  border: 1px solid #ffffff4d;
  transform: translateX(30px) scale(1);
}
.portfolio-six-swiper-wrapper .swiper-button-prev {
  left: auto;
  width: 38px !important;
  right: 35%;
  top: auto;
}
@media only screen and (max-width: 1199px) {
  .portfolio-six-swiper-wrapper .swiper-button-prev {
    bottom: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-six-swiper-wrapper .swiper-button-prev {
    right: 45%;
    bottom: 5%;
  }
}
@media only screen and (max-width: 575px) {
  .portfolio-six-swiper-wrapper .swiper-button-prev {
    right: 45%;
    bottom: 5%;
  }
}
.portfolio-six-swiper-wrapper .swiper-button-prev:hover {
  border: 1px solid #ffffff4d;
  transform: translateX(-30px) scale(1);
}
.swiper.mySwiper_portfolio-3.swiper-container-horizontal .swiper-slide {
  height: 100vh;
  display: flex;
  align-items: center;
}
.inner-page.portfolio-seven {
  height: 100vh;
}
.swiper-portfolio-main-wrapper-7 {
  height: 100vh;
  overflow: hidden;
}
.mySwiper-7-varticle.swiper-container-vertical .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .mySwiper-7-varticle.swiper-container-vertical .swiper-slide {
    height: 100vh !important;
  }
}
@media (max-width: 450px) {
  .mySwiper-7-varticle.swiper-container-vertical .swiper-slide {
    height: 100vh !important;
  }
}
.page-title-area-portfolio-7 {
  text-align: center;
  padding: 150px 0 60px 0;
}
.page-title-area-portfolio-7 .title-work {
  font-size: 170px;
  color: #000000c0;
  text-transform: uppercase;
  margin-left: -130px;
  line-height: 200px;
  letter-spacing: 1px;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .page-title-area-portfolio-7 .title-work {
    font-size: 120px;
    line-height: 140px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .page-title-area-portfolio-7 .title-work {
    font-size: 80px;
    line-height: 100px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .page-title-area-portfolio-7 .title-work {
    font-size: 44px;
    line-height: 50px;
    text-align: left;
    padding-left: 15px;
  }
  .page-title-area-portfolio-7 .title-work br {
    display: none;
  }
}
.single-product-9 {
  position: relative;
  max-height: max-content;
}
.single-product-9.rts-team__item {
  padding: 0;
}
.single-product-9 .inner-content {
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.single-product-9 .inner-content span {
  display: block;
  max-width: max-content;
  background: #141414;
  padding: 9px 22px;
  text-transform: uppercase;
  color: #FFF;
  font-size: 14px;
  transition: 0.3s;
  line-height: 14px;
  margin-left: 0px;
  opacity: 0;
}
.single-product-9 .inner-content a {
  color: #141414;
  background: #fff;
  padding: 12px 22px;
  display: block;
  color: #141414;
  font-weight: 700;
  transition: 0.3s;
  font-size: 20px;
  margin-left: 115px;
  margin-bottom: 30px;
  opacity: 0;
}
.single-product-9:hover .inner-content span {
  margin-left: 30px;
  opacity: 1;
}
.single-product-9:hover .inner-content a {
  margin-left: 30px;
  margin-bottom: 30px;
  opacity: 1;
}
.sticky-top {
  z-index: 10 !important;
  top: 25px;
}
.left-pd-image-bt-content.small-cn .stratagy-wrapper {
  gap: 50px !important;
}
.left-pd-image-bt-content .title {
  margin: 20px 0;
  font-family: 'Urbanist';
  color: #ff4911;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
}
.left-pd-image-bt-content p.dsic {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.left-pd-image-bt-content .bottom-content .title {
  font-family: 'Poppins';
  color: #ff4911;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  max-width: max-content;
  margin-bottom: 10px;
}
.left-pd-image-bt-content .bottom-content .stratagy-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .left-pd-image-bt-content .bottom-content .stratagy-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .left-pd-image-bt-content .bottom-content .stratagy-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.left-pd-image-bt-content .bottom-content .stratagy-wrapper .title {
  margin-bottom: 15px;
}
.single-product-pd-full img {
  width: 100%;
}
.mySwiper-product-details-lm {
  position: relative;
  overflow: hidden;
}
.mySwiper-product-details-lm .swiper-button-next,
.mySwiper-product-details-lm .swiper-button-prev {
  position: absolute;
  background-image: none;
  transition: 0.3s;
  opacity: 0;
}
.mySwiper-product-details-lm .swiper-button-next:hover::after,
.mySwiper-product-details-lm .swiper-button-prev:hover::after {
  background: #fff;
  color: #141414;
  transform: scale(1.3);
}
.mySwiper-product-details-lm .swiper-button-next::after,
.mySwiper-product-details-lm .swiper-button-prev::after {
  height: 60px;
  width: 60px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  font-family: var(--font-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.mySwiper-product-details-lm .swiper-button-next {
  right: 150px;
}
.mySwiper-product-details-lm .swiper-button-next::after {
  content: "\f054";
}
.mySwiper-product-details-lm .swiper-button-prev {
  left: 120px;
}
.mySwiper-product-details-lm .swiper-button-prev::after {
  content: "\f053";
}
.mySwiper-product-details-lm:hover .swiper-button-next,
.mySwiper-product-details-lm:hover .swiper-button-prev {
  opacity: 1;
}
.mySwiper-product-details-lm:hover .swiper-button-next {
  right: 100px;
}
.mySwiper-product-details-lm:hover .swiper-button-prev {
  left: 70px;
}
.inner-h-w {
  display: flex;
  height: 100%;
}
.main-pd-wrapper {
  margin: -85px 0 0 0;
  padding: 10px;
  position: sticky;
  height: max-content;
  top: 80px;
}
.sticky-top {
  top: 25px;
}
.img-wrap-main-pd-varticle .inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.inner-page.portfolio-grid {
  height: 100vh;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .inner-page.portfolio-grid {
    height: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page.portfolio-grid {
    height: auto;
  }
}
.header-five.header--sticky.sticky {
  background: #ffffff2c;
  backdrop-filter: blur(15px);
}
@media (max-width: 768px) {
  .banner-slider-portfolio-seven-area .one {
    order: 2;
  }
}
.vertical-split .header-five.header--sticky.sticky {
  position: absolute !important;
}
.mySwiper_portfolio-3 .single-swiper-item {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .mySwiper_portfolio-3 .single-swiper-item {
    margin: auto;
  }
}
.mySwiper_portfolio-3 .single-swiper-item .discrip-port {
  position: absolute;
  background: #fff;
  bottom: -130px;
  left: 30px;
  padding: 15px;
  transition: all 0.4s;
  opacity: 0;
}
.mySwiper_portfolio-3 .single-swiper-item .discrip-port .title {
  color: #141414;
  margin-bottom: 0;
}
.mySwiper_portfolio-3 .single-swiper-item:hover .discrip-port {
  bottom: 30px;
  opacity: 1;
}
.portfolio-six-swiper-wrapper .swiper-slide {
  position: relative;
  height: 100vh;
}
.portfolio-six-swiper-wrapper .swiper-slide .portfolio-six-single-swiper {
  height: 100vh;
}
.title-area .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #141414;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .title-area .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .title-area .title {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }
}
@media only screen and (max-width: 1199px) {
  .title-area .title {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }
}
.grid-lines-wrapper {
  top: 0;
}
.btn--area-center {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.learn-more-btn {
  position: relative;
  float: left;
  background: #96ff00;
  font-family: 'Urbanist';
  color: #121213;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px 15px 25px;
  border-radius: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.learn-more-btn i {
  font-size: 16px;
  position: relative;
  padding-left:10px;
  vertical-align: middle;
}

.learn-more-btn:hover {
  background: #05ad2f;
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.clientes {
  margin-bottom: 100px;
}

.clientes h1 {
    font-family: 'Urbanist', sans-serif;
    font-size:48px;
    font-weight: 600;
    color: #fff;
    line-height: 48px;
    width: 50%;
    margin: 0 auto;
    float: left;
    margin-bottom: 40px;
}

.pt30 {
  padding-top: 30px;
}
.pt50 {
  padding-top: 50px;
}
.brand-area-style-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px) {
  .brand-area-style-one {
    justify-content: center;
    gap: 30px;
  }
}
.brand-area-style-one img {
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .brand-area-style-one img {
    max-width: 120px;
  }
  .clientes {
    display: none;
  }
}
.brand-area-style-one img:hover {
  transform: translateY(-5px) scale(1.03);
}
.js-tilt-glare {
  z-index: -1;
}
@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateIt2 {
  to {
    transform: rotate(360deg);
  }
}
.approch-area-left .title-area-left-wrapper .pre-title {
  font-family: 'Poppins';
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 7px 25px;
  border-radius: 25px;
  border: 1px solid #fff;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  max-width: max-content;
}
.approch-area-left .title-area-left-wrapper .title {
  font-family: 'Urbanist';
  color: #fff;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
}
.approch-area-left .title-area-left-wrapper .title:last-child {
  margin-top: 0;
}
@media only screen and (max-width: 1199px) {
  .approch-area-left .title-area-left-wrapper .title {
    font-size: 34px;
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .approch-area-left .title-area-left-wrapper .title {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }
}
@media only screen and (max-width: 767px) {
  .approch-area-left .title-area-left-wrapper .title {
    font-size: 26px !important;
    line-height:30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .approch-area-left .title-area-left-wrapper .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .approch-area-left .title-area-left-wrapper .title br {
    display: none;
  }
  .mockup-mug{
    display: none;
  }
}
.approch-area-left p {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  padding-right: 100px;
}
.our-approch-area-style-one {
  position: relative;
  z-index: 10;
}
.our-approch-area-style-one .grid-lines-wrapper {
  top: 0;
}
.our-approch-area-style-one .grid-lines-wrapper .grid-lines .grid-line {
  background: #0E0E0E;
}
.single-approach-area-start {
  padding: 32px;
  background-color: #111111;
  border-radius: 6px;
  position: relative;
  margin-bottom: 20px;
  transition: 0.3s;
  overflow: hidden;
  width: 519px;
  border: 1px solid #242323;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-approach-area-start {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .single-approach-area-start {
    width: 100%;
  }
  .approch-area-left p {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-approach-area-start {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .approch-area-left p {
    padding-right: 0;
  }
  .single-approach-area-start {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .single-approach-area-start {
    padding: 15px;
  }
}
.single-approach-area-start.two::after {
  content: "02" !important;
}
.single-approach-area-start.three::after {
  content: "03" !important;
}
.single-approach-area-start::before {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 0%;
  height: 100%;
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.6s;
}
.single-approach-area-start:hover {
  background-color: none;
}
.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-family: 'Urbanist';
  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 {
  font-family: 'Urbanist';
  color: #ff4911;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  transition: all 0.1s;
  position: relative;
  max-width: max-content;
}
.single-approach-area-start p.disc {
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 400;
  color: #74787C;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-approach-area-start p.disc br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .single-approach-area-start p.disc br {
    display: none;
  }
}
.contato {
  margin: 0;
  padding: 0;
}
.contato h4 {
  font-family: 'Urbanist';
  color: #96ff00;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.contato p{
  font-size: 16px;
}
.contato i {
  padding-right: 7px;
}
.contato .whats-rodape {
  font-family: 'Urbanist';
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}
.contato .email {
  font-family: 'Urbanist';
  color: #fff;
  font-weight:400;
  font-size: 16px;
}
.contato .localizacao {
  font-family: 'Urbanist';
  color: #fff !important; 
  font-weight: 400;
  font-size: 16px;
}
.main-wrapper-case-studies .title {
  font-weight: 800;
  font-size: 200px;
  line-height: 210px;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .main-wrapper-case-studies .title {
    font-size: 180px;
  }
}
@media only screen and (max-width: 1199px) {
  .main-wrapper-case-studies .title {
    font-size: 150px;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
  .main-wrapper-case-studies .title {
    font-size: 120px;
  }
}
@media only screen and (max-width: 1199px) and (max-width: 767px) {
  .main-wrapper-case-studies .title {
    font-size: 100px;
  }
}
.main-wrapper-case-studies .title span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #74787C;
  color: #0E0E0E;
}
.container-full-150 {
  padding: 0 150px;
}
@media only screen and (max-width: 767px) {
  .container-full-150 {
    padding: 0 15px;
  }
}
.flot-right-150 {
  width: 110%;
}
@media only screen and (max-width: 575px) {
  .flot-right-150 {
    width: 100%;
  }
  .contato {
    text-align: center;
    width: 100%;
  }
  .social {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .carticle-slide-active .title {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 43px;
  }
}
.cta-main-wrapper-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: #111111;
  position: relative;
  z-index: 1;
  border-radius: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .cta-main-wrapper-one {
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .cta-main-wrapper-one {
    padding: 25px;
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-main-wrapper-one {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .cta-main-wrapper-one {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 575px) {
  .cta-main-wrapper-one {
    padding: 15px;
  }
}
.cta-main-wrapper-one .right-bg-image {
  position: absolute;
  right: 160px;
  top: 62%;
  transform: translateY(-50%);
  z-index: -1;
}
.cta-main-wrapper-one .right-bg-image img {
  min-width: max-content;
}
.cta-main-wrapper-one .cta-mid-area .title {
  color: #D9D9D9;
}
@media only screen and (max-width: 1199px) {
  .cta-main-wrapper-one .cta-mid-area .title {
    font-size: 24px !important;
    text-transform: uppercase;
    line-height: 43px;
  }
}
.cta-main-wrapper-one .cta-mid-area .title span {
  font-style: italic;
  font-weight: 300;
}
@media only screen and (max-width: 1199px) {
  .cta-main-wrapper-one .cta-mid-area .title br {
    display: none;
  }
}
.cta-main-wrapper-one .cta-mid-area p.disc {
  color: #74787C;
}
@media only screen and (max-width: 1199px) {
  .cta-main-wrapper-one .cta-mid-area p.disc br {
    display: none;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  .rts-footer-area-one .grid-lines-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-footer-area-one .grid-lines-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-footer-area-one .grid-lines-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-inner.large-image .title {
    font-size: 26px;
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-inner.large-image .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-inner.large-image .title br {
    display: none;
  }
}
.rts-social-area-one ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .rts-social-area-one ul {
    justify-content: center;
  }
}
.rts-social-area-one ul li {
  margin: 0;
}
.rts-social-area-one ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #96ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.rts-social-area-one ul li a i {
  color: #121213;
}
.rts-social-area-one ul li:hover a {
  background: #96ff00;
  transform: scale(1.1) translateY(-1px);
}
.rts-footer-area-one {
  position: relative;
}
.rts-footer-area-one .footer-left-area p.disc {
  color: #74787C;
}
@media only screen and (max-width: 1199px) {
  .rts-footer-area-one .footer-left-area p.disc br {
    display: none;
  }
}
.logo-footer {
  position: relative;
  margin: 0 auto;
  width: 126px;
  height:32px;
  background: url("../images/logotipo.svg") no-repeat top center;
  text-indent: -9999em;
  overflow: hidden;
}
.footer-main-wrapper-one {
  display: flex;
  align-items: flex-start;
  gap: 99px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .footer-main-wrapper-one {
    gap: 71px;
    padding: 0 7px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-main-wrapper-one {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-main-wrapper-one {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main-wrapper-one {
    gap: 20px;
  }
  .footer-main-wrapper-one {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-main-wrapper-one .footer-single-wized-start .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  color: #141414;
}
.footer-main-wrapper-one .footer-single-wized-start ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-main-wrapper-one .footer-single-wized-start ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #74787C;
}
.footer-main-wrapper-one .footer-single-wized-start .mail-contact-area .single-con-info a {
  color: #74787C;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}
.footer-main-wrapper-one .footer-single-wized-start .mail-contact-area .single-con-info.mail {
  margin-bottom: 7px;
}
.footer-main-wrapper-one .footer-single-wized-start .mail-contact-area .single-con-info.mail a {
  color: #141414;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
}
.footer-main-wrapper-one .footer-single-wized-start .subscribtion-area p.disc {
  color: #74787C;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 1199px) {
  .footer-main-wrapper-one .footer-single-wized-start .subscribtion-area p.disc {
    max-width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-main-wrapper-one .footer-single-wized-start .subscribtion-area p.disc br {
    display: none;
  }
}
.footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input {
  position: relative;
}
.footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input label i {
  color: #141414;
}
.footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input input {
  height: 55px;
  background: #F6F6F6;
  color: #74787C;
  padding-left: 50px;
  padding-right: 140px;
}
@media only screen and (max-width: 1199px) {
  .footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input input {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input input {
    padding-right: 130px;
  }
}
.footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input button {
  position: absolute;
  right: 10px;
  top: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input button {
    padding: 10px 5px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input button {
    padding: 10px 22px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main-wrapper-one .footer-single-wized-start .subscribtion-area .subscribtion-input button {
    padding: 10px 22px;
  }
}
.rts-footer-area-one .copyright-area {
  display: flex;
  padding: 27px 0;
  border-top: 1px solid #242424;
}
.rts-footer-area-one .copyright-area p {
  font-size: 15px;
}
.rts-footer-area-one .copyright-area .autor {
  text-align: right;
}
@media only screen and (max-width: 575px) {
  .rts-footer-area-one .copyright-area {
    flex-direction: column;
    justify-content: center;
  }
  .logo-footer {
    left: calc(50% + 68px) !important;
    margin-bottom:10px;
  }
}
.rts-footer-area-one .copyright-area .left p {
  color: #74787C;
  margin: 0;
}
.rts-footer-area-one .copyright-area .right ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
.rts-footer-area-one .copyright-area .right ul li a {
  color: #141414;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 479px) {
  .rts-footer-area-one .copyright-area .right ul li a {
    font-size: 15px;
  }
}
.rts-footer-area-one .copyright-area .right ul li:last-child {
  margin-left: 50px;
}
.container-140 {
  max-width: 1640px;
  margin: auto;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  .container-140 {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .container-140 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .container-140 {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-140 {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .container-140 {
    padding: 0 15px;
  }
  .rts-footer-area-one .copyright-area {
    text-align: center;
  }
  .rts-footer-area-one .copyright-area .autor {
    text-align: center;
    margin-top: -20px;
  }
}
.footer-two-wrapper-content .rts-social-area-one {
  display: flex;
  justify-content: flex-start;
}
.footer-two-wrapper-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .footer-two-wrapper-content {
    padding: 0 33px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-two-wrapper-content {
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 34px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-two-wrapper-content {
    padding: 0 15px;
  }
}
.footer-two-wrapper-content .footer-left-two .logo {
  display: block;
  margin-bottom: 40px;
}
.footer-two-wrapper-content .footer-left-two p.disc {
  color: #74787C;
}
.footer-two-wrapper-content .footer-right-two {
  display: flex;
  gap: 150px;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-two-wrapper-content .footer-right-two {
    flex-wrap: wrap;
    gap: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-two-wrapper-content .footer-right-two {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.footer-two-wrapper-content .footer-right-two .contact-information .title {
  color: #FFF;
  font-size: 22px;
}
.footer-two-wrapper-content .footer-right-two .contact-information .map {
  color: #74787C;
  margin-bottom: 30px;
}
.footer-two-wrapper-content .footer-right-two .contact-information .mail {
  color: #FFF;
  margin-bottom: 10px;
}
.footer-two-wrapper-content .footer-right-two .contact-information .number {
  color: #74787C;
}
.footer-two-wrapper-content .footer-right-two .contact-information a {
  display: block;
}
.footer-two-wrapper-content .footer-right-two .contact-information.input .form-footer-2 {
  position: relative;
  max-width: max-content;
}
.footer-two-wrapper-content .footer-right-two .contact-information.input .form-footer-2 label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #141414;
}
.footer-two-wrapper-content .footer-right-two .contact-information.input .form-footer-2 input {
  width: 411px;
  height: 55px;
  background: #FFFFFF;
  color: #74787C;
  margin-left: 0;
  padding: 10px 120px 10px 45px;
}
@media only screen and (max-width: 575px) {
  .footer-two-wrapper-content .footer-right-two .contact-information.input .form-footer-2 input {
    width: 100%;
  }
}
.footer-two-wrapper-content .footer-right-two .contact-information.input .form-footer-2 button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  max-width: max-content;
  background: #141414;
  color: #fff;
  padding: 10px 15px;
  line-height: 0;
}
.footer-four-wrapper-four {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-four-wrapper-four {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .footer-four-wrapper-four {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-four-wrapper-four.border-top {
  border-top: 1px solid #1B1B1B;
}
.footer-four-wrapper-four .left-area .title {
  color: #141414;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-four-wrapper-four .left-area .title {
    font-size: 26px;
    line-height: 39px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-four-wrapper-four .left-area .title {
    font-size: 26px;
    line-height: 39px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-four-wrapper-four .left-area .title {
    font-size: 22px;
    line-height: 31px;
  }
}
.footer-four-wrapper-four .left-area .title a {
  position: relative;
}
.footer-four-wrapper-four .left-area .title a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  bottom: 3px;
  height: 1px;
  background: #141414;
}
.footer-four-wrapper-four .right-area .f-nav {
  padding: 0;
  list-style: none;
  margin: 0;
}
.footer-four-wrapper-four .right-area .f-nav li {
  margin: 7px 0;
}
.footer-four-wrapper-four .right-area .f-nav li a {
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.copy-right-4-area .border-top {
  border-top: 1px solid #EBEBEB;
}
.copy-right-4-area .border-top p {
  padding: 30px 0;
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .footer-single-wized-start {
    flex-basis: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-single-wized-start {
    flex-basis: 100%;
  }
}
.after-effect-testi-right-img {
  position: relative;
  z-index: 1;
  max-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .after-effect-testi-right-img {
    margin: auto;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .after-effect-testi-right-img {
    margin: auto;
    margin-top: 50px;
  }
}
.after-effect-testi-right-img::after {
  position: absolute;
  left: -30px;
  top: -30px;
  border: 1px solid #E8E8E8;
  height: 100%;
  content: "";
  width: 100%;
  background: transparent;
  z-index: -1;
}
.trusted-clients-area-start {
  position: relative;
  z-index: 1;
}
.trusted-clients-area-start .right-shape-testi {
  position: absolute;
  right: 50px;
  left: auto;
  top: 50%;
  z-index: 0;
}
.swiper-testimonails-style-one-main-wrapper {
  position: relative;
  overflow: hidden;
}
.swiper-testimonails-style-one-main-wrapper .button-area-next-prev {
  margin-right: 110px;
}
@media only screen and (max-width: 575px) {
  .swiper-testimonails-style-one-main-wrapper .button-area-next-prev {
    display: none;
  }
}
.swiper-testimonails-style-one-main-wrapper .swiper-button-next,
.swiper-testimonails-style-one-main-wrapper .swiper-button-prev {
  background-image: none;
  position: relative;
  height: 46px;
  width: 44px;
  display: flex;
  margin-top: -46px;
}
.swiper-testimonails-style-one-main-wrapper .swiper-button-next::after,
.swiper-testimonails-style-one-main-wrapper .swiper-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 44px;
  width: 46px;
  display: block;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.swiper-testimonails-style-one-main-wrapper .swiper-button-next:hover::after,
.swiper-testimonails-style-one-main-wrapper .swiper-button-prev:hover::after {
  background: #cacaca;
  color: #141414;
}
.swiper-testimonails-style-one-main-wrapper .swiper-button-next {
  right: 0;
  left: auto;
  margin-left: auto;
}
.swiper-testimonails-style-one-main-wrapper .swiper-button-next::after {
  content: "\f061";
  font-family: "fontawesome";
}
.swiper-testimonails-style-one-main-wrapper .swiper-button-prev {
  right: 60px;
  left: auto;
  margin-left: auto;
}
.swiper-testimonails-style-one-main-wrapper .swiper-button-prev::after {
  content: "\f060";
  font-family: "fontawesome";
}
@media only screen and (max-width: 1199px) {
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
}
.marque-2 {
  background: #1B1B1B;
}
.marque-2 .text-split-wrap-about {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 0;
  padding: 30px 0;
}
.marque-2 .text-split-wrap-about .title {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  color: #1B1B1B;
  text-transform: lowercase;
  font-family: var(--font-primary);
  font-size: 120px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
}
@media only screen and (max-width: 767px) {
  .marque-2 .text-split-wrap-about .title {
    font-size: 60px;
    line-height: normal;
  }
}
.marque-2 .text-split-wrap-about .title span {
  -webkit-text-stroke-color: #393939;
  color: #1B1B1B;
}
.rts-marquree-area-start-bottom .text-split-wrap-about {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 0;
  padding: 30px 0;
}
.rts-marquree-area-start-bottom .text-split-wrap-about .title {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #141414;
  color: #FFFFFF;
  text-transform: lowercase;
  font-family: var(--font-primary);
  font-size: 120px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
}
@media only screen and (max-width: 767px) {
  .rts-marquree-area-start-bottom .text-split-wrap-about .title {
    font-size: 60px;
    line-height: normal;
  }
}
.rts-marquree-area-start-bottom .text-split-wrap-about .title span {
  -webkit-text-stroke-color: #141414;
  color: #FFFFFF;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
}
}
.brand-style-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-style-two {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .brand-style-two {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
.brand-style-two img {
  transition: 0.3s;
}
.brand-style-two img:hover {
  transform: scale(1.02) translateY(-5px);
}
@media only screen and (max-width: 575px) {
  .brand-style-two img {
    max-width: 120px;
  }
}
.brand-style-one {
  text-align: center;
}
.brand-style-one .title-brand {
  color: #D9D9D9;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 50px;
}
.brand-style-one .brand-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-style-one .brand-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .brand-style-one .brand-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.brand-style-one .brand-wrapper img {
  transition: 0.3s;
}
@media only screen and (max-width: 575px) {
  .brand-style-one .brand-wrapper img {
    max-width: 150px;
  }
}
.brand-style-one .brand-wrapper a:hover img {
  filter: invert(1);
}
.brand-main-wrapper-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  filter: grayscale(100%);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .brand-main-wrapper-about {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.brand-main-wrapper-about a {
  display: flex;
  align-items: center;
  height: 160px;
  justify-content: center;
  border-right: 1px solid #212121;
  width: 250px;
}
@media only screen and (max-width: 575px) {
  .brand-main-wrapper-about a {
    border: none;
    width: max-content;
    height: 40px;
  }
}
.brand-main-wrapper-about a img {
  max-width: 160px;
  transition: 0.3s;
}
@media only screen and (max-width: 575px) {
  .brand-main-wrapper-about a img {
    max-width: 90px;
    height: 40px;
  }
}
.brand-main-wrapper-about a:last-child {
  border: none;
}
.brand-main-wrapper-about a:hover img {
  filter: invert(0.5);
}
.brand-main-wrapper-about::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.5px;
  background: #212121;
  bottom: 0;
}
.brand-main-wrapper-about::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.5px;
  background: #212121;
  top: 0;
}
.faq-thumbnail-two {
  position: relative;
  z-index: 5;
}
.faq-thumbnail-two .main {
  padding: 13px;
  background: #fff;
  border-radius: 8px;
}
.faq-thumbnail-two .small-img {
  position: absolute;
  left: -190px;
  top: -120px;
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .faq-thumbnail-two .small-img {
    max-width: 150px;
  }
  .brand-main-wrapper-about::after {
    display: none;
  }
  .brand-main-wrapper-about::before {
    display: none;
  }
  .linha1 {
    padding-bottom: 20px;
  }
  .linha2 {
    padding-bottom: 20px;
  }
  .linha3 {
    padding-bottom:40px;
  }
}
@media only screen and (max-width: 1199px) {
  .faq-thumbnail-two .small-img {
    position: absolute;
    left: -29px;
    top: -28px;
    z-index: 0;
  }
}
.brand-sm-title p {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: #141414;
  letter-spacing: 0.05em;
}
.faq-right-wrapper-two .title-left-h2-wrapper {
  text-align: left;
}
.faq-right-wrapper-two .title-left-h2-wrapper span.pre-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #141414;
}
.faq-right-wrapper-two .title-left-h2-wrapper .title span {
  font-style: italic;
  position: relative;
  font-weight: 300;
}
.faq-right-wrapper-two .title-left-h2-wrapper .title span::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 4px;
  width: 100%;
  background: #141414;
  height: 2px;
}
.title-faq-4 .title {
  color: #141414;
  font-family: Hanken Grotesk;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px;
  text-transform: uppercase;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .title-faq-4 .title {
    font-size: 26px;
    line-height: 38px;
  }
@media (max-width: 576px) {
  .appoinment-area-two {
    padding: 0 !important;
  }
}
.appoinment-area-two .title-area-appoinment span.pre {
  color: #141414;
  font-family: Hanken Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.appoinment-area-two .title-area-appoinment .title {
  color: #141414;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 15px;
}
@media (max-width: 576px) {
  .appoinment-area-two .title-area-appoinment .title {
    font-size: 40px;
    line-height: 1.1;
  }
}
@media (max-width: 450px) {
  .appoinment-area-two .title-area-appoinment .title {
    font-size: 28px;
    line-height: 1.1;
  }
}
.appoinment-area-two .title-area-appoinment .title span {
  font-style: italic;
  position: relative;
  font-weight: 400;
  max-width: max-content;
  margin-top: 10px;
}
.appoinment-area-two .title-area-appoinment .title span::after {
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 1px;
  width: 100%;
  background: #141414;
  content: "";
}
.appoinment-h2 {
  margin-top: 60px;
}
.appoinment-h2 .input-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .appoinment-h2 .input-line {
    display: block;
  }
}
.appoinment-h2 .input-line .input-half {
  flex-basis: 49%;
}
@media (max-width: 768px) {
  .appoinment-h2 .input-line .input-half {
    margin-top: 40px;
  }
}
.appoinment-h2 label {
  margin-bottom: 15px;
  color: #141414;
  font-weight: 500;
  font-size: 16px;
}
.appoinment-h2 input,
.appoinment-h2 select {
  border-radius: 8px;
  background: #F6F6F6;
  height: 65px;
  font-size: 16px;
  color: #141414;
  border: 1px solid transparent;
  padding: 10px 30px;
}
.appoinment-h2 input::placeholder,
.appoinment-h2 select::placeholder {
  color: #74787C;
}
.appoinment-h2 input:focus,
.appoinment-h2 select:focus {
  background: transparent;
  border: 1px solid #141414;
}
.appoinment-h2 select {
  color: #74787C;
  position: relative;
}
.appoinment-h2 select:focus {
  box-shadow: none;
}
.appoinment-h2 select::after {
  transform: none;
  background-image: none;
  content: "+";
  top: 0;
  position: absolute;
  right: 25px;
  top: 33%;
  font-family: "fontawesome";
}
.appoinment-h2 .text-area textarea {
  border-radius: 8px;
  background: #F6F6F6;
  height: 180px;
  padding: 20px;
  color: #74787C;
  border: 1px solid transparent;
  color: #141414;
}
.appoinment-h2 .text-area textarea::placeholder {
  color: #74787C;
}
.appoinment-h2 .text-area textarea:focus {
  border: 1px solid #141414;
  background: transparent;
}
.rts-btn.btn-subnit-h2 {
  border-radius: 100px;
  background: #141414;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 60px;
  min-width: 200px;
  transition: 0.3s;
}
.rts-btn.btn-subnit-h2:hover {
  background: #4d4d4d;
}
.rts-progress-area .thumbnail {
  display: block;
  overflow: hidden;
  max-width: max-content;
}
.rts-progress-area .thumbnail img {
  transition: 0.3s;
}
.rts-progress-area .thumbnail:hover img {
  transform: scale(0.95);
}
.single-progress-area-h4 {
  margin-top: 30px;
}
.single-progress-area-h4:first-child {
  margin-top: 0;
}
.single-progress-area-h4 .page-wrapper {
  width: calc(100% - 100px);
  margin: 100px auto 200px;
}
.single-progress-area-h4 .progress {
  height: 5px;
  position: relative;
  margin-top: 14px;
  border-radius: 0;
}
.single-progress-area-h4 .progress .bg--primary {
  background: var(--color-primary-m);
  border-radius: 0;
}
.single-progress-area-h4 .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.single-progress-area-h4 .progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-progress-area-h4 .progress-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  margin-bottom: 0;
  font-family: var(--font-primary);
}
.single-progress-area-h4 .progress-top span.parcent {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
/*For CodePen*/
svg.radial-progress {
  height: auto;
  max-width: 240px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid rgba(31, 31, 33, 0.08);
  transform: rotate(-90deg);
  width: 100%;
  background-image: none;
  border-radius: 50%;
  transition: 0.3s;
}
svg.radial-progress circle {
  fill: transparent;
  stroke: #fff;
}
svg.radial-progress circle.bar-static {
  stroke: #1E1E1E !important;
  stroke-width: 2px;
  transition: 0.3s;
}
svg.radial-progress circle.bar--animated {
  stroke-dasharray: 219.9114857513;
  stroke: #ffffff;
  stroke-dashoffset: 219.9114857513;
  stroke-width: 2px;
  transition: 0.3s;
}
svg.radial-progress text {
  fill: #fafafa;
  font-size: 16px;
  font-weight: 700;
  text-anchor: middle;
  font-family: var(--font-primary);
  fill: whitesmoke;
  transition: 0.3s;
}
section.svg-container svg.radial-progress:nth-child(even) {
  margin: 0 15px;
}
section.svg-container:nth-last-of-type(1) svg.radial-progress {
  background: linear-gradient(260deg, #ff0300, #ffc900);
}
section.svg-container:nth-last-of-type(0) svg.radial-progress {
  background-image: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%);
}
.devider {
  font-size: 50px;
  padding: 20px;
  min-height: 11vh;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-225deg, #FF057C 0%, #FF057C 40%, #321575 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.devider:nth-last-of-type(2) {
  background-image: linear-gradient(260deg, #ff0300, #ffc900);
}
.single-progress-circle {
  display: flex;
  justify-content: center;
  position: relative;
}
.single-progress-circle .small-text {
  position: absolute;
  bottom: -30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.progress-ciurcle-wrapper-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .progress-ciurcle-wrapper-one {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .progress-ciurcle-wrapper-one {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
}
.bg-dark-1 {
  background-color: #0E0E0E;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
}
}
.g-100 {
  --bs-gutter-x: 100px;
  --bs-gutter-y: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .g-100 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }
.left-content-story-5 .learn-more-btn {
  color: #fff;
  max-width: max-content;
}
.left-content-story-5 .learn-more-btn i {
  border-color: #fff;
}
.left-content-story-5 .learn-more-btn:hover i {
  background: #fff;
  color: #0E0E0E;
}
.history-nav {
  border: 1px solid #1E1E1E;
  padding: 50px;
}
@media only screen and (max-width: 479px) {
  .history-nav {
    padding: 20px;
  }
}
.history-nav .nav {
  border: none;
  box-shadow: none;
}
.history-nav .nav .single-tab-btn {
  padding-bottom: 30px;
  border-bottom: 1px solid #1E1E1E !important;
  padding-top: 30px;
  cursor: pointer;
}
.history-nav .nav .single-tab-btn:first-child {
  padding-top: 0;
}
.history-nav .nav .single-tab-btn:last-child {
  padding-bottom: 0;
  border-bottom: none !important;
}
.history-nav .nav .single-tab-btn:last-child.nav-link.active {
  border-bottom: none !important;
}
.history-nav .nav:hover {
  border: none;
  box-shadow: none;
}
.history-nav .nav .nav-link {
  display: block;
  border: none;
}
.history-nav .nav .nav-link .title {
  margin-bottom: 5px;
}
.history-nav .nav .nav-link:hover {
  border: none;
}
.history-nav .nav .nav-link.active {
  background: transparent;
  border: none !important;
  border-bottom: 1px solid #1E1E1E !important;
}
.history-conetent-5 .tab-pane.fade.show.active .thumbnail img {
  transform: scaleX(-1);
}
.history-conetent-5 .thumbnail img {
  transform: scaleX(0);
  transition: 0.3s;
}
}
@media (max-width: 768px) {
}
@media only screen and (max-width: 575px) {
}
}
.rts-comment-area .title-m {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.rts-comment-area .sigle-comments-bd {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 575px) {
  .rts-comment-area .sigle-comments-bd {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rts-comment-area .sigle-comments-bd .inner-info .titlea-rea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.rts-comment-area .sigle-comments-bd .inner-info .titlea-rea .title {
  margin-bottom: 0;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.rts-comment-area .sigle-comments-bd .inner-info .titlea-rea button {
  max-width: max-content;
  margin-left: auto;
  color: #d3d3d3;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.rts-comment-area .sigle-comments-bd .inner-info .details-area p.disc {
  margin-bottom: 15px;
}
.rts-comment-area .sigle-comments-bd .inner-info .details-area span.date {
  color: #A7A7A7;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.rts-single-wized {
  background: transparent;
  border-radius: 0;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid #1E1E1E;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-single-wized {
    padding: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-single-wized {
    padding: 20px;
  }
}
.rts-single-wized:last-child {
  margin-bottom: 0 !important;
}
.rts-single-wized .wized-header .title {
  margin-bottom: 10px;
}
.rts-single-wized .wized-body {
  margin-top: 30px;
}
.rts-single-wized .wized-body .rts-search-wrapper {
  position: relative;
}
.rts-single-wized .wized-body .rts-search-wrapper input {
  background: transparent;
  height: 55px;
  border-radius: 0;
  padding-right: 70px;
  padding-left: 25px;
  border: 1px solid #1E1E1E;
}
.rts-single-wized .wized-body .rts-search-wrapper button {
  position: absolute;
  max-width: max-content;
  height: 55px;
  width: 55px;
  border-radius: 0;
  background: var(--color-primary);
  display: inline-block;
  padding: 0 19px;
  right: 0;
}
.rts-single-wized .wized-body .rts-search-wrapper button i {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
}
.rts-single-wized .single-categories {
  margin-bottom: 15px;
  padding: 0;
}
.rts-single-wized .single-categories a {
  transition: 0.3s;
}
.rts-single-wized .single-categories:hover a {
  background: #fff;
  color: #141414;
  transform: translateY(-3px);
}
.rts-single-wized .single-categories li {
  list-style: none;
}
.rts-single-wized .single-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 25px;
  background: transparent;
  color: #bbbbbb;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 0;
  border: 1px solid #1e1e1e;
}
.rts-single-wized .single-categories li a i {
  color: #383838;
  transition: 0.3s;
}
.rts-single-wized .recent-post-single {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.rts-single-wized .recent-post-single .thumbnail {
  margin-right: 20px;
  overflow: hidden;
  max-width: max-content;
  width: 100%;
  border-radius: 0;
}
.rts-single-wized .recent-post-single .thumbnail:hover a img {
  transform: scale(1.2);
}
.rts-single-wized .recent-post-single .thumbnail img {
  min-width: 85px;
  height: auto;
  transition: 0.3s;
}
.rts-single-wized .recent-post-single .user {
  display: flex;
  align-items: center;
}
.rts-single-wized .recent-post-single .user span {
  margin-left: 9px;
}
.rts-single-wized .recent-post-single .post-title .title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #b4b4b4;
  line-height: 26px;
  margin-top: 5px;
  transition: 0.3s;
}
.rts-single-wized .recent-post-single .post-title:hover .title {
  color: #fff;
}
.rts-single-wized .gallery-inner .single-row.row-1 {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .rts-single-wized .gallery-inner .single-row.row-1 {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .rts-single-wized .gallery-inner .single-row.row-1 {
    margin-bottom: 10px;
  }
}
.rts-single-wized .gallery-inner .single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .rts-single-wized .gallery-inner .single-row {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .rts-single-wized .gallery-inner .single-row {
    gap: 10px;
  }
}
.rts-single-wized .gallery-inner .single-row a {
  overflow: hidden;
  border-radius: 0;
}
@media (max-width: 1200px) {
  .rts-single-wized .gallery-inner .single-row a {
    width: 100%;
  }
}
.rts-single-wized .gallery-inner .single-row a img {
  max-width: 97px;
  height: auto;
  transition: 0.6s;
}
@media (max-width: 1200px) {
  .rts-single-wized .gallery-inner .single-row a img {
    width: 100%;
    max-width: 100%;
  }
}
.rts-single-wized .gallery-inner .single-row a:hover img {
  transform: scale(1.2);
}
.rts-single-wized .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.rts-single-wized .tags-wrapper a {
  padding: 5px 16px;
  background: transparent;
  border-radius: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #bbbbbb;
  font-size: 14px;
  font-weight: 500;
  transition: 0.5s;
  transition: 0.3s;
  border: 1px solid #1e1e1e;
}
.rts-single-wized .tags-wrapper a:hover {
  color: #fff;
}
.rts-mighty-pagination {
  margin-top: 40px;
}
.rts-mighty-pagination ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
.rts-mighty-pagination ul li {
  margin: 0;
  margin-right: 10px;
}
.rts-mighty-pagination ul li button {
  width: 50px;
  height: 50px;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  border: 1px solid #1e1e1e;
  transition: 0.3s;
}
.rts-mighty-pagination ul li button:hover {
  background: #fff;
  color: #1e1e1e;
}
.rts-mighty-pagination ul li button.active {
  background: #fff;
  color: #1e1e1e;
}
.cta-main-wrapper-three .rts-btn.btn-primary {
  background: #96ff00;
  font-family: 'Urbanist';
  color: #121213;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 25px 17px;
  border-radius: 50px;
  transition: 0.3s;
}
.cta-main-wrapper-three .rts-btn.btn-primary i {
  font-size: 16px;
  padding-left:7px;
}
.cta-main-wrapper-three .rts-btn.btn-primary:hover {
  background: #96ff00;
  border-color: #fff;
  color: #121213;
}

.rts-feature-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 312px !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-feature-area {
    width: 215px !important;
  }
}
.rts-feature-area .thumbnail img {
  max-width: max-content;
  min-width: max-content;
}
.rts-feature-area:hover::after {
  height: 100%;
}
.rts-feature-area:hover .content-inner {
  bottom: 30px;
}
.rts-feature-area:hover .content-inner .number {
  right: 0;
}
.rts-feature-area::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.233);
  height: 0%;
  z-index: 0;
  pointer-events: none;
  transition: 0.5s;
  backdrop-filter: blur(5px);
}
.rts-feature-area .content-inner {
  position: absolute;
  left: 30px;
  bottom: -150px;
  width: 80%;
  z-index: 5;
  transition: 0.8s;
}
.rts-feature-area .content-inner .number {
  margin-left: auto;
  margin-right: 0;
  color: #141414;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: auto;
  right: 0px;
  bottom: 60px;
  transition: 0.5s;
}
.rts-feature-area .content-inner .body .tag {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 166.667% */
  display: block;
}
.rts-feature-area .content-inner .body a {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}
.feature-main-wrapper-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .feature-main-wrapper-1 {
    justify-content: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-main-wrapper-1 {
    justify-content: center;
    gap: 20px;
  }
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 1020px;
  height: 1020px;
  pointer-events: none;
  opacity: 0;
}
.cursor__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
}
.cursor__media.active {
  opacity: 0.8;
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6rem;
}
.nav__link {
  position: relative;
  color: #1e293b;
  font-size: 2.6rem;
  font-weight: 700;
  text-decoration: none;
}
.nav__link:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -1.3rem;
  left: 0;
  right: 0;
  width: 2rem;
  height: 2px;
  margin-inline: auto;
  background-color: #94a3b8;
}
.title-area-inner.large-image {
  display: flex;
  justify-content: space-between;
}
.title-area-inner.large-image .title {
  text-align: center;
  font-size: 90px;
  margin-bottom: -200px;
  z-index: 10;
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-area-inner.large-image .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .title-area-inner.large-image .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-inner.large-image .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-inner.large-image .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .title-area-inner.large-image .title {
    font-size: 21px;
  }
}
.title-area-inner.large-image .title span {
  font-size: 120px;
  color: white;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-area-inner.large-image .title span {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .title-area-inner.large-image .title span {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-inner.large-image .title span {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-inner.large-image .title span {
    font-size: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .title-area-inner.large-image .title span {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-inner.large-image {
    max-width: 100%;
  }
}
.banner-style-one {
  overflow: hidden;
}
#video_check {
  width: 200px;
  height: 200px;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  border-radius: 40px;
  outline: none;
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  z-index: 9999999;
}
#video_check:hover~.video {
  -webkit-clip-path: var(--clip-path-hover);
  clip-path: var(--clip-path-hover);
}
#video_check:checked~.video {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  height: 250px;
  width: 1920px;
  left: 0;
}
.banner-jump-button {
  position: absolute;
  left: 17%;
  top: 60%;
}
@media only screen and (max-width: 767px) {
  .banner-jump-button {
    left: 60px;
    top: 55%;
  }
}
@media only screen and (max-width: 479px) {
  .banner-jump-button {
    left: 10%;
    top: 44%;
  }
}
@media only screen and (max-width: 767px) {
  .banner-jump-button .btn_wrapper {
    margin-left: 0 !important;
  }
}
.banner-jump-button .explore-button {
  min-width: max-content;
  max-width: max-content;
}
.banner-jump-button .explore-button:hover {
  min-width: 190px !important;
}
.title-wrap-cta-4 .title {
  line-height: 26px;
  margin: 0;
}
.large-image-option-start {
  position: relative;
}
.large-image-option-start .wrapper-video {
  position: absolute;
  left: -228px;
}
.vedio-icone .video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
}
.vedio-icone .video-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -32%;
  top: -31%;
  display: block;
  width: 130px;
  height: 130px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  animation: waves 3s ease-in-out infinite;
}
.vedio-icone .video-play-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid var(--color-primary);
  transition: all 200ms;
  border-radius: 50%;
}
@media only screen and (max-width: 575px) {
  .vedio-icone .video-play-button::after {
    width: 60px;
    height: 60px;
  }
}
.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;
}
.wrap {
  width: 100%;
  height: auto;
  max-width: 768px;
  background-color: transparent;
  margin: 0 auto;
  padding: 20px;
  padding-top: 60px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote {
  overflow: hidden;
}
.quote-2 {
  overflow: hidden;
}
.split-line {
  overflow: hidden;
}
.split-parent {
  overflow: hidden;
}
.gsap-marker-end {
  display: none !important;
}
.gsap-marker-start {
  display: none !important;
}
.gsap-marker-scroller-end {
  display: none !important;
}
.gsap-marker-scroller-start {
  display: none !important;
}
.title-area-left-wrapper .title {
  text-align: left;
}
.team-title-4 {
  text-align: right;
  padding-top: 140px;
  padding-bottom: 80px;
  margin-right: 0;
}
.team-title-4 .title {
  background: linear-gradient(92deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Hanken Grotesk;
  font-size: 140px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .team-title-4 .title {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .team-title-4 .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .team-title-4 .title {
    font-size: 36px;
  }
}
.single-team-style-one {
  position: relative;
  overflow: hidden;
  z-index: 1 !important;
}
.single-team-style-one .thumbnail img {
  transform: scale(1);
  transition: 0.8s;
  width: 100%;
}
.single-team-style-one .inner-content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  opacity: 0;
  left: -50px;
  transition: 0.8s;
}
.single-team-style-one .inner-content span {
  display: block;
  padding: 11px 20px;
  max-width: max-content;
  background: #141414;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.single-team-style-one .inner-content a {
  padding: 18px 25px;
  background: #fff;
  display: block;
}
.single-team-style-one .inner-content a .name {
  color: #141414;
  color: #141414;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}
.single-team-style-one:hover .thumbnail img {
  transform: scalex(-1);
}
.single-team-style-one:hover .inner-content {
  left: 40px;
  opacity: 1;
}
.progress-team-area.four .single-team-style-one {
  padding-bottom: 0;
}
.history-conetent-5 {
  height: 100%;
}
.history-conetent-5 .tab-pane {
  height: 100%;
}
.history-conetent-5 .tab-pane .thumbnail {
  height: 100%;
}
.history-conetent-5 .tab-pane .thumbnail img {
  height: 100%;
}
.rts-offcanvas-wrapper .container-menu {
  position: relative;
  z-index: 1;
  z-index: 99;
}
.rts-offcanvas-wrapper .container-menu .action-menu {
  cursor: pointer;
  position: relative;
}
.rts-offcanvas-wrapper .container-menu .action-menu .close-event {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
}
.rts-offcanvas-wrapper .container-menu .action-menu .open-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.rts-offcanvas-wrapper .container-menu .action-menu .text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  position: relative;
  font-size: 20px;
  letter-spacing: 1pt;
}
.rts-offcanvas-wrapper .container-menu .action-menu .burger {
  width: 28px;
  height: 100%;
  position: relative;
  margin-left: 10px;
}
.rts-offcanvas-wrapper .container-menu .action-menu .burger .icon-close {
  position: absolute;
  top: -2px;
  left: 0;
  will-change: transform;
  -webkit-transform: rotate(90deg) scale(0.8);
  transform: rotate(90deg) scale(0.8);
  -webkit-transition: color 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  transition: color 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  transition: color 0.5s, opacity 0.5s, transform 0.5s;
  transition: color 0.5s, opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.rts-offcanvas-wrapper .container-menu .action-menu .burger .icon-burger {
  will-change: transform;
  -webkit-transition: color 0.5s, -webkit-transform 0.3s;
  transition: color 0.5s, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.5s;
  transition: transform 0.3s, color 0.5s, -webkit-transform 0.3s;
  overflow: hidden;
  color: #fff;
}
.rts-fs-menu {
  background: #0E0E0E;
  background-color: #0E0E0E;
  background-repeat: repeat;
  background-position: center center;
  background-attachment: scroll;
  -ms-background-size: cover;
  background-size: cover;
  position: fixed;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  overflow-x: hidden;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-clip-path: polygon(0 0, 100% 0, 130% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 130% 0, 0 0);
  -webkit-transform: translate(0, 0) rotate(7deg) scale(1.3);
  transform: translate(0, 0) rotate(7deg) scale(1.3);
  -webkit-transition: visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), transform 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
}
.rts-fs-menu .menu-item {
  opacity: 1;
  transition: 0.3s;
}
.rts-fs-menu .menu-item .sub-menu li {
  padding: 15px 0;
}
.rts-fs-menu.visible {
  opacity: 1;
  -webkit-transform: translate(0, 0) rotate(0) scale(1);
  transform: translate(0, 0) rotate(0) scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), opacity 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), opacity 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), opacity 1s cubic-bezier(0.575, 0.015, 0, 0.995), transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), visibility 1s cubic-bezier(0.575, 0.015, 0, 0.995), opacity 1s cubic-bezier(0.575, 0.015, 0, 0.995), transform 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-clip-path 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
}
.rts-fs-menu ul.navbar-nav-button {
  display: block;
  list-style: none;
  width: auto;
  position: relative;
  padding-left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 0;
}
.rts-fs-menu ul.navbar-nav-button.active>li {
  overflow: hidden;
}
@media (max-width: 768px) {
  .rts-fs-menu ul.navbar-nav-button.active>li {
    justify-content: center;
  }
}
.rts-fs-menu .rts-fs-container {
  position: relative;
  padding: 6rem 0;
  max-width: min(100vw - 200px, 1240px);
  width: 100%;
  margin: auto auto;
  height: 600px;
}
@media (max-width: 1024px) {
  .rts-fs-menu .rts-fs-container {
    max-width: min(100vw - 100px, 1240px);
    padding: 6rem 0 0 0;
  }
}
@media (max-width: 768px) {
  .rts-fs-menu .rts-fs-container {
    max-width: min(100vw - 0px, 1240px);
    padding: 6rem 0 0 0;
  }
}
.rts-fs-menu .rts-fs-container .active {
  z-index: 9;
}
.rts-fs-menu .rts-fs-container .rts-fs--nav {
  -webkit-clip-path: inset(-100vw 0 -100vw 0);
  clip-path: inset(-100vw 0 -100vw 0);
}
.visible {
  visibility: visible !important;
}
.navbar-nav-button.active>li {
  overflow: hidden;
  line-height: 26px;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .navbar-nav-button.active>li {
    padding: 10px 0;
  }
}
.navbar-nav-button.active>li:first-child {
  padding-top: 6px;
}
.rts-fs-menu * .menu-item>a {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #e8eaed;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 800;
}
.rts-fs-menu .menu-item-has-children>a span {
  margin-left: 0;
  position: absolute;
  left: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 0;
  opacity: 0;
  width: 32px;
  height: 100%;
  -webkit-transition: all 320ms cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: all 320ms cubic-bezier(0.575, 0.015, 0, 0.995);
}
.rts-fs-menu .menu-item-has-children>a:hover span {
  opacity: 1;
  margin-left: 16pt;
}
.rts-fs-menu .menu-item-has-children>a span svg {
  fill: #fff;
  width: 32px;
  height: 32px;
}
.rts-fs-menu ul.navbar-nav-button *>ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}
.rts-fs-menu ul.navbar-nav-button>li>ul {
  position: absolute;
  top: 0;
  left: 100%;
}
.menu-item--back {
  text-align: left;
  cursor: pointer;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4pt;
  letter-spacing: 1pt;
  text-transform: uppercase;
}
.menu-item--back::before {
  content: "";
  border: solid #9aa0a6;
  width: 12px;
  height: 12px;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: 2pt;
  margin-left: 2pt;
  margin-right: 8pt;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: margin-right 0.3s ease;
  transition: margin-right 0.3s ease;
}
.rts-fs-menu * li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rts-fs-container .sub-menu>.menu-item--back {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
  transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
}
.rts-fs-menu.visible .menu-item {
  opacity: 1;
}
.rts-fs-menu * .menu-item>a {
  font-family: var(--font-heading);
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Urbanist;
  color: #fff;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
}
@media (max-width: 991px) {
  .rts-fs-menu * .menu-item>a {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .rts-fs-menu * .menu-item>a {
    font-size: 26px;
  }
}
.rts-fs-container .sub-menu li a {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
  transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
}
.rts-fs-container .sub-menu.active>li>a {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
  transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
}
.rts-fs-container .sub-menu.active>.menu-item--back {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
  transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
  padding: 0;
  margin-bottom: 30px;
  margin-top: 0;
}
.rts-fs-container .sub-menu.active>.menu-item--back a {
  color: #fff;
}
.action-menu .burger .icon-close {
  position: absolute;
  top: -2px;
  left: 0;
  opacity: 0;
  will-change: transform;
  -webkit-transform: rotate(90deg) scale(0.8);
  transform: rotate(90deg) scale(0.8);
  -webkit-transition: color 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  transition: color 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  transition: color 0.5s, opacity 0.5s, transform 0.5s;
  transition: color 0.5s, opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.action-menu .burger .icon-burger {
  will-change: transform;
  -webkit-transition: color 0.5s, -webkit-transform 0.3s;
  transition: color 0.5s, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.5s;
  transition: transform 0.3s, color 0.5s, -webkit-transform 0.3s;
  overflow: hidden;
  color: var(--color-contrast-higher);
}
.open-event.style-open .icon-close {
  color: var(--color-white);
  -webkit-transform: rotate(90deg) scale(1);
  transform: rotate(90deg) scale(1);
  -webkit-transition: color 0.5s, -webkit-transform 0.5s;
  transition: color 0.5s, -webkit-transform 0.5s;
  transition: color 0.5s, transform 0.5s;
  transition: color 0.5s, transform 0.5s, -webkit-transform 0.5s;
  opacity: 1;
}
.open-event.style-open .icon-burger {
  color: var(--color-white);
  opacity: 0;
}
.rts-fs-container .sub-menu .sub-menu.activ {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
  transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
}
.rts-fs-container .sub-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
  transition: visibility 1s, opacity 0.2s ease-out, color 0.3s ease;
}
.rts-fs-menu ul.navbar-nav-button>li>ul ul {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.rts-fs-menu ul.navbar-nav-button *>ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}
.rts-fs-container .sub-menu .sub-menu.active {
  opacity: 1;
}
.rts-fs-container {
  opacity: 0;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: translate(0, -50%) rotate(-16deg) scale(1.3, 1.3);
  transform: translate(0, -50%) rotate(-16deg) scale(1.3, 1.3);
  -webkit-transition: opacity 1s 0s, -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: opacity 1s 0s, -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: transform 1s cubic-bezier(0.575, 0.015, 0, 0.995), opacity 1s 0s;
  transition: transform 1s cubic-bezier(0.575, 0.015, 0, 0.995), opacity 1s 0s, -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  position: relative;
  padding: 6rem 0;
  max-width: min(100vw - 200px, 1240px);
  width: 100%;
  margin: auto auto;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  opacity: 1;
  -webkit-transform: translate(0, 0) rotate(0) scale(1);
  transform: translate(0, 0) rotate(0) scale(1);
  -webkit-transition: opacity 1s 0.2s, -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: opacity 1s 0.2s, -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: opacity 1s 0.2s, transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: opacity 1s 0.2s, transform 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
}
.rts-fs--nav {
  -webkit-clip-path: inset(-100vw 0 -100vw 0);
  clip-path: inset(-100vw 0 -100vw 0);
}
.rts-fs--contacts {
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .rts-fs--contacts {
    display: none;
  }
}
.rts-fs--contacts .contact-inner .contact-information {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .rts-fs--contacts .contact-inner .contact-information {
    text-align: center;
  }
}
.rts-fs--contacts .contact-inner .contact-information .heading-title {
  font-family: 'Urbanist';
  font-size: 20px;
  color: #ef683e;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rts-fs--contacts .contact-inner .contact-information ul {
  padding: 0;
  margin: 0;
}
.rts-fs--contacts .contact-inner .contact-information ul li p,
.rts-fs--contacts .contact-inner .contact-information ul li a {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
.whatsapp {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.rts-fs--contacts .contact-inner .contact-information ul li i {
  padding-right: 4px;
}
@media (max-width: 768px) {
  .rts-fs--contacts .contact-inner .contact-information ul li {
    justify-content: center;
  }
}
.rts-fs--contacts .contact-inner .contact-information .rts-social-area-one {
  margin-top: 35px;
}
.rts-fs--contacts .contact-inner .contact-information .rts-social-area-one a {
  transition: all 0.3s;
}
.rts-fs--contacts .contact-inner .contact-information .rts-social-area-one a:hover {
  background: #FFFFFF;
}
.rts-fs--contacts .contact-inner .contact-information .rts-social-area-one a:hover i {
  color: #1b1b1b;
}
.rts-fs--contacts .contact-inner .contact-information .rts-social-area-one a i {
  transition: all 0.3s;
}
.rts-main {
  -webkit-clip-path: none !important;
  clip-path: none !important;
}
.rts-main {
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transform-origin: 25vw 0;
  transform-origin: 25vw 0;
  will-change: transform;
  -webkit-transform: translateZ(0) rotate(0) scale(1, 1);
  transform: translateZ(0) rotate(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: transform 1s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1s cubic-bezier(0.575, 0.015, 0, 0.995);
}
.fsm-opened .rts-main {
  -webkit-transform-origin: 25vw 0;
  transform-origin: 25vw 0;
  -webkit-transform: translate(0, 50vh) rotate(7deg) scale(1.3, 1.3);
  transform: translate(0, 50vh) rotate(7deg) scale(1.3, 1.3);
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: -webkit-transform 1.2s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: transform 1.2s cubic-bezier(0.575, 0.015, 0, 0.995);
  transition: transform 1.2s cubic-bezier(0.575, 0.015, 0, 0.995), -webkit-transform 1.2s cubic-bezier(0.575, 0.015, 0, 0.995);
}
.nav-area .navbar-nav-1 .menu-item {
  position: relative;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu {
  font-size: 14px;
  position: absolute;
  top: 103%;
  width: 200px;
  left: calc(50% - 50px);
  margin: 0;
  background-color: #323234;
  z-index: 5;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px) perspective(1px);
  transform: translateY(10px) perspective(1px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: visibility 250ms ease, opacity 250ms ease, -webkit-transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  transition: visibility 250ms ease, opacity 250ms ease, -webkit-transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  transition: visibility 250ms ease, opacity 250ms ease, transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  transition: visibility 250ms ease, opacity 250ms ease, transform 0.55s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: var(--radius-lg);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.05);
  padding: 10px 0 !important;
  border-radius: 10px;
  min-width: max-content;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu::after {
  content: "";
  position: absolute;
  background-color: #323234;
  border-radius: 0;
  width: 16px;
  height: 16px;
  top: -8px;
  left: calc(50% - 71px);
  z-index: -1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-area .navbar-nav-1 .menu-item .sub-menu li.menu-item {
  width: 100%;
  margin-left: 0;
  border-radius: 0.25rem;
  margin-left: 0 !important;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu li.menu-item a {
  line-height: 1.4;
  font-size: 15px;
  color: #fafaff !important;
  padding: 14px 8px;
  margin-left: 8pt;
  margin-right: 8pt;
  cursor: pointer;
  border-radius: 4pt;
  -webkit-transition: background-color 150ms ease;
  transition: background-color 150ms ease;
  display: block;
  text-align: left;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu li.menu-item .menu-link {
  position: relative;
  transition: all 0.4s;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu li.menu-item .menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #FFFFFF;
  transition: all 0.4s;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu li.menu-item:hover .menu-link {
  padding: 14px 0 14px 15px;
}
.nav-area .navbar-nav-1 .menu-item .sub-menu li.menu-item:hover .menu-link::before {
  width: 10px;
}
@media only screen and (max-width: 1199px) {
  .nav-area .navbar-nav-1 .menu-item .sub-menu.home-demos::after {
    left: calc(33% - 83px);
  }
}
.nav-area .navbar-nav-1 .menu-item.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  -webkit-transform: translateZ(0) perspective(1px);
  transform: translateZ(0) perspective(1px);
  opacity: 1;
  -webkit-transition: visibility 150ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  transition: visibility 150ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  transition: visibility 150ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  transition: visibility 150ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.55s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.drop-down-rts .menu-item-has-children .sub-menu li a {
  text-transform: capitalize !important;
  font-size: 15px !important;
}
.nav-area .navbar-nav-1 .menu-item.main-nav-on {
  padding: 15px 0;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu {
  width: 650px !important;
  display: flex !important;
  align-items: flex-start !important;
  left: calc(50% - 255px) !important;
  padding: 20px !important;
  padding-top: 30px !important;
}
@media only screen and (max-width: 1199px) {
  .nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu {
    left: calc(50% - 145px) !important;
  }
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu .single-mega {
  margin: 0 !important;
  flex-basis: 33.33%;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu .single-mega .tag {
  margin-left: 20px;
  font-size: 16px !important;
  text-transform: uppercase !important;
  font-weight: 500;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu .single-mega .main-wrapper {
  margin-top: 10px !important;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu.elements {
  min-width: 1036px !important;
  display: flex !important;
  align-items: flex-start !important;
  left: calc(-172% - 387px) !important;
  padding: 20px !important;
}
@media only screen and (max-width: 1199px) {
  .nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu.elements {
    min-width: 903px !important;
    display: flex !important;
    align-items: flex-start !important;
    left: calc(-105% - 310px) !important;
    padding: 20px !important;
  }
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu.elements .single-mega {
  margin: 0 !important;
  flex-basis: 25%;
  padding-top: 14px;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu.elements .single-mega .tag {
  margin-left: 20px;
  font-size: 16px !important;
  text-transform: uppercase !important;
  font-weight: 500;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu.elements .single-mega .main-wrapper {
  margin-top: 10px !important;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu.elements::after {
  left: calc(50% + 16px);
}
@media only screen and (max-width: 1199px) {
  .nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu.elements::after {
    left: calc(43% + 16px);
  }
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  border-radius: 0px;
  background: #dadada;
}
body::-webkit-scrollbar-thumb {
  background: #03ac2f;
  border-radius: 10px;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu .single-mega .tag {
  position: relative;
  color: #A8A8A8;
}
.nav-area .navbar-nav-1 .menu-item .mega-menu-01.sub-menu .single-mega .tag::after {
  position: absolute;
  content: "";
  left: 0;
  width: 55px;
  height: 1px;
  background: #A8A8A8;
  bottom: -7px;
}
.container-430 {
  max-width: 1060px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .container-430 {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-430 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .container-430 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  background:#96ff00;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color:#121213;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 0px solid var(--color-primary);
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}
.progress-wrap svg path {
  fill: none;
}
.rts-portfolio-grid-area {
  margin-top: -40px;
  padding: 0 0;
  position: relative;
}

.title-portfolio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}

.title-portfolio .title {
  margin: 0;
  font-family: 'Urbanist';
  color: #fff;
  font-size:56px;
  font-style: normal;
  font-weight:600;
}

.rts-portfolio-grid-area.masonry .main-isotop {
  position: relative;
}
.rts-portfolio-grid-area.masonry .main-isotop .button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: max-content;
  margin: 80px 0 60px;
  background: #393939;
  padding: 12px 20px;
  border-radius: 3px;
}
@media only screen and (max-width: 575px) {
  .rts-portfolio-grid-area {
    padding: 60px 0 50px;
    position: relative;
  }
}
.rts-portfolio-grid-area.masonry .main-isotop .button-group .button {
  padding: 10px 22px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  border-radius: 3px;
  display: block;
  max-width: max-content;
}
.rts-portfolio-grid-area.masonry .main-isotop .button-group .button.is-checked {
  background: #141414;
  color: #FFFFFF;
}
.rts-portfolio-grid-area.masonry .main-isotop .portfolio-wrap {
  overflow: hidden;
}
.rts-portfolio-grid-area.masonry .main-isotop .portfolio-wrap .filter .signle-portfolio-style-four-inner {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.rts-portfolio-grid-area.masonry .main-isotop .portfolio-wrap .filter .signle-portfolio-style-four-inner .inner-content {
  bottom: 50px;
}
.rts-portfolio-grid-area.masonry .main-isotop .portfolio-wrap .filter .signle-portfolio-style-four-inner::after {
  display: none;
}
.rts-portfolio-grid-area.masonry .main-isotop .portfolio-wrap .separetor-portfolio-bottom::after {
  display: none;
}
.rts-portfolio-grid-area.column .separetor-portfolio-bottom {
  padding: 80px 0;
}
.rts-portfolio-grid-area.column .signle-portfolio-style-four-inner {
  padding: 20px;
}
.rts-portfolio-grid-area.column .signle-portfolio-style-four-inner::after {
  display: none;
}
.rts-portfolio-grid-area.column .signle-portfolio-style-four-inner .inner-content {
  bottom: 50px;
}
.section-separator {
  position: relative;
}
.section-separator::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 1290px;
  height: 1px;
  background: #E8E8E8;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
}
.section-separator-bg-dark {
  position: relative;
}
.section-separator-bg-dark::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 1290px;
  height: 1px;
  background: #272727;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
}
.title-elements-parent {
  font-size: 70px;
  margin-bottom: 80px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-elements-parent {
    font-size: 54px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .title-elements-parent {
    font-size: 46px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  .title-elements-parent {
    font-size: 36px;
    line-height: 1.2;
  }

  .title-portfolio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom:20px;
}

.title-portfolio .title {
  font-size:42px;
}
}
.bg-white .title-elements-parent {
  color: #141414;
  font-size: 70px;
  margin-bottom: 80px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-white .title-elements-parent {
    font-size: 54px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .bg-white .title-elements-parent {
    font-size: 46px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  .bg-white .title-elements-parent {
    font-size: 36px;
    line-height: 1.2;
  }
}
.title-area-main-elements .title {
  font-size: 80px;
  margin-bottom: 80px;
}
.b1.uppercase {
  text-transform: uppercase;
}
.b2.uppercase {
  text-transform: uppercase;
}
.b3.uppercase {
  text-transform: uppercase;
}
.b4.uppercase {
  text-transform: uppercase;
}
body.servi-ce-details .rts-footer-two-area {
  margin-top: 120px;
}
@media only screen and (max-width: 1199px) {
  body.servi-ce-details .rts-footer-two-area {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body.servi-ce-details .rts-footer-two-area {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  body.servi-ce-details .rts-footer-two-area {
    margin-top: 60px;
  }
}
.inner-page.team-area-elements .team-title-4 {
  padding-top: 0;
}
.inner-page.team-area-elements .team-title-4 .title {
  line-height: 140px;
}
.buttons-main-wrapper-elements {
  display: flex;
  align-items: center;
  gap: 40px;
}
.buttons-main-wrapper-elements .plus-btn {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 12px;
}
.buttons-main-wrapper-elements .plus-btn.btn-md {
  font-size: 18px;
}
.buttons-main-wrapper-elements .plus-btn.btn-lg {
  font-size: 20px;
}
.buttons-main-wrapper-elements .plus-btn.btn-xl {
  font-size: 22px;
}
@media only screen and (max-width: 575px) {
  .project-title-btn-wrapper-8.clients-feedback {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
.feature-wrapper-full-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .feature-wrapper-full-wrap {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-wrapper-full-wrap {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-wrapper-full-wrap .single-wrapper {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  background: #fff;
  width: 312px;
  transition: 0.3s;
}
.feature-wrapper-full-wrap .single-wrapper svg {
  margin-right: 10px;
}
.feature-wrapper-full-wrap .single-wrapper svg path {
  transition: 0.3s;
}
.feature-wrapper-full-wrap .single-wrapper p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0C0A0A;
  text-transform: uppercase;
  transition: 0.3s;
}
.feature-wrapper-full-wrap .single-wrapper:hover {
  background: var(--color-primary);
  transform: scale(1.02) translateY(-7px);
}
.feature-wrapper-full-wrap .single-wrapper:hover svg path {
  fill: #fff;
}
.feature-wrapper-full-wrap .single-wrapper:hover p {
  color: #fff;
}
.feature-wrapper-three-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .feature-wrapper-three-wrap {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-wrapper-three-wrap {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-wrapper-three-wrap .single-wrapper {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  background: #fff;
  width: 312px;
  transition: 0.3s;
}
.feature-wrapper-three-wrap .single-wrapper svg {
  margin-right: 10px;
  transition: 0.3s;
}
.feature-wrapper-three-wrap .single-wrapper p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0C0A0A;
  text-transform: uppercase;
  transition: 0.3s;
}
.feature-wrapper-three-wrap .single-wrapper:hover {
  background: var(--color-primary);
  transform: scale(1.02) translateY(-7px);
}
.feature-wrapper-three-wrap .single-wrapper:hover svg path {
  fill: #fff;
}
.feature-wrapper-three-wrap .single-wrapper:hover p {
  color: #fff;
}
.bg--dark {
  background: #171717;
}
.rts-dark .swiper.mySwiper_portfolio-3.swiper-container-horizontal .swiper-pagination {
  bottom: 9%;
}
.rts-dark .swiper.mySwiper_portfolio-3.swiper-container-horizontal .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
.rts-dark .swiper.mySwiper_portfolio-3.swiper-container-horizontal .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.rts-dark .inner-page.six {
  background: #000;
}
.rts-dark .shape-about-one {
  display: none;
}
.rts-dark .inner-page.service-3 .single-service-card-box-1 .icon svg path {
  fill: #141414 !important;
}
.rts-dark .inner-page.service-3 .single-service-card-box-1 .title {
  color: #141414;
}
.portfolio-six-single-swiper .left-content .title {
  margin-top: 10px;
}
.inner-page.project-details .rts-header-area-two .main-header-two {
  padding: 6px 0 17px 0;
}
.header-three .logo-area {
  display: block;
}
.header-three .logo-area-white {
  display: none;
}
/* ==========================================================================
Serviços Internas
========================================================================== */
.services-one {
  position: relative;
  padding: 0;
  background: #090909 !important;
}
.services-one.style-two {
  padding-top: 50px;
}
.service-block_one-inner {
  position: relative;
  margin: 0 20px 20px;
  padding: 50px 50px;
  overflow: hidden;
}
.service-block_one-inner {
  border: 1px solid #0000;
  border-radius: 50px;
  background:
    conic-gradient(#090909
      /* the background color */
      0 0) padding-box,
    linear-gradient(#ff4911, transparent) border-box;
}
.service-block_one-inner:before {
  content: "";
  position: absolute;
  inset: 0;
}
.service-block_one-icon {
  position: relative;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--main-color);
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.service-block_one-inner:hover .service-block_one-icon {
  color: var(--white-color);
  background-color: var(--main-color);
  transform: rotateY(180deg);
}
.service-block_one-heading {
  position: relative;
  margin-top: 22px;
}
.service-block_one-heading {
  position: relative;
  font-family: 'Urbanist';
  font-size: 26px;
  font-weight: 600;
  color: #fff !important;
}
.service-block_one-text {
  position: relative;
  margin-top: 15px;
  font-family: 'Poppins';
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
}
/* Service Block Two */
.service-block_two {
  position: relative;
}
.service-block_two-inner {
  position: relative;
  padding: 30px 30px;
  border-radius: 8px;
  overflow: hidden;
  min-height: 325px;
}
.service-block_two-inner::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.50;
  background: rgba(var(--main-color-rgb), 1);
  background: linear-gradient(to bottom, rgba(var(--main-color-rgb), 1) 0%, rgba(var(--white-color-rgb), 0) 100%);
}
.fale-conosco{
  float: left;
  width: 100%;
  padding:0 0 100px;
}
.formulario #nome {
    float: left;
    width: 50%;
}
.formulario #email {
    float: right;
    width:48%;
}
.formulario #telefone {
    float: left;
    width:23%;
}
.formulario #cidade {
  float: left;
  width:49%;
  margin-left:30px;
}
.formulario #estado {
  float: left;
  width:23%;
  margin-left:30px;
}
.formulario .colaboradores {
  float: left;
  width:48%;
  font-family: 'Poppins';
  color: #fff;
  line-height: 32px;
}
.formulario .servicos-form {
  float: left;
  width:48%;
  font-family: 'Poppins';
  color: #fff;
  line-height: 32px;
}
.formulario .colaboradores p{
  margin-top: 30px;
  margin-bottom: 20px;
}
.formulario .servicos-form p{
  margin-top: 30px;
  margin-bottom: 20px;
}
.formulario #mensagem {
    width: 100%;
    float: left;
    margin: 14px 0;
    height: 112px;
}
.formulario input[type="text"],
textarea {
    width: 100%;
    margin: 14px 0 0 0;
    padding: 8px 10px;
    background: transparent;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    border: 0;
    border-bottom: #dadada solid 1px;
    line-height: 42px;
}
#estado {
  margin:34px 0 0 0;
  padding: 8px 10px;
  background: transparent;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  border: 0;
  border-bottom: #dadada solid 1px;
  line-height: 42px;
}
.esse .error {
    margin: -6px 0 0 0;
}
.formulario button {
    float: right;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 16px;
    font-weight:500;
    color: #121213;
    background: rgb(239, 84, 62);
    background: linear-gradient(to bottom right, rgba(239, 84, 62, 1) 0%, rgb(253, 90, 35) 100%);
    border-radius: 25px;
    resize: none;
    padding:12px 20px 12px 25px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 0;
}
.formulario button i{
  padding-left: 7px;
}
.formulario button:hover {
  background: linear-gradient(to bottom right, rgba(239, 84, 62, 1) 0%, rgb(253, 119, 9) 100%);
  color: #ffffff;
  -webkit-transition: 0.2s !important;
  transition: 0.2s !important;
    color:#fff;
}
.formulario .btn i {
    padding-left: 10px;
}
.formulario select .error {
    padding: 2px 8px;
    color: #777;
}
.formulario .error {
    display: block;
    margin-bottom: 6px;
    padding: 0 12px;
    color: #ed3237;
}
::-webkit-input-placeholder {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
:-moz-placeholder {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
::-moz-placeholder {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
:-ms-input-placeholder {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
@media only screen and (max-width: 767px) {
  .titulo {
    padding: 90px 0 0;
  }
  .services-one.style-two {
    padding-top: 50px;
  }
  .service-block_one-inner {
    position: relative;
    margin: 0 0 0;
    padding: 40px 20px 20px;
  }
  .service-block_one-icon {
    position: relative;
    width: 56px;
    height: 56px;
  }
  .fale-conosco{
    float: left;
    width: 100%;
    padding:0px 0 70px;
  }
  .formulario #nome {
      float: left;
      width:100%;
  }
  .formulario #email {
      float:left;
      width:100%;
  }
  .formulario #telefone {
      float: left;
      width:100%;
  }
  .formulario #cidade {
    float: left;
    width:60%;
    margin-left:0;
  }
  .formulario #estado {
    margin:15px 0 0;
    float: left;
    width:30%;
    margin-left:30px;
  }
  .formulario .colaboradores {
    width:100%;
  }
  .formulario .servicos-form {
    width:100%;
  }
  .formulario .colaboradores p{
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .formulario .servicos-form p{
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .formulario #mensagem {
      width: 100%;
      float: left;
      margin: 14px 0;
      height: 112px;
  }
}
/*=======================================================
WhatsApp
========================================================*/
.btn-whatsapp {
  position: fixed;
  right: 100px;
  bottom: 100px;
  width: 80px;
  height: 80px;
  border: none;
  box-shadow: 0 0 0 0 rgba(0, 183, 62, 0.7);
  border-radius: 50%;
  background-color: #00B73E;
  font-size: 0;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  z-index: 10;
}
.btn-whatsapp i {
  text-indent: inherit;
  color: #fff;
  font-size: 42px;
}
.btn-whatsapp:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(0, 183, 62, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(0, 183, 62, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(0, 183, 62, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(0, 183, 62, 0);
  }
}
@media only screen and (max-width:1440px) {
  .btn-whatsapp {
    right: 60px;
    bottom: 60px;
  }
}
@media only screen and (max-width: 479px) {
  .btn-whatsapp {
    right: 20px;
    bottom: 104px;
    width: 70px;
    height: 70px;
  }
  .btn-whatsapp i {
    font-size: 34px;
  }

  .whats {
  float: left;
  background: #96ff00;
  font-family: 'Urbanist';
  color: #121213;
  font-size: 10px;
  font-weight: 600;
  height: 50%;
  width: 100%;
  padding: 15px 15px 15px 15px;
  border-radius: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
  
