﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
.horizontalCard {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.18);
    margin: 40px 0;
    overflow: hidden;
}
.horizontalCard img {
    width: 50%;
    height: auto;
}
.horizontalCard .info {
    width: 50%;
    text-align: left;
    box-sizing: border-box;
    padding: 40px;
}
.horizontalCard .info.center {
    text-align: center;
}
.horizontalCard .info.right {
    text-align: right;
}
.horizontalCard .info h2 {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 25px;
}
.horizontalCard .info .contentHtml {
    margin: 15px 0;
    font-size: 16px !important;
}
.horizontalCard .info .contentHtml ul {
    list-style: initial !important;
    padding-left: 20px;
    margin-left: 0;
    box-sizing: border-box;
    font-size: 16px !important;
}
.horizontalCard .info .contentHtml ul {
    font-size: 16px !important;
}
.verticalCard {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.18);
    margin: 40px 0;
    overflow: hidden;
}
.verticalCard img, .verticalCard .info {
    width: 100%;
    height: auto;
    margin: 0;
}
.verticalCard.short img {
    width: auto;
    height: auto;
    margin: 40px 20px 0;
}
.verticalCard .info {
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}
.verticalCard .info.left {
    text-align: left;
}
.verticalCard .info.right {
    text-align: right;
}
.verticalCard .info h2 {
    font-size: 25px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.verticalCard .info.left h2 {
    justify-content: flex-start;
}
.verticalCard .info.right h2 {
    justify-content: flex-end;
}
.verticalCard .info a {
    min-height: 44px;
    display: block;
}
.headBanner {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}
.headBanner img.imgPC {
    width: 100%;
    height: auto;
}
.headBanner .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba( 0, 0, 0, 0.5 );
}
.headBanner .info .text {
    color: #fff;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
.headBanner .info .text h1 {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}
.headBanner .info .text.left h1 {
    text-align: left;
}
.headBanner .info .text.right h1 {
    text-align: right;
}
.headBanner .info .text .contentHtml {
    text-align: center;
    color: #fff !important;
    font-size: 25px !important;
}
.headBanner .info .text.left .contentHtml {
    text-align: left;
}
.headBanner .info .text.right .contentHtml {
    text-align: right;
}
.headBanner .info .text.left .button {
    margin: 40px 0;
}
.headBanner .info .text.right .button {
    margin: 40px 0;
    float: right;
}
.afterBannerBlock {
    background-color: var(--text);
    color: var(--white);
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}
.afterBannerBlock .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.afterBannerBlock .container img {
    width: 40%;
    height: auto;
    margin: -20px 0;
}
.afterBannerBlock .container .info {
    width: 50%;
    height: auto;
}
.afterBannerBlock .container .info.center {
    text-align: center !important;
}
.afterBannerBlock .container .info.right {
    text-align: right !important;
}
.afterBannerBlock .container .info h2 {
    font-size: 40px;
    line-height: 40px;
    color: var(--greenText);
    text-transform: uppercase;
    font-weight: bold;
}
.afterBannerBlock .container .info .contentHtml {
    font-size: 30px !important;
    line-height: 30px;
    margin-top: 20px;
}
.expandableContent {
    display: none;
}
.expandableGeneral {
    box-sizing: border-box;
    padding: 8px;
    margin-bottom: 50px;
}
.modalContainer {
    display: none;
    background-color: rgba( 0, 0, 0, 0.6 );
    opacity: 0;
    transition: 0.4s all;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 111;
}
.modalContainer .modal {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px;
    width: 100%;
    max-width: 800px;
    height: auto;
    transition: 0.8s all;
    margin-top: -150px;
    opacity: 0;
    display: block;
}
.modalContainer.open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.modalContainer.open .modal {
    opacity: 1;
    margin-top: 0;
}
.modalContainer .modal .close {
    color: #000;
    font-size: 25px;
}
.modalContainer .modal .modalContent {
    width: 100%;
    height: auto;
    max-height: 70vh;
    overflow-x: hidden;
    overflow-y: auto;
}
.simpleLink .button {
    display: initial !important;
    background: none !important;
    color: #0d6efd !important;
    font-size: 18px !important;
}
@media screen and (max-width: 1150px) {
    .horizontalCard .info h2 {
        font-size: 25px;
    }

    .horizontalCard .info .contentHtml {
        font-size: 18px !important;
    }
}
@media screen and (max-width: 991px) {
    .headBanner {
        height: 70vh;
    }
    .headBanner img.imgPC {
        display: none;
    }
    .horizontalCard .info h2 {
        font-size: 20px;
    }

    .horizontalCard .info .contentHtml {
        font-size: 16px !important;
    }

    .afterBannerBlock .container .info h2 {
        font-size: 25px;
    }

    .afterBannerBlock .container .info .contentHtml {
        font-size: 18px !important;
    }

    .afterBannerBlock .container img {
        margin: 0;
    }
}
@media screen and (max-width: 820px) {
    .horizontalCard {
        display: block;
    }
    .horizontalCard .info {
        padding: 25px;
    }
    .horizontalCard .info, .horizontalCard img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .headBanner .info .text h1 {
        font-size: 30px;
        text-align: center !important;
    }

    .headBanner .info .text .contentHtml {
        text-align: center !important;
        font-size: 16px !important;
    }

    .headBanner .info .text.right .button {
        margin: 40px auto;
        float: none;
    }

    .headBanner .info .text.left .button {
        margin: 40px auto;
        float: none;
    }

    .afterBannerBlock {
        padding: 20px;
    }
    .afterBannerBlock .container {
        display: block;
    }
    .afterBannerBlock .container img, .afterBannerBlock .container .info {
        width: 100%;
    }
}