@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --color_primary: #B33237;
    --color_secondary: #03a84e;
    --color_grey: #f7f7f7;
    --color_text: #666;
    --color_heading: #000000;
    --color_black: #000000;
    --color_white: #ffffff;
    --font_body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease-in-out 0s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color_text);
    /*background-size: cover;*/
    /*background-repeat: repeat;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    background-color: var(--color_white);
    font-family: var(--font_body);
}

a,
a:hover {
    text-decoration: none;
    outline: none;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: var(--color_heading);
}

h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child) {
    margin-bottom: 20px;
}

h1 {
    line-height: 1.3;
}

h2 {
    line-height: 1.2;
    color: var(--color_primary);
}

h3 {
    line-height: 1.2;
}

h4 {
    line-height: 1;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h5 {
    line-height: 1.2;
}

h6 {
    line-height: 1.3;
}

p,
li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

p:not(:last-child),
ul:not(:last-child),
li:not(:last-child) {
    margin-bottom: 20px;
}

p,
li {
    color: var(--color_text);
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.color_black {
    color: var(--color_black);
}

.btn {
    min-height: 60px;
    font-size: 16px;
    padding: 0 25px;
    border-radius: 5px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0px;
    text-indent: 0px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
    cursor: pointer;
    box-shadow: none !important;
    transition: var(--transition);
}

.btn i {
    font-size: 26px;
    line-height: 1;
}

.btn.btn-black {
    background-color: var(--color_black);
    border-color: var(--color_black);
    color: var(--color_white);
}

.btn:hover {
    box-shadow: 0 0.4em 0.5em -0.4em var(--color_text);
    transform: translateY(-0.15em);
}

input,
select,
textarea {
    background-color: var(--color_white);
    width: 100%;
    color: var(--color_black);
    font-weight: 400;
    border: 1px solid #ebebeb;
    font-size: 14px;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
}

input {
    height: 50px;
    padding: 0 20px;
}

select {
    height: 50px;
    padding: 0 40px 0 20px;
}

textarea {
    height: 100px;
    padding: 10px 20px;
}

input:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--color_primary);
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    opacity: 1;
    color: var(--color_text);
}

.control-group {
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

.content {
    min-height: 100vh;
    width: 100%;
    /*background-color: rgba(0, 0, 0, 0.2);*/
    box-shadow: inset 0 0 40px -5px rgba(0, 0, 0, 0.2);
}

.eCard-section h1 {
    font-size: 30px;
    color: var(--color_white);
    margin: 0 0 35px;
}

.eCard-section {
    padding: 40px 0;
}

.box {
    text-align: center;
    background-color: var(--color_white);
    box-shadow: 0 0 50px -3px rgba(0, 0, 0, 0.15);
}

.logo {
    text-align: center;
    /* background-image: url(../images/attachment-01.jpg); */
    /*background-size: cover;*/
    /*background-repeat: repeat;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    padding: 15px 15px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-height: 150px;
    max-width: 400px;
}

.inner {
    padding: 30px 30px 50px;
}

.inner>*:not(:last-child) {
    margin-bottom: 30px;
}

.list {
    background-color: var(--color_grey);
    border-radius: 20px;
    padding: 30px 30px;
}

.list ul {
    gap: 30px;
    display: flex;
    justify-content: space-around;
}

.list ul li {
    color: var(--color_black);
    gap: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.list ul li a i {
    color: var(--color_white);
    background-color: var(--color_primary);
    height: 70px;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    transition: var(--transition);
}

.list ul li a i.fa-facebook-f {
    background-color: #3b5998;
}

.list ul li a i.fa-twitter {
    background-color: #55acee;
}

.list ul li a i.fa-linkedin-in {
    background-color: #0077b5;
}

.list ul li a i.fa-whatsapp {
    background-color: #43d854;
}

.list ul li a i.fa-envelope {
    background-color: #ea4335;
}

.list ul li a i.fa-map-marker-alt {
    background-color: #ff3c00;
}

.list ul li a i.fa-globe {
    background-color: #357abd;
}

.list ul li a i.fa-phone-alt {
    background-color: #009688;
}

.list ul li a:hover i {
    background-color: var(--color_secondary);
}

.foot {
    background-color: var(--color_black);
    padding: 50px 15px;
}

.foot * {
    color: var(--color_white);
}

.foot h4 span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.foot h4 span::before,
.foot h4 span::after {
    content: "";
    display: inline-flex;
    width: 100px;
    height: 2px;
    background-color: var(--color_white);
}

.foot ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.foot ul li {
    margin: 0;
    display: inline-flex;
}

.foot ul li a i {
    color: var(--color_white);
    background-color: var(--color_primary);
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    border: 2px solid var(--color_white);
    transition: var(--transition);
}

.foot ul li a i.fa-facebook-f {
    background-color: #3b5998;
}

.foot ul li a i.fa-twitter {
    background-color: #55acee;
}

.foot ul li a i.fa-linkedin-in {
    background-color: #0077b5;
}

.foot ul li a i.fa-whatsapp {
    background-color: #43d854;
}

.foot ul li a i.fa-envelope {
    background-color: #ea4335;
}

.foot ul li a i.fa-map-marker-alt {
    background-color: #ff3c00;
}

.foot ul li a i.fa-globe {
    background-color: #357abd;
}

.foot ul li a i.fa-phone-alt {
    background-color: #009688;
}

.foot ul li a:hover i {
    background-color: var(--color_secondary);
}

@media (max-width: 767.98px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: 10px;
        padding-left: 10px;
    }

    .eCard-section {
        padding: 30px 0 10px;
    }

    .eCard-section h1 {
        font-size: 25px;
        margin: 0 0 30px;
    }
    .logo img {
        max-height: 150px;
        max-width: 100%;
    }
    .logo {
        text-align: center;
        height: 200px;
    }
    .inner {
        padding: 30px 10px;
    }

    p,
    li {
        font-size: 14px;
    }

    .list {
        border-radius: 10px;
        padding: 20px 15px;
    }

    .list ul {
        flex-wrap: wrap;
    }

    .list ul li {
        gap: 10px;
        font-size: 12px;
        letter-spacing: 0.2px;
    }

    .list ul li a i {
        height: 60px;
        width: 60px;
        font-size: 20px;
    }

    .btn {
        min-height: 55px;
        font-size: 14px;
        padding: 0 20px;
        gap: 10px;
    }

    .btn i {
        font-size: 22px;
    }

    h1:not(:last-child),
    h2:not(:last-child),
    h3:not(:last-child),
    h4:not(:last-child),
    h5:not(:last-child),
    h6:not(:last-child) {
        margin-bottom: 15px;
    }

    p:not(:last-child),
    ul:not(:last-child),
    li:not(:last-child) {
        margin-bottom: 15px;
    }

    h4 {
        font-size: 16px;
    }

    .foot h4 span::before,
    .foot h4 span::after {
        width: 40px;
    }

    .foot {
        padding: 35px 15px;
    }
}