@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
/* animation */
@-webkit-keyframes shine {
  100% {
    left: 150%;
  }
}
@keyframes shine {
  100% {
    left: 150%;
  }
}
@-webkit-keyframes radial-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
            box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
            box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
  }
}
@keyframes radial-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
            box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
            box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
  }
}
/* fonts */
h1 {
  font-size: 34px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 40px;
}
.h1-small {
  font-size: 26px;
}
h2 {
  color: #676767;
  font-size: 25px;
  font-weight: 700;
}
h3 {
  font-size: 20px;
  color: #464646;
}
h4 {
  font-weight: 700;
}
.yellow {
  display: inline-block;
  background-color: #ebb507;
  font-size: 46px;
  color: #fff;
  padding: 6px 10px;
}
.red {
  color: #d20707;
}
/* common */
body {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}
section {
  padding: 110px 0;
  position: relative;
}
a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
a:focus,
input:focus,
button:focus,
video:focus,
.slick-slide:focus {
  outline: none;
}
p {
  margin-bottom: 0;
}
::-webkit-input-placeholder {
  color: #323642;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #323642;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #323642;
  opacity: 1;
}
::placeholder {
  color: #323642;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #323642;
}
::-ms-input-placeholder {
  color: #323642;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  display: inline-block;
  margin: 10px auto;
  width: 100%;
  max-width: 300px;
  height: 75px;
  padding: 22px;
  background-color: #fef6f6;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-size: 18px;
  text-align: left;
}
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
textarea:hover,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="text"]:active,
input[type="tel"]:active,
input[type="email"]:active,
textarea:active,
input[type="text"].active,
input[type="tel"].active,
input[type="email"].active,
textarea.active {
  border: 1px solid #cecece;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input[type=checkbox] {
  display: none;
  width: 0;
}
input[type=checkbox] + span {
  text-align: left;
  font-size: 13px;
  color: #9eb9d7;
}
input[type=checkbox] + span a {
  font-size: 13px;
  color: #62b5e5;
  text-decoration: underline;
}
input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  position: static;
  margin-right: 8px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
