/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
}
body button, input, textarea {
    font-family: 'Poppins', sans-serif;
}

body h1, body h2, body h3, body h4, body h5, body h6, .title {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
}

body h1 {
    font-size: 80px;
    font-weight: 300;
}

body p {
    margin: 0;
    padding: 0;
}

.fatherOfAll > *:not(svg) {
    padding: 6em 0;
}

@media (min-width: 1350px) {
    .fatherOfAll > * {
        width: 100%;
    }
    .fatherOfAll > * > * {
        max-width: 1200px;
        width: 100%;
    }
}

@media (max-width: 1349px) {
    .fatherOfAll > * {
        width: 100%;
    }
    .fatherOfAll > * > * {
        width: 80%;
    }
}

.fatherOfAll h1, .fatherOfAll h2, .fatherOfAll h3, .fatherOfAll h4, .fatherOfAll h5, .fatherOfAll h6 {
    font-size: 50px;
}

@media (max-width: 767px) {
    .fatherOfAll h1, .fatherOfAll h2, .fatherOfAll h3, .fatherOfAll h4, .fatherOfAll h5, .fatherOfAll h6 {
        font-size: 40px;
    }
}

.fatherOfAll p {
    font-size: 20px;
}

.fatherOfAll .btn {
    font-size: 20px;
}

.widthAll {
    width: 100%;
    max-width: unset;
}

.widthAuto {
    width: auto;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.default {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.defaultRow {
    flex-direction: row;
    flex-wrap: wrap;
}

.justify-content-flex-start {
    justify-content: flex-start;
}

.centerText {
    text-align: center;
}

.leftText {
    text-align: left;
}

.centerMargin {
    margin: 0 auto;
}

.paddingChilds > * {
    padding: 10px 0;
}

.notListUl {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.bold {
    font-weight: bold;
}

button, .btn {
    display: inline-flex;
    position: relative;
    padding: 1em 2em;
    text-decoration: none;
    color: white;
    z-index: 0;
    background-color: transparent;
    border: 2px solid white;
    cursor: pointer;
}

button:after, .btn:after {
    content: ' ';
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    width: 0%;
    transition: 0.5s width;
    background-color:#113469;
}

button:hover:after, .btn:hover:after {
    width: 100%;
    left: 0;
    right: unset;
}

.btnTwo {
    border: 2px solid #2b579a;
    color: black;
    transition: 0.5s color;
}

.btnTwo:hover {
    border: 2px solid #2b579a;
    color: white;
}


@media (max-width: 1024px) {
    .notScroll {
        overflow: hidden;
    }
}

.separator {
    width: 100%;
    height: 10vw;
    fill: #fff;
    background-color: #2b579a;
}

.separator polygon {
    width: 100%;
}

.separatorReverse {
    fill: #2b579a;
    background-color: #fff;
}

.separatorGrey {
    fill: #f7f7f7;
}

.separatorBgGrey {
    background-color: #f7f7f7;
}

.bgPrimary {
    background-color: #2b579a;
}

.bgPrimary a, .bgPrimary p, .bgPrimary h1, .bgPrimary h2, .bgPrimary h3, .bgPrimary h4, .bgPrimary h5, .bgPrimary h6 {
    color: #fff;
}

.bgGrey {
    background-color: #f7f7f7;
}

.customBtn {
    margin: 1em 0;
}

.boxUpper {
    justify-content: space-between;
    align-items: unset;
}

.boxUpper > div {
    background-color: #ffffff;
    box-sizing: border-box;
    box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3), 0 -6px 16px -6px rgba(0,0,0,.025);
    text-align: center;
    justify-content: space-between;
    transition: 1s background;
}

@media (min-width: 1025px) {
    .boxUpper > div {
        padding: 3em;
        width: 32%;
        margin-bottom: 2%;
    }
}

@media (min-width: 1500px) {
    .boxUpperFour > div {
        width: 24%;
    }
}

@media (max-width: 1499px) and (min-width: 1025px) {
    .boxUpperFour > div {
        width: 49%;
    }
}

@media (max-width: 1024px) {
    .boxUpper > div {
        width: 100%;
        margin-bottom: 2em;
    }

    .boxUpper > div > p {
        padding: 0 1em;
    }
}

.boxUpper > div:hover {
    background-color: rgba(118, 159, 222, 0.8);
}

.boxUpper > div img {
    margin-top: 1em;
    height: 140px;
    object-fit: cover;
    width: 100%;
}

body .boxUpper .boxUpperTitle {
    font-size: 25px;
}

@media (max-width: 1024px) {
    body .boxUpper .boxUpperTitle {
        margin-top: .5em;
    }
}

.blockImgBoxUpper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1em;
}

.blockImgBoxUpper img {
    transition: .5s transform, .5s opacity;
}

.blockImgBoxUpper:hover img {
    transform: scale(1.25);
    opacity: .8;
}

.divButtons {
    position: absolute;
}

.divButtons {
    visibility: hidden;
    transition: .5s visibility, .5s transform;
    transform: scale(0);
}

.blockImgBoxUpper:hover .divButtons {
    visibility: visible;
    transform: scale(1);
}

.divButtons a, .divButtons button {
    padding: 1em;
    background-color: rgba(43, 87, 154, 1);
    color: white;
    margin: 0 2px;
    font-size: 20px;
    transition: .5s background, .5s color;
}

.divButtons button {
    border: 0;
    z-index: unset;
    display: block;
}

.divButtons a:hover, .divButtons button:hover {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(43, 87, 154, 1);
}

.boxUpper .titleBox {
    font-size: 25px;
}


html body .notPaddingTop {
    padding-top: 0;
}

html body .notPaddingBottom {
    padding-bottom: 0;
}

span.invalid-feedback {
    margin-top: 15px;
    color: red;
    text-align: center;
}

body .boxItems > div > a.mx-5px {
    margin-left: 5px;
    margin-right: 5px;
}

body .smallFont {
    font-size: 12px;
}

.capitalize {
    display: block;
    text-transform: lowercase;
}

.capitalize::first-letter {
    text-transform: uppercase;
}

.directionColumn {
    flex-direction: column;
}

/* Custom Li */
.customQuote li {
    font-size: 19px;
    list-style: none;
}

.customQuote li::before {
    content: "\2022";
    color: #2b579a;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* End Custom Li */

/* Custom HR */
.hrBlock {
    width: 72px;
    height: 2px;
    background-color: #2b579a;
    border: 0;
    margin: 0 auto;
    margin: 1.5em auto 2em;
}
/* End Custom HR */

/* Banner */
.banner {
    width: 100%;
    color: white;
    height: 100%;
    position: relative;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.2);
}
.banner::after {
    content: "";
    position: absolute;
    background-image: url("/img/home/slider.jpg");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    height: inherit;
}

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0)
{ @media {
    .banner::after {
        background-attachment: unset;
    }
}}

