/*
  Handcrafted styles for SHIFT THINKERS - LPG VIRUTAL RESELLER WEBSITE
  by brunoatwork.com
*/
/*  Variables */
/*  Brand Colors  */
/*  Mixins */
/*
  BRAND BUTTONS
*/
/*
  Screen Reader
*/
/*
  Mixin for GRID LAYOUT
*/
/*
  Website general margins
*/
/*  Media Queries */
/*
  New iPhones viewport
*/
/*  Non mobile first for specific scenarios where elements shouldn't be displayed on mobile */
/*  Mobile Visibility classes */
/*
  Commun styles
*/
/*  Screen reader Txt */
.screen-reader {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

html {
  margin-top: 0 !important;
  background: #fff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.063rem;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-size: 16px !important;
  line-height: 1.5em;
  color: #000 !important;
  background: #fff;
  margin: 0 !important;
}
body.active {
  overflow: hidden;
  height: 100%;
}

img {
  width: 100%;
}

*:focus {
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  color: #000;
  margin: 0 !important;
  padding: 0 !important;
}

/*  Font Heading Sizes */
p, a, li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.063rem;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #0075FF;
}
a.excerpt-read-more {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  color: #000;
  color: #0075FF;
  font-size: 0.85rem;
  margin-left: 5px;
  font-weight: bold !important;
}
a.excerpt-read-more:hover {
  color: #0075FF;
  text-decoration: underline !important;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.063rem;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #0075FF !important; /* Safari */
  color: #fff !important;
}

::-moz-selection {
  background: #0075FF !important; /* Safari */
  color: #fff !important;
}

/*
  GRID
*/
.grid-layout {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .grid-layout {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 45px;
  }
}
@media (min-width: 1200px) {
  .grid-layout.grid-3-column {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }
}
@media (min-width: 2048px) {
  .grid-layout.grid-3-column {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
  }
}

/*
  Scroll to top
*/
#trigger-scroll-up {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  z-index: 9998;
  right: 0;
  bottom: -40px;
}
#trigger-scroll-up.active {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  bottom: 0;
}
#trigger-scroll-up a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(17, 36, 79, 0.8);
}
#trigger-scroll-up a:hover {
  background: #0075FF;
}
#trigger-scroll-up a svg {
  width: 20px;
  height: auto;
}
#trigger-scroll-up a svg path {
  fill: #fff;
}

/*
  Main header
*/
#main-header {
  height: 64px;
  position: fixed;
  z-index: 9997;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 5px transparent;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  #main-header {
    height: 68px;
    padding: initial;
  }
}
#main-header #inner-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1200px) {
  #main-header #inner-header {
    height: 68px;
  }
}
@media (min-width: 1200px) {
  #main-header #inner-header {
    width: 1216px;
    margin: 0 auto;
  }
}
#main-header #inner-header #logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main-header #inner-header #logo a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main-header #inner-header #logo a img {
  width: 221px;
  height: 20.67px;
}
@media (min-width: 1200px) {
  #main-header #inner-header #logo a img {
    width: 278px;
    height: 26px;
  }
}
#main-header #inner-header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1200px) {
  #main-header #inner-header ul {
    gap: 32px;
  }
}
#main-header #inner-header ul li {
  display: none;
}
@media (min-width: 1200px) {
  #main-header #inner-header ul li {
    display: flex;
  }
}
#main-header #inner-header ul li a {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #161616;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main-header #inner-header ul li#mobile-nav {
  display: flex;
}
@media (min-width: 1200px) {
  #main-header #inner-header ul li#mobile-nav {
    display: none;
  }
}
#main-header #inner-header ul li#mobile-nav a#hamburguer {
  display: initial;
}
#main-header #inner-header ul li#mobile-nav a#hamburguer.active {
  display: none;
}
#main-header #inner-header ul li#mobile-nav a#close-icon {
  display: none;
}
#main-header #inner-header ul li#mobile-nav a#close-icon.active {
  display: initial;
}
#main-header #inner-header ul li.btn-get-in-touch a {
  background: #161B25;
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #fff;
}
#main-header #inner-header ul li.btn-get-in-touch a:hover {
  background: #9CE43F;
  color: #000;
}

