@charset "UTF-8";

/* =============== RESET =============== */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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;
}

strong {
  font-weight: 700;
}

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

.dropdown-item {
    white-space: normal;
  }

/* =============== FONTS =============== */

@font-face {
  font-family: 'AkzidenzGroteskPro';
  font-weight: 800;
  src: local('AkzidenzGroteskPro-Bold'),
       url('../fonts/AkzidenzGroteskPro-Bold.woff') format('woff'),
       url('../fonts/AkzidenzGroteskPro-Bold.ttf') format('ttf'),
       url('../fonts/AkzidenzGroteskPro-Bold.eot') format('eot');
}

@font-face {
  font-family: 'AkzidenzGroteskPro';
  font-weight: 600;
  src: local('AkzidenzGroteskPro-Md'),
       url('../fonts/AkzidenzGroteskPro-Md.woff') format('woff'),
       url('../fonts/AkzidenzGroteskPro-Md.ttf') format('ttf'),
       url('../fonts/AkzidenzGroteskPro-Md.eot') format('eot');
}

@font-face {
  font-family: 'AkzidenzGroteskPro';
  font-weight: 400;
  src: local('AkzidenzGroteskPro-Regular'), 
       url('../fonts/AkzidenzGroteskPro-Regular.woff') format('woff'),
       url('../fonts/AkzidenzGroteskPro-Regular.ttf') format('ttf'),
       url('../fonts/AkzidenzGroteskPro-Regular.eot') format('eot');
}



/* =============== ICONS =============== */ 
/* @import url('icon.css'); */


/* =============== GENERAL =============== */
:root {
	--fontSize: 16px;
	--darkColor: #151515;
	--secondaryDarkColor: #232323;
	--primeColor: #A05B43;
	--primeColorActive: #884C38;
	--secondaryColor: #9a554b;
	--secondaryColorActive: #9a554b;
	--disableColor: #C1CCCE;
	--colorText: #3b3d3d;
	--secondaryColorText: #14171e;
	--colorGrey: #dadada;
	--colorSecondaryGrey: #d5d9dd;
	--secondaryColorBorder: #d9bebb;
}
 
@media (max-width: 719px) {
	:root {
		--fontSize: 14px;
	}
}

.container {
	max-width: 1470px;
}

@media (max-width: 1365px) {
	.container {
		max-width: 720px;
	}
}

@media (max-width: 719px) {
	.container {
		max-width: 360px;
	}
}

html, body {
	margin: 0;
	padding: 0;
	font-family: 'AkzidenzGroteskPro';
	font-size: 16px;
	font-size: var(--fontSize);
	font-weight: 400;
	color: #151515;
	color: var(--darkColor);
}

body {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	overflow-x: hidden;
}

