html {
    -webkit-text-size-adjust: 100%;
}
body {
    overflow-y: scroll;
    font-family:'Jost', sans-serif;
    
}
*{
    margin:0px;
    padding:0px; 
    vertical-align:top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    width: 100%;
}
a, button{
    cursor:pointer;
    text-decoration:none;
    color: inherit;
    transition: all 0.4s ease;
}
select, map, area, a, button{
    border:0px; 
    outline:none;
}
img{
    border-style:none;
}
h1, h2, h3, h4, h5, h6{
    font-weight:500;
}
h1{
    font-size: 36px;
}
h2{
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
}
p{
    font-size: 16px;
    color: #2A2A33;
}
b{
    color: #2A2A33;
}
input[type=text], input[type=password], textarea{
    text-align: left; 
    background: transparent;
}
input, textarea, select{
    border: 0; 
    outline: none; 
    line-height: normal; 
    -webkit-appearance: none; 
    border-radius: 0;
}
textarea{
    resize: none;
}
.c{
    margin: auto;
    padding: 0 100px;
}
.clear{
    clear: both;
}
.none {
    display: none !important;
}
.p_relative{
    position: relative;
}
.col{
    display: inline-block;
    padding: 0 20px;
}
.col_1{
    width: 100%;
}
.col_2{
    width: 50%;
}
.col_3{
    width: 33.33%;
}
.col_4{
    width: 25%;
}
.col_75{
    width: 75%;
}
.col_20{
    width: 20%;
}
.col_70{
    width: 70%;
}
.col_30{
    width: 30%;
}
.col_16_66{
    width: 16.66%;
}
.image {
    position: relative;
    display: block;
}
.bg_full {
    background: url() no-repeat 50% 50%;
    overflow: hidden;
    background-size: cover;
}
.bg_full, .full-dimension, .full_el {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.wrapper {
    overflow: hidden;
    min-height: 800px;
}
.wrapper.lock {
    position: fixed;
    width: 100%;
    left: 0;
}
.btn_{
    color: #fff;
    background-color: #17191b;
    padding: 13px 25px;
    font-size: 16px;
    transition: all 0.5s;
    border-radius: 10px !important;
    border: 1px solid #17191b;
}
.btn_{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  .btn_:after {
    content: '»';
    position: absolute;
    opacity: 0;  
    top: 46%;
    transform: translateY(-50%);
    right: -20px;
    transition: 0.5s;
    font-size: 24px;
    line-height: 0;
  }
  .btn_:hover {
    padding-right: 25px;
    padding-left: 24px;
}
  .btn_:hover:after {
    opacity: 1;
    right: 8px;
  }
.btn_:hover{
    color: #fff;
    background-color: #eb212a;
    border-color: #eb212a;
}
.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.bg_white{
    background-color: #fff;
}