/**
* 2007-2023 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2023 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/


/* HOME CONTENT BLOCK MODULE */

.ourproducts {
  background: #F3F3F4;
}

.ourproducts .header-subtitle {
  color: #D14291;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: .2rem;
}
.ourproducts .header-title {
  color: #000000;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
}

.home-content-container {
  display: flex;
}
.content-block .btn {
  margin-bottom: .4rem;
}

.image-block {
  border-radius: 8rem 0 0 0;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.iframe-block {
  flex: 1;
  padding: 0;
}
.iframe-block iframe {
  width: 100%;
  height: 100%;
}
.content-block {
  flex: 1;
  padding: 6rem 3rem;
}
.content-block .inner-block {
  max-width: 40rem;
  text-align: center;
  margin: 0 auto;
}
.content-block p {
  margin-bottom: 1.2rem;
}
.content-block h2 {
  margin-bottom: 1.5rem;
}

@media (max-width:1000px) {
  .content-block {
    padding: 4rem 2rem;
  }
}

@media (max-width:767px) {
  .home-content-container  {
    display: block;
  }
  .image-block, .iframe-block, .iframe-block iframe {
    min-height: 80vw;
  }
  .iframe-block {
    padding: 0;
  }
  .content-block {
    padding: 3rem 2rem;
  }
  .home-content-container a {
    font-size: .8rem;
    padding: .4rem .8rem !important;
  }
}