@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  color: #111133;
  text-decoration: none;
  text-decoration: none;
}

body {
  background: url("../img/bg1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

.page-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.page-wrapper .csn-container {
  margin: 0 auto;
  max-width: 1440px;
  height: 100%;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.55);
}

@media screen and (max-width: 1440px) {
  .page-wrapper .csn-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .page-wrapper .csn-container {
    max-width: 990px;
  }
}
@media screen and (max-width: 992px) {
  .page-wrapper .csn-container {
    max-width: 750px;
  }
}
@media screen and (max-width: 768px) {
  .page-wrapper .csn-container {
    max-width: 576px;
  }
}

.csn-logo {
  display: block;
  padding-top: 12px;
  margin-bottom: 27px;
  width: 100%;
  max-width: 300px;
  
}
.csn-logo img{
  width: 100%;
}

h1 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 0;
}

h1 span {
  color: #EF681C;
}

strong{
  color: inherit;
}
.csn-date {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin-top: -15px;
  display: block;
  margin-bottom: 8px;
}

.csn-description {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 13px;
}

.csn-features {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.csn-features__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.csn-features__item img{
  width: 21px;
  height: 21px;
  border-radius: 50%;
    overflow: hidden;
}


.csn-features__item  p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.csn-disclaimer {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: right;
  margin-bottom: 10px;
}

.csn-disclaimer  span {
  font-weight: 700;
  color: #FFF;
}

@media (max-width: 576px) {
  h1 {
    font-size: 20px;
    line-height: 1.2;
  }

  .csn-date {
    font-size: 18px;
    margin-top: -10px;
  }

  .csn-features__item p {
    font-size: 10px;
  }
}

@media (max-width: 350px) {
  h1 {
    font-size: 18px;
  }
}

.csn-offers {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* grid-auto-rows: 1fr; */
}

.csn-offers__item {
  list-style: none;
  padding: 20px 44px 12px;
  background: #fff;
  margin-bottom: 12px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.csn-badge {
  position: absolute;
  height: 22px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px 0px 10px 0px;
  background: #49BF36;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  left: 0;
  top: 0;
}


.csn-offers__content {
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0;
}


.csn-brand {
  grid-area: 1 / 1 / 2 / 2;
  width: 180px;
  display: flex;
  align-items: center;
}

.csn-brand img {
  width: 100%;
}

.csn-bonus {
  grid-area: 1 / 2 / 2 / 3;
  width: 310px;
  display: flex;
  align-items: center;
  margin: 0 20px;
}
.csn-bonus__container {
  display: flex;
  flex-direction: column;
}
.csn-bonus__container span {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
}
.csn-bonus__container p {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.csn-rating-container {
  grid-area: 1 / 3 / 2 / 4;
  width: 160px;
  display: flex;
  align-items: center;
}
.csn-rating__votes {
  margin-bottom: 4px;
}

.csn-rating__votes span {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  display: block;
}

.csn-rating__stars {
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
  align-items: center;
}
.stars img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
}

.csn-score {
  grid-area: 1 / 4 / 2 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  width: 70px;
}


.csn-score__badge span {
  color: #000;
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  display: block;
}


.csn-cta {
  grid-area: 1 / 5 / 2 / 6;
  display: flex;
  align-items: center;
  margin-left: 80px;
}


.csn-cta__button {
  border-radius: 12px;
  background: #EF681C;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 60px;
  padding: 5px;
  cursor: pointer;
  margin-bottom: 4px;
  transition: all 0.3s ease-in;
}

.csn-cta:hover  .csn-cta__button  {
  background: #ff9100;
}

.csn-cta__text {
  color: #6C6C6C;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-decoration-line: underline;
  display: block;
}

.csn-offers__terms {
  color: #6C6C6C;
  text-align: center;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 11.25px;
  margin-top: 20px;
}

.csn-category-block{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
    overflow: hidden;
    padding: 40px;
    margin-bottom: 12px;
      position: relative;
      border-radius: 4px;
      overflow: hidden;
}
.csn-category-block__title{
  color: #FFF;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    position: relative;
    z-index: 1;
}
.csn-category-block__title--accent{
  color: #ff9100;
} 
.csn-category-block__img{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  max-width: 1410px;
  object-fit: cover;
}


@media screen and (max-width: 1440px) {

  .csn-bonus {
    margin: 0 10px;
  }

  .csn-brand {
    width: 140px;
  }

  .csn-brand img {
    max-width: 140px;
    width: 100%;
    object-fit: contain;
  }

  .csn-score {
    margin-left: 22px;
  }

  .csn-cta {
    margin-left: 30px;
  }

  .csn-cta a {
    width: 200px;
  }
}

@media screen and (max-width: 1200px) {
  .csn-offers__item {
    /* grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 10px; */
  }

  .csn-offers__content {
    display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  }

  .csn-brand {
    /* grid-area: 1 / 1 / 2 / 3; */
    grid-area: 1 / 1 / 2 / 3;
    width: 180px;
  }
  .csn-brand img {
    max-width: 180px;
  }
  .csn-bonus {
    /* grid-area: 1 / 3 / 2 / 5; */
    grid-area: 1 / 3 / 2 / 5;
    width: 320px;
  }
  .csn-rating-container {
    /* grid-area: 1 / 5 / 2 / 7; */
    grid-area: 1 / 5 / 2 / 7;
    width: 290px;
    justify-content: end;
  }
  .csn-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .csn-score {
    /* grid-area: 2 / 1 / 3 / 4; */
    grid-area: 2 / 2 / 3 / 4;
    margin-left: 0;
    justify-content: flex-start;
  }
  .csn-cta {
    /* grid-area: 2 / 4 / 3 / 7; */
    grid-area: 2 / 4 / 3 / 6;
    justify-content: end;
  }

  .csn-cta a {
    width: 240px;
  }
}

@media screen and (max-width: 992px) {
  .csn-rating-container {
    width: 170px;
  }
  .csn-bonus {
    width: 220px;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .csn-offers__item {
    /* grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    grid-column-gap: 10px;
    grid-row-gap: 1px; */
  }
  .csn-offers__content {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    grid-column-gap: 10px;
    grid-row-gap: 1px;
  }
  .csn-brand {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }
  .csn-bonus {
    grid-area: 2 / 1 / 3 / 2;
    width: auto;
    justify-content: center;
    max-height: 100px;
    height: 100%;
    padding-bottom: 20px;
  }
  .csn-rating-container {
    grid-area: 3 / 1 / 4 / 2;
    width: 100%;
    justify-content: center;
    padding-bottom: 20px;
  }
  .csn-score {
    grid-area: 4 / 1 / 5 / 2;
    width: 100%;
    justify-content: center;
    padding-bottom: 28px;
  }
  .csn-score__badge {
    /* max-width: 300px;
    width: 100%; */
  }
  .csn-cta {
    grid-area: 5 / 1 / 6 / 2;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  .csn-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .csn-cta__button {
    margin-left: auto;
    margin-right: auto;
  }

  .csn-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .csn-category-block {
    padding: 20px;
  }
    .csn-category-block__title {
      font-size: 40px;
    }
}

@media (max-width: 576px) {

}





@media (max-width: 375px) {
  .csn-offers__item {
    padding: 22px 20px;
  }
}

@media (max-width: 320px) {
  .csn-cta a {
    max-width: 200px;
    width: 100%;
  }
}

.csn-info {
  padding: 20px 0 30px;
}

.csn-info h2 {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 31.5px; 
  margin-bottom: 15px;
}

.csn-info p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.csn-info ul,
.csn-info ol  {
  margin-left: 20px;
}

.csn-info ul li,
.csn-info ol li {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.csn-info p a,
.csn-info ul li a {
  color: #FFF;
  text-decoration: underline;
}


.site-footer {
  width: 100%;
    max-height: 40px;
}

.site-footer .csn-container {
  margin: 0 auto;
  max-width: 1440px;
  height: 100%;
  background: #000;
  padding: 20px 15px 50px;
}

@media screen and (max-width: 1440px) {
  .site-footer .csn-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .site-footer .csn-container {
    max-width: 990px;
  }
}
@media screen and (max-width: 992px) {
  .site-footer .csn-container {
    max-width: 750px;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .csn-container {
    max-width: 576px;
  }
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer nav a {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  transition: all .2s linear;
}

.site-footer p {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  margin: 16px 0 36px;
}

.site-footer__partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  transition: all .2s linear;
}

.site-footer__partners a img {
  transition: all .2s linear;
}

@media (hover: hover) {
  .site-footer nav a:hover  {
      scale: 1.03;
  }
  .site-footer__partners a:hover img {
    scale: 1.03;
  }
}

@media (hover: none) {
  .site-footer nav a:active  {
    scale: 1.03;
  }
  .site-footer__partners a:active img {
    scale: 1.03;
  }
}

.site-footer span {
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  margin-top: 36px;
}


@media (max-width: 768px) {
  .site-footer nav {
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .site-footer .csn-logo {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
}