a {
	color: #A05B43;
	color: var(--primeColor);
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

a:hover {
		text-decoration: none;
	}

input,
button,
textarea,
select {
	outline: none !important;
}

input:focus,
	input:active,
	button:focus,
	button:active,
	textarea:focus,
	textarea:active,
	select:focus,
	select:active {
		outline: none !important;
		-webkit-box-shadow: none !important;
		        box-shadow: none !important;
	}

img {
	max-width: 100%;
}

.wrapper {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 100vh;
	width: 100%;
	background: #fff;
}

.wrapper.is_error_page {
		background: url('./../img/page_bg.jpg') no-repeat center / cover;
	}

.wrapper.is_error_page::after {
			content: '';
			position: absolute;
			top: 0; left: 0;
			width: 100%; height: 100%;
			background: rgba(255, 255, 255, .6);
		}

.icon {
	width: 100%;
	height: auto;
}

.page__heading {
		padding: 68px 0 25px;
	}

@media (max-width: 1365px) {

.page__heading {
			padding: 30px 0
	}
		}

@media (max-width: 719px) {

.page__heading {
			padding: 20px 0
	}
		}

.page__headline {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		   -moz-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		   -moz-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		margin-bottom: 40px;
	}

@media (max-width: 1365px) {

.page__headline {
			margin-bottom: 25px;
			-webkit-box-orient: vertical;
			-webkit-box-direction: reverse;
			   -moz-box-orient: vertical;
			   -moz-box-direction: reverse;
			    -ms-flex-direction: column-reverse;
			        flex-direction: column-reverse;
			-webkit-box-align: start;
			   -moz-box-align: start;
			    -ms-flex-align: start;
			        align-items: flex-start;
			-webkit-box-pack: start;
			   -moz-box-pack: start;
			    -ms-flex-pack: start;
			        justify-content: flex-start
	}
		}

@media (max-width: 719px) {

.page__headline {
			margin-bottom: 20px
	}
		}

.page-settings {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		   -moz-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		   -moz-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}

@media (max-width: 1365px) {

.page-settings {
			width: 100%;
			margin-bottom: 45px
	}
		}

.page__menu-toggle {
		display: none;
		-webkit-box-align: center;
		   -moz-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		   -moz-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		width: 40px;
		height: 40px;
		margin-right: 35px;
		border-radius: 2px;
		border: 2px solid #9a554b;
		background: transparent;
		-webkit-transition: background-color .2s;
		transition: background-color .2s;
		cursor: pointer;
	}

.page__menu-toggle span {
			height: 3px;
			width: 3px;
			margin: 0 1px;
			border-radius: 50%;
			background: #9a554b;
			-webkit-transition: background-color .2s;
			transition: background-color .2s;
		}

.page__menu-toggle:hover {
			background: #9a554b;
		}

.page__menu-toggle:hover span {
				background: #fff;
			}

@media (max-width: 1365px) {

.page__menu-toggle {
			display: -webkit-box;
			display: -moz-box;
			display: -ms-flexbox;
			display: flex
	}
		}

.page-langs {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		width: 280px;
		height: 54px;
		border-radius: 3px;
		overflow: hidden;
	}

@media (max-width: 1365px) {

.page-langs {
			width: 170px;
			height: 40px
	}
		}

.page-langs__link {
			display: -webkit-box;
			display: -moz-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: center;
			   -moz-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			-webkit-box-pack: center;
			   -moz-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
			font-weight: 700;
			font-size: 14px;
			border: 2px solid #9a554b;
			width: 50%;
			height: 100%;
			color: #9a554b;
			letter-spacing: 0.7px;
		}

.page-langs__link.is_active,
			.page-langs__link:hover {
				background: #9a554b;
				color: #fff;
			}

@media (max-width: 1365px) {

.page-langs__link {
				font-size: 12px
		}
			}

.page__title {
		display: block;
		font-weight: 700;
		font-size: 45px;
	}

@media (max-width: 1365px) {

.page__title {
			font-size: 36px
	}
		}

@media (max-width: 719px) {

.page__title {
			font-size: 24px
	}
		}

.page__description {
		max-width: 1244px;
		margin-top: 30px;
		color: #3b3d3d;
		color: var(--colorText);
		font-size: 18px;
		line-height: 28px;
	}

.page__description p {
			margin-bottom: 25px;
		}

@media (max-width: 1365px) {

.page__description p {
				margin-bottom: 20px
		}
			}

@media (max-width: 719px) {

.page__description p {
				margin-bottom: 15px
		}
			}

@media (max-width: 1365px) {

.page__description {
			font-size: 16px;
			line-height: 1.4
	}
		}

@media (max-width: 719px) {

.page__description {
			font-size: 14px
	}
		}

.page__description_hidden {
			height: auto;
			-webkit-transition: height .5s;
			transition: height .5s;
		}

.page__content {
		position: relative;
		padding: 50px 0 100px;
		background: url('./../img/page_bg.jpg') no-repeat fixed;
		background-size: cover;
	}

.page__content::before {
			content: '';
			position: absolute;
			top: 0; left: 0;
			width: 100%; height: 100%;
			background: #efe4e0;
			opacity: 0.68;
		}

@media (max-width: 1365px) {

.page__content {
			padding: 40px 0 20px
	}
		}

.page__more {
		display: block;
		margin-top: 15px;
		font-weight: 700;
		font-size: 14px;
		color: #9a554b;
		color: var(--secondaryColor);
	}

.page__more:hover {
			color: #9a554b;
			color: var(--secondaryColor);
			text-decoration: underline;
		}

.page__more:not(.collapsed) i {
				-webkit-transform: rotate(180deg);
				        transform: rotate(180deg);
			}

.page__more i {
			margin-left: 10px;
			-webkit-transition: -webkit-transform .2s;
			transition: -webkit-transform .2s;
			transition: transform .2s;
			transition: transform .2s, -webkit-transform .2s;
		}

/* =============== BLOCKS =============== */

/* form-base */
::-webkit-input-placeholder { color: var(--lightColor); }
::-moz-placeholder          { color: var(--lightColor); }
:-moz-placeholder           { color: var(--lightColor); }
:-ms-input-placeholder      { color: var(--lightColor); }



/* =============== COMPONENTS =============== */

/* button */
.button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  letter-spacing: 0.16px;
  border-radius: 2px;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
}
.button_regular {
    color: #151515;
    color: var(--darkColor);
    background: #fff;
  }
