* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Light';
    font-size: 16px;
}

html {
    height: 100%;
}

#logo {
    height: 80px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: auto;
}

header {
    width: 100%;
}

header .top-menu-wrapper{
    background: #f8f8f8;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
}

header .top-bar ul {
    list-style-type: none;
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 0;
}

header .top-bar ul li {
    font-size: 0.875em;
    padding-left: 1.5em;
    line-height: 3em;
}

header .top-menu-wrapper .container {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100%;
}

.container {
    max-width: 1140px;
}

header .top-menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    height: 100%;
    z-index: 99;
}

header .top-menu li {
    position: relative;
}

header .top-menu li a {
    padding: 0 2rem;
    text-decoration: none;
    color: #00000A;
    line-height: 120px;
    display: block;
}

header .top-menu li:hover a {
    background: rgb(229,229,229);
    background: linear-gradient(0deg, rgba(229,229,229,1) 0%, rgba(0,0,0,0) 100%);
}

header .top-menu li .sub-menu {
    display: none;
    position: absolute;
    padding: .25rem 1rem;
    background: rgb(229,229,229);
    list-style-type: none;
    z-index: 99;
    padding: 0;
} 

header .top-menu li .sub-menu li a {
    color: #00000A;
    line-height: 3em;
    padding: 0 2em;
    display: block;
}

header .top-menu li .sub-menu li a:hover {
    background: rgb(220,220,220);
}

header .top-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

header .alert-wrapper {
    background: #FF7C7C;
    text-align: center;
    padding: 1em 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.page-wrap {
    padding: 80px 0;
}

.container p:last-child {
    margin-bottom: 0;
}

.contact-wrap {
    position: relative;
    min-height: 520px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-wrap #map{
    position: absolute;
    width: 100%;
    z-index: -1;
}

.contact-wrap .wpcf7 {
    padding-top: 40px;
}

.contact-wrap .wpcf7 input,
.contact-wrap .wpcf7 textarea {
    padding: 0.875em 0.875em 0.875em 0.875em;
    border-radius: 5px;
    width: 400px;
    border: 1px solid #7D6E83;
}

.contact-wrap .wpcf7 input:hover,
.contact-wrap .wpcf7 textarea:hover {
    border: 1px solid #000;
}

.contact-wrap .wpcf7 input:focus-visible,
.contact-wrap .wpcf7 textarea:focus-visible {
    outline-color: #7D6E83;
}

.contact-wrap .wpcf7 input[type="submit"] {
    background: #7FB77E;
    color: #fff;
}

.contact-wrap .wpcf7 input[type="submit"]:hover {
    background: #72A471;
}

footer {
    width: 100%;
    background: #7D6E83;
}

footer p {
    line-height: 4em;
    color: #fff;
    text-align: center;
}

.hero {
    height: 400px;
    position: relative;
}

.hero:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255, 0.6);
    position: absolute;
    top:0;
    left:0;
}

.hero .container {
    z-index: 10;
    position: relative;
}

.hero .container h2 {
    margin-top: 100px;
    margin-bottom: 30px;
    font-size: 40px;
}

.hero .container h4 {
    margin-bottom: 20px;
}

.hero .container p {
    font-size: 24px;
}


.hero .container .hero-right {
    height: 100%;
    width: 100%;
    height: 360px;
    margin-top: 20px;
    background-image: url('../images/hero.svg'); background-position: center center; background-repeat: no-repeat;
}

.blocks {
    z-index: 12;
    position: relative;
    background: #f8f8f8;
    padding: 50px 0 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.blocks .block {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    margin: 0 auto;
    background-color: #7FB77E;
    background-size: 80px auto;
    transition: transform .5s;
}

.blocks .col:first-child .block {
    background-image: url('../images/vaccine.svg'); background-position: center center; background-repeat: no-repeat;
}
.blocks .col:nth-child(2) .block {
    background-image: url('../images/plaaster.svg'); background-position: center center; background-repeat: no-repeat;
}
.blocks .col:nth-child(3) .block {
    background-image: url('../images/medic.svg'); background-position: center center; background-repeat: no-repeat;
}
.blocks .col:last-child .block {
    background-image: url('../images/contact.svg'); background-position: center center; background-repeat: no-repeat;
}

.blocks p{
    text-align: center;
    margin-top: 20px;
}

.block-link {
    text-decoration: none;
    color: #7D6E83;
}

.blocks .block-link p{
    font-weight: bold;
}

.block-link:hover .block {
    transition: transform .5s;
    transform: scale(1.05);
}

.block-link:hover {
    color: #00000A;
}

.team-members {
    margin-top: 80px;
}

.team-members .image-container {
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.team-members .person {
    margin-bottom: 40px;
}

.team-members .person h5 {
    margin-top: 16px;
    text-align: center;
}

.team-members .person p {
    text-align: center;
}

table.table {
    /* border: 1px solid rgb(229,229,229, 0.5); */
    border-radius: 4px;
}

table.table tr td:last-child,
table.table tr th:last-child {
    text-align: center;
}