body {
	background: #fff;
    color: #202020 !important;
    font-size: 16px;
    min-width: 320px;
    max-width: 100%;
    margin: 0;
	font-family: Fira Sans Condensed !important;
	font-weight: 300 !important;
	transition: .5s;
	overflow-x: hidden;
	min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
html {
	height: 100%;
}
a {
    color: #202020 !important;
}
.content {
	position: relative;
	min-height: 100%;
	margin: 0px;
}
.header {
	height: 80px;
	background: #f9f9f9;
	position: relative;
}
.header::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 80px;
    height: 40px;
	width: 100%;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none">\<polygon fill="rgb(249, 249, 249)" points="0,0 80,0 0,20"/>\</svg>');
}
.header::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 80px;
    height: 20px;
	width: 100%;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none">\<polygon fill="rgb(249, 249, 249)" points="0,0 100,0 100,40 0,20"/>\</svg>');
}
@media screen and (max-width: 768px) 
{
    .header::after {
        content: none;
    }
    .header::before {
        content: none;
    }
}
.header__wrapper {
	position: relative;
    display: flex;
    align-items: center;
    color: #202020;
    padding: 1.25vw 0 calc(-0.00001px + 1.19792vw);
    transition: all .25s ease-in-out;
}
.main__wrapper {
	padding-top: 80px;
	padding-bottom: 80px;
}
@media screen and (max-width: 768px) 
{
    .main__wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media screen and (min-width: 992px) 
{
    .hamburger_col {
        position: fixed;
        left: 10px;
        z-index: 999;
    }
}
.hamburger {
    width: 40px;
    height: 27px;
    position: relative;
    z-index: 98;
    transition-duration: 1s;
    cursor: pointer;
}
.hamburger span {
    height: 2px;
    width: 35px;
    background-color: #202020;
    border-radius: 20px;
    position: absolute;
	top: 13px;
	left: 13px;
    transition-duration: .25s;
    transition-delay: .25s;    
}
.hamburger span:before {
    left: 0;
    position: absolute;
    top: -10px;
    height: 2px;
    width: 35px;
    background-color: #202020;
    content: "";
    border-radius: 20px;
    transition-duration: .25s;
    transition: transform .25s, top .25s .25s;
}
.hamburger span:after {
    left: 0;
    position: absolute;
    top: 10px;
    height: 2px;
    width: 35px;
    background-color: #202020;
    content: "";
    border-radius: 20px;
    transition-duration: .25s;
    transition: transform .25s, top .25s .25s;
}
.hamburger.open span {
    transition-duration: 0.1s;
    transition-delay: .25s;
    background: transparent;
}
.hamburger.open span:before {
    transition: top .25s, transform .25s .25s;
    top: 0px;
    transform: rotateZ(-45deg);
    background: #fff;
}
.hamburger.open span:after {
    transition: top 0.4s, transform .25s .25s;
    top: 0px;
    transform: rotateZ(45deg);
    background: #fff;
}
.header__menu {
	margin-left: 40px;
}
.header__menu ul {
	margin-bottom: 0px;
}
.header__menu ul li{
	display: inline-block;
	margin-left: 20px;
	margin-right: 20px;
}
.header__menu ul li a{
	text-decoration: none;
	font-size: 20px;
	text-transform: uppercase;
	list-style-type: none;
	color: #202020;
	font-weight: 300;
}
.header__menu ul li a:hover {

}
@media (min-width: 769px) and (max-width: 970px)
{
    .header__menu ul li a {
	    font-size: 17px;
    }
    .header__menu ul li {
        margin-left: 10px;
	    margin-right: 10px;
    }
}
.logo {
    width: 170px;
    height: 65px;
}
@media screen and (max-width: 768px) 
{
    .logo {
        width: 130px;
    }
}
.footer {
	background: #f9f9f9;
	box-shadow: inset 0 .5px 0 #d1cfd7;
}
.fixed-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.footer__wrapper {
    align-items: center;
    color: #202020;
    padding: 20px;
    transition: all .25s ease-in-out;
    box-shadow: inset 0 .5px 0 #d1cfd7;
}
.footer__wrapper a {
	text-decoration: none;
	margin-right: 10px;
}
.footer_menu ul {
	margin-bottom: 20px;
	padding: 0px;
}
.footer_menu ul li{
	display: block;
	margin-bottom: 10px;
}
.footer_menu ul li a{
	text-decoration: none;
	font-size: 20px;
	text-transform: uppercase;
	list-style-type: none;
	color: #202020;
	font-weight: 300;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 96;
  width: 25%;
  height: 100vh;
  display: flex;
  justify-content: center;
  color: #fff;
  transition: 0.5s;
  transform: translateX(-100%);
  background: #202020;
  flex-direction: column;
  padding-left: 28px;
}
.sidebar a {
    color: #fff !important;
}
@media screen and (max-width: 768px) 
{
    .sidebar {
        width: 100%;
        overflow-x: hidden;
        align-items: center;
    }
}
@media (min-width: 769px) and (max-width: 992px)
{
    .sidebar {
        width: 100%;
        overflow-x: hidden;
        align-items: center;
    }
}
@media (min-width: 993px) and (max-width: 1450px)
{
    .sidebar {
        width: 40%;
        overflow-x: hidden;
    }
}
.sidebar p {
	font-size: 18px;
	font-weight: 300;
}
.sidebar ul li {
	display: inline-block;
	padding-bottom: 30px;
}
.sidebar ul li a {
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff !important;
	padding-left: 0px;
	transition: padding-left .5s;
}
.sidebar ul li a:hover {
	padding-left: 20px;
}
.menu_active {
    transform: translateX(0);
}
.menu-list {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  padding: 0;
}
.menu-icon {
  color: #fff;
  font-size: 150%;
  position: absolute;
  right: -35px;
  top: 10px;
}
.section_active {
  transform: translateX(25%);
}
.open {

}
@media screen and (max-width: 768px) 
{
    .section_active {
        transform: translateX(100%);
    }
}
.length_ski_poles {
	display: inline-block;
    padding: 5px;
    margin-top: 5px;
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.contacts_map > iframe{
	border-radius: 10px;
}
.caption {
	width: 100%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	border-radius: 10px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	padding: 10px;
	-webkit-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
	-moz-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
	box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
}
.caption a {
	text-decoration: none;
	color: #202020;
}
.caption .bx-wrapper {
    border: none;
    box-shadow: none;
    max-width: 100%;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    width: 5px !important;
    height: 5px !important;
}
.list-item-image {
	height: 200px;
}
.list-item-image img {
	max-width: 100%;
	max-height: 200px;
}
.page_nav {
	margin: 0;
	padding: 0;
	display: inline-block;
	-webkit-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
	-moz-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
	box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);	
}
.page_nav li a {
	text-decoration: none;
	color: #202020;
}
.page_nav li a.active {
	text-decoration: none;
	color: #202020;
	font-weight: 600;
}
.page-item .active {
    background: #202020;
    color: #ffffff;
}
.parent_page_url a {
	text-decoration: none;
	color: #202020;
}	
.img-thumbnail {
	border: none !important; 
	max-height: 290px;
}
.row-flex, .row-flex > div[class*='col-'] { 
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.row-flex-wrap {
	-webkit-flex-flow: row wrap;
	align-content: flex-start;
	flex:0;
}

.row-flex > div[class*='col-'] {
    margin:-.2px; 
}
.mobile_search_block {
    position: absolute;
    top: 20px;
    left: 80px;
    right: 20px;
}
.mobile_search_block .form-control {
    background: none !important;
}
.simplesearch-search-form {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: grid;
}
.simplesearch-search-form.expanded-form {
    flex: 0 0 auto;
    width: 80%;
}
@media screen and (max-width: 768px) 
{
    .simplesearch-search-form.expanded-form {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media screen and (max-width: 992px) 
{
    .simplesearch-search-form.expanded-form {
        flex: 0 0 auto;
        width: 100%;
    }
}
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: none;
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}
.search_icon {
    cursor: pointer;
    position: relative;
    top: -4px;
    right: 0;
    float: right;
}
@media screen and (max-width: 992px) 
{
    .search_icon {
    cursor: pointer;
    position: relative;
    z-index: 99;
    top: 0;
    right: 0;
    float: right;
    }
}
.search_button {
    display: none;
}
.search_input {
    height: calc(100% - 11px);
    border: none;
    padding-top: 13px;
    background: #f9f9f9;
    width: 100%;
    max-width: 0;
    transition: all .5s ease;
    box-sizing: border-box;
    opacity: 0;
    font-size: 20px;
    font-weight: 200;
    text-transform:uppercase;
}
@media screen and (max-width: 992px) 
{
   .search_input {
        position: relative;
        z-index: 98;
        width: 100%;
        float: right;
        padding-left: 15px;
    }
}
.search_input:active {
     color: #202020;   
}
.search_input.expanded {
    max-width: 100%;
    opacity: 1;
}
@media screen and (max-width: 992px) 
{
    .search_input.expanded {
        max-width: 100%;
    }    
}
.mainbar_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0px -1px -1px;
}
.mainbar_width {
    padding: 1px;
    width: 50%;
}
@media screen and (max-width: 768px) 
{
    .mainbar_width {
        width: 100%;
    }
}
.mainbar_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 230px;
    overflow: hidden;
    padding: 30px 28px 25px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background-color: #f7f8fa;
    justify-content: space-between;
    position: relative;
    text-decoration:none;
}
.mainbar_item img, .mainbar_item svg path {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.mainbar_item img {
    bottom: 0;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}
.mainbar_title {
    line-height: 1.2;
}
.mainbar_title {
    color: #000;
    font-size: 30px;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
}
.mainbar_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.mainbar_item:hover:before {
    background-color: rgba(0, 0, 0, .4);
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.mainbar_item:hover img {
    opacity: 1;
}
.mainbar_item:hover .mainbar_title {
    color: #fff;
}
.mainbar_item:hover .mainbar_number {
    color: #fff
}

.mainbar_item:hover .mainbar_number svg path {
    fill: #fff!important
}
.mainbar_number {
    color: #000;
    font-size: 18px;
    line-height: 1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.bxslider li, .caption_image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bx-wrapper img, .caption_image img {
    width: initial; 
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.8s;
}
.caption_image:hover img{
    transform: scale(1.1);
}
.cut {
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -20px;
  transform: translateY(0);
  transition: transform 200ms;
}

.cut-short {
  width: 50px;
}

.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
  transform: translateY(0px);
}

.placeholder_form {
  color: #65657b;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}

.input:focus ~ .placeholder_form,
.input:not(:placeholder-shown) ~ .placeholder_form {
  transform: translateY(-34px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown) ~ .placeholder_form {
  color: #808097;
  font-size: 25px;

  padding-top: 5px;
  padding-bottom: 5px;
  background: white;
}

.input:focus ~ .placeholder_form {
  color: #202020;
  font-size: 25px;

  padding-top: 5px;
  padding-bottom: 5px;
  background: white;
}
.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}
.input {
  height: 100%;
}
.contacts_map {
    position: absolute;
    left: 0px;
    height: 520px;
}
.contacts_info {
    margin: 20px !important;
    padding: 20px;
    border-radius: 10px;
    background: white;
    width: 400px !important;
    z-index: 1;
}
.contacts_info .info {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contacts_info .info svg {
    
}
@media screen and (max-width: 768px) 
{
    .contacts_map {
        position: relative;
    }
    .contacts_info {
        position: relative;
    }    
}
