/* css custom */
.card-form {
    background-color: #F7F7F7;
    border-radius: 30px;
}
.green {
    color: var(--green);
}
.form-label {
    font-weight: regular;
    font-size: .9rem;
    margin-bottom: 0px !important;
}
input {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0px !important;
    padding-left: 0px !important;
    color: var(--green) !important;
    background-color: #F7F7F7;
}
.form-control {
    background-color: #F7F7F7 !important;
}
.form-check-input {
    border: 2px solid var(--orange) !important;
    height: 16px;
    width: 16px;
}
form .btn-custom {
    width: 100%;
}
.faq {
    background-color: #fff;
}
/* custom faq */
.accordion-button h3 {
    color: var(--black-txt);
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: 0;
}
.accordion-header,
.accordion-body {
    background: transparent;
}
.accordion-header {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 1px solid #B6B6B6;
}
.accordion-body {
    border-radius: 100px;
}
.accordion-item {
    margin-bottom: 25px;
    border: none;
}
.accordion-button.collapsed {
    background: transparent;
}
.accordion-button:not(.collapsed) {
    color: var(--black-txt);
    background: transparent;
}
.accordion-button {
    border: none;
    text-align: left;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-left: auto;
    content: "";
    background-image: url('../img/ic-arrow.svg');
    background-repeat: no-repeat;
    background-size: 44px;
    transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../img/ic-arrow.svg');
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.block {
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 25px;
}
.bg {
    width: 100%;
    background-image: url('/src/assets/img/bg-tile.webp');
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: bottom center !important;
    min-height: 500px;
}
.card-white {
    background-color: #fff;
    max-width: 400px;
}
.card-custom {
    background-color: #F3F3F3;
    min-height: 470px;
}
    .card-custom h3 {
        min-height: 45px;
    }
.subfooter {
    background: #2F2F2F;
}
footer {
    display: block;
    background-color: #fff;
    font-size: .8rem;
    color: #1C191D;
}
    footer p {
        font-size: .8rem;
        color: #1C191D;
    }
        footer a {
            color: #fff;
        }
        footer a:hover {
            text-decoration: underline !important;
            color: #fff;
        }


/* media queries */
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .card-custom {
        min-height: 550px;
    }
}
