html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

nav {
    padding: 35px 30px 20px 30px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.logo {
    width: 228px;
    height: 50px;
}

.logo img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.log-in {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    text-decoration: none;
}

.log-in p {
    width: 70%;
    text-align: center;
    font-family: Roboto;
    font-weight: bold;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0;
    color: #28405A;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.log-in .material-icons {
    color: #28405A;
}

.container-banner {
    height: auto;
    padding: 0px 25px 30px 25px;
    overflow: hidden;
}

.container {
    position: relative;
    overflow: hidden;
    padding: 0;
    width: calc(100% + 50px);
    height: 100px;
    margin: 0 -25px;
}

.container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    filter: brightness(0.4) sepia(1) hue-rotate(180deg);
}

.container h1 {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    margin-bottom: 0;
}

.container h1 .icon {
    background-color: white;
    width: 40px;
    height: 40px;
}

.container h1 span {
    margin-left: 15px;
    font-size: 24px;
    font-weight: 100;
    color:white;
}

@media (max-width: 959.99px) {
    .container-banner {
        padding: 30px 0;
        padding-top: 0;
    }

    .container {
        height: 80px;
        margin: 0 -5px;
    }

    .container h1 {
        bottom: 20px;
    }

    .container h1 span {
        font-size: 24px;
    }
}

.container-page {
  min-height: 100vh;
  height: 100%;
  padding: 0 25px 30px;
  position: relative;
  box-sizing: border-box;
  background-color: #f5f5f5;
  min-width: 0;
}

/* app-sizer component styles */
.sizer-container {
    position: relative;
    width: 100px;
    height: fit-content;
    --ratio: 1;
}
.sizer-container .sizer {
    width: 100%;
    padding-bottom: calc(100% * (1/ var(--ratio)));
}
.sizer-container .content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.sizer-container.no-absolute .content {
    position: relative;
    width: 100%;
    height: 100%;
}
.sizer-container.no-absolute .sizer {
    padding-bottom: 0;
}
/* end app-sizer */

@media (max-width: 1024px) {
    .d-sm-none {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .d-md-none {
        display: none !important;
    }
}

footer {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 40px 0 30px 0;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    color: #8B8B8B;
}
footer p {
    color: #8B8B8B;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 5px 0;
}
footer p a {
    text-decoration: none;
    cursor: pointer;
    color: #8B8B8B;
}
footer p a:hover {
    text-decoration: underline;
}
footer .logo {
    display: block;
    width: 240px;
    margin: 0 auto 30px;
}
footer .logo img {
    width: 100%;
    object-fit: contain;
}
footer .socialnetworks-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 5px 0;
}
footer .socialnetworks-icons > * ~ * {
    margin-left: 14px;
}
footer .socialnetworks-icons .icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-color: #8B8B8B;
}