/*
    Landing area
*/
#landing-area {
  background: url("../images/production/background-mobile-big-hero.jpg") no-repeat top left;
  margin-top: 64px;
  background-size: cover;
}
@media (max-width: 767px) {
  #landing-area {
    padding: 72px 24px;
  }
}
@media (min-width: 768px) {
  #landing-area {
    background: url("../images/production/background-big-hero.jpg") no-repeat top left;
    background-attachment: fixed;
    background-size: cover;
    padding-top: 68px;
    margin-top: initial;
  }
}
#landing-area #wrapper-landing-area {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 72px;
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area {
    width: 1216px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #landing-area #wrapper-landing-area {
    justify-content: space-between;
    flex-direction: row;
    align-items: stretch;
    padding: 80px 24px;
  }
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area {
    padding: 112px 0;
  }
}
#landing-area #wrapper-landing-area #welcome-area {
  width: 100%;
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #welcome-area {
    min-width: 416px;
    max-width: 416px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#landing-area #wrapper-landing-area #welcome-area header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
#landing-area #wrapper-landing-area #welcome-area header h1 {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}
#landing-area #wrapper-landing-area #welcome-area header h1 span {
  color: #fff;
  font-size: 43px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 52.8px */
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #welcome-area header h1 span {
    font-size: 53px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%; /* 61.6px */
  }
}
#landing-area #wrapper-landing-area #welcome-area header h1 span#big-letterings {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#landing-area #wrapper-landing-area #welcome-area header h1 span#big-letterings span#text-symbol {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}
#landing-area #wrapper-landing-area #welcome-area header h1 span#big-letterings span#text-symbol svg {
  width: 20px;
  height: auto;
}
#landing-area #wrapper-landing-area #welcome-area header h1 span.small-text {
  font-size: 26px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #welcome-area header h1 span.small-text {
    font-size: 32px;
    font-style: normal;
    font-weight: 200;
    line-height: 130%; /* 41.6px */
  }
}
#landing-area #wrapper-landing-area #welcome-area header h2 {
  order: 1;
  color: #9CE43F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  #landing-area #wrapper-landing-area #welcome-area header h2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.28px;
  }
}
#landing-area #wrapper-landing-area #welcome-area #the-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
#landing-area #wrapper-landing-area #welcome-area #the-content p {
  margin: 88px 0 0 !important;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #welcome-area #the-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 22.4px */
    margin: 96px 0 0 !important;
  }
}
#landing-area #wrapper-landing-area #welcome-area #the-content ul#options li a {
  background: #fff;
  color: #161B25;
  border-radius: 6px;
  display: flex;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #welcome-area #the-content ul#options li a {
    padding: 8px 32px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    letter-spacing: 0.36px;
  }
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #welcome-area #the-content ul#options li a:hover {
    background: #9CE43F;
    color: #161616;
  }
}
#landing-area #wrapper-landing-area #presentational-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  #landing-area #wrapper-landing-area #presentational-illustration {
    width: 110%;
  }
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #presentational-illustration {
    width: initial;
  }
}
#landing-area #wrapper-landing-area #presentational-illustration img {
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  #landing-area #wrapper-landing-area #presentational-illustration img {
    width: 728px;
    height: 430px;
  }
}
@media (min-width: 1024px) {
  #landing-area #wrapper-landing-area #presentational-illustration img.mobile {
    display: none;
  }
}
#landing-area #wrapper-landing-area #presentational-illustration img.laptop-up {
  display: none;
}
@media (min-width: 1024px) {
  #landing-area #wrapper-landing-area #presentational-illustration img.laptop-up {
    display: initial;
  }
}

