/**
 * Styles
 *
 *
 *
 * Variables
 */

:root {

  /** Colors **/

  --color-primary-blue: #64c1c8; 
  --color-primary-yellow: #fff164; 
  --color-primary-white: #FFFFFF; 
  --color-primary-grey: #9FA1A3; 

  --color-secondary-blue: #379bb4; 
  --color-secondary-yellow: #faca50; 
  --color-secondary-grey: #F0F0F0; 
  --color-secondary-orange: #f6a43d; 

  --color-gradiant-blue: linear-gradient(180deg, #64C1C8 0%, #00699F 100%);
  --color-gradiant-yellow: linear-gradient(180deg, #FFF164 0%, #F6A43D 183.37%);

  /** Font Size **/

  --heading-homepage: 3.938rem;
  --heading-inner-page: 2.563rem;
  --heading-2: 2rem;
  --heading-3: 1.438rem;

  --paragraph-title: 1.25rem;
  --paragraph-intro: 1.125rem;
  --paragraph-large-body: 1rem;
  --paragraph-body: 0.875rem;
  --paragraph-small-body: 0.688rem;

  --link: 0.938rem;

  --button: 1.438rem;
  --button-small: 0.625rem;

}
@media (min-width: 800px) {
  :root {
    --heading-inner-page: 3.125rem;
  }
}

/**
 * Base
 */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  height: 100%;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5rem;
  scroll-padding-top: 100px !important;
}
html, body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: var(--color-neutral-3);
  background-color: var(--color-neutral-1);
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
  max-width: 1920px;
  margin: auto;
}
body.js-active {
  overflow: hidden;
}
main {
  position: relative;
  z-index: 2;
}

/* Image */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Text */

p, h1, h2, h3 {
  position: relative;
}
h1, h2, h3 {
  font-family: "Asap", sans-serif;
  font-weight: 700;
}
h1 {
  font-size: var(--heading-inner-page);
  line-height: 56px;
}
.homepage-heading {
  font-size: var(--heading-homepage);
  line-height: 72px;
  letter-spacing: 5%;
}
h2 {
  font-size: var(--heading-2);
  line-height: 37px;
}
h3 {
  font-size: var(--heading-3);
  line-height: 28px;
}

p {
  font-size: var(--paragraph-body);
  line-height: 21px;
  font-weight: 400;
}
.small-title {
  font-size: var(--paragraph-title);
  line-height: 26px;
  font-weight: 700;
}
.intro-header {
  font-size: var(--paragraph-intro);
  line-height: 27px;
  font-weight: 700;
}
.large-text {
  font-size: var(--paragraph-large-body);
  line-height: 22px;
  font-weight: 500;
}
em.large-text {
  line-height: 24px;
  font-style: italic;
  font-weight: 400;
}
.small-text {
  font-size: var(--paragraph-small-body);
  line-height: 16px;
}
.colored {
  color: var(--color-secondary-yellow);
  font-weight: 700;
  line-height: normal;
}

/* Links */

a {
  color: var(--color-neutral-3);
  text-decoration: underline;
  font-size: var(--link);
  line-height: 18px;
  font-weight: 500;
}
.cta {
  font-size: var(--button);
  line-height: 29px;
  font-weight: 600;
  display: inline-block;
  background-color: var(--color-secondary-orange);
  padding: 1rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--color-primary-white);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  text-align: center;
}
.cta:hover {
  background-color: var(--color-secondary-yellow);
}
.cta--small {
  font-size: var(--button-small);
  line-height: 15px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Sliders */

.tns-controls {
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: -15rem;
}
.tns-outer {
  margin-top: -6rem;
}
.tns-controls button {
  background: transparent;
  border: 0;
  z-index: 2;
}
.tns-controls button img {
  width: 3rem;
}
.tns-horizontal.tns-subpixel > .tns-item {
  vertical-align: text-top;
}

/**
 * Layout
 */

.grid-row {
  padding: 0;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
@media all and (min-width: 1000px){
  .grid-row--12 {
    max-width: 1165px;
  }
}

/**
 * Header
 */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary-white);
  padding: 1.25rem 1.5rem;
  box-shadow: 0px 7px 16px 2px rgba(0, 0, 0, 0.25);
  z-index: 10;
}
@media (min-width: 1000px) {
  .header {
    padding: 1rem;
  }
  .header__wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
    max-width: 1165px;
  }
}


