:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v35-latin-regular.eot');
  src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'),
    url('../fonts/open-sans-v35-latin-regular.woff') format('woff'),
    url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'),
    url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v35-latin-700.eot');
  src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'),
    url('../fonts/open-sans-v35-latin-700.woff') format('woff'),
    url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'),
    url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 800px;
  margin: 16px auto;
  border: 1px solid #777;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  margin: 0 0 16px 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  margin: 0 0 16px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

.white{
    padding: 26px 20px;
    background: #fff;
}

iframe{
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.block {
  display: block;
}

.mb {
  margin: 0 0 16px;
}

.mt {
  margin: 16px 0 0;
}

.info {
  margin: 24px 0 0;
  padding: 16px;
  box-shadow: 0px 0px 28px 0px rgba(44, 44, 44, 0.2);
  background-color: #fff;
  color: #000;
}

.info .email {
  color: #CF2828 !important;
}

.btn a {
  display: inline-block;
  padding: 16px;
  border-radius: 4px;
  background-color: #CF2828;
  color: #fff !important;
  font-weight: 700;
}

.btn a:hover {
  background-color: #A62020;
  color: #fff;
}

.logo,
.pad {
  padding: 16px;
}

.background {
  background-color: #F4F4F4;
}


footer {
  padding: 16px;
  background-color: #CF2828;
  color: #fff;
}

img {
  max-width: 100%;
  vertical-align: middle;
}


ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

ul li:before {
  content: "\2022";
  color: #000;
  float: left;
  margin-top: -1px;
  font-size: 20px;
  line-height: 1em;
  text-indent: -20px;
  font-family: Arial, Helvetica, sans-serif;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}



@media all and (max-width:800px) {
  #wrapper {
    margin: 0;
    padding: 16px;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}