_::-webkit-full-page-media, _:future, :root .banner::after {
    background-attachment: unset;
}

@media not all and (min-resolution:.001dpcm)
{ @supports (-webkit-appearance:none) {
    .banner::after {
        background-attachment: unset;
    }
}}

.banner .separator {
    width: 100%;
    max-width: unset;
    background-color: transparent;
}

.homeBanner {
    margin-top: 3em;
}

@media (max-width: 767px) {
    .homeBanner {
        margin-top: 5vh;
    }
}

@media (max-width: 480px) {
    .homeBanner {
        margin-top: 3vh;
    }
}

.homeBanner > .default {
    text-align: center;
}

.homeBanner > div > * {
    margin: 1em 0;
}

.homeBanner > div > h1 {
    margin: 0;
    font-weight: 700;
}

@media (max-width: 767px) {
    .homeBanner > div > h1 {
        font-size: 45px;
    }
}

.homeBanner hr {
    width: 72px;
    height: 3px;
    border: 0;
    background-color: #2b579a;
}

.semiTitleHome {
    font-size: 1.375rem;
}

@media (max-width: 1024px) {
    .semiTitleHome {
        padding-top: 90px;
    }
}

.otherTitleHome {
    font-size: 22px;
}

/* End Banner */

/* Rest of Banners */
.otherBanner > * > * {
    padding: 15px 0;
}

