/************************************

   Image Text Block

************************************/

.c-image-text {
    display: flex;
}

.c-image-text__image {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}

.c-image-text__text {
    width: 50%;
    background-color: #f1f1f1;
    padding: 115px 3% 115px 5%;
}

.c-image-text__text__title h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: normal;
	color: #01153b !important;
}
   
.c-image-text__text__text {
    font-size: 16px;
    color: #01153b;
    line-height: 2.1;
    letter-spacing: normal;
    color: #000000;
}

@media (max-width: 1680px) {
    .c-image-text__text {
        padding: 110px 5%;
    }
}

@media (max-width: 1200px) {
    .c-image-text__text {
        padding: 90px 5%;
    }
}

@media (max-width: 768px) {
    .c-image-text {
        flex-wrap: wrap;
    }
    .c-image-text__image {
        width: 100%;
        height: 279px;
    }
    .c-image-text__text {
        width: 100%;
        padding: 55px 5% 60px 5%;
    }
    .c-image-text__text__title h2 {
        font-family: Raleway;
        font-size: 21px;
        color: #01153b;
        text-align: center;
    }
    .c-image-text__text__text {
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2.1;
        letter-spacing: normal;
        text-align: center;
    }
}

.c-image-text__button-1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.2px;
    text-align: center;
    color: #fff !important;
    background-color: #83c450;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 25px;
    padding-right: 25px;
    transition: .2s;
    border-radius: 27px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 10px;
}

.c-image-text__button-1:hover {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(131,196,80,1);
    -moz-box-shadow: 0px 0px 7px 0px rgba(131,196,80,1);
    box-shadow: 0px 0px 7px 0px rgba(131,196,80,1);
    transition: .2s;
    color: #fff !important;

}

.c-image-text__button-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.2px;
    text-align: center;
    color: #021534 !important;
    background-color: #fff0;
    border: solid 2px #021534;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 25px;
    padding-right: 25px;
    transition: .2s;
    border-radius: 27px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.c-image-text__button-2:hover {
    background-color: #021534;
    transition: .2s;
    color: #fff !important;

}

@media (max-width: 768px) {
    .c-image-text__text {
        text-align: center;
    }
}