input[type=checkbox]:checked + span::before {
  background: #c8c8c8 url('../img/checkbox.png') center center no-repeat;
  background-size: 8px 8px;
}
.button,
a.button,
input[type=submit].button {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 75px;
  margin: 10px auto;
  padding: 15px;
  background: #ffd44b;
  background: -webkit-gradient(linear, left bottom, left top, from(#ddb22b), to(#ffd44b));
  background: linear-gradient(0deg, #ddb22b 0%, #ffd44b 100%);
  border: none;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  color: #fff !important;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  -webkit-box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.1), 0 5px 0 #dfb01b;
          box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.1), 0 5px 0 #dfb01b;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover,
a.button:hover,
input[type=submit].button:hover,
.button:focus,
a.button:focus,
input[type=submit].button:focus,
.button:active,
a.button:active,
input[type=submit].button:active {
  outline: none;
  text-decoration: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1), 0 0 0 #dfb01b;
          box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1), 0 0 0 #dfb01b;
}
.button::before,
a.button::before,
input[type=submit].button::before {
  position: absolute;
  top: 0;
  left: -3000%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: shine 5s infinite;
          animation: shine 5s infinite;
}
strong,
.bold {
  font-weight: bold;
}
.medium {
  font-weight: 500;
}
.small {
  font-size: 14px;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
/* header */
.header {
  background-color: #f8f8f8;
  padding: 10px 0;
}
.logo {
  display: block;
  max-width: 60px;
}
.top-text {
  height: 50px;
  font-size: 15px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
}
.top-text__1 {
  height: 30px;
  border-left: 10px solid #2bb6ab;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.top-text__2 {
  height: 30px;
  border-left: 10px solid #fff;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.top-text__3 {
  height: 30px;
  border-left: 10px solid #363636;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
/* main */
.main {
  min-height: calc(100vh - 70px);
  padding: 50px 0;
  background: url(../img/bg.jpg) center no-repeat;
  background-size: cover;
}
.main-head {
  text-align: center;
}
.main-result {
  padding: 20px;
  border: 1px solid #ddd;
}
.main-result-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ffd44b;
}
.main-result-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.main-result h4 {
  font-size: 20px;
  font-weight: bold;
  color: #d4ac2c;
}
.main-video {
  padding: 20px 0;
}
.main-form {
  background-color: #fff;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.video {
  position: relative;
  padding-bottom: 56%;
  padding-top: 30px;
  height: 0;
  width: 100%;
  max-width: 640px;
  margin: 30px auto 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}
.video iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-result-item img {
  max-width: 20px;
}
.main-result-item .big-img {
  max-width: 50px;
}
.form-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.gift {
  padding-left: 40px;
  font-size: 17px;
  position: relative;
  text-align: left;
  max-width: 800px;
  margin: 20px auto 20px;
}
.gift:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../img/gift.svg) center no-repeat;
  background-size: contain;
}
.podform {
  margin-top: 40px;
}
.podform h4 {
  font-weight: bold;
  text-align: center;
}
.podform-items {
  max-width: 900px;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.podform-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  font-size: 18px;
}
.podform-item .img-fluid {
  max-width: 25px;
  margin-right: 10px;
}
/* footer */
.footer {
  padding: 40px 0;
  background-color: #212121;
  color: #ddd;
  font-size: 14px;
}
.footer a {
  color: #ddd;
}
/* spasibo */
.spasibo .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* media */
@media (max-width: 1199px) {
  body {
    font-size: 15px;
  }
  .top-text {
    font-size: 12px;
  }
  h3 {
    font-size: 18px;
  }
  .h2,
  h2 {
    font-size: 1.7rem;
  }
  .yellow {
    font-size: 40px;
  }
  .h1-small {
    font-size: 22px;
  }
  .main-result h4 {
    font-size: 17px;
  }
  .form-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .button,
  a.button,
  input[type=submit].button {
    max-width: 400px;
    font-size: 14px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    max-width: 400px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  h3 {
    font-size: 14px;
  }
  .top-text {
    font-size: 9px;
  }
  h1 {
    font-size: 28px;
  }
  .yellow {
    font-size: 34px;
  }
  .h1-small {
    font-size: 18px;
  }
  .main-result {
    max-width: 400px;
    margin: 0 auto;
  }
  .podform-items {
    display: block;
    max-width: 280px;
    margin: 20px auto;
  }
  .podform-item {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .top-text__2,
  .top-text__3 {
    display: none;
  }
  .main {
    padding: 30px 0;
  }
  h1 {
    font-size: 25px;
  }
  .yellow {
    display: block;
    margin-top: 10px;
    font-size: 26px;
  }
  .h2,
  h2 {
    font-size: 1.4rem;
  }
  .h1-small {
    font-size: 16px;
  }
  .main-form {
    padding: 20px 15px;
  }
  .h4,
  h4 {
    font-size: 1.3rem;
  }
  .gift {
    font-size: 14px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    height: 65px;
    font-size: 16px;
  }
  .button,
  a.button,
  input[type=submit].button {
    height: auto;
    padding: 25px 5px;
  }
  input[type=checkbox] + span {
    font-size: 10px;
  }
  input[type=checkbox] + span a {
    font-size: 10px;
  }
  .podform-items {
    max-width: 250px;
  }
  .podform h4 {
    font-size: 16px;
  }
  .podform-item {
    font-size: 16px;
  }
  .h5,
  h5 {
    font-size: 16px;
  }
}
@media (max-width: 359px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 22px;
  }
  .yellow {
    font-size: 24px;
  }
  .main-result h4 {
    font-size: 19px;
  }
  .button,
  a.button,
  input[type=submit].button {
    font-size: 13px;
  }
}
#cookie_notification{
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_notification p {
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: #000;
}
#cookie_notification .btn {
  font-size: 0.8rem;
}    

@media (min-width: 576px){
  #cookie_notification.show{
    display: flex;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
}