.otherBanner h3 {
    font-size: 70px;
    font-weight: 400;
    padding-bottom: 0;
}

@media (min-width: 1025px) {
    .otherBanner h3 {
        padding-top: 40px;
    }
}

@media (max-width: 1600px) and (min-width: 1025px) {
    .otherBanner h3 {
        padding-top: 30px;
    }
}

@media (max-width: 1024px) {
    .otherBanner {
        padding-top: 87px;
    }

    .otherBanner h3 {
        padding-top: 40px;
        font-size: 45px;
        text-align: center;
        padding-bottom: .25em;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .otherBanner h3 {
        padding-top: 30px;
    }
}

.otherBanner h4 {
    font-size: 20px;
    font-weight: 400;
    padding-top: 0;
    font-size: 25px;
}

@media (max-width: 1024px) {
    .otherBanner h4 {
        font-size: 20px;
    }
}

.otherBanner p {
    font-size: 30px;
    padding-bottom: 0;
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

.otherBanner hr {
    height: 3px;
    padding: 0;
    width: 72px;
    background-color: #2b579a;
    border: 0;
}

@media (max-width: 1024px) {
    .otherBanner p {
        padding-bottom: 30px;
        font-size: 25px;
    }
}
/* End Rest of Banners */


/* Block Generals Classes */
/* Line Block */

.lineBlock .lineBlockTitle {
    font-size: 35px;
    font-weight: 300;
    text-align: center;
}

.lineBlock p {
    text-align: center;
    font-size: 18px;
}

@media (max-width: 767px) {
    .lineBlock .lineBlockTitle {
        font-size: 25px;
    }
}

.lineBlock .btn {
    margin-top: 20px;
}

.imgLineBlock {
    justify-content: space-between;
}

.imgLineBlock img {
    width: 49%;
    height: 300px;
    object-fit: cover;
    margin-top: 30px;
}
/*End Line Block */

/* Double Block */
    @media (max-width: 1199px) {
        body .doubleBlock {
            padding: 2em 0;
        }
    }

    .doubleBlock > div > div {
        width: 48%;
        box-sizing: border-box;
        align-items: unset;
    }

    @media (max-width: 1199px) {
        .doubleBlock > div > div {
            width: 100%;
        }

        .doubleBlock > div > .blockLeft {
            padding-bottom: 2.5em;
        }
    }

    @media (min-width: 1200px) {
        .doubleBlock > div > .blockLeft {
            padding-right: 2%;
        }

        .doubleBlock > div > .blockRight {
            padding-left: 2%;
        }
    }

    .doubleBlock > div > .blockRight img {
        width: 100% !important;
        height: auto !important;
    }

    body .doubleBlockTitle {
        color: #2b579a;
        font-size: 35px;
        font-weight: 300;
        text-align: center;
    }

    .doubleBlock .widthAll {
        width: 100%;
    }
/* End Double Block */
.errorForm {
    margin-bottom: 2em;
    color: red;
}

.form {
    border: 1px solid #d3ced2;
    padding: 20px;
    margin: .5em 0;
    box-sizing: border-box;
    background-color: white;
}

.form input, .form textarea, .form select {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid darkgrey;
}

.form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 10px;
}

.checkboxConfirmation {
    width: 100%;
    justify-content: left;
}

.checkboxConfirmation input {
    width: auto;
    margin-right: 5px;
}

.checkboxConfirmation label {
    padding-bottom: 0;
}

.form .btn {
    margin-top: 10px;
}

body .textForm {
    font-size: 15px;
}

body .textForm a {
    color: black;
}

@media (max-width: 1024px) {
    .notMobile {
        display: none;
    }

    html body .notBannerMobile {
        padding-top: 125px;
    }
}

.messageResponseForm {
    display: inline-block;
    margin-bottom: 1.5em;
    font-size: 25px;
}

@media (max-width: 767px) {
    .messageResponseForm {
        font-size: 18px;
    }

    .messageResponseForm {
        margin-bottom: 2em;
    }
}

.messageResponseForm i {
    margin-right: 10px;
}

.messageResponseForm a {
    color: black;
}

.messageResponseForm i.fa-check-square {
    color: #02c735;
}

.messageResponseForm i.fa-times {
    color: red;
}

@media (min-width: 1024px) {
    html body .marginRightSpecific {
        padding-right: 2em;
    }
}

.success {
    color: green;
    text-align: center;
}

.error {
    color: red;
    text-align: center;
}

.divBack {
    width: 100%;
    margin-bottom: 15px;
    align-items: flex-start;
}

.divBack a {
    padding: .5em 2em;
}

.divBack i {
    margin-right: 10px;
}

body .littleSmall {
    font-size: 14px;
}

/* End general styles */

/* Cookies */
/*** Cookies ***/
.cookiesAsk {
    position: fixed;
    z-index: 999;
    width: 100%;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    right: 0;
    transition: 1s bottom cubic-bezier(0.4, 0, 1, 1);
}

.cookiesAskNone {
    display: none;
}

.cookiesAskClose {
    bottom: -100%;
}

.cookiesAskDiv {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 0em 10%;
    line-height: 1.5;
    font-size: .8em;
}

@media (max-width: 1200px) {
    .cookiesAskDiv {
        flex-direction: column;
    }
}

.cookiesAsk a {
    text-decoration: none;
    transition: 0.3s color;
}

.moreInformationCookies {
    margin-left: 5px;
    border-bottom: 0;
    color: #999;
}

.acceptCookies {
    background-color: #2b579a;
    color: #f7f7f7;
    padding: .9em 2.6em;
    margin: 1.5em 1em;
}

@media (max-width: 1200px) {
    .cookiesAsk p {
        margin-top: 2em;
    }
}


/* End cookies */

/* Colors */
.colorLight {
    color: #84868a;
}

.colorPrimary {
    color: #2b579a;
}

.colorSecondary {
    color: #891116;
}

.colorConfirm {
    color: green;
}
/* End Colors */

/* Menu */
@media (min-width: 1350px) {
    .fatherOfAllBanner > * {
        max-width: 1200px;
        width: 100%;
    }
}
@media (max-width: 1349px) {
    .fatherOfAllBanner > * {
        width: 80%;
    }
}

.menu {
    margin: 0 auto;
    justify-content: space-between;
    background-color: rgba(0,0,0,0.2);
    max-width: unset;
    width: 100%;
}

@media (min-width: 1025px) {
    .menu {
        box-sizing: border-box;
        padding: .5em 2em;
    }
}

.divMenu {
    padding-right: 50px;
}

.divMenu .imgMenu {
    height: 70px;
    width: auto;
    padding-right: 25px;
}

@media (max-width: 1024px) {
    .divMenu {
        display: none;
        padding: 1em;
        width: 100%;
        justify-content: flex-start;
    }

    .divMenu .imgMenu {
        height: 60px;
    }

}

/* Menu links */
@media (max-width: 1024px) {
    .menuSpecific {
        position: fixed;
        background-color: #2b579a;
        height: 100vh;
        z-index: 101;
        right: -100%;
        transition: 1s right;
        overflow-y: auto;
        flex-direction: column;
        /* justify-content: flex-start; */
        justify-content: flex-start;
        align-items: unset;
        flex-wrap: unset;
        width: auto;
        width: 70%;
    }

    .opacityMenu {
        position: fixed;
        transition: 1s opacity, .5s right;
        opacity: 0;
        height: 100vh;
        width: 100%;
        left: 0;
        z-index: 100;
        background-color: rgba(0, 0, 0, 0.75);
        transition: opacity 1s, visibility 1s;
    }

    body .opacityMenuOpen {
        opacity: 1;
        visibility: visible;
    }

    .menuSpecificOpen {
        right: 0;
    }

    .menuSpecific ul {
        flex-direction: column;
        width: 100%;
    }

    .menuSpecific li {
        box-sizing: border-box;
        width: 100%;
        border-bottom: 1px solid rgba(236,236,238,.2);
    }

    .menuSpecific ul a {
        display: flex;
        font-size: 16px;
        text-transform: uppercase;
        padding: .75em 1em;
    }
}

.opacityMenu {
    visibility: hidden;
}

@media (min-width: 1025px) {
    .menuSpecific {
        justify-content: space-between;
        max-width: 1200px;
        width: 100%;
    }

    .menuSpecific ul {
        justify-content: flex-start;
    }

    .menuSpecific li {
        padding: 2em 0;
        margin-right: 2em;
    }
}

.menuSpecific ul a {
    color:#000;
    text-decoration: none;
    transition: .2s color;
    position: relative;
}

@media (min-width: 1025px) {
    .menuSpecific li a:hover {
        color:#2b579a;
        text-decoration: none;
    }

    .menuSpecific ul a:after {
        content: ' ';
        position: absolute;
        height: 3px;
        bottom: 0;
        right: 50%;
        z-index: -1;
        width: 0%;
        transition: .2s width;
        background-color:#2b579a;
        z-index: 1;
    }

    .menuSpecific ul a:hover:after {
        width: 50%;
    }

    .menuSpecific ul a:before {
        content: ' ';
        position: absolute;
        height: 3px;
        bottom: 0;
        left: 50%;
        z-index: -1;
        width: 0%;
        transition: .2s width;
        background-color:#2b579a;
        z-index: 1;
    }

    .menuSpecific ul a:hover:before {
        width: 50%;
    }

    .menuSpecific .myAccount li {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .menuSpecific .myAccount {
        margin-bottom: 5px;
    }
}

/* Menu buttonOpenNavMobile */
@media (min-width: 1025px) {
    .buttonOpenNavMobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .buttonOpenNavMobile {
        position: fixed;
        background-color: #2b579a;
        justify-content: space-between;
        overflow: hidden;
        z-index: 100;
        width: 100%;
        top: 0;
    }

    .buttonOpenNavMobile > *:first-child {
        margin-left: 1em;
    }

    .buttonOpenNavMobile img {
        width: 50px;
        margin-right: .75em;
    }

    .buttonOpenNavMobile .title {
        font-size: 20px;
    }

    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .hamRotate.active {
        transform: rotate(45deg);
    }

    .hamRotate180.active {
        transform: rotate(180deg);
    }

    .line {
        fill:none;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke:#fff;
        stroke-width:5.5;
        stroke-linecap:round;
    }

    .ham1 .svgTop {
        stroke-dasharray: 40 139;
    }

    .ham1 .svgBottom {
        stroke-dasharray: 40 180;
    }

    .ham1.active .svgTop {
        stroke-dashoffset: -98px;
    }

    .ham1.active .svgBottom {
        stroke-dashoffset: -138px;
    }
}

body .menu a.selectedMenu {
    color: #2b579a;
    font-weight: 600;
}

@media (min-width: 1025px) {
    body .menu a.selectedMenu {
        color: #2b579a;
    }
}

@media (max-width: 1024px) {
    body .menu a.selectedMenu {
        color: white;
    }
}

/* Styles Menu Only Home */
.banner .menu a {
    color: white;
}

/* Submenu */
/* All devices */
.subMenu {
    padding: 0;
    list-style-type: none;
}

/* Mobile Desktop */
@media (min-width: 1025px) {
    .withSubmenu i {
        display: none;
    }

    .menuUl li:hover .subMenu {
        opacity: 1;
        visibility: visible;
    }

    .subMenu {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transition: .5s opacity, .5s transition;
        background-color: rgba(255, 255, 255, 1);
        margin-top: 1em;
    }

    .subMenu li {
        border-bottom: 1px solid #eaeaea;
        padding: 1em;
    }

    .menu .subMenu a {
        color: black;
    }

    .subMenu li {
        margin: 0;
        padding-right: 70px;
    }
}

/* Desktop Submenu */
@media (max-width: 1024px) {
    body .withSubmenuLi {
        padding: 0;
        position: relative;
    }

    .withSubmenu {
        justify-content: space-between;
        box-sizing: border-box;
    }

    .withSubmenu.emptySubMenu a {
        border-right: 0;
        width: 100%;
    }

    .withSubmenu a {
        width: calc(100% - 48px);
        box-sizing: border-box;
        border-right: 1px solid rgba(236,236,238,.2);
    }

    .withSubmenu > div {
        width: 20%;
        box-sizing: border-box;
    }

    .withSubmenu i {
        font-size: 20px;
        transition: .5s transform;
        display: flex;
        width: 48px;
        text-align: center;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .withSubmenu i.activeI {
        transform: rotate(90deg);
    }

    .subMenu {
        transition: .5s max-height;
        max-height: 0;
        height: auto;
        overflow: hidden;
        background-color: #25416d;
    }

    .subMenuActive:before {
        position: absolute;
        content: " ";
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #25416d;
        top: 44px;
        left: 16px;
    }

    .subMenuActive {
        max-height: 1000px;
    }

    .subMenu li:last-child {
        border-bottom: 0;
    }

    .menu .subMenu a {
        display: flex;
        color: white;
        padding: .75em 1em;
        width: 100%;
        box-sizing: border-box;
    }
}
/* End Submenu */
/* End Menu */

/* Footer */
body .footer .footerBlock {
    align-items: flex-start;
    justify-content: space-between;
}

body .footer {
    padding: 2em 0;
    padding-top: 0;
}

@media (max-width: 1500px) {
    body .footer {
        padding-top: 1em;
    }
}

@media (min-width: 1400px) {
    body .footer .footerBlock {
        flex-wrap: unset;
    }
}

@media (max-width: 1399px) {
    body .footer {
        padding-top: 2em;
    }
}

.footerBlock .footerBlockImg {
    margin-bottom: 1em;
    flex-wrap: unset;
}

.footerBlock .fontSize14 {
    font-size: 14px;
}

.footerBlock .footerBlockImg .footerBlockImgTitle {
    margin-left: 1em;
    align-items: flex-start;
}

.footerBlock .footerBlockImg .footerBlockImgTitle p:first-child {
    font-size: 30px;
}

.footerBlock img {
    width: 70px;
}

.footerBlock i {
    color: #fff;
    font-size: 25px;
    transition: .5s color;
}

.footerBlock .facebookFooter {
    color: #fff;
    font-size: 25px;
    margin-top: 15px;
    margin-left: 5px;
    transition: .5s color;
}

.footerBlock .ulContactFooter li {
    margin-bottom: 10px;
    justify-content: flex-start;
}

.footerBlock .linkIFooter {
    margin-right: 10px;
}

.footerBlock i:hover {
    color: #000;
}

.footerBlock > div {
    align-items: flex-start;
}

.footerBlock > *:nth-child(1) {
    align-items: flex-start;
}

@media (min-width: 1400px) {
    .footerBlock > *:nth-child(2) {
        padding: 0 2em;
        padding-right: 1em;
    }
    .footerBlock > *:nth-child(3) {
        padding: 0 2em;
        padding-left: 1em;
    }

    .footerBlock > *:nth-child(2) li a {
        min-width: 227px;
        justify-content: flex-start;
    }
}

@media (max-width: 1399px) {
    .footerBlock > div {
        width: 100%;
    }

    .footerBlock > *:nth-child(1) {
        padding-bottom: 1em;
        border-bottom: 2px solid white;
    }
    .footerBlock > *:nth-child(2), .footerBlock > *:nth-child(3) {
        padding-top: 1em;
        padding-bottom: 1em;
        border-bottom: 2px solid white;
    }
    .footerBlock > *:nth-child(4) {
        padding-top: 1em;
    }
}

body .carFooter {
    width: 60px;
    margin-left: 35px;
    margin-top: 10px;
}

@media (max-width: 400px) {
    .footerBlock img {
        width: 60px;
    }

    .footerBlockImgTitle p:nth-child(2) {
        font-size: 17px;
    }

    body .carFooter {
        margin-left: 10px;
    }
}

@media (max-width: 319px) {
    body .carFooter {
        display: none;
    }
}

.scheduleFooter > li {
    flex-wrap: unset;
}

.footerBlock ul {
    margin-top: 1em;
}

.footerBlock li {
    color: white;
}

.footerBlock li a {
    text-decoration: none;
}

body footer .postFooter {
    padding: .5em 0;
    background-color: rgba(0, 0, 0, 0.3);
}

body .postFooter > div {
    margin: 0 auto;
    align-items: flex-start;
}

.postFooter p {
    font-size: 10px;
}
/* End Footer */