.header__logo img {
  max-width: 215px;
}
@media (min-width: 1000px) {
  .header__logo img{
    max-width: none;
  }
}

.header__navigation {
  position: fixed;
  left: -100%;
  right: 100%;
  bottom: 0;
  top: 86px;
  z-index: 5;
  background: var(--color-gradiant-blue);
  transition: all .50s cubic-bezier(.475,.425,0,.995);
  padding: 2rem 1rem;
}
.header.js-active .header__navigation {
  left: 0;
  right: 0;
}
@media (min-width: 1000px) {
  .header__navigation {
    position: static;
    left: unset;
    right: unset;
    bottom: unset;
    top: unset;
    background: var(--color-primary-white);
    flex: 1;
    padding: 0;
  }
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Account */

.header__account {
  display: flex;
  flex-direction: column;
}
.header__account .header__link {
  text-decoration: none;
  color: var(--color-primary-white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-align: center;
  background-color: var(--color-secondary-blue);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.header__account .header__link:first-child {
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  background-color: var(--color-secondary-orange);
}
.header__account .header__link:hover {
  background-color: var(--color-primary-blue);
}
.header__account .header__link:first-child:hover {
  background-color: var(--color-secondary-yellow);
}
@media (min-width: 750px) {
  .header__account {
    display: flex;
    flex-direction: row;
  }
  .header__account .header__link:first-child  {
    margin-bottom: 0;
  }
}

/**
 * Main menu
 */

.menu__main .menu {
  padding: 2rem 0;
}
.menu__main .menu__link {
  padding: 2.25rem;
  text-align: center;
  display: block;
  text-decoration: none;
  color: var(--color-primary-white);
  font-size: 1.25rem;
  line-height: 24px;
  border-bottom: 1px solid var(--color-primary-white);
  font-weight: 700;
}
.menu__main .menu__item a:hover {
  color: var(--color-secondary-orange);
}
.menu__main .menu__item:last-child .menu__link {
  border-bottom: 0;
}
@media (min-width: 1000px) {
  .menu__main .menu {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
  }
  .menu__main .menu__link {
    padding: 0 1rem;
    color: var(--color-secondary-blue);
    font-size: 0.875rem;
    line-height: 18px;
    border-bottom: 0;
    border-left: 3px solid var(--color-secondary-blue);
  }
  .menu__main .menu__item:first-child .menu__link {
    padding-left: 0;
    border-left:  0;
  }
}

/* Menu toggle */

.menu-toggle {
  position: absolute;
  right: 1.5rem;
  top: 49%;
  transform: translate(0, -50%);
  height: 40px;
  width: 30px;
  background-color: transparent;
  border: 0;
}
.menu-toggle-bar {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 0;
  width: 100%;
  height: 5px;
  border-radius: 4px;
  background-color: var(--color-secondary-orange);
  transition: all 0.3s ease;
}
.menu-toggle-bar.menu-toggle-bar--top {
  transform: translate(0, -10px);
}
.menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translate(0, 10px);
}
.header.js-active .menu-toggle-bar.menu-toggle-bar--top {
  transform: translate(0, 0) rotate(45deg);
}
.header.js-active .menu-toggle-bar.menu-toggle-bar--middle {
  opacity: 0;
}
.header.js-active .menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translate(0, 0) rotate(-45deg);
}
@media (min-width: 1000px) {
  .menu-toggle {
    display: none;
  }
}

/**
 * Menu Social
 */

.menu__social .menu {
  display: flex;
  align-items: center;
  gap: 12px;
}
p.menu__social-title {
  font-family: "Asap";
  font-size: var(--paragraph-body);
  font-weight: 700;
  color: var(--color-primary-white);
  line-height: normal;
  text-transform: uppercase;
  margin: 0.25rem 0 0.75rem;
}

/**
 * Menu icon
 */

.menu__icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  width: 27px;
  height: 27px;
  text-indent: -999px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.menu__icon--facebook {
  background-image: url('../images/icon/facebook.svg');
}
.menu__icon--linkedin {
  background-image: url('../images/icon/linkedin.svg');
}
.menu__icon--youtube {
  background-image: url('../images/icon/youtube.svg');
}
.menu__icon--instagram {
  background-image: url('../images/icon/instagram.svg');
}
.menu__icon--phone {
  background-image: url('../images/icon/phone.svg');
}
.footer .menu__icon--facebook {
  background-image: url('../images/icon/fb-gradiant.svg');
}
.footer .menu__icon--linkedin {
  background-image: url('../images/icon/linkedin-gradiant.svg');
}
.footer .menu__icon--youtube {
  background-image: url('../images/icon/youtube-gradiant.svg');
}
.footer .menu__icon--instagram {
  background-image: url('../images/icon/insta-gradiant.svg');
}
.menu__icon--mail {
  background-image: url('../images/icon/mail.svg');
  width: 35px;
}
@media (min-width: 1000px) {
  .header .menu__icon--facebook {
    background-image: url('../images/icon/fb-orange.svg');
  }
  .header .menu__icon--linkedin {
    background-image: url('../images/icon/linkedin-orange.svg');
  }
  .header .menu__icon--youtube {
    background-image: url('../images/icon/youtube-orange.svg');
  }
  .header .menu__icon--instagram {
    background-image: url('../images/icon/insta-orange.svg');
  }
}

/**
 * Footer
 */

.footer {
  margin-top: auto;
  background: var(--color-gradiant-blue);
  padding: 2rem 0 0;
}
.footer p {
  color: var(--color-primary-white);
  font-size: 0.75rem;
  margin: 0;
}
.footer__wrapper {
  padding: 0 1rem;
}
.footer__part {
  margin: 2rem 0;
}
.footer__menu {
 padding: 0.5rem 0;
 text-align: center;
}
.footer .menu__social {
  margin: 2rem 0 0;
}
.footer__contact {
  margin-top: 2rem;
}
p.footer__contact-title {
  font-family: "Asap";
  font-size: var(--paragraph-body);
  font-weight: 700;
  color: var(--color-primary-white);
  line-height: normal;
  text-transform: uppercase;
  margin: 0.25rem 0;
}
.footer__contact .menu {
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__copyright {
  margin: 0;
  color: var(--color-primary-white);
  font-size: var(--paragraph-small-body);
}
.footer__paiement-logo {
  margin-top: 0.5rem;
}
.footer .menu__social-title {
  margin: 0.25rem 0 0.75rem;
  font-size: var(--paragraph-body);
}
@media (min-width: 600px) {
  .footer__wrapper {
    display: grid;
    gap: 1rem 2rem;
    grid-template-areas: 
    "a a a"
    "b c d"; 
  }
  .footer__part {
    margin: 0;
  }
  .footer__part:nth-child(1) {
    grid-area: a;
  }
  .footer__part:nth-child(2) {
    grid-area: b;
  }
  .footer__part:nth-child(3) {
    grid-area: c;
  }
  .footer__part:nth-child(4) {
    grid-area: d;
  }
}
@media (min-width: 1000px) {
  .footer__wrapper {
    grid-template-columns: 25% 33% 20% 20%;
    grid-template-areas: none;
  }
  .footer__part:nth-child(1),
  .footer__part:nth-child(2),
  .footer__part:nth-child(3),
  .footer__part:nth-child(4) {
    grid-area: initial;
  }
}

/* Menu Legal */

.menu__legal .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu__legal .menu__link {
  color: var(--color-primary-white);
  text-decoration: none;
  font-weight: 400;
  line-height: 16px;
  display: block;
  padding: 0 0.75rem;
  border-left: 1px solid var(--color-primary-white);
  font-size: var(--paragraph-small-body);
}
.menu__legal .menu__item:first-child .menu__link {
  border-left:  0;
}

/**
 * Main Content
 */ 

.main-content {
  max-width: 1366px;
  margin: 0 auto;
  padding-top: 86px;
}
@media (min-width: 1000px) {
  .main-content {
    padding-top: 96px;
  }
}

/**
 * Scroll Button
 */

.scroll-button {
  position: relative;
  background: linear-gradient(to top, rgba(35, 31, 32, 0.8) 0%, transparent 100%);
  width: 100%;
}
.scroll-button .arrow {
  position: relative;
  background: var(--color-secondary-orange);
  border-radius: 100%;
  padding: 0.8rem;
  width: 4rem;
  height: 3.8rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  margin-top: -4rem;
  bottom: 1rem;
}
@media (min-width: 750px) {
  .scroll-button {
    display: none;
  }
}

/**
 * Hero
 */

.hero {
  background: linear-gradient(260deg, #64C1C8 0.25%, #00699F 102.68%);
  padding-top: 1.75rem;
  overflow: hidden;
}
.hero__text {
  color: var(--color-primary-white);
  text-align: center;
}
.hero__text h1 {
  line-height: 46px;
  margin-top: 0.5rem;
  text-transform: uppercase;
  transform: rotate(-4.685deg);
}
.hero__text p{
  margin: 0;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.hero__image {
  position: relative;
}
.hero__image img {
  margin: 0 auto;
  width: 100%;
  max-width: 390px;
}
.hero__image_mini img{
  width:60%
}
@media (min-width: 750px) {
  .hero {
    position: relative;
    overflow: hidden;
  }
  .hero__text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 1165px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  .hero__text h1 {
    font-size: 2.8rem;
  }
  .hero__text-wrapper {
    width: 50%;
  }
  .hero__image {
    width: 50%;
    margin-left: auto;
  }
  .hero__image img{
    max-width: initial;
  }
}
@media (min-width: 1000px) {
  .hero::before  {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: -50px;
    bottom: -250px;
    width: 722px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/filigrane.svg);
    mix-blend-mode: saturation;
  }
  .hero__text h1 {
    font-size: var(--heading-homepage);
  }
  .hero__text p {
    font-size: 1.688rem;
  }
}

/**
 * Contact 
 */

.contact {
  position: relative;
  color: var(--color-primary-white);
  margin: 0 2rem;
}
.contact__content {
  background: linear-gradient(180deg, #64C1C8 0%, #00699F 100%);
  padding: 2rem;
  border-radius: 30px;
  margin: 2rem auto;
  max-width: 774px;
}
.contact__text {
  text-align: center;
  font-size: var(--paragraph-large-body);
}
.contact__text h2 {
  margin: 0 0 0.5rem;
}
.contact__items {
  display: flex;
  flex-direction: column;
}

.contact__item {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.contact__item-wrapper {
  max-width: 230px;
  margin: 0 auto;
}
.contact__item-icon img{
  margin: 0 auto;
}
.contact__image {
  margin-left: -2rem;
}
@media (min-width: 700px) {
  .contact p {
    font-size: var(--paragraph-large-body);
    line-height: 22px;
  }
  
}
@media (min-width: 1100px) {
  .contact__content {
    margin-right: 1.5rem;
  }
  .contact__image {
    position: absolute;
    bottom: -2rem;
    left: 0;
  }
  
}
@media (min-width: 1175px) {
  .contact {
    overflow: hidden;
    padding-bottom: 5rem;
    margin: 3rem 0 0;
  }
  .contact__items {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    align-items: center;
  }
  .contact__item:first-child::after {
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 3px;
    background-color: var(--color-secondary-yellow);
    border-radius: 5px;
  }
}

/**
 * Presentation 
 */

.presentation {
  margin: 2.5rem 0;
}
.presentation__content {
  padding: 0.5rem;
}
.presentation__text {
  margin-bottom: 2.5rem;
}
.presentation__text h2 {
  color: var(--color-secondary-blue);
  margin: 0;
}
.presentation__text h4 {
  color: var(--color-secondary-blue);
  margin-bottom: 0;
}
.presentation__text p {
  margin-top: 0.5rem;
  font-family: Poppins;
  font-size: var(--paragraph-large-body);
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-primary-grey);
}
.presentation__media {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  width: 100%;
}
.presentation__media-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 80.95%; 
}
.presentation__media-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.presentation__media-description {
  background-color: var(--color-secondary-blue);
  color: var(--color-primary-white);
  text-align: center;
  padding: 0.5rem 1rem;
}
.presentation__media-description p {
  margin: 0;
  font-weight: 700;
}
.presentation__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 750px) {
  .presentation__media-video {
    padding-top: 56.25%;
  }
}
@media (min-width: 800px) {
  .presentation {
    padding: 2rem 0;
  }
  .presentation__content {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 1rem));
    gap: 2rem;
    align-items: center;
  }
}

