/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@font-face {
    font-family: 'TT Forms Pro';
    src: url(fonts/TTNormsPro.woff2);
    font-style: normal;
    font-display: swap;
}
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: 'TT Forms Pro';
	line-height: 24px;
    font-size: 14px;
    letter-spacing: 0.28px;
    background-color: #fefefe;
    color: #55575c;
}
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;
}

main {
    display: flex;
}
.left-block,.right-block {
    width: 50%;
    height: 100svh;
}
.left-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 30px 60px 50px;
}
.swiper-slide {
    max-height: 100svh;
    background-color: #000;
}
.swiper-slide img {
    max-height: 100svh;
    object-fit: cover;
    width: 100%;
    height: 100svh;
}
* {
    outline: none;
    box-sizing: border-box;
}
p:not(:last-child) {
    margin-bottom: 24px;
}
a {
    text-transform: uppercase;
    text-decoration: none;
    color: #55575c;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-size: 12px;
    text-decoration-color: transparent;
    transition: all .3s ease;
}

h1 {
    font-size: 12px;
    text-transform: uppercase;
    color: #55575c;
}
a.logo img {
    width: 86px;
}
@media screen and (min-width: 768px){
    a:hover {
        transition: all .3s ease;
        text-decoration-color: #55575c;
    }
    .hide-on-desktop {
        display: none;
    }
}
@media screen and (max-width: 767px){
    .hide-on-mobile {
        display: none;
    }
    .right-block {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .left-block {
        position: relative;
        z-index: 111;
        padding: 23px 18px 23px;
        width: 100%;
    }
    a,body,h1 {
        color: #fefefe;
    }
    .right-block::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }

    .swiper {
        height: 100svh;
    }

    p:not(:last-child) {
        margin-bottom: 36px;
    }
    body {
        line-height: 18px;
    }
}