* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    background-color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
}

header {
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(128, 128, 128, .8);
    position: relative;
    background-color: #FFFFFF;
}

header:before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 100%;
    left: 0;
    height: 18px;
    z-index: 1;
    background: url(../images/header-pettern.png) repeat-x;
}

header .d-flex {
    justify-content: space-between;
    align-items: center;
    text-align: right;
}

header h1 {
    color: #d93230;
    font-size: 2rem;
    text-align: right;
}

header h1 small {
    color: #20212b;
    font-size: 65%;
}

main {
    padding: 50px 0;
}

.big-inner {
    padding: 60px 20px;
}

h3.right-heading {
    /* color: #d93230; */
    margin-bottom: 35px;
}

.logo-wrapper {
    padding: 10px
}

p,
.imp-notes li {
    color: #3F3D56;
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
}

.text-red {
    color: #d93230;
    font-weight: 500;
}

ul {
    padding: 0;
    list-style-type: none;
    display: inline-flex;
    justify-content: right;
    margin: 0;
}

ul li:last-child {
    margin-left: 10px;
}

footer {
    background-color: #d93230;
    padding: 25px 0;
    /* background-image: url(/images/Asset1.png); */
}

footer li a {
    font-size: 14px;
}

footer li a,
footer li i {
    color: #FFFFFF;
    text-decoration: none;
}

.card {
    transition: 0.75s all ease-in-out;
    /* text-align: center; */
    border: none;
}

/* .card:hover {
    background-color: #d93230;

}

.card:hover * {
    color: #FFF;
} */

/* .card-title {
    text-align: center;
} */

.card-body {
    padding: 0;
}

ul.contact-info {
    justify-content: flex-start;
}

.social a {
    font-size: 32px;
}

.hidden {
    display: none;
}

.form img {
    max-width: 250px;
    display: block;
    margin: 0 auto;
}

.column-btn {
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    .column-btn img {
        max-width: 300px;
    }

    ul.contact-info {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        text-align: center;
        font-size: 1.25rem;
    }

    header .d-flex {
        flex-direction: column;
        align-items: center;
    }
}