/*
  How it works
*/
#how-it-works {
  background: #fff;
  padding: 88px 24px;
}
@media (min-width: 1200px) {
  #how-it-works {
    padding: 72px 0;
  }
}
#how-it-works #inner-how-it-works {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1200px) {
  #how-it-works #inner-how-it-works {
    width: 1216px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  #how-it-works #inner-how-it-works {
    flex-direction: row;
  }
}
#how-it-works #inner-how-it-works #how-it-works-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 96px;
  max-width: 384px;
}
#how-it-works #inner-how-it-works #how-it-works-content header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
#how-it-works #inner-how-it-works #how-it-works-content header h2 {
  color: #FA7C0B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #how-it-works #inner-how-it-works #how-it-works-content header h2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.28px;
  }
}
#how-it-works #inner-how-it-works #how-it-works-content header h3 {
  color: #161B25;
  font-size: 37px;
  font-style: normal;
  font-weight: 300;
  line-height: 115%; /* 46px */
}
@media (min-width: 1200px) {
  #how-it-works #inner-how-it-works #how-it-works-content header h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 48px */
  }
}
#how-it-works #inner-how-it-works #how-it-works-content .cta-section {
  display: none;
}
@media (min-width: 1024px) {
  #how-it-works #inner-how-it-works #how-it-works-content .cta-section {
    display: flex;
  }
}
#how-it-works #inner-how-it-works #wrapper-illustration {
  display: none;
}
@media (min-width: 768px) {
  #how-it-works #inner-how-it-works #wrapper-illustration {
    display: initial;
  }
}
#how-it-works #wrapper-mobile-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 48px;
  margin-top: 72px;
}
@media (min-width: 768px) {
  #how-it-works #wrapper-mobile-content {
    display: none;
  }
}
#how-it-works #wrapper-mobile-content .mobile-section-headliners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
#how-it-works #wrapper-mobile-content .mobile-section-headliners .wrapper-icon-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
}
#how-it-works #wrapper-mobile-content .mobile-section-headliners .how-it-works-mobile-headliners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
#how-it-works #wrapper-mobile-content .mobile-section-headliners .how-it-works-mobile-headliners h2 {
  color: #FA7C0B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
#how-it-works #wrapper-mobile-content .mobile-section-headliners .how-it-works-mobile-headliners p {
  margin: 0;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 33.6px */
  color: #1F2937;
}
#how-it-works .cta-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  #how-it-works .cta-section {
    display: none;
  }
}
#how-it-works .cta-section.mobile-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 72px;
}
#how-it-works .cta-section p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  color: #6B7280;
  margin: 0;
}
#how-it-works .cta-section ul#options li a {
  background: #161B25;
  color: #fff;
  border-radius: 6px;
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  #how-it-works .cta-section ul#options li a {
    display: flex;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.48px;
    text-transform: uppercase;
  }
}
@media (min-width: 1200px) {
  #how-it-works .cta-section ul#options li a:hover {
    background: #9CE43F;
    color: #161616;
  }
}

