/*
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 #ff784d;
    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: #ff784d;
    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: #ff784d;
    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;
}

/* CPA */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --cyan: #00A0D2;
    --vert: #00A650;
    --mauve: #5C2D91;
    --violet: #4A449E;
    --jaune: #FFDD00;
    --lime: #66BC31;
    --noir: #000;
    --blanc: #FFF;
}
.site-header{
    background: var(--noir);
    color: var(--blanc);
    display: none;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'gotham', sans-serif;
    font-weight: medium;
}
body, html{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--noir);
}
.btn-primary{
    background: var(--cyan);
    border: none;
    color: var(--blanc);
    font-weight: 700;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;

}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus{
    background: #414042;
    color: var(--blanc);
}
.btn-primary:hover::before{
    opacity: 0;
}
.bg-c-cyan{
    background: var(--cyan);
}
.bg-c-cyan .btn-primary{
    background: var(--vert);
}
.bg-c-cyan .btn-primary:hover, .bg-c-cyan .btn-primary:active, .bg-c-cyan .btn-primary:focus{
    background: #414042;
}

.fix-pt{
    padding-top: 4rem!important;
}
.hero{
        padding: 8rem 0;
    }
@media(min-width: 768px){
    .fix-pt{
        padding-top: 6rem!important;
    }
    .hero{
        padding: 12rem 0;
    }
}
@media(min-width: 992px){
    .fix-pt{
        padding-top: 8rem!important;
    }
    .hero{
        padding: 16rem 0;
    }
}
@media(min-width: 1200px){
    .fix-pt{
        padding-top: 10rem!important;
    }
}

.feature-item{
    border-radius: 0;
    background: var(--vert);
    color: var(--blanc);
}
.feature-item .icon{
    display: none;
}
.feature-item h3{
    font-weight: 700;
    font-size: 32px;
}

.invalid-feedback{
    color: #dc3545;
}
.form-control.is-invalid, .was-validated .form-control:invalid{
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid:focus{
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.25);
}
.form-control.is-valid{
    border-color: var(--vert);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2300A650' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}
.form-control, .form-control:focus{
    background: transparent;
    color: var(--blanc);
    font-weight: 700;
}
.ui-datepicker-header, .ui-datepicker-calendar thead th{
    background: var(--cyan);
}
.ui-datepicker-calendar td a:hover{
    background: var(--cyan);
}

.block-text-image .image img{
    margin-top: 4rem;
}
.ft-field--submit input{
    max-width: 100%;
    white-space: pre-wrap;
}
.ft-field--select select option{
    color: var(--noir);
}