/* Global */

:root {
    --red: #D12228;
}

body {
    background: #1C1C1C;
    color: #fff;
    line-height: 1.618;
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none
}

ul,
li {
    padding: 0;
    margin: 0
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

hr {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    border-top: 2px solid var(--red)
}

img {
    max-width: 100%;
}


/* Header */

header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: .5em 0
}

header .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5em;
    border: 1px solid var(--red);
    line-height: 1;
    height: 100%;
}

header .social a:not(:first-child) {
    margin-left: .5em
}

header svg {
    width: 1.25em;
    height: 1.25em;
    line-height: 1;
}

header .menu {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1em;
    align-items: stretch;
}

header .links {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1em
}

header .links a {
    display: grid;
    grid-template-columns: auto auto;
    gap: .5em;
    align-items: center;
    background: var(--red);
    padding: .5em 1em
}


/*
.links a:first-child {
    -webkit-border-top-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    border-top-left-radius: 8px;
}

.links a:last-child {
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    border-top-right-radius: 8px;
}*/


/* Slider */

.slider {
    width: 100%;
    height: 600px;
    background-image: url('../img/Slider.png');
    background-size: cover;
    display: block;
    text-indent: -999999px;
}


/* Content Area */

section {
    padding: 4em 0
}

.content-title {
    position: relative;
    font-size: 36px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2em auto;
    font-weight: 900;
    line-height: 1.5;
    text-transform: uppercase;
}

.content-title::after {
    content: "";
    position: absolute;
    bottom: -1em;
    left: calc(50% - 4em);
    width: 8em;
    height: .5em;
    background: var(--red)
}

section p {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}


/* type-area */

.type-area {
    background-image: url('../img/BGDesktop.png');
    background-repeat: no-repeat;
    padding: 4em 0
}

.type-area .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.type-area .single-type {
    width: 33.33%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    text-align: center;
}

.type-area .single-type .square {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3em;
}

.type-area .single-type .square img {
    width: 100px;
    z-index: 2;
}

.type-area .single-type .square::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--red);
    transform: rotate(45deg);
    background: rgba(0, 0, 0, 0.4)
}

.type-area .single-type .title {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 300;
}

.type-area .single-type p {
    margin: 0
}


/* promo grid */

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin: 2em 0
}

.promo-grid .title {
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: .5em;
}


/* social area */

.social-area {
    background: #000
}

.mobil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em
}

.mobil-grid a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1em;
    align-items: center;
    justify-content: space-between;
    padding: 2em;
    border: 2px solid var(--red);
    border-radius: 18px;
}

.mobil-grid .title {
    font-size: 2em;
    font-weight: 300;
}

.mobil-grid svg {
    width: 3em;
}


/* footer */

footer p {
    font-size: 16px
}

.copyright {
    color: var(--red);
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}

.mobil-button {
    display: none;
}
footer .links{display:grid;grid-template-columns:auto auto auto;gap:1em;justify-content:center;margin:1em 0}footer .links a{border:1px solid rgba(255,255,255,.1);border-radius:4px;padding:4px 8px}