/*
  Seamless Integration
*/
#seamless-integration {
  background: url("../images/production/background-mobile-seamless-integration.jpg") no-repeat top left;
  background-size: cover;
  padding: 88px 24px;
}
@media (min-width: 768px) {
  #seamless-integration {
    padding: 30px 24px 60px;
  }
}
@media (min-width: 1200px) {
  #seamless-integration {
    background: url("../images/production/background-seamless-integration.jpg") no-repeat center;
    background-size: contain;
    padding: 72px 0;
    gap: 72px;
  }
}
@media (min-width: 1441px) {
  #seamless-integration {
    background-size: cover;
  }
}
#seamless-integration #inner-seamless-integration {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  gap: 72px;
}
@media (min-width: 1200px) {
  #seamless-integration #inner-seamless-integration {
    width: 1216px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  #seamless-integration #inner-seamless-integration {
    padding: 30px 0;
    flex-direction: row;
  }
}
@media (min-width: 2048px) {
  #seamless-integration #inner-seamless-integration {
    justify-content: center;
  }
}
#seamless-integration #inner-seamless-integration #wrapper-presentational-photo {
  order: 2;
}
@media (min-width: 768px) {
  #seamless-integration #inner-seamless-integration #wrapper-presentational-photo {
    order: 1;
  }
}
#seamless-integration #inner-seamless-integration #wrapper-presentational-photo img {
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  #seamless-integration #inner-seamless-integration #wrapper-presentational-photo img {
    width: 592px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  #seamless-integration #inner-seamless-integration #wrapper-presentational-photo img.mobile {
    display: none;
  }
}
#seamless-integration #inner-seamless-integration #wrapper-presentational-photo img.laptop-up {
  display: none;
}
@media (min-width: 1024px) {
  #seamless-integration #inner-seamless-integration #wrapper-presentational-photo img.laptop-up {
    display: initial;
  }
}
#seamless-integration #inner-seamless-integration #seamless-integration-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 96px;
  order: 1;
  /*  AQUI */
}
@media (min-width: 768px) {
  #seamless-integration #inner-seamless-integration #seamless-integration-content {
    order: 2;
  }
}
#seamless-integration #inner-seamless-integration #seamless-integration-content header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
#seamless-integration #inner-seamless-integration #seamless-integration-content header h2 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #seamless-integration #inner-seamless-integration #seamless-integration-content header h2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.28px;
    text-transform: uppercase;
  }
}
#seamless-integration #inner-seamless-integration #seamless-integration-content header h3 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 115%; /* 46px */
}
@media (min-width: 1200px) {
  #seamless-integration #inner-seamless-integration #seamless-integration-content header h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 48px */
  }
}
@media (min-width: 768px) {
  #seamless-integration #inner-seamless-integration #seamless-integration-content header h3 span.mobile-content {
    display: none;
  }
}
#seamless-integration #inner-seamless-integration #seamless-integration-content header h3 span.desktop-content {
  display: none;
}
@media (min-width: 768px) {
  #seamless-integration #inner-seamless-integration #seamless-integration-content header h3 span.desktop-content {
    display: initial;
  }
}
#seamless-integration #seamless-integration-options-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 50px;
  border-top: 1px solid #C0D2AA;
  padding-top: 50px !important;
  margin-top: 50px !important;
}
@media (min-width: 1200px) {
  #seamless-integration #seamless-integration-options-list {
    width: 1216px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  #seamless-integration #seamless-integration-options-list {
    padding: initial;
  }
}
#seamless-integration #seamless-integration-options-list ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 32px;
  flex-wrap: nowrap;
  width: 100%;
}
@media (min-width: 768px) {
  #seamless-integration #seamless-integration-options-list ul {
    flex-direction: row;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  #seamless-integration #seamless-integration-options-list ul {
    padding: 0 30px;
  }
}
#seamless-integration #seamless-integration-options-list ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  #seamless-integration #seamless-integration-options-list ul li {
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  #seamless-integration #seamless-integration-options-list ul li {
    align-items: center;
  }
}
#seamless-integration #seamless-integration-options-list ul li .wrapper-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#seamless-integration #seamless-integration-options-list ul li .wrapper-icon img {
  width: 38px;
  height: 38px;
}
#seamless-integration #seamless-integration-options-list ul li .the-content {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
@media (min-width: 1200px) {
  #seamless-integration #seamless-integration-options-list ul li .the-content {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 22.4px */
  }
}
#seamless-integration #seamless-integration-options-list ul li .the-content br {
  display: none;
}
@media (min-width: 1200px) {
  #seamless-integration #seamless-integration-options-list ul li .the-content br {
    display: initial;
  }
}
#seamless-integration #seamless-integration-options-list a.cta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  color: #000;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  padding: 10px 20px;
  background: #9CE43F;
  color: #161616;
  text-transform: uppercase;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 18.333px; /* 141.026% */
  text-transform: uppercase;
  background: #fff;
  color: #161616;
  padding: 10px 13.13px !important;
}
#seamless-integration #seamless-integration-options-list a.cta:hover {
  background: #000;
  color: #fff;
}
#seamless-integration .cta-section {
  display: none;
}
@media (min-width: 1200px) {
  #seamless-integration .cta-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
#seamless-integration .cta-section p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  margin: 0;
}
#seamless-integration .cta-section ul#options li a {
  background: #9CE43F;
  color: #161B25;
  border-radius: 6px;
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #seamless-integration .cta-section ul#options li a:hover {
    background: #9CE43F;
    color: #161B25;
  }
}
#seamless-integration .mobile-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 72px;
  text-align: center;
}
@media (min-width: 768px) {
  #seamless-integration .mobile-section {
    display: none;
  }
}
#seamless-integration .mobile-section p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
#seamless-integration .mobile-section ul#options li a {
  background: #fff;
  display: flex;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #161B25;
}

