/* Images */

.image-full-width {
    width: 100%;
}

.image-left {
    float: left;
    width: 50%;
    margin: 0px 10px 10px 0px;
}

.image-right {
    float: right;
    width: 50%;
    margin: 0px 0px 10px 10px;
}

@media only screen and (max-width:667px) {

    .image-left,
    .image-right {
        float: none;
        width: 100%;
        margin: 0px;
    }
}

/* Banner */

.banner {
    padding-top: 500px;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.banner-shape {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: url("/images/hero-shape.svg");
    background-position: top center;
    background-size: cover;
}

.banner-text {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 64px 198.69px 16px 64px;
    margin: auto;
}

.banner-text h1 {
    color: var(--second-color);
    margin: 0;
}

.banner-text p {
    color: #fff;
    font-weight: bold;
    margin: 0;
}



@media only screen and (max-width: 600px) {
    .banner {
        padding-top: 0;
    }

    .banner-image,
    .banner-shape {
        height: auto;
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .banner-text {
        text-align: center;
        padding: 32px 16px;
        background-color: var(--first-color);
    }
}

/* Cards */

.card-container {
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.card {
    display: inline-block;
    width: 22%;
    margin: 16px 1%;
}

.card img {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

@media only screen and (max-width: 900px) {
    .card {
        width: 30.33%;
    }
}

@media only screen and (max-width: 768px) {
    .card {
        width: 45%;
        margin: 16px 2%;
    }
}

@media only screen and (max-width: 480px) {
    .card {
        width: 94%;
        margin: 16px 3%;
    }
}

/* Zig Zag */

.zig-zag-container {
    padding: 32px;
    overflow: auto;
}

.zig-zag-container .row {
    max-width: 1200px;
    margin: auto;
}

.zig-zag-container .row:after {
    content: "";
    display: table;
    clear: both
}

.zig-zag-container .col-text,
.zig-zag-container .col-content {
    width: 50%;
    padding: 32px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.zig-zag-container.zig-zag-left .col-content,
.zig-zag-container.zig-zag-right .col-text {
    float: left;
}

.zig-zag-container.zig-zag-left .col-text,
.zig-zag-container.zig-zag-right .col-content {
    float: right;
}

.zig-zag-container .col-content img,
.zig-zag-container .col-text div:first-child {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: auto;
}

.zig-zag-container .col-content img {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

@media screen and (max-width: 992px) {
    .zig-zag-container {
        padding: 16px;
    }

    .zig-zag-container .col-text,
    .zig-zag-container .col-content {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}

/* Testimonial */

.testimonial-container {
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.testimonial {
    padding: 32px;
}

.testimonial i {
    font-size: 32px;
}

.testimonial i[class*="left"] {
    float: left;
    margin-right: 12px;
}

.testimonial i {
    font-size: 32px;
}

.testimonial i[class*="left"] {
    float: left;
    margin-right: 12px;
}

.testimonial i[class*="right"] {
    float: right;
    margin-left: 12px;
}

.testimonial p {
    font-style: italic;
    margin: 0;
    padding: 0 32px;
}