@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

  .page-title {
    display: none !important;
  }


  .container {
    max-width: 1800px;

  }


  .main-header__right {
    display: none !important;
  }

  #ec-carousel {
    display: none !important;
  }

  #breadcrumbs,
  .breadcrumbs {
    display: none !important;
  }


  main {
    font-family: "Lato", sans-serif;
    color: #fff;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section {
    margin: 20px;
    max-width: 1800px;
    width: 100%;
  }

  #hero {
    text-align: center;
    max-width: 1800px;
    display: block;
    margin: 0 auto!important;
  }

  #hero img {
    width: 100%;
    display: block;
  }

  #hero .mobile {
    display: none;
  }

  @media screen and (max-width: 600px) {
    #hero .desktop {
      display: none;
    }

    #hero .mobile {
      display: block !important;
    }
  }

  @media screen and (min-width: 940px) {
    header {
      display: none !important;
    }
  }

  .main-body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  #intro {
    margin-top: 0;
    background-color: #414042;
    color: #fff;
    font-family: "Lato", sans-serif;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 1800px;
  }

  #intro h2 {
    color: #ffffff !important;
    font-size: clamp(1.5rem, 1.2vw, 1.875rem);
    margin-bottom: 1em;
  }

  #intro button {
    background-color: #F7931E;
    color: #414042;
  }

  h3 {
    color: #5F3978;
    font-size: 1.5em;
    margin-bottom: 1em;
  }

  p {
    font-size: 1.2em;
  }

  button {
    background-color: #E04D25;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  button:hover {
    background-color: #CC4621;
    color: #FCF1E5;
  }

  #content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
  }

  .content-item {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
    /*background: linear-gradient(to right, #3A7D82, #2F3A75);*/
    color: #161616;
    border: 2px solid #FCF1E5;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .content-item img {
    width: 50%;
    border-radius: 10px 0 0 10px;
    object-fit: cover;
  }

  .content-item div {
    padding: 20px;
    width: 50%;
  }

  .reverse img {
    border-radius: 0 10px 10px 0;
  }

  .reverse div {
    border-radius: 10px 0 0 10px;
  }

  .reverse {
    flex-direction: row-reverse;
  }


  @media screen and (max-width: 786px) {
    .content-item {
      display: block;
    }

    .content-item div {
      width: 100%;
      display: block;
    }


    .content-item img {
      width: 100%;
      border-radius: 10px 10px 0 0;
      display: block;
    }

    button {
      width: 100%
    }

  }


  .hidden {
    display: none;
  }

  iframe:not(.advertisement iframe) {
    border-radius: 10px;
    margin-bottom: 10px;
  }