/*
  The Platform
*/
#the-plaftform {
  display: flex;
  flex-direction: column;
  /*gap: 112px;*/
  padding: 88px 24px;
}
@media (min-width: 1200px) {
  #the-plaftform {
    width: 1072px;
    margin: 0 auto;
    padding: 112px 0;
  }
}
#the-plaftform #block-one, #the-plaftform #the-app {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media (min-width: 768px) {
  #the-plaftform #block-one, #the-plaftform #the-app {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  #the-plaftform #block-one, #the-plaftform #the-app {
    gap: initial;
  }
}
#the-plaftform #block-one section, #the-plaftform #the-app section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#the-plaftform #block-one section header, #the-plaftform #the-app section header {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
#the-plaftform #block-one section header h2, #the-plaftform #the-app section header h2 {
  color: #FA7C0B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #the-plaftform #block-one section header h2, #the-plaftform #the-app section header h2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.28px;
    text-transform: uppercase;
  }
}
#the-plaftform #block-one section header h3, #the-plaftform #the-app section header h3 {
  display: flex;
  flex-direction: column;
  color: #161B25;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 41.6px */
}
#the-plaftform #block-one section header h3:after, #the-plaftform #the-app section header h3:after {
  content: "";
  width: 176px;
  height: 1px;
  background: #D1D5DB;
  margin: 32px 0 32px;
}
#the-plaftform #block-one section .the-platform-content p, #the-plaftform #the-app section .the-platform-content p {
  margin: 0 !important;
  color: #4B5563;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
@media (min-width: 1200px) {
  #the-plaftform #block-one section .the-platform-content p, #the-plaftform #the-app section .the-platform-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 22.4px */
  }
}
#the-plaftform #block-one .the-illustration, #the-plaftform #the-app .the-illustration {
  margin-top: 72px;
}
@media (min-width: 768px) {
  #the-plaftform #block-one .the-illustration, #the-plaftform #the-app .the-illustration {
    padding: initial;
    margin-top: initial;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  #the-plaftform #block-one .the-illustration, #the-plaftform #the-app .the-illustration {
    width: initial;
  }
}
#the-plaftform #block-one .the-illustration img, #the-plaftform #the-app .the-illustration img {
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  #the-plaftform #block-one .the-illustration img, #the-plaftform #the-app .the-illustration img {
    width: 520px;
    height: 360px;
  }
}
#the-plaftform #the-app {
  gap: 72px;
  padding-top: 112px;
}
@media (min-width: 1200px) {
  #the-plaftform #the-app {
    gap: 120px;
  }
}
#the-plaftform #the-app section {
  order: 1;
  max-width: 400px;
}
@media (min-width: 768px) {
  #the-plaftform #the-app section {
    order: 2;
  }
}
#the-plaftform #the-app .the-illustration {
  order: 2;
  margin-top: 0;
}
@media (min-width: 768px) {
  #the-plaftform #the-app .the-illustration {
    order: 1;
  }
}

