* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

ul {
  list-style: none;
}

body {
  min-width: 300px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background-color: #f0f1f5;
  -webkit-font-smoothing: antialised;
}

main {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a, a:hover {
  transition: .2s;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #000;
  text-shadow: 0px 2px 3px rgba(0,0,0,0.2);
  -webkit-font-smoothing: antialised;
}

.white-shadow .title1, 
.white-shadow .title2 {
  text-shadow: 1px 1px 3px rgba(255,255,255,0.7);
}

.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white h5, .text-white h6 {
  color: #fff;
  text-shadow: 1px 1px 7px rgba(0,0,0,0.5);
}

h1 {
  font-size: 59px;
  line-height: 0.9;
}

h2 {
  font-size: 48px;
  line-height: 1;
}

h5 {
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

h6 {
  font-size: 24px;
  line-height: 1.2;
}

.container {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  font-size: 11px;
  color: #4d4d4d;
  line-height: 1.4;
  margin-top: 10px;
}

p:first-child {
  margin-top: 0;
}

.banner {
  position: relative;
  width: 300px;
  height: 250px;
  background-color: rgba(0,0,0,0.1);
  box-shadow: 0 0 7px rgba(0,0,0,0.07);
  overflow: hidden;
}

.logo {
  position: absolute;
  z-index: 100;
  bottom: 9px;
  left: 9px;
  max-height: 40px;
}

.banner__slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner__slide_sl1 {
  z-index: 1;
}

.banner__slide_sl2 {
  z-index: 2;
}

.tc {
  text-align: center;
}

.va-cent, .cent {
  display: flex;
  align-items: center;
}

.cent {
  justify-content: center;
}

.banner__titles {
  position: relative;
  z-index: 3;
  padding-bottom: 25px;
}

.bg, .bg-top {
  background-repeat: no-repeat;
  background-size: cover;
}

.bg {
  background-position: center;
}

.bg-top {
  background-position: center top;
}

.banner__content-inner {
  position: relative;
}

.banner__content {
  width: 100%;
  height: 100%;
  padding: 50px 9px;
}

.pad2 {
  padding: 25px;
}

.banner__content {
  padding-bottom: 60px;
}

.banner__content-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.note {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 9px;
  padding-left: 51px;
}

.note p {
  line-height: 1.2;
}

.btn-block {
  display: flex;
}

.btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 8.5px;
  line-height: 1;
  color: #000;
  background-color: #fbb92f;
  text-transform: uppercase;
  text-align: center;
  outline: none;
  border: 0;
  text-decoration: none;
  padding: 9px 12px;
}

.btn:hover {
  background-color: #fbc450;
}

.btn-block_flex {
  width: 10%;
  flex: 1 1;
  margin-left: 10px;
}

.btn-block_flex .btn {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}