body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header{
    background-color: white;
    margin: 0;
    height: 72px;
}
header .logo a{
    background-image: url("../images/logo.png");
    background-size: 300px;
    background-repeat: no-repeat;
    position: relative;
    top: -18px;
    display: inline-block;
    width: 300px;
    height: 50px;
    text-indent: -99999999999px;
}
ul.top-menu{
    margin: 0;
    padding: 0;
    position: relative;
    top: 30px;
    list-style-type: none;
}
ul.top-menu li{
    display: inline-block;
    margin-right: 25px;
    margin-left: 20px;
}
ul.top-menu li:hover{
    color: aqua;
}
header a{
    color:black;
    text-decoration: none;
    transition: all 0.4s ease-in;
}
header a:hover{
    color: blue;
    transition: all 0.4s ease-out;
}



section.head{
    background-color: #d9d9d9;
    margin: 0;
}
section.head h2{
    margin: 0;
}
section.hero img{
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
    padding: 0;
}
footer{
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 50px;
    width: 100%;
    margin: 0;
}
footer div.footer-heading{
    display: flex;
    flex-direction: column;
    margin-right: 60px;
}
footer a{
    text-decoration: none;
    color: gray;
    transition: all 0.3s ease-in;
}
footer a:hover{
    color: black;
    transition: all 0.3s ease-out;
}
.one{
    background-color: white;
}

.button-styling{
    border-radius: 10px;
    font-size: 16px;
    padding: 5px 25px 5px 25px;
    background-color: white;
    transition-duration: 0.5s;
    text-decoration: none;
}
.button-styling:hover{
    background-color: rgb(64, 133, 224);
    color: white;
}

.header-decor{
    position: absolute;
    top: 72px;
    height: 4px;
    width: 100%;
}
.bottom-styling{
    text-decoration: none;
    color: black;
    display: block;
    width: fit-content;
}
.bottom-styling::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}

.bottom-styling:hover::after {
    width: 100%;
}