/*
  The Vending Machine
*/
#wrapper-vending-machine {
  background: #F1FEE0;
  border-bottom: 45px solid #9CE43F;
}
#wrapper-vending-machine #vending-machine {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 72px 24px;
}
@media (min-width: 768px) {
  #wrapper-vending-machine #vending-machine {
    padding: 88px 24px;
    flex-direction: row;
    gap: 32px;
    /*min-height: 552px;*/
  }
}
@media (min-width: 1200px) {
  #wrapper-vending-machine #vending-machine {
    padding: 112px 0;
    min-width: 1071px;
    max-width: 1072px;
  }
}
#wrapper-vending-machine #vending-machine section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  #wrapper-vending-machine #vending-machine section {
    width: 130%;
  }
}
@media (min-width: 1200px) {
  #wrapper-vending-machine #vending-machine section {
    width: initial;
  }
}
#wrapper-vending-machine #vending-machine section header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#wrapper-vending-machine #vending-machine section header h2 {
  color: #FA7C0B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #wrapper-vending-machine #vending-machine section header h2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.28px;
    text-transform: uppercase;
  }
}
#wrapper-vending-machine #vending-machine section header h3 {
  color: #161B25;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 41.6px */
}
@media (min-width: 1200px) {
  #wrapper-vending-machine #vending-machine section header h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; /* 41.6px */
  }
}
#wrapper-vending-machine #vending-machine section header h3:after {
  display: flex;
  content: "";
  width: 176px;
  height: 1px;
  margin: 32px 0 32px;
  background: #4B5563;
}
#wrapper-vending-machine #vending-machine section .the-platform-content {
  max-width: 353px;
}
#wrapper-vending-machine #vending-machine section .the-platform-content p {
  color: #161616;
  margin: 0 !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
@media (min-width: 1200px) {
  #wrapper-vending-machine #vending-machine section .the-platform-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
  }
}
@media (min-width: 1200px) {
  #wrapper-vending-machine #vending-machine .the-illustration {
    width: 602px;
  }
}
#wrapper-vending-machine #vending-machine .the-illustration img {
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  #wrapper-vending-machine #vending-machine .the-illustration img {
    width: 602px;
    height: 360px;
  }
}

