/* =======================================================================
 * CONFIG
 * -----------------------------------------------------------------------
 * File used to import custom and vendors variables
 * ===================================================================== */
/* =======================================================================
 * BREAKPOINTS
 * -----------------------------------------------------------------------
 * Breakpoints are used for responsive design. You can define here
 * the breakpoints required for the design.
 * ===================================================================== */
/* =======================================================================
 * COLORS VARIABLES
 * -----------------------------------------------------------------------
 * Define all the colors used in the website. You can use
 * http://chir.ag/projects/name-that-color/ to generate human readable
 * names for each color.
 * ===================================================================== */
/* =======================================================================
 * BASE VARIABLES
 * -----------------------------------------------------------------------
 *
 * ===================================================================== */
/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors configurations files for them to be automatically
 * loaded into the app.config file
 * ===================================================================== */
/* =======================================================================
 * MIXINS
 * -----------------------------------------------------------------------
 * File used to import custom and vendors mixins
 * ===================================================================== */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@-webkit-keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@-webkit-keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@-webkit-keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@-webkit-keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@-webkit-keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@-webkit-keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@-webkit-keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@-webkit-keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@-webkit-keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@-webkit-keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

@keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors mixins files for them to be automatically
 * loaded into the app.mixins file
 * ===================================================================== */
.hero-banner {
    height: 460px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-banner.no-gradient .gradient {
    display: none;
}

.hero-banner.hero-banner-small-title .centered-content .wrapper h1 {
    font-size: 60px;
    line-height: 65px;
}

.hero-banner.img-bottom-aligned .hero-bg {
    background-position: bottom center;
}

.hero-banner.with-subtitle {
    height: 500px;
}

.hero-banner.with-subtitle .centered-content .wrapper h1 {
    font-size: 60px;
    line-height: 65px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-banner.with-subtitle .centered-content .wrapper h1 span {
    font-family: 'Domine', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    line-height: 50px;
    text-transform: none;
    display: block;
}

.hero-banner.with-subtitle .centered-content .wrapper .offer-subtitle {
    font-family: 'Domine', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.hero-banner .hero-bg, .hero-banner .video-ctn {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    background-size: cover;
    background-position: center;
}

.hero-banner video.hero-bg {
    height: auto;
}

.hero-banner .gradient {
    background: linear-gradient(92.46deg, #1D1D1B 0%, transparent 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 2;
}

.hero-banner .centered-content {
    position: relative;
    height: 100%;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
}

.hero-banner .centered-content .wrapper {
    padding: 200px 0 50px;
    width: 100%;
}

.hero-banner .centered-content .wrapper h1 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 42.68775%;
    float: left;
    margin-right: 3.16206%;
    float: none;
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    font-size: 80px;
    line-height: 85px;
    color: #FFFFFF;
    margin-bottom: 9px;
}

.hero-banner .centered-content .wrapper > a, .hero-banner .centered-content .wrapper > span {
    margin-right: 20px;
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
}

.hero-banner .centered-content .wrapper > a span.text, .hero-banner .centered-content .wrapper > span span.text {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hero-banner .centered-content .wrapper > a.direction .icon, .hero-banner .centered-content .wrapper > span.direction .icon {
    display: inline-block;
    width: 15px;
    height: 21px;
    top: 6px;
}

.hero-banner .centered-content .wrapper > a.direction .icon svg, .hero-banner .centered-content .wrapper > span.direction .icon svg {
    width: 100%;
    height: 100%;
}

.hero-banner .centered-content .wrapper > a.direction .text, .hero-banner .centered-content .wrapper > span.direction .text {
    padding-bottom: 2px;
    border-bottom: 1px solid #FFFFFF;
}

.hero-banner .centered-content .wrapper > a.phone .icon, .hero-banner .centered-content .wrapper > span.phone .icon {
    top: 3px;
}

.hero-banner .centered-content .wrapper > a .icon, .hero-banner .centered-content .wrapper > span .icon {
    position: relative;
    top: 2px;
    margin-right: 4px;
}

.hero-banner .centered-content .wrapper > a .icon svg, .hero-banner .centered-content .wrapper > span .icon svg {
    opacity: 1;
}

.hero-banner .centered-content .wrapper > a.social-icons, .hero-banner .centered-content .wrapper > span.social-icons {
    margin-right: 5px;
    position: relative;
    top: 3px;
}

.hero-banner .centered-content .wrapper > a.social-icons a, .hero-banner .centered-content .wrapper > span.social-icons a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 30px;
    height: 30px;
}

.hero-banner .centered-content .wrapper > a.social-icons a svg *, .hero-banner .centered-content .wrapper > span.social-icons a svg * {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
    fill: #FFFFFF;
}

@media (min-width: 0) and (max-width: 1439px) {
    .hero-banner .centered-content .wrapper h1 {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 65.75342%;
        float: left;
        margin-right: 2.73973%;
        float: none;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    .hero-banner {
        height: 330px;
    }
    .hero-banner.with-subtitle .centered-content .wrapper h1 span {
        font-size: 40px;
        line-height: 45px;
    }
    .hero-banner .centered-content .wrapper h1 {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        float: none;
    }
}

@media (min-width: 0) and (max-width: 959px) {
    .hero-banner.with-subtitle {
        height: 400px;
    }
    .hero-banner .centered-content .wrapper {
        padding: 50px 0;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .hero-banner .hero-bg {
        min-height: 100%;
        max-height: 100%;
        max-width: none;
        display: block;
    }
    .hero-banner.with-subtitle {
        height: 400px;
    }
    .hero-banner.with-subtitle .centered-content .wrapper h1 {
        font-size: 40px;
        line-height: 45px;
        max-width: 320px;
    }
    .hero-banner.with-subtitle .centered-content .wrapper h1 span {
        font-size: 16px;
        line-height: 20px;
    }
    .hero-banner.with-subtitle .centered-content .wrapper .offer-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .hero-banner.with-subtitle .centered-content .wrapper .categories-with-check {
        clear: both;
    }
    .hero-banner.hero-banner-small-title .centered-content .wrapper h1 {
        font-size: 40px;
        line-height: 45px;
    }
    .hero-banner .centered-content .wrapper h1 {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 18px;
    }
    .hero-banner .centered-content .wrapper .documents {
        width: 100%;
        text-align: center;
    }
}

/*# sourceMappingURL=hero-banner.css.map */
