/*
Theme Name: Sushikiriz
Theme URI: https://bravad.ca
Author: Sébastien Gagné / Carl Spooner
Author URI: https://bravad.ca
Description: Wordpress bravad theme (Sushikiriz)
Version: 2.4.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bravad
*/

/* BLOCK TESTIMONIALS */
.testimony-container{
    align-items: center;
    background: #fff;
    display: flex;
    gap: 2rem;
    justify-content: center;
    position: relative;
}
.testimony-left{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.testimony-left img{
    border: 2px solid #003DA5;
    border-radius: 50%;
    height: 200px;
    margin: 4rem 4rem 2rem;
    max-width: inherit;
    object-fit: cover;
    width: 200px;
}
.testimony-left h3{
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}
.testimony-line{
    background: #003DA5;
    height: 2px;
    width: 50%;
}
.testimony-left p{
    margin: 1rem 0 5rem;
}
.testimony-right{
    height: 100%;
    padding: 2rem;
}
.testimony-text p{
    quotes: "«" "»" "‹" "›";
    text-align: center;
}
.testimony-text p::before {
    content: open-quote;
}
.testimony-text p::after {
    content: close-quote;
}
.swiper-pagination-testimonials .swiper-pagination-bullet{
    background: rgba(0, 0, 0, 0.2);
    color: #000;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    opacity: 1;
    text-align: center;
    width: 20px;
}
.swiper-pagination-testimonials .swiper-pagination-bullet-active{
    background: #003DA5;
    color: #fff;
}
.swiper-pagination-testimonials{
    margin: 10px 0;
}

@media screen and (max-width: 768px) {
    .testimony-container{
        flex-direction: column;
    }
    .testimony-left{
        width: 100%;
    }
    .testimony-left img{
        height: 200px;
        width: 200px;
    }
    .testimony-left h3{
        font-size: 1.8rem;
    }
    .testimony-left p{
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    .testimony-right{
        padding: 1rem;
    }
    .quote-out{
        margin-bottom: 5rem;
    }
}

/* BLOCK VIDEOS */
.videos{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}
.video{
    height: auto;
}
.video-container{
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    position: relative;
    width: 100%;
}
.video-player{
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.v-100{
    width: 100%;
}
.v-50{
    width: 49%;
}
.v-33{
    width: 32%;
}
@media (max-width: 1200px) {
    .v-50{
        width: 48%;
    }
    .v-33{
        width: 31%;
    }
}
@media (max-width: 768px) {
    .v-50{
        width: 100%;
    }
    .v-33{
        width: 100%;
    }
}

/* BLOCK TEXT-COLUMNS */
.text-column li{
    margin: 10px 0;
}

/* BLOCK JOBS */
.job-header{
    align-items: center;

    background: #fff;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.job:not(:last-child) .job-header{
    border-bottom: 1px solid #ff784d;
}
.job-header:hover, .job-header:active, .job-header:focus{
    background: #ff784d;
    cursor: pointer;
    text-decoration: none;
}
.job-header:hover h3, .job-header:active h3, .job-header:focus h3{
    color: #fff;
}
.job-header:hover .job-arrow, .job-header:active .job-arrow, .job-header:focus .job-arrow{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23ffffff;%7D%0A%3C/style%3E%3Cpath class='st0' d='M24,8c0,0.4-0.2,0.7-0.5,0.9l-10.8,8c-0.4,0.3-0.9,0.3-1.3,0L0.5,9C0,8.6-0.1,7.9,0.2,7.4 c0.4-0.5,1.1-0.6,1.6-0.3L12,14.5l10.2-7.4c0.5-0.4,1.2-0.3,1.6,0.3C23.9,7.6,24,7.8,24,8L24,8z'/%3E%3C/svg%3E");
}
.job-header h3{
    color: #4e5354;
    font-size: 3rem;
    margin: 2rem;
    transition: all 0.3s ease;
}
.job-arrow{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23ff784d;%7D%0A%3C/style%3E%3Cpath class='st0' d='M24,8c0,0.4-0.2,0.7-0.5,0.9l-10.8,8c-0.4,0.3-0.9,0.3-1.3,0L0.5,9C0,8.6-0.1,7.9,0.2,7.4 c0.4-0.5,1.1-0.6,1.6-0.3L12,14.5l10.2-7.4c0.5-0.4,1.2-0.3,1.6,0.3C23.9,7.6,24,7.8,24,8L24,8z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    height: 2rem;
    margin: 2rem;
    transition: all 0.3s ease;
    width: 2rem;
}
.job a[aria-expanded="true"]{
    background: #ff784d;
}
.job a[aria-expanded="true"] h3{
    color: #fff;
}
.job a[aria-expanded="true"] .job-arrow{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23ffffff;%7D%0A%3C/style%3E%3Cpath class='st0' d='M24,8c0,0.4-0.2,0.7-0.5,0.9l-10.8,8c-0.4,0.3-0.9,0.3-1.3,0L0.5,9C0,8.6-0.1,7.9,0.2,7.4 c0.4-0.5,1.1-0.6,1.6-0.3L12,14.5l10.2-7.4c0.5-0.4,1.2-0.3,1.6,0.3C23.9,7.6,24,7.8,24,8L24,8z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}
.job-body{
    background: #fff;
    border: 1px solid #ff784d;
    padding: 2rem;
    padding-bottom: 6rem;
    position: relative;
}
.btn-apply{
    bottom: 2rem;
    position: absolute!important;
    right: 2rem;
}
.bg-black .job-text{
    color: #000;
}
@media screen and (max-width: 768px){
    .job-header h3{
        font-size: 2.2rem;
    }
}
html{
    scroll-behavior: smooth;
}
.block-text{
    position: relative;
    overflow: visible;
}
.n-pattern{
    position: absolute;
    top: 50%;
    right: 15%;
    max-width: 50%;
    width: auto;
    height: 120%;
    transform: translate(0, -50%);
}
.block-testimonials .n-pattern{
    height: 100%;
}
.site{
    background-color: #fff;
}
.bg-lighter{
    background-color: #f7f7f7!important;
}
html, body{
    font-family: "gotham", sans-serif;
    font-style: normal;
    color: #000;
}
.text-dark{
    color: #000!important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-weight: 400;
}

.btn-primary{
    background-color: #003DA5;
    border-color: #003DA5;
    border-radius: 0;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
#place_order:hover, #place_order:not(:disabled):not(.disabled).is-active, #place_order:not(:disabled):not(.disabled):active, .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).is-active, .btn-primary:not(:disabled):not(.disabled):active, .button.single_add_to_cart_button:hover, .button.single_add_to_cart_button:not(:disabled):not(.disabled).is-active, .button.single_add_to_cart_button:not(:disabled):not(.disabled):active, .wc-proceed-to-checkout .checkout-button:hover, .wc-proceed-to-checkout .checkout-button:not(:disabled):not(.disabled).is-active, .wc-proceed-to-checkout .checkout-button:not(:disabled):not(.disabled):active{
    background-color: #03307E;
    border-color: #03307E;
}
.btn-primary:hover::before, .btn-primary:focus::before, .btn-primary:active::before{
    background: none;
}

.form-control.is-invalid, .is-invalid.input-text, .is-invalid.select, .number .was-validated input:invalid, .number input.is-invalid, .was-validated .form-control:invalid, .was-validated .input-text:invalid, .was-validated .number input:invalid, .was-validated .select:invalid{
    border-color: #DC1C2E;
}
.invalid-feedback{
    color: #DC1C2E;
}
.form-control.is-invalid:focus, .is-invalid.input-text:focus, .is-invalid.select:focus, .number .was-validated input:invalid:focus, .number input.is-invalid:focus, .was-validated .form-control:invalid:focus, .was-validated .input-text:invalid:focus, .was-validated .number input:invalid:focus, .was-validated .select:invalid:focus{
    border-color: #DC1C2E;
}
.form-control.is-valid, .is-valid.input-text, .is-valid.select, .number .was-validated input:valid, .number input.is-valid, .was-validated .form-control:valid, .was-validated .input-text:valid, .was-validated .number input:valid, .was-validated .select:valid{
    border-color: #003DA5;
}
.form-control.is-valid:focus, .is-valid.input-text:focus, .is-valid.select:focus, .number .was-validated input:valid:focus, .number input.is-valid:focus, .was-validated .form-control:valid:focus, .was-validated .input-text:valid:focus, .was-validated .number input:valid:focus, .was-validated .select:valid:focus{
    border-color: #003DA5;
}
.alert:before, .ft-confirmation:before, .woocommerce-NoticeGroup:before, .woocommerce-form-coupon-toggle>div:before, .woocommerce-notices-wrapper>div:before{
    background-color: #003DA5;
    color: #fff;
    content: "✔";
    display: flex;
    justify-content: center;
    align-items: center;
}
.alert:after, .ft-confirmation:after, .woocommerce-NoticeGroup:after, .woocommerce-form-coupon-toggle>div:after, .woocommerce-notices-wrapper>div:after{
    background-color: #003DA5;
}
.alert, .ft-confirmation, .woocommerce-NoticeGroup, .woocommerce-form-coupon-toggle>div, .woocommerce-notices-wrapper>div{
    color: #fff;
}
.alert-success{
    background: #003DA5;
}

.page-footer{
    background-color: #fff;
    background-image: none;
    color: #000;
}
.page-footer .widget-title{
    color: #000;
    font-weight: 700;
    font-size: 24px;
}
header{
    display: none;
}
.social-medias a{
    color: #000;
    fill: #000;
}
.social-medias a:hover{
    color: #003DA5;
    fill: #003DA5;
}
.site-footer, .site-footer:before{
    background-color: #003DA5;
    color: #fff;
}
.site-footer a{
    color: #fff;
    text-decoration: underline;
}
.hero-caption{
    max-width: 75%;
}
@media(min-width: 768px){
    .hero-caption{
        max-width: 50%;
    }
}

.block-text p a{
    color: #003DA5;
    text-decoration: none;
}
.block-text p a:hover{
    color: #03307E;
    text-decoration: underline;
}