/*
  Benefits
*/
#wrapper-benefits-get-in-touch {
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
  /*  Get in Touch  */
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch {
    background: url("../images/production/background-benefits-get-in-touch-section.jpg") no-repeat center;
    background-size: cover;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch {
    gap: 87px;
    padding-bottom: 112px;
    padding-top: initial;
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits {
    width: 95%;
    margin: 0 auto;
    padding: 30px 20px 40px;
  }
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits {
    margin: 0 auto;
    padding: 0;
    margin-top: -70px;
    width: 100%;
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits {
  display: flex;
  gap: 64px;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  /*filter: drop-shadow(-5.8333330154418945px -4.166666507720947px 13.333333015441895px rgba(0, 0, 0, 0.05));*/
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    padding: 72px 104px;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits {
    width: 1216px;
    margin: 0 auto;
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits header h2 {
  color: #0075FF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits header h2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.28px;
    text-transform: uppercase;
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits header h3 {
  color: #161B25;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 41.6px */
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits header h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 48px */
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists {
    flex-direction: row;
    gap: 52px;
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section {
  border-bottom: 1px solid #DFE0DC;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section {
    border: none;
  }
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section {
    border-bottom: none;
    border-right: 1px solid #DFE0DC;
    padding-bottom: initial;
    padding-right: 52px;
    width: 100%;
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section:last-child {
  border: none;
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section header h4 {
  color: #161B25;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 24px */
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section ul li {
    align-items: flex-start;
  }
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section ul li .wrapper-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section ul li .wrapper-icon img {
  width: 38px;
  height: 38px;
}
#wrapper-benefits-get-in-touch #wrapper-all-the-benefits #all-the-benefits #benefits-lists section ul li .the-content {
  color: #4B5563;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}
#wrapper-benefits-get-in-touch #get-in-touch {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #get-in-touch {
    border-radius: 5px;
    padding: 20px;
    flex-direction: row;
    width: 95%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #get-in-touch {
    max-width: 1072px;
    margin: 0 auto;
    padding: initial;
  }
}
#wrapper-benefits-get-in-touch #get-in-touch header.section-header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(145deg, #0075FF 0.05%, rgba(0, 117, 255, 0.06) 100.05%);
  padding: 64px 24px;
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #get-in-touch header.section-header {
    background: linear-gradient(164deg, #0B6BFA 9.29%, #7ACFFF 81.44%);
    border-radius: initial;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 50px 40px 30px;
    width: 50%;
  }
}
#wrapper-benefits-get-in-touch #get-in-touch header.section-header #wrapper-header {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
#wrapper-benefits-get-in-touch #get-in-touch header.section-header #wrapper-header h2 {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
#wrapper-benefits-get-in-touch #get-in-touch header.section-header #wrapper-header h3 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 48px */
}
@media (max-width: 767px) {
  #wrapper-benefits-get-in-touch #get-in-touch header.section-header #arrow-thin {
    display: none;
  }
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #get-in-touch header.section-header #arrow-thin {
    display: initial;
  }
}
#wrapper-benefits-get-in-touch #get-in-touch header.section-header #arrow-thin img {
  max-width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  #wrapper-benefits-get-in-touch #get-in-touch header.section-header #arrow-thin img {
    transform: rotate(90deg);
  }
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #get-in-touch header.section-header #arrow-thin img {
    max-width: initial;
    width: 248px;
    height: 176px;
  }
}
#wrapper-benefits-get-in-touch #get-in-touch #wrapper-form-get-in-touch {
  background: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  #wrapper-benefits-get-in-touch #get-in-touch #wrapper-form-get-in-touch {
    width: 50%;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 8px;
    padding: 40px 30px;
  }
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #get-in-touch #wrapper-form-get-in-touch {
    padding: 64px;
  }
}
#wrapper-benefits-get-in-touch #get-in-touch #wrapper-form-get-in-touch header {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}
#wrapper-benefits-get-in-touch #get-in-touch #wrapper-form-get-in-touch header h3 {
  color: #161B25;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 33.6px */
}
@media (min-width: 1200px) {
  #wrapper-benefits-get-in-touch #get-in-touch #wrapper-form-get-in-touch header h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 24px */
  }
}
#wrapper-benefits-get-in-touch #get-in-touch #wrapper-form-get-in-touch #form-get-in-touch iframe .styled-form-background::before {
  background: transparent !important;
}
/*
  Get in touch
*/
/*
  GAVEDRA
*/
#gavedra {
  padding: 88px 24px 72px 24px;
  /*background: url('../images/production/background-gavedra.webp') no-repeat top left;*/
  /*background-size: cover;*/
  background: linear-gradient(166deg, rgba(0, 117, 255, 0.47) -24.17%, rgba(243, 244, 246, 0) 89.89%);
}
@media (min-width: 768px) {
  #gavedra {
    background: linear-gradient(106deg, rgba(0, 117, 255, 0.11) 43.95%, rgba(0, 117, 255, 0) 68.49%);
    padding: initial;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#gavedra #inner-gavedra {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 32px;
  flex-direction: column;
}
@media (min-width: 768px) {
  #gavedra #inner-gavedra {
    gap: 40px;
    margin: 0 auto;
    max-width: 95%;
    flex-direction: row;
    padding: initial;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  #gavedra #inner-gavedra {
    max-width: 90%;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #gavedra #inner-gavedra {
    width: 1216px;
    margin: 0 auto;
  }
}
#gavedra #inner-gavedra header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  #gavedra #inner-gavedra header {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  #gavedra #inner-gavedra header {
    width: 50%;
  }
}
#gavedra #inner-gavedra header h2 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: #FA7C0B;
}
#gavedra #inner-gavedra header h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 48px */
  color: #161B25;
}
#gavedra #inner-gavedra header ul {
  display: none;
}
@media (min-width: 1200px) {
  #gavedra #inner-gavedra header ul {
    display: initial;
    margin-top: 40px;
    max-width: 230px;
  }
}
#gavedra #inner-gavedra header ul li a {
  border-radius: 5px;
  display: inline-flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
  background: #161B25;
  color: #fff;
}
@media (min-width: 1200px) {
  #gavedra #inner-gavedra header ul li a:hover {
    background: #9CE43F;
    color: #161616;
  }
}
@media (min-width: 768px) {
  #gavedra #inner-gavedra #gavedra-content {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  #gavedra #inner-gavedra #gavedra-content {
    width: 520px;
  }
}
#gavedra #inner-gavedra #gavedra-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
  color: #374151;
}
@media (min-width: 1200px) {
  #gavedra #inner-gavedra ul#mobile-cta {
    display: none;
  }
}
#gavedra #inner-gavedra ul#mobile-cta li a {
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  background: #161B25;
  color: #fff;
}

