:root {
    --white-bg: #ffffff;
    --half-white-bg: rgba(255, 255, 255, 0.7);
    --blue-bg: #27306B;
    --black-bg: #000000;
    --yellow-bg: #F4C329;
    --red-bg: #E3282D;
    --sky-bg: #76BDE0;
    --gray-bg: #D9D9D9;
    --gray-bg-hover: #b9b9b9;
    --dark-gray-bg: #484848;
    --light-blue-bg: #6A7DC1;
    --lighter-blue-bg: #BECBF9;
    --orange-bg: #BF6A02;
    --shadow-bg: rgba(0, 0, 0, 0.1);
    --white-font: #ffffff;
    --black-font: #000000;
    --blue-font: #27306B;
    --fade-red: #F98C8F;
    --fade-sky: #9FDAF7;
    --fade-yellow: #FFDA67;
    --gray-font: #555;
    --filter-gray: #f0f0f0;
    --filter-border-gray: #ccc;
    --purple-border: #8224E3;
}

*,
*::before,
*::after {
    padding: 0px;
    margin: 0px;
    
}

body,
html {
    padding: 0;
    margin: 0;
    z-index: 1;
    font-family: 'Verdana', sans-serif;
}

.Background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.max-width {
    max-width: 1100px;
    margin: auto;
}
.mtext {
    font-size: 12px;
    font-weight: normal;
}
/* typography */
h1 {
    font-size: 3em;
    font-weight: normal;
}

h2 {
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 2em;
    line-height: 1em;
}

h3 {
    letter-spacing: -0.5px;
    font-size: 1.2em;
}

p {
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.2em;
}

a,
input,
button {
    font-size: 1.1em;
}

a {
    text-decoration: none;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background-color: var(--white-bg);
}

.footer img {
    width: 195px;
    height: 65;
}

.footer p {
    height: 100%;
    padding: 0 0 10px 20px;
    font-size: 11px;
    color: var(--dark-gray-bg);

}

@media(max-width: 770px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.75em;
    }

    .footer p {
        padding: 0 0 auto;
        font-size: max(9px, 1vw);
    }
}

@media(max-width: 520px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1em;
    }

    p {
        font-size: 1em;
    }

    a,
    input,
    button {
        font-size: 1em;
    }

    .footer {
        flex-direction: column;
    }

    .footer img {
        width: 50vw;
        height: calc(50vw/3);
        padding-right: 25vw;
    }
}

.fa {
  padding: 5px;
  font-size: 20px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  margin: 2px 1px;
  border-radius: 10%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa, .fab, .fas {
    font-family: "Font Awesome 5 Brands", "Font Awesome 5 Free", FontAwesome !important;
    font-weight: 900 !important;
}
