/* Fonts code to be added here */

/* grys = #6a6668 */
/* blou = #1c1b64 */
/* rooi = #f10302 */

/* End of fonts */

/* Global Code */
html{
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* header css */


.navFiller {
    min-height: 75px;
}

.main {
    min-height: 45svh;
}



/* Footer css */
.footer {
    background-color: #6a6668;
    padding: 1rem 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
}

.footer-formBlock,
.footer-navBlock,
.footer-contactBlock {
    min-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 3rem;
}

.footer-navBlock {
    min-width: 20%;
}

.footer-contactBlock {
    row-gap: 2rem;
}

.footer-contactHeading,
.footer-formHeading,
.footer-navHeading {
    width: 80%;
    font-size: 2rem;
    color: #1c1b64;
}

.footer-navList,
.footer-contactList {
    width: 80%;
    list-style: none;
    float: left;
    padding: 0;
    margin: 0;
}

.footer-navItem,
.footer-contactItem {
    padding: 1rem 0;
}

.footer-contactSocialItem {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5%;
    padding: 1rem 0;
}

.footer-contactSocialItem .footer-contactLink {
    font-size: 2.5rem;
    width: 20%;
}

.footer-navLink,
.footer-contactLink {
    width: 90%;
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.footer-icon {
    min-width: 20px;
    padding-right: 1rem;
    color: #1c1b64;
    font-size: 2rem;
}

.footer-form {
    width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.footer-formInput {
    width: 80%;
    font-size: 1.4rem;
    line-height: 1.8;
    padding-left: 1rem;
}

.footer-formButton {
    width: 40%;
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: 3px 3px 5px #000;
    background-color: #f10302;
    color: #1c1b64;
    font-weight: 800;
    padding: 1rem 2rem;
}

.footer-bottomRow {
    width: 100%;
    background-color: #1c1b64;
    padding: 1rem 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.footer-bottomRowLink {
    text-decoration: none;
    color: #8C76AA;
}