﻿/*------------------------------------*\
    
    Full-Width Image + Text Block Customizations - Global Styling

    The styles you add to this file will be applied to the 'Full-Width Image + Text' block. 
    If there is any reasons why you would need to style this separately,
    please create a block-specific stylesheet for it (don't forget to register that block-specific stylesheet in acf-starter-blocks.php)

\*------------------------------------*/

.full-width-image-text {
    position: relative;
}

.full-width-image-text__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.full-width-image-text__bg img {
    object-position: 100% 50%;
}

.full-width-image-text__wrap {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(to bottom,  rgba(76,0,95,0.9) 0%,rgba(37,84,162,0.9) 100%);
    color: #fff;
}

.full-width-image-text__wrap a:not(.btn) {
    color: #F58220;
}

.full-width-image-text--inner .full-width-image-text__wrap {
    background: linear-gradient(to bottom,  rgba(76,0,95,0.8) 0%,rgba(37,84,162,0.8) 100%);
    padding-bottom: 85px;
    padding-top: 70px;
}

.full-width-image-text__wrap h2:not([class*="heading"]),
.full-width-image-text__wrap h3:not([class*="heading"]) {
    color: #fff;
}

.text-card {
    background: rgba(255,255,255,0.16);
    border: 1px solid #fff;
    border-radius: 5px;
    max-width: 330px;
    margin: 0 auto 35px;
    text-align: center;
    cursor: pointer;
}

.text-card__info {
    width: 100%;
    height: 146px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 54px;
}

.text-card__info h3 {
    padding: 0;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.text-card__links a {
    background: #FFFFFF;
    border-radius: 0 0 5px 5px;
    padding: 13px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #972AB2;
    border: none;
    font-family: 'Montserrat', sans-serif;
    display: block;
    width: 100%;
}

.text-card__links a i {
    font-size: 20px;
    vertical-align: middle;
    padding: 0 0 3px 10px;
}

.full-width-image-text .bottom-curve svg {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
}

.full-width-image-text .btn-primary {
    color: var(--c-white);
}

@media (min-width: 768px) {

    .full-width-image-text__wrap {
        padding: 60px 0 70px;
    }
    
    .text-card {
        max-width: 432px;
    }
    
    .text-card__info {
        height: 146px;
        padding: 0 30px;
    }

    .full-width-image-text--inner .full-width-image-text__wrap {
        padding-bottom: 130px;
        padding-top: 100px;
    }
   
}

@media (min-width: 1200px) {

    .full-width-image-text__bg img {
        object-position: center;
    }

    .full-width-image-text__wrap {
        padding: 120px 0 220px;
    }
    
    .text-card {
        max-width: 100%;
        margin: 0 auto 0;
    }

    .text-card__info {
        height: 240px;
        padding: 0 30px;
    }

    .text-card__info h3 {
        font-size: 25px;
    }

    .text-card:hover .text-card__links a {
        background: #972AB2;
        color: #FFFFFF;
    }

    .text-card:hover {
        background: rgba(255,255,255,0.25);
    }

    .full-width-image-text--inner .full-width-image-text__wrap {
        padding-bottom: 150px;
        padding-top: 125px;
    }

    .full-width-image-text .btn-primary:hover {
        color: var(--c-white);
    }

}

@media (min-width: 1366px) {
    .full-width-image-text__wrap {
        padding: 120px 0 240px;
    }

    .full-width-image-text--inner .full-width-image-text__wrap {
        padding-bottom: 170px;
        padding-top: 125px;
    }

}
.full-width-image-text__content ul li .icon {
    position: absolute;
    left: 0;
}














