:root {
    --primary: #e60306;
    --secondary: #a50002;
    --whatsapp: #25d366;
    --whatsappShadow: #069223;
    --gray: #2c393e;
    --green: #1ff174;
    --blue: #1564ff;
    --red: #ff1313;
    --white: #ffffff;
    --black: #000000;
    --fullwidth: 100%;
    --fullheigh: 100%;
    --font-family-Poppins: "Poppins", sans-serif;
    --font-family-BebasNeue: "Bebas Neue", sans-serif;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    /* border: 1px solid red; */
  }
  html {
    color: var(--primary-black);
    font-size: 62.5%;
    font-family: var(--font-family-Poppins);
    font-weight: 400;
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    height: var(--fullheigh);
  }
  body {
    width: var(--fullwidth);
    max-width: 1920px;
    margin: 0 auto !important;
    float: none !important;
    display: block;
    position: relative;
    height: var(--fullheigh);
    overflow-x: hidden;
    color: var(--black);
    background: var(--white);
  }
  a,
  button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
  }
  @media only screen and (max-width: 768px) {
    a,
    button {
      cursor: default !important;
      border: none;
      outline: none;
    }
  }
  img,
  video {
    display: block;
    max-width: var(--fullwidth);
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0;
    font-weight: 700;
  }
  p {
    margin-bottom: 0px !important;
  }
  .custom_input {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
  }
  .input {
    font-family: var(--font-family-Poppins);
    font-size: 1.6rem;
    padding: 16px 10px;
    width: 100%;
    padding-left: 35px;
    outline: none;
    background: var(--gray);
    color: var(--white);
    border: none;
    border-radius: 5px;
  }
  .input::placeholder {
    color: #dddddd;
  }
  .svg_icon {
    position: absolute;
    left: 10px;
    fill: var(--white);
    width: 18px;
    height: 18px;
  }
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  .popup-title {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
  .popup-title h2 {
    font-family: var(--font-family-Poppins);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
  }
  .popup-title h2 strong {
    font-weight: 700;
    color: var(--primary);
  }
  .popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .popup-body form .custom_input {
    margin: 8px 0;
  }
  .popup-body form .form__submit {
    background: var(--whatsapp);
    box-shadow: 0px 8px 0px 0px var(--whatsappShadow);
    padding: 10px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
  .popup-body form .form__submit img {
    width: 40px;
    margin: 0 10px;
  }
  .popup-body form .form__submit p {
    font-family: var(--font-family-Poppins);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
  }
  .popup-body form .form__submit p strong {
    font-weight: 700;
  }
  .close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
  }
  .close-btn:hover {
    color: var(--primary);
  }
  .clearfix {
    float: none;
    clear: both;
  }
  main {
    background-image: url(assets/images/background.jpg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  section.desktop {
    display: none;
  }
  
  /* Header */
  #component-header .header__top {
    background: var(--primary);
    padding: 12px 14px;
  }
  #component-header .header__top .header__box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 15px;
  }
  #component-header .header__top .box__text p {
    font-family: var(--font-family-Poppins);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
  }
  #component-header .header__top .header__time {
    background: var(--secondary);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 10px;
    padding: 10px 15px;
    margin: 0 10%;
  }
  #component-header .header__top .header__time div h2 {
    font-family: var(--font-family-Poppins);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
  }
  #component-header .header__top .header__time div p {
    font-family: var(--font-family-Poppins);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
  }
  #component-header .header__top .header__time p {
    font-family: var(--font-family-Poppins);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
  }
  
  /* CTA */
  #component-cta .cta a {
    background: var(--whatsapp);
    border-top: 1px solid var(--white);
    padding: 20px 40px;
    position: fixed;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #component-cta .cta a img {
    width: 36px;
    margin: 0 10px;
  }
  #component-cta .cta a p {
    font-family: var(--font-family-Poppins);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
  }
  #component-cta .cta a p strong {
    font-weight: 700;
  }
  
  /* Main */
  #component-main .main {
    padding: 35px 25px;
  }
  #component-main .main h2 {
    font-family: var(--font-family-BebasNeue);
    font-size: 3.8rem;
    color: var(--black);
    margin-bottom: 10px;
  }
  #component-main .main p {
    font-family: var(--font-family-Poppins);
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 10px;
    border-left: 1px solid var(--primary);
    padding-left: 12px;
  }
  
  /* Video */
  #component-video .video {
    padding: 0px 25px 35px 25px;
  }
  #component-video .video video {
    border-radius: 10px;
  }
  
  /* Form */
  #component-form .form {
    padding: 0px 25px 35px 25px;
  }
  #component-form .form .form__title h2 {
    font-family: var(--font-family-Poppins);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
  }
  #component-form .form .form__title h2 strong {
    font-weight: 700;
    color: var(--primary);
  }
  #component-form .form .form__embed .custom_input {
    margin: 8px 0;
  }
  #component-form .form .form__submit {
    background: var(--whatsapp);
    box-shadow: 0px 8px 0px 0px var(--whatsappShadow);
    padding: 10px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    max-width: 450px;
  }
  #component-form .form .form__submit img {
    width: 40px;
    margin: 0 10px;
  }
  #component-form .form .form__submit p {
    font-family: var(--font-family-Poppins);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
  }
  #component-form .form .form__submit p strong {
    font-weight: 700;
  }
  
  /* Slider */
  .slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
  }
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .slides img {
    width: 100%;
  }
  .slide {
    min-width: 33.33%;
    box-sizing: border-box;
  }
  @media (min-width: 600px) {
    /* Tablet: 5 images */
    .slide {
      min-width: 20%;
    }
  }
  
  @media (min-width: 1024px) {
    /* Laptop: 8 images */
    .slide {
      min-width: 12.5%;
    }
  }
  
  @media (min-width: 1440px) {
    /* Desktop: 12 images */
    .slide {
      min-width: 8.33%;
    }
  }
  #component-sliders .sliders {
    padding: 0px 25px 25px 25px;
  }
  #component-sliders .sliders .sliders__title h2 {
    font-family: var(--font-family-Poppins);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
  }
  #component-sliders .sliders .sliders__title h2 strong {
    font-weight: 700;
  }
  
  /* Footer */
  #component-footer .footer {
    background: var(--primary);
    padding: 20px 25px 100px 25px;
  }
  #component-footer .footer p {
    font-family: var(--font-family-Poppins);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    color: var(--white);
  }
  
  /*Tablet*/
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    section.desktop {
      display: none;
    }
    #component-header .header__top {
      display: flex;
      flex-direction: row;
    }
    #component-header .header__top .header__box {
      width: 60%;
    }
    #component-header .header__top .header__time {
      width: 35%;
      margin: 0 0 0 8%;
    }
    #component-footer footer {
      padding: 30px 25px 110px 25px;
    }
  }
  /*Laptop*/
  @media only screen and (min-width: 1024px) and (max-width: 1430px) {
    #component-cta,
    section.mobile {
      display: none;
    }
    section.desktop {
      display: block;
    }
    #component-header .header__top {
      display: flex;
      flex-direction: row;
      padding: 12px 50px;
    }
    #component-header .header__top .header__box {
      width: 70%;
    }
    #component-header .header__top .header__time {
      width: 30%;
      margin: 0 0 0 5%;
    }
    main {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 30px 20px;
    }
    main .main__left {
      width: 60%;
    }
    main .main__right {
      width: 40%;
    }
    #component-main .main h2 {
      font-size: 6.5rem;
      font-weight: 500;
    }
    #component-main .main p {
      font-size: 1.5rem;
    }
    #component-form .form {
      width: 70%;
    }
    #component-video .video video {
      width: 85%;
    }
    #component-footer footer {
      padding: 30px 25px 30px 25px;
    }
    .input {
      padding: 12px 10px;
      padding-left: 35px;
    }
  }
  /*Desktop*/
  @media only screen and (min-width: 1440px) {
    #component-cta,
    section.mobile {
      display: none;
    }
    section.desktop {
      display: block;
    }
    #component-header .header__top {
      display: flex;
      flex-direction: row;
      padding: 12px 120px;
    }
    #component-header .header__top .header__box {
      width: 60%;
      margin-bottom: 0;
    }
    #component-header .header__top .header__time {
      width: 30%;
      margin: 0 0 0 1%;
    }
    main {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 30px 60px;
    }
    main .main__left {
      width: 60%;
    }
    main .main__right {
      width: 40%;
    }
    #component-main .main h2 {
      font-size: 8rem;
      font-weight: 500;
    }
    #component-main .main p {
      font-size: 1.8rem;
    }
    #component-form .form {
      width: 70%;
    }
    #component-video .video video {
      width: 85%;
    }
    #component-footer .footer {
      padding: 30px 25px 30px 25px;
    }
  }
  