﻿/* montserrat-regular - cyrillic_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/montserrat/montserrat-v26-cyrillic_latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-italic - cyrillic_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url('/fonts/montserrat/montserrat-v26-cyrillic_latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-800 - cyrillic_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('/fonts/montserrat/montserrat-v26-cyrillic_latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* logo svg */
.svg-1 {
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 800;
}

.svg-1, .svg-2 {
    fill: #202020;
}

.svg-3 {
    fill: #f6f5f3;
}

body {
    height: 100%;
    background-color: #f6f5f3;
    color: #3c3b39;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
}

.body-container {
    margin: 0 auto;
    padding: 0;
    display: grid;
    /*    grid-template-columns: 260px 1fr;*/
    grid-template-rows: 100px 100% 170px;
    grid-template-areas:
        "header"
        "main"
        "footer";
    min-height: 100vh;
    max-width: 70%;
}

a {
    color: inherit;
    text-decoration-color: #202020;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
    }

ul {
    padding: 0;
}

.list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header {
    grid-area: header;
    margin: 20px 0;
}

.standart-container {
    max-width: 1280px;
}

.main {
    grid-area: main;
}

.login-page-title {
    font-weight: normal;
    font-size: 24px;
    text-align: center;
    color: #202020;
}

.providers-container {
    margin-top: 3%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.providers-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    vertical-align: top;
}

.providers-item {
    border: 2pt solid #8f8e8e;
    border-radius: 10px;
    margin: 10px;
}

.providers-item-content {
    position: relative;
    width: 330px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
    text-decoration: none;
}

    .providers-item-content:hover {
        color: #202020;
    }

    .providers-item-content .provider-logo {
        position: relative;
        margin: 10px;
        width: 100px;
        height: 105px;
        vertical-align: middle;
        text-align: center;
        background-size: contain;
        background-position: center !important;
        background-repeat: no-repeat;
    }

    .providers-item-content .provider-title {
        width: 100%;
        display: inline-block;
        vertical-align: middle;
    }


.footer {
    grid-area: footer;
    padding: 0 10px;
    background-color: #202020;
    color: #f2f8ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* header block */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    width: 130px;
    height: 100%;
}

.logo-img {
    object-fit: contain;
}

.user-info {
}


/* main block */
.welcome-page {
    padding: 20px 0;
}

.flex {
    display: flex;
    height: 100%;
}

/* footer block */
.footer {
    height: 170px;
    background-color: #202020;
    color: #f2f8ff;
    justify-content: center;
    align-items: center;
}

.footer-container {
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu-item {
    width: 50%;
}

.copyright {
    font-size: 11px;
}
