* {
    outline: none;
    margin: 0;
    padding: 0;
    color: black;
    font-family: 'calibri';
    font-size: 16px;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

p {
    margin-bottom: 0;
}

.fw700 {
    font-weight: 700;
}

.colorWhite {
    color: white;
}

.curPointer {
    cursor: pointer;
}

section, header, footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    margin-left: 20px;
    margin-right: 20px;
}

ul {
    list-style-type: none;
}

/*HEADERNAV*/
header {
    margin-top: 15px;
}

header nav {
    display: flex;
    justify-content: center;
}

header nav img {
    height: 60px;
    margin-bottom: 10px;
    cursor: pointer;
}

/*CARD*/
.cardRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card {
    padding: 20px;
    background-color: #f8f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    width: 33.3%;
    margin: 15px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(180,180,180,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(180,180,180,1);
    box-shadow: 0px 0px 10px 0px rgba(180,180,180,1);
}

h2 {
    font-style: 18px;
    text-align: center;
}

.imgCont {
    padding: 20px;
}

.card img {
    width: 100%;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(70,70,70,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(70,70,70,1);
    box-shadow: 0px 0px 5px 0px rgba(70,70,70,1);
}

.card p {
    margin: 0px 20px;
    text-align: justify;
    margin-bottom: 40px;
}

.card button {
    border: solid 1px black;
    padding: 10px 20px;
    transition: 1s;
    cursor: pointer;
    margin-top: auto;
    background-color: #f8f7f7;
}

.card button:hover {
    color: white;
    background-color: #333333;
    border-color: #333333;
}

footer {
    background-color: #e8e8e8;
    padding: 20px;
}