*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

main, .full-screen-width{
    min-height: calc(100vh - 85px);
}
li {
    display: inline;
  }
a{
    text-decoration: none;
    color: inherit;
}
p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
}
header {
    display: flex;
    flex-direction: row;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 85px;
    position: sticky;
    color:blueviolet;
    background-color: #000;
    top: 0;
    z-index: 1;
}
.logo {
    display: flex;
    flex-direction: row;
    font-family: 'Merriweather', serif;
}
.logo h1 {
    padding-left: 1rem;
    display: flex;
    align-items: center;
    font-family: 'Merriweather', serif;

}
header ul li 
{
    margin-left: 3rem;
}
.underline, .underline:hover {
    border-bottom: 2px solid black;
}
header ul li:hover
{
    font-weight: bold;
}
.header-row
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.dropdown-options ul{
    height: 150px;
    overflow-y: scroll;
}

.error{
    color: #941818;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: none;
}
.error img{
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
}
.hero{
 display: flex;
 flex-direction: row;
}
.text-area, .image-area{
    width: 50%;
}
.text-area{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 8rem;
}
.text-area p{
    font-size: 1.5rem;
    text-align: justify;
    padding-bottom: 2rem;
}
.button-area{
    text-align: center;
    display: flex;
    justify-content: center;
}
.btn-grey{
    background: hsl(252, 16%, 31%);
    border-radius: 4rem;
    color: #fff;
    width: 150px;
    padding: 1rem;
    box-sizing: content-box;
    cursor: pointer;
    transition: 0.5s;
}
.btn-grey:hover{
    background: hsl(252, 16%, 21%);
}
.image-area{
    display: flex;
    justify-content: center;
}
.cards-section {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;

}   
.card{
    width: 300px;
    text-align: justify;
    background: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
    border-radius: 41px;
    position: relative;
    height: 449px;
}
.card img {
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -40%);
}
.card .text{
    position: absolute;
    top: 27%;
    padding: 1rem;
}
.card h2 {
    font-size: 2.5rem;
    display:flex;
    justify-content: center;
    color: #48435C;
    border-bottom: solid 3px #48435C;
}
.card p {
    font-size: 1.25rem;
    padding-top: 1.0rem;

}

footer {
	width: 100%;
	height: 100%;
    background-color: var(--main-header-background);
}

.copyright {
	color: #fff;
	font-size: 1.2rem;
	line-height: 40px;
	text-align: center;
}

.copyright a{
	color: #fff;
	font-size: 1rem;
	letter-spacing: 1px;
    text-decoration: none;
}

.copyright a:hover{
	color: var(--main-decor-color);
}
.disclaimer {
    font-size: 20px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0rem;
}
