/* fonts */
@font-face {
  font-family: LatoRegular;
  src: url(/assets/fonts/Lato-Regular.ttf);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: AllerDisplay;
  src: url(/assets/fonts/Aller_Rg.ttf);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	color: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.3;
	font-family: LatoRegular, Arial;
	background-color: #F2F2F2;
	color: #121212;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
h1 {
    font-family: AllerDisplay;
    font-size: 25px;
}
h2 {
    font-family: AllerDisplay;
    font-size: 15px;
}
h3 {
    font-family: AllerDisplay;
    font-size: 12px;
}

/* .nav */
.nav {
    height: 125px;
    padding: 0 20px;
}
.nav .nav__wrapper {
    height: 125px;
    max-width: 1283px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    justify-items: center;
}
.nav div {
}
.nav div:first-child {
    justify-self: start;
}
.nav div:last-child {
    justify-self: end;
}
.nav .nav__logo {}
.nav .nav__logo > img {
    width: 91px;
    height: 29px;
}
.nav .nav__right {
    display: flex;
    align-items: center;
}
.nav .nav__lang {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.nav .nav__lang > a {
    padding: 0 5px;
    height: 48px;
    text-decoration: none;
    font-family: AllerDisplay;
    font-size: 11px;
    display: flex;
    align-items: center;
}
.nav .nav__lang > a.active {
    font-weight: 700;
}
.nav .nav__item {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav .nav__item > span {
    text-transform: uppercase;
    margin: 0 10px 0 0;
    font-weight: 700;
    font-size: 12px;
}
@media (max-width: 1024px) {
    .nav .nav__wrapper {
        display: grid;
        grid-template-columns: 60px 1fr 60px;
    }
    .nav .nav__logo {
        order: 1;
        align-self: center;
        justify-self: center;
        grid-column: 2 / 3;
    }
    .nav .nav__lang {
        order: 2;
        align-self: center;
        justify-self: center;
    }
    .nav .nav__actions {
        order: 3;
        grid-column: 1 / 5;
        align-self: center;
        justify-self: center;
    }
}
@media (max-width: 500px) {
    .nav .nav__actions > a {
        margin: 0;
        padding: 0 10px;
    }
}

/* .main */
.main {}

/* .footer */
.footer {
    padding: 20px;
}
.footer .footer__wrapper {
    max-width: 1283px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 30px 0 0 0;
    border-top: 1px solid #121212;
}
.footer .footer__logo {
    flex: 1;
}
.footer .footer__logo > img {
    width: 72px;
    height: 23px;
}
.footer .footer__conf {}
.footer .footer__conf > img {
    max-width: 363px;
    height: 56px;
    width: 100%;
    object-fit: contain;
}
@media (max-width: 600px) {
    .footer .footer__wrapper {
        flex-flow: column;
    }
}

/* .icon */
.icon {
    display: block;
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    margin: 0 12px 0 0;
}
.icon.icon--is-phone {
    background-image: url(/assets/images/icon-phone.png);
}
.icon.icon--is-mail {
    background-image: url(/assets/images/icon-mail.png);
}
.icon.icon--is-location {
    background-size: auto 18px;
    background-image: url(/assets/images/icon-location.png);
}
.icon.icon--is-home {
    height: 34px;
    width: 34px;
    background-size: auto 34px;
    background-image: url(/assets/images/icon-home.png);
}
.icon.icon--is-user {
    height: 34px;
    width: 34px;
    background-size: auto 34px;
    background-image: url(/assets/images/icon-user.png);
}
.icon.icon--is-alert {
    height: 40px;
    width: 35px;
    background-size: auto 40px;
    background-image: url(/assets/images/icon-alert.png);
}
.icon.icon--is-logout {
    height: 34px;
    width: 34px;
    background-size: auto 34px;
    background-image: url(/assets/images/icon-logout.png);
}


/* .box */
.box {
    padding: 20px;
}
.box.box--is-color-dark {
    background-color: #121212;
    color: #F2F2F2;
}
.box .box__wrapper {
    max-width: 1283px;
    margin: 0 auto;
}
.box.box--is-type-1 .box__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: center;
    height: calc(100vh - 125px);
}
.box.box--is-type-2 .box__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}
.box.box--is-space-1 {
    padding-bottom: 150px;
}
.box.box--is-space-2 {
    padding-bottom: 50px;
}
.box .box__sidebyside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.box .box__sidebyside.box__sidebyside--is-invert div:nth-child(1) {
    order: 2;
}
.box .box__sidebyside.box__sidebyside--is-invert div:nth-child(2) {
    order: 1;
}
@media (max-width: 800px) {
    .box.box--is-type-1 .box__wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }
    .box.box--is-type-2 .box__wrapper {
        grid-template-columns: 1fr;
    }
    .box .box__sidebyside {
        grid-template-columns: 1fr;
    }
    .box .box__sidebyside.box__sidebyside--is-invert div:nth-child(1) {
        order: 1;
    }
    .box .box__sidebyside.box__sidebyside--is-invert div:nth-child(2) {
        order: 2;
    }
}