.button_regular:hover {
      color: #fff;
      background: #9a554b;
      background: var(--secondaryColor);
    }
.button_regular:active {
      color: #fff;
      background: #9a554b;
      background: var(--secondaryColorActive);
    }
.button_lg {
    min-width: 205px;
    max-width: 296px;
    height: 58px;
    padding: 0 30px;
    text-align: center;
    line-height: 18px;
  }
@media (max-width: 1365px) {
.button_lg {
      min-width: 155px;
      max-width: 245px;
      height: 48px;
      padding: 0 20px;
      font-size: 14px
  }
    }
.button_filled {
    color: #fff;
    background: #9a554b;
    background: var(--secondaryColor);
    border: 1px solid #9a554b;
    border: 1px solid var(--secondaryColor);
  }
.button_filled:hover {
      color: #9a554b;
      color: var(--secondaryColor);
      background: transparent;
    }
.button_filled:active {
      -webkit-box-shadow: 0 10px 18px 2px rgba(153, 89, 79, 0.6);
              box-shadow: 0 10px 18px 2px rgba(153, 89, 79, 0.6);
    }
.button_xl {
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 410px;
    min-width: 350px;
    height: 58px;
    padding: 0 30px;
    text-align: left;
  }
@media (max-width: 1365px) {
.button_xl {
      min-width: 250px;
      max-width: 200px;
      height: 48px;
      padding: 0 20px;
      font-size: 14px
  }
    }
@media (max-width: 719px) {
.button_xl {
      min-width: 200px;
      max-width: 150px;
      height: 38px;
      padding: 0 15px;
      font-size: 12px
  }
    }


/* =============== MODULES =============== */

/* mobile menu */
.mobileMenu {
  display: none;
  background: #9a554b;
  background: var(--secondaryColor);
  min-height: 100vh;
}
.mobileMenu .nav__settings {
      margin-top: 30px;
      padding-bottom: 30px;
    }
.mobileMenu .nav__list {
      margin-bottom: 30px;
    }
.mobileMenu .nav__list li {
        border-bottom: 1px solid #dadada;
        border-bottom: 1px solid var(--colorGrey);
      }
.mobileMenu .nav__list li a {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
             -moz-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          padding: 20px;
          font-weight: 700;
          font-size: 14px;
          color: #fff;
        }
.mobileMenu .nav__list li.is_current_page a {
            background: #fff;
            color: #9a554b;
            color: var(--secondaryColorActive);
          }
.mobileMenu .header__cabinet {
      margin-left: 0;
      padding: 0 20px;
    }
.mobileMenu .header__signup {
      margin: 20px auto 0;
    }
.mobileMenu .header__cabinet,
    .mobileMenu .header__signup {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
    }



.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: auto;
    left: 0;
    z-index: 0;
    width: 290px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
  }



.slideout-menu-right {
      left: auto;
    }



.slideout-panel {
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
            box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  }



.slideout-open,
  .slideout-open body,
  .slideout-open .slideout-panel {
    overflow: hidden;
  }



.slideout-open .slideout-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

