footer {
    text-align: left;
    width: 100%;
    min-width: 320px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-order: 3;
    padding: 20px 0 20px 0;
  }
  
  footer p {
    color: black;
   
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.3px;
    text-shadow: 0 0;
  }
  
  @media screen and (max-width: 767px) {
    footer p {
      font-size: 15px;
      line-height: 25px;
      border: none;
      padding-top: 8px;
    }
  }
  
  .main-wrapper {
    padding: 0 0 0 0;
    min-width: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
  }
  
  .wrapper {
    min-width: 320px;
    max-width: 1440px;
    padding: 0 33px 0 33px;
    margin: 0 auto;
    position: relative;
  }
  
  
  /* titles */
  
  p {
    font-size: 21px;
    line-height: 27px;
    color: #656565;
    padding: 15px 0 15px 0;
    font-weight: 400;
  }
  
  h1 {
    font-size: 57px;
    line-height: 60px;
    color: #000;
    font-family: "Akrobat", sans-serif;
    padding: 15px 0 15px 0;
    font-weight: 400;
  }
  
  h2,
  .H2_style {
    font-size: 40px;
    line-height: 47px;
    color: #000;
    font-family: "Akrobat", sans-serif;
    padding: 15px 0 15px 0;
    font-weight: 400;
  }
  
  h3,
  .H3_style {
    font-size: 28px;
    line-height: 32px;
    color: #000;
    font-family: "Akrobat", sans-serif;
    padding: 15px 0 15px 0;
    font-weight: 400;
  }
  
  
  /* text position */
  
  .text-left {
    text-align: left !important;
  }
  
  .text-center {
    text-align: center !important;
  }
  
  .text-right {
    text-align: right !important;
  }
  
  .nowrap {
    white-space: nowrap !important;
  }
  
  ul {
    list-style: none;
  }
  
  
  /* loader */
  
  .loaded .main-wrapper {
    visibility: hidden;
  }
  
  .icon-load {
    background: url(../imgk/loader.gif) no-repeat left top;
    width: 40px;
    height: 40px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-left: -20px;
    display: none;
  }
  
  .loaded .icon-load {
    display: block;
  }
  
  .btn {
    display: inline-block;
    vertical-align: top;
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-transform: uppercase;
    border-radius: 5px;
    height: 28px;
    padding: 5px 15px 0;
    letter-spacing: 0.6px;
  }
  
  .btn-orange {
    background: -webkit-linear-gradient(left, #eaa50e 0%, #d98c05 100%);
    background: -webkit-gradient(linear, left top, right top, from(#eaa50e), to(#d98c05));
    background: linear-gradient(to right, #eaa50e 0%, #d98c05 100%);
  }
  
  .btn-black {
    background: -webkit-linear-gradient(left, #333333 0%, #000000 100%);
    background: -webkit-gradient(linear, left top, right top, from(#333333), to(#000000));
    background: linear-gradient(to right, #333333 0%, #000000 100%);
  }
  
  
  .btn-orange:hover,  .btn-black:hover{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .btn-border {
    height: 39px;
    background-color: white;
    border: 1px solid #f1ad11;
    border-radius: 5px;
    color: #f1ad11;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
    padding: 4px 19px 0;
  }
  
  .btn-border:hover {
    opacity: 0.6;
  }
  
  button.btn,
  input.btn {
    padding-top: 0;
    border: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .btn-big {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    height: 51px;
  }