a {
    font-weight: 700;
}

.bg--light-blue {
    background-color: var(--bg--light-blue);
}

.bg--white {
    background-color: var(--bg--white);
}

.bg--blue {
    background-color: var(--bg--blue);
}

.bg--red {
    background-color: #91232b;
}

.bg--light-gray {
    background-color: #f8f8f8;
}

.border-radius {
    border-radius: 4px;
}

.text-center {
    text-align: center;
}

section.bg--white + section.bg--white {
    padding-top: 0;
}

section.bg--light-blue + section.bg--light-blue {
    padding-top: 0;
}

@media (max-width: 600px) {
    .text-left--mobile {
        text-align: left;
    }
}

.box-shadow {
    box-shadow: var(--box-shadow);
}

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.page-template-template-flexible-content h3 {
    color: var(--font-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

.page-template-template-flexible-content h2 {
    font-size: 30px !important;
    font-weight: 900;
    line-height: 1.2 !important;
    color: var(--head-font-color);
}

.hide-mobile {
    display: none !important;
}

.hide-small-screen {
    display: none !important;
}

@media (max-width: 1199px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

@media (min-width: 600px) {
    .page-template-template-flexible-content h2 {
        font-size: 48px !important;
    }

    .hide-desktop {
        display: none !important;
    }

    .hide-mobile {
        display: flex !important;
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .hide-small-screen {
        display: block !important;
    }

    .hide-big-screen {
        display: none !important;
    }
}

/* btns */

.btn {
    padding: 10px 40px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    font-size: 12px;
    transition: all ease-in-out 0.5s;
}

.btn:hover {
    color: #fff;
    opacity: 0.8;
}

@media (min-width: 400px) {
    .btn {
        font-size: 16px;
    }
}

.btn-white {
    color: var(--secondary-color);
    background-color: #fff;
}

.btn-white:hover {
    color: var(--secondary-color);
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
}

.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
}

.btn-call:before {
    content: "";
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg id='call_24dp' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath id='Path_144451' data-name='Path 144451' d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath id='Path_144452' data-name='Path 144452' d='M19.23,15.26l-2.54-.29a1.991,1.991,0,0,0-1.64.57l-1.84,1.84a15.045,15.045,0,0,1-6.59-6.59L8.47,8.94A1.991,1.991,0,0,0,9.04,7.3L8.75,4.78A2,2,0,0,0,6.76,3.01H5.03a1.985,1.985,0,0,0-2,2.07A16.992,16.992,0,0,0,18.92,20.97a1.985,1.985,0,0,0,2.07-2V17.24A1.982,1.982,0,0,0,19.23,15.26Z' fill='%23a51d2d'/%3E%3C/svg%3E%0A");
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
    top: 4px;
    margin-right: 4px;
}

/* Grid */

.container {
    overflow: visible !important;
    width: 100% !important;
}

@media (min-width: 1200px) {
    .container {
        width: 1170px !important;
    }
}

@media (min-width: 1300px) {
    .container {
        width: 1300px !important;
    }
}

/* Font Classes */

.font-bold {
    font-weight: 700;
}