/* header */
.header {
  position: relative;
  z-index: 1;
  background-color: #151515;
  background-color: var(--darkColor);
}
.header__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 0;
  }
.header__logotypes,
  .header__settings {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
@media (max-width: 1365px) {
.header__logotypes {
      -webkit-box-flex: 0;
         -moz-box-flex: 0;
          -ms-flex: 0 1 150px;
              flex: 0 1 150px
  }
    }
.header__logo {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    font-size: 0;
  }
.header__logo:not(:last-child) {
      margin-right: 64px;
    }
@media (max-width: 1600px) {
.header__logo:not(:last-child) {
        margin-right: 40px
    }
      }
@media (max-width: 1365px) {
.header__logo:not(:last-child) {
        margin-right: 20px
    }
      }
@media (max-width: 1600px) {
.header__logo {
      width: 180px
  }
    }
@media (max-width: 1365px) {
.header__logo {
      width: 50px
  }
      .header__logo img {
        display: block;
        max-width: none;
      }
    }
.header__settings {
    -webkit-box-pack: end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
.header__lang-toggle {
      background: transparent;
      color: #fff;
    }
.header__lang-toggle::after {
        position: absolute;
        top: 3px;
        bottom: 0;
        right: -8px;
        width: 12px;
        height: 7px;
        margin: auto;
        border: none;
      }
.header__lang-toggle i {
        font-size: 13px;
        margin-left: 5px;
        -webkit-transition: -webkit-transform .2s;
        transition: -webkit-transform .2s;
        transition: transform .2s;
        transition: transform .2s, -webkit-transform .2s;
      }
.header__lang-toggle:hover {
        color: #A05B43;
        color: var(	--primeColor);
      }
.header__lang.show > button {
        color: #A05B43;
        color: var(	--primeColor);
      }
.header__lang.show > button i {
          -webkit-transform: rotate(180deg);
                  transform: rotate(180deg);
        }
.header__lang-menu {
      width: 70px;
      min-width: auto;
      padding: 0;
      border-radius: 0;
    }
.header__lang-menu a {
        padding: 7px 10px;
        text-align: center;
      }
.header__lang-menu a:hover {
          background: #9a554b;
          background: var(--secondaryColorActive);
          color: #fff;
        }
.header__cabinet {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 79px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.14px;
    color: #fff;
  }
@media (max-width: 1600px) {
.header__cabinet {
      margin-left: 45px
  }
    }
@media (max-width: 1365px) {
.header__cabinet {
      margin-left: 40px
  }
    }
@media (max-width: 719px) {
.header__cabinet {
      display: none
  }
    }
.header__cabinet-icon {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 32px; height: 32px;
      min-width: 32px;
      padding: 9px;
      margin-right: 19px;
      border-radius: 50%;
      background: #313131;
    }
@media (max-width: 1365px) {
.header__cabinet-icon {
        margin-right: 10px
    }
      }
.header__cabinet:hover {
      color: #9a554b;
      color: var(--secondaryColorActive);
    }
.header__signup {
    margin-left: 35px;
  }
@media (max-width: 1600px) {
.header__signup {
      max-width: 283px;
      margin-left: 30px;
      font-size: 15px
  }
    }
@media (max-width: 1365px) {
.header__signup {
      margin-left: 20px
  }
    }
@media (max-width: 719px) {
.header__signup {
      display: none
  }
    }
.header__menu {
    display: none;

    /* &-toggle {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 48px; height: 48px;
      border: 1px solid transparent;
      background: var(--secondaryColor);
      border-radius: 2px;
      cursor: pointer;
      transition: background-color .2s, color .2s, border-color .2s;
      span {
        margin: 2px 0;
        height: 2px;
        width: 24px;
        background: #fff;
      }
      &:hover {
        background: transparent;
        border-color: #fff;
      }
    } */
  }
@media (max-width: 1365px) {
.header__menu {
      display: block;
      margin-left: 20px
  }
    }
.header .nav {
  background: #9a554b;
  background: var(--secondaryColor);
}
@media (max-width: 1365px) {
.header .nav {
    display: none
}
  }
.header .nav__list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
.header .nav__list:hover li:not(.is_current_page) {
        opacity: 0.5;
      }
.header .nav__list > li {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 80px;
      cursor: pointer;
      background: transparent;
      -webkit-transition: background-color .2s, border-color .2s, opacity .2s;
      transition: background-color .2s, border-color .2s, opacity .2s;
    }
.header .nav__list > li > a {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0 45px 0 20px;
        width: 100%;
        font-weight: 700;
        font-size: 13px;
        line-height: 18px;
        color: #fff;
        -webkit-transition: color .2s;
        transition: color .2s;
      }
@media(max-width: 1500px) {
.header .nav__list > li > a {
          padding-right: 30px;
          font-size: 12px
      }
        }
.header .nav__list > li > a::after {
          content: '';
          position: absolute;
          top: 0; right: 0; bottom: 0;
          height: 24px; 
          width: 10px;
          margin: auto;
          border: 12px solid transparent; border-left: 10px solid #fff;
          opacity: 0.18;
        }
.header .nav__list > li.is_current_page {
        background: #fff;
      }
.header .nav__list > li.is_current_page a {
          color: #9a554b;
          color: var(--secondaryColor);
        }
.header .nav__list > li.is_current_page a::after {
            border-left-color: #9a554b;
            border-left-color: var(--secondaryColor);
          }
.header .nav__list > li:not(.is_current_page):hover {
          opacity: 1 !important;
        }
.header .nav__list > li:not(.is_current_page):hover a::after {
              border-left-color: #fff;
              opacity: 1;
            }
.header .nav__list > li.dropdown:hover ul {
            display: block;
          }
.header .nav__list > li.dropdown a::after {
            top: 10px;
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
          }
.header .nav__list > li.dropdown ul {
          position: absolute;
          top: 101%; right: 0;
          display: none;
          width: 250px;
          background: #9a554b;
          background: var(--secondaryColor);
          -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
                  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
        }
.header .nav__list > li.dropdown ul > li {
            opacity: 1 !important;
          }
.header .nav__list > li.dropdown ul > li > a {
              display: -webkit-box;
              display: -moz-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                 -moz-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 14px;
              line-height: 1.3;
              padding: 13px 10px;
              color: #fff;
              background: transparent;
              
              -webkit-transition: background-color .2s, color .2s;
              
              transition: background-color .2s, color .2s;
            }
.header .nav__list > li.dropdown ul > li > a:hover {
                background: #fff;
                color: #9a554b;
                color: var(--secondaryColor);
              }
.header .nav__list > li.dropdown ul > li:not(:last-child) {
              border-bottom: 1px solid #eaeaea;;
            }

/* footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 42px 0;
  background: #232323;
  background: var(--secondaryDarkColor);
}
.footer__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
@media (max-width: 719px) {
.footer__inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column
  }
    }
.footer__copyright {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 40px;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
@media (max-width: 719px) {
.footer__copyright {
      margin-left: 0
  }
    }
.footer__text {
    font-size: 15px;
    letter-spacing: 0.15px;
    color: #fff;
  }
@media (max-width: 1365px) {
.footer__text {
      font-size: 14px
  }
    }
.footer__info {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 18px;
    color: #696969;
  }
.footer__logotypes {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
@media (max-width: 719px) {
.footer__logotypes {
      margin-bottom: 20px
  }
    }
.footer__logo {
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    font-size: 0;
  }
.footer__logo img {
      height: 100%;
      width: 100%;
    }
@media (max-width: 1365px) {
.footer__logo--desktop {
        display: none
    }
      }
.footer__logo--small {
      display: none;
      width: 100px;
    }
@media (max-width: 1365px) {
.footer__logo--small {
        display: block
    }
      }
.footer__logo:not(:last-child) {
      margin-right: 35px;
    }
@media (max-width: 1365px) {
.footer__logo:not(:last-child) {
        min-width: 48px;
        width: 48px;
        margin-right: 20px
    }
      }
@media (max-width: 1365px) {
.footer__logo {
      min-width: 50px;
      width: 50px;
      height: 45px
  }
      .footer__logo img {
        display: block;
        max-width: none;
        width: auto;
      }
    }


/* content */


/* page-card */
.page-card {
  position: relative;
  width: 100%;
  min-height: 1px;
  margin-bottom: 30px;
  padding: 0 15px;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  
}
@media (max-width: 1920px) {
.page-card {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%
  
}
  }
@media (max-width: 1365px) {
.page-card {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%
  
}
  }
@media (max-width: 719px) {
.page-card {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px
  
}
  }
.page-card__title {
    display: block;
    padding: 0 50px 0 40px;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 0.21px;
    line-height: 32px;
  }
@media (max-width: 1365px) {
.page-card__title {
      padding: 0 35px;
      font-size: 18px;
      line-height: 1.5
  }
    }
@media (max-width: 719px) {
.page-card__title {
      padding: 0 20px;
      font-size: 16px;
      line-height: 1.5
  }
    }
.page-card__button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 80px;
    min-width: 69px;
    width: 69px;
    margin-left: auto;
    background: transparent;
    border: none;
    border-left: 1px solid #dadada;
    border-left: 1px solid var(--colorGrey);
    cursor: pointer;
  }
@media (max-width: 1365px) {
.page-card__button {
      height: 70px
  }
    }
@media (max-width: 719px) {
.page-card__button {
      height: 60px
  }
    }
.page-card__button i {
      color: #9a554b;
      color: var(--secondaryColor);
      -webkit-transition: color .2s;
      transition: color .2s;
    }
.page-card__container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 0;
    height: 100%;
    background: #fff;
  }