/* .title */
.title {
    height: 116px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    color: transparent;
    margin: 0 0 2em 0;
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
}
.title__wrapper {
    text-decoration: none;
    display: block;
}
.title-simple {
    width: 100%;
    margin: 0 0 20px 0;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-weight: bold;
}

/* .subtitle */
.subtitle {
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0 20px 0;
    letter-spacing: 0.025em;
    min-height: 20px;
    font-weight: 700;
}
.subtitle.subtitle--is-left {
    align-self: flex-start;
}
.subtitle.subtitle--is-style-2 {
    margin: 10px 0 5px 0;
}

.subsubtitle {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.025em;
    min-height: 40px;
    font-weight: 700;
}
.subsubtitle.subsubtitle--is-left {
    align-self: flex-start;
}

/* .description */
.description {
    line-height: 1.5em;
}
.description.description--is-space-1 {
    padding-left: 188px;
}
@media (max-width: 800px) {
    .description.description--is-space-1 {
        padding-left: 0;
    }
}

/* .list */
.list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 40px;
    margin: 10px 0;
    justify-items: center;
    align-items: center;
}
.list.list--is-type-promoters {
    grid-template-columns: 1fr 2fr 1fr;
    justify-items: flex-start;
}
.list.list--is-type-promoters-2 {
    grid-template-columns: 1fr 1fr;
    justify-items: flex-start;
    align-items: flex-start;
}
.list.list--is-type-system {
    grid-template-columns: 1fr 1fr;
    justify-items: flex-start;
    align-items: flex-start;
}
.list .list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.list .list__group-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
    height: 160px;
}
.list .list__group-inline.list__group-inline--is-type-1 {
    grid-template-columns: 1fr 1fr;
}
.list .list__image {
    height: 140px;
    display: flex;
    align-items: center;
}
@media (max-width: 960px) {
    .list.list--is-type-promoters {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
        align-items: center;
    }
    .list.list--is-type-objectives {
        grid-template-columns: 1fr;
    }
    
    .list.list--is-type-promoters .subtitle.subtitle--is-left {
        align-self: center;
    }
}
@media (max-width: 600px) {
    .list .list__group-inline.list__group-inline--is-type-1 {
        grid-template-columns: 1fr;
    }
    .list.list--is-type-system {
        grid-template-columns: 1fr;
    }
    .list.list--is-type-promoters-2 {
        grid-template-columns: 1fr;
    }
}

/* .image-full */
.image-full {
    width: 100%;
    max-width: 753px;
}

/* .topic */
.topic {
    display: flex;
    margin: 10px 0 0 0;
}

/* .list-2 */
.list-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 10px 0;
    justify-items: center;
    align-items: center;
}
.list-2 img {
    width: 100%;
    max-width: 749px;
}
/* .team */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
    gap: 74px;
    margin: 10px 0;
    justify-items: center;
    align-items: center;
}
.team .team__item {
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 266px;
}
.team .team__image {
    position: relative;
    margin: 0 0 10px 0;
    background-color: #333;
    max-width: 266px;
    width: 100%;
}
.team .team__image::after {
    content: ' ';
    display: block;
    padding-top: 100%;
}
.team .team__image > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}
.team .team__name {
    font-family: AllerDisplay;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.team .team__src {
    font-size: 12px;
}

/* .team-details */
.team-details {
    display: grid;
    grid-template-columns: 266px minmax(266px, 1fr);
    gap: 20px;
    margin: 10px 0;
    justify-items: center;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
}
.team-details .team-details__profile {
    width: 100%;
    max-width: 266px;
}
.team-details .team-details__image {
    position: relative;
    margin: 0 0 10px 0;
    background-color: #333;
    max-width: 266px;
    width: 100%;
}
.team-details .team-details__image::after {
    content: ' ';
    display: block;
    padding-top: 100%;
}
.team-details .team-details__image > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}
.team-details .team-details__name {
    font-family: AllerDisplay;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.team-details .team-details__src {
    font-size: 12px;
}
.team-details .team-details__content {
    font-size: 12px;
    line-height: 1.3em;
}
@media (max-width: 740px) {
    .team-details {
        grid-template-columns: 1fr;
    }
}

.panel {
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.panel .panel__content {
    background-color: #fff;
    padding: 24px;
    min-width: 280px;
}
.panel .panel__title {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}
.panel .panel__field {
    margin: 0 0 15px 0;
}
.panel .panel__error{
    border: 1px solid #ef9a9a;
    padding: 10px 20px;
    color: #f44336;
    background-color: #ffebee;
    margin: 0 0 16px 0;
    font-size: 12px;
}
.panel .panel__field input {
    padding: 16px 20px;
    font-size: 12px;
    border: 1px solid #121212;
    width: 100%;
    box-sizing: border-box;
}
.panel .panel__button {
    margin: 15px 0 0 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px;
    background-color: #FCC62E;
    border: none;
    width: 100%;
    cursor: pointer;
}

