/* resets */

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 {
    line-height: 1;
}

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;
}


/* fonts */

@font-face {
    font-family: 'FONTFABRIC';
    src: url('../fonts/FONTFABRIC - MULLERLIGHTITALIC.OTF');
    font-weight: 300;
}

@font-face {
    font-family: 'FONTFABRIC';
    src: url('../fonts/FONTFABRIC - MULLERREGULAR.OTF');
    font-weight: 600;
}

@font-face {
    font-family: 'FONTFABRIC';
    src: url('../fonts/FONTFABRIC - MULLERREGULAR.OTF');
    font-weight: 400;
}

body * {
    font-family: 'FONTFABRIC';
    font-weight: 300;
}

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


/* main-styles */


/* general */

body {
    box-sizing: border-box;
    padding-bottom: 77px;
}

.static-bg {
    background-color: #f4efd6;
    min-height: 100vh;
}

.cont {
    width: 100%;
    padding: 0 5vw;
    box-sizing: border-box;
    max-width: 800px;
    margin: 0 auto;
}


/* bottom-menu */

.bottom-menu {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #d90000 !important;
    -webkit-box-shadow: 0px -7px 35px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px -7px 35px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px -7px 35px 0px rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.bottom-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 36px 0 13px;
}


.bottom-links__el svg {
    height: 26px;
}

.static-color {
    color: #ffffff;
}

.bottom-links__el {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #fff;
    transition: all .3s ease;
    height: 100%;
    padding: 0 40px 0 20px;
}
.bottom-links__el:hover {
    background-color: #1d353e;
}
@media screen and (max-width: 410px) {
    .bottom-links {
        padding: 0;
    }
}


.arrow-back{
    height: 20px;
}

.arrow-back path{
    fill: #ff975d!important;
}
/* page-title */

.title-section {
    position: relative;
    overflow: hidden;
    padding: 32px 0 32px;
}

.page-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #1e2026;
}

.title-section a {
    position: absolute;
    left: 18px;
    top: 25px;
}

@media screen and (min-width: 800px) {
    .cont {
        padding: 0
    }
}


.d-none {
    display: none;
}