@media (max-width: 1365px) {
.page-card__container {
      padding: 25px 0
  }
    }
@media (max-width: 719px) {
.page-card__container {
      padding: 20px 0
  }
    }
.page-card__container:hover {
      background: #9a554b;
      background: var(--secondaryColorActive);
      -webkit-box-shadow: 0 10px 18px 2px rgba(153, 89, 79, 0.6);
              box-shadow: 0 10px 18px 2px rgba(153, 89, 79, 0.6);
      color: #fff;
    }
.page-card__container:hover .page-card__button {
        border-left-color: #fff;
      }
.page-card__container:hover .page-card__button i {
          color: #fff;
        }

/* news */
.news-card {
  position: relative;
  width: 100%;
  min-height: 1px;
  margin-bottom: 20px;
  padding: 0 15px;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.news-card__container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 40px;
    padding-bottom: 0;
    background: #fff;
    -webkit-transition: -webkit-box-shadow .2s;
    transition: -webkit-box-shadow .2s;
    transition: box-shadow .2s;
    transition: box-shadow .2s, -webkit-box-shadow .2s;
  }
.news-card__container:hover {
      -webkit-box-shadow: 0 10px 18px 2px rgba(153, 89, 79, 0.6);
              box-shadow: 0 10px 18px 2px rgba(153, 89, 79, 0.6);
    }
