@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/

body {
  font-family: "Roboto";
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
}

p,
li {
  font-size: 16px;
  line-height: 24px;
}

li {
  margin-left: 20px;
}

h1 {
  font-weight: 700;
  font-size: 34px;
  line-height: 46px;
  color: #FFFFFF;
}

h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 46px;
  /* or 192% */
  color: #FFFFFF;
}

.header_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 55px;
  padding-top: 35px;
}

.logo_winzaim {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  font-size: 34px;
  line-height: 46px;
}

.logo_winzaim span {
  color: #4AA8FF;
}

.header {
  background: #5c0f0f;
  padding-bottom: 43px;
  color: #FFFFFF;
}

.header_date {
  font-size: 16px;
  line-height: 33px;
  text-align: right;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.offers {
  background: #FFFFFF;
}

.all_offers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 10px;
  padding: 55px 0;
}

.offer {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #EAEAEA;
}

.offer_recommend {
  background: #FFF9F0;
  border-radius: 9px;
  padding: 5px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  color: #5c0f0f;
  margin: 15px 0 18px 0;
}

.offer_inform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.offer_inform > div {
  width: 50%;
}

.offer_inform_title {
  font-size: 13px;
  line-height: 15px;
  color: #9F9F9F;
}

.offer_button {
  height: 43px;
  width: 100%;
  border-radius: 8px;
  background: #5c0f0f;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.offer_button:hover {
  cursor: pointer;
  opacity: 0.7;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.terms {
  padding: 50px 0;
}

.footer {
  border-top: 1px solid #A9A0A0;
  padding: 60px 0 40px 0;
}

.footer > p {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #6F6F6F;
}

@media (max-width: 1240px) {
  .container {
    max-width: 1200px;
    margin: 0 40px;
  }
}

@media (max-width: 1100px) {
  .all_offers {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .all_offers {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .all_offers {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 500px) {
  .header_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}