/*
  Modals
*/
#panel-take-a-look {
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9997;
  padding: 10px;
  background: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  width: 95%;
  height: auto;
  border-radius: 8px;
}
@media (min-width: 768px) {
  #panel-take-a-look {
    padding: 32px;
    width: 900px;
    height: auto;
  }
}
#panel-take-a-look.active {
  top: 50%;
}
#panel-take-a-look header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
#panel-take-a-look header h2 {
  color: #1F2937;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}
#panel-take-a-look #wrapper-iframe .container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
#panel-take-a-look #wrapper-iframe .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#panel-seamless-integration {
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9997;
  padding: 10px;
  background: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  #panel-seamless-integration {
    width: 863px;
    height: auto;
    padding: 32px;
  }
}
#panel-seamless-integration.active {
  top: 50%;
}
#panel-seamless-integration header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
#panel-seamless-integration header h2 {
  color: #1F2937;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}
#panel-seamless-integration #wrapper-swiper {
  padding: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #panel-seamless-integration #wrapper-swiper {
    padding: 0 40px;
  }
}
#panel-seamless-integration #wrapper-swiper .swiper-button-next::after, #panel-seamless-integration #wrapper-swiper .swiper-rtl .swiper-button-prev::after,
#panel-seamless-integration #wrapper-swiper .swiper-button-next::after, #panel-seamless-integration #wrapper-swiper .swiper-button-prev::after {
  content: "";
}
#panel-seamless-integration #wrapper-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #161B25;
}
#panel-seamless-integration #wrapper-swiper .swiper-custom-virtual-reseller .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}
#panel-seamless-integration #wrapper-swiper .swiper-custom-virtual-reseller .swiper-pagination {
  position: static;
}

.div-overlay {
  position: fixed;
  z-index: 9995;
  top: 0;
  left: 0;
  background: #161B25;
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: none;
}
.div-overlay.active {
  display: initial;
}

/*
  Modal navigation mobile
*/
#panel-mobile-nav {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: -500px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 24px;
  z-index: 9996;
}
@media (min-width: 1024px) {
  #panel-mobile-nav {
    display: none;
  }
}
#panel-mobile-nav.active {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 64px;
}
#panel-mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#panel-mobile-nav ul li a {
  color: #161B25;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
#panel-mobile-nav ul li.btn-get-in-touch a {
  background: #161B25;
  display: inline-flex;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #fff;
}

/*
  Website Main Footer
*/
#main-footer {
  background: #161616;
  padding: 24px;
}
@media (min-width: 768px) {
  #main-footer {
    padding: 10px 24px;
  }
}
@media (min-width: 1200px) {
  #main-footer {
    padding: 19.5px 0;
    height: 80px;
  }
}
#main-footer #inner-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  #main-footer #inner-footer {
    width: 1216px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #main-footer #inner-footer {
    align-items: center;
    flex-direction: row;
  }
}
#main-footer #inner-footer #logo-footer img {
  width: 240.83px;
  height: auto;
}
#main-footer #inner-footer #copyright p {
  margin: 0;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 15px */
  letter-spacing: 0.1px;
}
#main-footer #inner-footer #copyright p a {
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.1px;
}