/**
 * FAQ
 */

.faq {
  margin: 5rem 0;
}
.faq h2 {
  color: var(--color-secondary-blue);
}
.faq__item {
  border-bottom: 1px solid var(--color-primary-grey);
}
.faq__item-header {
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  user-select: none;
  color: var(--color-secondary-blue);
  align-items: center;
  gap: 2rem;
  font-weight: 500;
}
.faq__item-header::after {
  content: '';
  display: block;
  position: relative;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/faq/arrow-down.svg");
  width: 16px;
  height: 16px;
}
.faq__item.js-active .faq__item-header {
  background-color: var(--color-secondary-blue);
  color: var(--color-primary-white);
  font-weight: 700;
}
.faq__item.js-active .faq__item-header::after {
  background-image: url("../images/faq/arrow-up.svg");
}
.faq__item-content {
  height: 0;
  overflow: hidden;
  transition: 0.2s;
  color: var(--color-primary-grey);
  font-size: var(--paragraph-body);
}
.faq__item-content-wrapper {
  padding: 1rem 1.25rem;
}

/**
 * Garanties
 */

.garanties {
  margin: 2rem 0;
  background: linear-gradient(265deg, #64C1C8 4.99%, #00699F 100.66%);
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}
.garanties::before  {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: -375px;
  bottom: 0;
  width: 520px;
  background-position: top;
  background-repeat: repeat;
  background-size: contain;
  background-image: url(../images/filigrane.svg);
  mix-blend-mode: saturation;
}
.garanties h2{
  color: var(--color-primary-white);
  margin: 0;
}
.garanties__items {
  display: grid;
  gap: 2rem;
  margin: 1.25rem 0 0;
}
.garanties__item {
  text-align: center;
  color: var(--color-primary-white);
  font-weight: 700;
}
.garanties__item-wrapper {
  max-width: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto;
}
.garanties__item-title h3{
  font-weight: 700;
  margin: 0;
}
.garanties__item-text p{
  font-weight: 700;
  margin: 0;
}
@media (min-width: 550px) {
  .garanties__items {
    grid-template-columns: repeat(2, calc(50% - 2rem));
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1000px) {
  .garanties::before  {
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .garanties__items {
    grid-template-columns: repeat(4, calc(25% - 1.5rem));
  }
}

/**
 * Offers
 */

.offers {
  background: linear-gradient(210deg, #64C1C8 1.7%, #00699F 77.63%);
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
  color: var(--color-primary-white);
}
.offers::before  {
  content: "";
  position: absolute;
  display: block;
  top: -25px;
  left: -25px;
  width: 375px;
  height: 360px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/filigrane.svg);
  mix-blend-mode: saturation;
}
.offers__title,
.offers__text {
  text-align: center;
}
.offers__text p {
  margin: 0;
  font-weight: 700;
  font-size: var(--paragraph-large-body);
}
.offers__text-price {
  margin-top: 2rem;
}
.offers__text-price p {
  font-size: 3rem;
  color: var(--color-secondary-yellow);
  letter-spacing: 0.2rem;
}
.offers__text-price span {
  font-size: 1.2rem;
  margin-left: 0.2rem;
  letter-spacing: normal;
}
.offers__text-price .offers__text-price-subtitle {
  color: var(--color-primary-white);
  font-size: 1rem;
  letter-spacing: normal;
}
.offers__text h2 {
  margin: 0 0 0.5rem;
}
.offers__cta {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 0;
}
.offers__items {
  position: relative;
  display: grid;
  gap: 1rem;
}
.offers__item {
  background-color: var(--color-primary-white);
  color: var(--color-primary-grey);
}
.offers__item-content {
  padding: 1rem;
}
.offers__item-content p{
  font-size: var(--paragraph-large-body);
  text-align: left;
}
.offers__item-content-highlight {
  color: var(--color-secondary-blue);
}
p.offers__item-content-title {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-secondary-blue);
  color: var(--color-primary-white);
  border-radius: 30px;
  margin: 0;
  font-family: "Asap";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 28px;
}
.offers__item-image img {
  margin: 0 auto;
}
@media (min-width: 750px) {
  .offers__item {
    display: flex;
    align-items: center;
  }
  .offers__item-content {
    padding: 2.5rem 2rem;
    flex: 1;
    height: 100%;
  }
  .offers__item-image {
    max-width: 382px;
  }
  .offers__title {
    margin-top: 1rem;
  }
}
@media (min-width: 1000px) {
  .offers::before  {
    top: -100px;
    left: -100px;
    width: 1366px;
    height: 1312px;
  }
}

/**
 * How It Work
 */

.how-it-work__items--desktop {
  display: none;
}
.how-it-work__text {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.how-it-work__text h2{
  color: var(--color-secondary-blue);
}
.how-it-work__text p {
  font-size: var(--paragraph-large-body);
  color: var(--color-primary-grey);
}
.how-it-work__image {
  margin-top: -6rem;
  z-index: -1;
  position: relative;
}
.how-it-work__image img{
  margin-left: auto;
}
.how-it-work__cta {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 0;
}
.how-it-work__items {
  margin: 2.5rem 0;
}
.how-it-work__items .tns-nav {
  position: relative;
  bottom: -12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 1.5rem;
  z-index: 1;
}
.how-it-work__items .tns-nav button {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 0;
  background-color: var(--color-secondary-blue);
}
.how-it-work__items .tns-nav button.tns-nav-active {
  width: 30px;
  height: 30px;
  background-color: var(--color-secondary-yellow);
}
.how-it-work__item {
  padding: 0 0.5rem 0.5rem;
}
.how-it-work__item-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 80.95%; 
}
.how-it-work__item-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.how-it-work__item-video-description {
  background-color: var(--color-secondary-blue);
  color: var(--color-primary-white);
  text-align: center;
  padding: 0.5rem 1rem;
}
.how-it-work__item-video-description p {
  margin: 0;
  font-weight: 700;
}
.how-it-work__item-number,
.how-it-work__item .how-it-work__item-title p {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  margin: 0 auto;
  font-family: "Asap";
  font-size: 37px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 10px;
  color: var(--color-primary-white);
  background: linear-gradient(212deg, #FFF164 -13.13%, #F6A43D 91.01%);
}
.how-it-work__item .how-it-work__item-title {
  display: flex;
  margin-bottom: 6rem;
  flex-direction: column;
  justify-content: center;
  height: 7rem;
}
.how-it-work__item-text {
  text-align: center;
  margin-bottom: 2rem;
}
.how-it-work__item-text h3{
  color: var(--color-secondary-blue);
  margin: 0.75rem 0;
}
.how-it-work__item-text p{
  margin: 0;
  color: var(--color-primary-grey);
}
@media (min-width: 500px) {
  .how-it-work__item-video {
    padding-top: 56.25%;
  }
}
@media (min-width: 800px) {
  .how-it-work__items--mobile {
    display: none;
  }
  .how-it-work__items--desktop {
    display: grid;
    gap: 2rem;
    position: relative;
  }
  .how-it-work__image {
    margin-top: 0;
  }
  .how-it-work__wrapper {
    width: 50%;
    display: grid;
    gap: 2rem;
  }
  .how-it-work__item {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 1rem));
    gap: 2rem;
    align-items: center;
  }
  .how-it-work__item--alt {
    display: grid;
    grid-template-columns: initial;
    gap: 0.5rem;
  }
  .how-it-work__item--alt .how-it-work__item-text {
    margin-bottom: 0;
  }
  .how-it-work__item-text-wrapper {
    margin: 0 auto;
    max-width: 450px;
  }
  .how-it-work__cta {
    margin: 0;
  }
  .how-it-work__cta .cta {
    font-size: 1.25rem;
  }
  .how-it-work__image {
    margin-top: -571px;
  }
  .how-it-work__image img {
    max-width: 500px;
  }
}
@media (min-width: 1000px) {
  .how-it-work__items--desktop {
    gap: 5rem;
  }
  .how-it-work__items--desktop::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 70px;
    width: 918.973px;
    height: 841.501px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/how-it-work/shape-bg.svg");
    z-index: -1;
  }
  .how-it-work__image {
    margin-top: -699px;
  }
  .how-it-work__image img {
    max-width: initial;
  }
}
@media (min-width: 1100px) {
  .how-it-work__items--desktop::before {
    width: 1025px;
    height: 950px;
  }
}
@media (min-width: 1200px) {
  .how-it-work__items--desktop::before {
    width: 1050px;
    height: 975px;
  }
}
.how-it-work__item-image{border: 1px solid #cccccc;}