.news-card__container:hover .news-card__title {
        color: #9a554b;
        color: var(--secondaryColor);
      }
@media (max-width: 1365px) {
.news-card__container {
      padding: 30px;
      padding-bottom: 0
  }
    }
@media (max-width: 719px) {
.news-card__container {
      padding: 15px;
      padding-bottom: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column
  }
    }
.news-card__title {
    display: block;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 24px;
    color: var(--colorDark);
    -webkit-transition: color .2s;
    transition: color .2s;
    cursor: pointer;
  }
@media (max-width: 1365px) {
.news-card__title {
      margin-bottom: 20px;
      font-size: 20px
  }
    }
@media (max-width: 719px) {
.news-card__title {
      margin-bottom: 15px;
      font-size: 18px
  }
    }
.news-card__text {
    position: relative;
    letter-spacing: 0.16px;
    line-height: 1.5;
    color: #3b3d3d;
    color: var(--colorText);
    overflow: inherit;
    -webkit-transition: height .5s ease-in-out;
    transition: height .5s ease-in-out;
  }
.news-card__text::after {
      position: absolute;
      content: '';
      bottom: 0; left: 0;
      width: 100%; height: 0;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .5)), to(#fff));
      background-image: linear-gradient(to bottom, rgba(255, 255, 255, .5), #fff);
      -webkit-box-shadow: 5px 0 20px 0 rgba(255, 255, 255, .5);
              box-shadow: 5px 0 20px 0 rgba(255, 255, 255, .5);
      opacity: 0;
      -webkit-transition: opacity .2s, height .2s;
      transition: opacity .2s, height .2s;
    }
.news-card__text:not(.show) {
      display: block !important;
      height: 90px;
      overflow: hidden;
    }
.news-card__text:not(.show)::after {
        opacity: 1;
        height: 30px;
      }
.news-card__text.show {
      min-height: 150px;
    }
.news-card__text.collapsing {
      height: 90px;
    }
@media (max-width: 1365px) {
.news-card__text {
      font-size: 14px
  }
    }
@media (max-width: 719px) {
.news-card__text {
      font-size: 12px
  }
    }
.news-card__text p {
      margin-bottom: 15px;
    }
@media (max-width: 1365px) {
.news-card__text p {
        margin-bottom: 10px
    }
      }
.news-card__text ul li {
        position: relative;
        margin-bottom: 15px;
        padding-left: 30px;
      }
@media (max-width: 1365px) {
.news-card__text ul li {
          margin-bottom: 10px;
          padding-left: 20px
      }
        }
.news-card__text ul li::before {
          position: absolute;
          content: '';
          top: 10px;
          left: 0;
          width: 4px; height: 4px;
          border-radius: 50%;
          background: #151515;
          background: var(--darkColor);
        }
@media (max-width: 1365px) {
.news-card__text ul li::before {
            top: 8px
        }
          }
.news-card__text i:not(.fas) {
      font-style: italic;
    }
.news-card__items {
    padding-top: 15px;
  }
.news-card__content {
    padding-right: 50px;
    /* max-width: 920px; */
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    width: 100%;
  }
@media (max-width: 719px) {
.news-card__content {
      -webkit-box-ordinal-group: 2;
         -moz-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      padding-right: 0;
      -webkit-box-flex: 1;
         -moz-box-flex: 1;
          -ms-flex: auto;
              flex: auto
  }
    }
.news-card__content .news-item {
      margin-bottom: 15px;
      border: 1px solid #d9bebb;
      border: 1px solid var(--secondaryColorBorder);
      border-radius: 4px;
    }
.news-card__content .news-item__title {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        padding: 22px 35px;
        font-weight: 700;
        color: #14171e;
        color: var(--secondaryColorText);
        letter-spacing: 0.16px;
        background: none;
        border: none;
        cursor: pointer;
      }
.news-card__content .news-item__title.is_active .fa-plus::before {
              content: "\f068"
            }
@media (max-width: 1365px) {
.news-card__content .news-item__title {
          padding: 15px 40px 15px 20px
      }
        }
.news-card__content .news-item__toggle {
        position: absolute;
        top: 20px; right: -12.5px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid #9a554b;
        border: 2px solid var(--secondaryColor);
        color: #9a554b;
        color: var(--secondaryColor);
        font-size: 14px; 
        background: #fff;
      }
@media (max-width: 1365px) {
.news-card__content .news-item__toggle {
          top: 13px; right: 10px
      }
        }
.news-card__content .news-item__content {
        padding: 0 34px 15px;
        line-height: 24px;
        letter-spacing: 0.16px;
        color: #14171e;
        color: var(--secondaryColorText);
      }
@media (max-width: 1365px) {
.news-card__content .news-item__content {
          padding: 0 20px 10px;
          font-size: 14px;
          line-height: 1.5
      }
        }
@media (max-width: 719px) {
.news-card__content .news-item__content {
          font-size: 12px
      }
        }
.news-card__media {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 410px;
    width: 100%;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
@media (max-width: 1365px) {
.news-card__media {
      max-width: 200px
  }
    }
@media (max-width: 719px) {
.news-card__media {
      max-width: 100%;
      margin-bottom: 20px;
      -webkit-box-ordinal-group: 1;
         -moz-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0;
      -webkit-box-flex: 1;
         -moz-box-flex: 1;
          -ms-flex: auto;
              flex: auto
  }
    }
.news-card__thumbnail {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
  }
@media (max-width: 1365px) {
.news-card__thumbnail {
      height: 140px
  }
    }
@media (max-width: 719px) {
.news-card__thumbnail {
      height: auto
  }
    }
.news-card__more {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-top: 15px;
    padding: 25px 0 35px;
    border: none;
    border-top: 1px solid #d5d9dd;
    border-top: 1px solid var(--colorSecondaryGrey);
    color: #9a554b;
    color: var(--secondaryColor);
    background: transparent;
    cursor: pointer;
  }
.news-card__more i {
      -webkit-transition: -webkit-transform .2s;
      transition: -webkit-transform .2s;
      transition: transform .2s;
      transition: transform .2s, -webkit-transform .2s;
    }
.news-card__more.is_active {
      margin-top: 40px;
    }
.news-card__more.is_active i {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
      }
@media (max-width: 1365px) {
.news-card__more.is_active {
        margin-top: 20px
    }
      }
@media (max-width: 1365px) {
.news-card__more {
      padding: 15px 0
  }
    }
.news-card__link {
    display: none !important;
  }
.news-card__link.is_active {
      display: -webkit-box !important;
      display: -moz-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      margin-top: 40px;
    }
@media (max-width: 1365px) {
.news-card__link.is_active {
        margin-top: 20px
    }
      }
.news-card__link i {
      margin-left: auto;
    }
@media (max-width: 1365px) {
.news-card__link {
      min-width: 150px;
      font-size: 12px
  }
    }
@media (max-width: 719px) {
.news-card__link {
      min-width: 175px
  }
    }

/* 404 */
.error-page__block {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    min-height: calc(100vh - 220px);
    padding: 40px 0;
  }
@media (max-width: 1365px) {
.error-page__block {
      min-height: calc(100vh - 200px)
  }
    }
@media (max-width: 719px) {
.error-page__block {
      min-height: auto
  }
    }
.error-page__title {
    display: block;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 74px;
  }
@media (max-width: 1365px) {
.error-page__title {
      margin-bottom: 25px;
      font-size: 54px
  }
    }
@media (max-width: 719px) {
.error-page__title {
      margin-bottom: 20px;
      font-size: 36px
  }
    }
.error-page__description {
    max-width: 740px;
    font-weight: 700;
    font-size: 21px;
    line-height: 1.5;
  }
@media (max-width: 1365px) {
.error-page__description {
      font-size: 18px
  }
    }
@media (max-width: 719px) {
.error-page__description {
      font-size: 16px
  }
    }
.error-page__link {
    width: 100%;
    margin-top: 60px;
  }
@media (max-width: 1365px) {
.error-page__link {
      margin-top: 40px
  }
    }
@media (max-width: 719px) {
.error-page__link {
      margin-top: 25px
  }
    }


/* loader */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f5fafc;
    z-index: 20;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}
.preloader .loader-wr {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
    }
.preloader.loaded {
        visibility: hidden;
        opacity: 0;
    }
.preloader.loaded .loader-wr {
            opacity: 0;
            -webkit-transform: translate(-50%,-50%) scale(0.5,0.5);
                    transform: translate(-50%,-50%) scale(0.5,0.5);
        }
.preloader .loader,
    .preloader .loader:after {
        border-radius: 50%;
        width: 6em;
        height: 6em;
    }
.preloader .loader {
        font-size: 10px;
        position: relative;
        text-indent: -9999em;
        border-top: 0.6em solid rgba(0,192,132, 0.2);
        border-right: 0.6em solid rgba(0,192,132, 0.2);
        border-bottom: 0.6em solid rgba(0,192,132, 0.2);
        border-left: 0.6em solid #A05B43;
        border-left: 0.6em solid var(--primeColor);
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        -webkit-animation: load 1.1s infinite linear;
                animation: load 1.1s infinite linear;
    }

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}




/*# sourceMappingURL=main.css.map */
