/**
* 2007-2019 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-2019 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.
*/
.category-banner{
    position: relative;
}

.short-text{
    position: absolute;
    top: 35%;
    text-align: center;
    width: 100%;
    font-size: 20px;
    font-family: 'Gothic-semi';
    color:#fff;
}


.category-desc-background {
    background: #fcf7f1;
}
.category-desc-container {
    margin: 0 auto;
    display: table;
}
.category-desc-content {
    display: table-cell;
    vertical-align: middle;
    height: 70px;
    font-family: 'Grotesk-med';
    text-align: center;
    padding: 20px;
}
.sub-short {
    position: absolute;
    top: 59%;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-family: 'Gothic-semi';
    color: #fff;
    display: none;
}
@media (min-width: 768px) {
	.category-banner{
		display:block;
    }	
    .short-text{
        position: absolute;
        top: 35%;
        font-size: 40px;
    }
    .category-desc-content {
        padding: 20px 50px;
    }
    .short-text_sub {
        top: 25%;
    }
    .sub-short {
        top: 65%;
        display: block;
        font-size: 20px;
    }
}


@media (min-width: 992px) {
    .short-text{
        font-size: 50px;
    }
    .category-desc-content {
        padding: 20px 100px;
    }
    .sub-short {
        top: 55%;;
        font-size: 24px;
    }
}

@media (min-width: 1200px) { 
    .short-text{
        top: 40%;
        font-size: 55px;
    }
    .short-text_sub {
        top: 34%;
    }
    .sub-short {
        top: 58%;
        font-size: 24px;
    }
}