/**
* 2007-2021 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-2021 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.
*/
.custom-banner{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 79px;
}
.content_banner{
	display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
}
.content_banner h1{
	font-size: 60px;
    color: #fff;
    line-height: 1;
    margin: 40px 0;
    text-transform: uppercase;
}
.content_banner a,
.content_banner button{
	font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    font-weight: 500;
    border: none;
    font-family: 'Roboto', sans-serif;
    background: transparent;
    cursor: pointer;
}
.content_banner a img,
.content_banner button img,
.btn-block-video img{
	display: block;
    margin: auto;
    margin-bottom: 10px;
    max-width: 50px;
    cursor: pointer;
}

.content_banner a:hover,
.content_banner button:hover{
	text-decoration: underline;
	color: #fff;
}




.popup--show .form {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.form h2 {
  text-align: center;
}

.popup {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden auto;
  transition: 0.4s all ease;
}
.popup--show {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.popup__inner {
  width: inherit;
  height: inherit;
}
.popup__container {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.popup__content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.popup__content iframe {
	width: 100%;
    height: 600px;
    max-width: 900px;
}
.popup__close {
  text-align: right;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.popup-close {
	cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    color: #fff;
}
.popup-close:hover {
  opacity: 1;
}

.popup-active {
  overflow: hidden;
}
@media (any-hover: hover) {
  .popup-active {
    padding-right: var(--scroll-width);
  }
}

/*************************************************************************************************/
/**                                        RESPONSIVE                                            **/
/*************************************************************************************************/

/*********xs*********/
@media (max-width: 320px) {

}

@media (max-width: 991px) {

}

@media (max-width: 767px) {
    .custom-banner .container.container-fluid{
    	padding-left: 0;
    }
}


/********small********/
@media screen and (min-width: 768px) and (max-width: 991px) {
 
}

/******medium******/
@media screen and (min-width: 992px) {
 
}
@media screen and (min-width: 992px) and (max-width: 1199px) {

}


@media (min-width: 1200px){
   
}
@media screen and (min-width: 1200px) and (max-width: 1350px) {

}
@media screen and (min-width: 1351px) and (max-width: 1399px) {
 
}
@media screen and (min-width: 1500px) and (max-width: 1700px) {
 
}
@media screen and (min-width: 1920px) {
    
}




