:root {
  --main-background: #eaf0ff;
  --light-background: #e8ceff;
  --highlight-background: #c383ff;
  --primary-color: #333333;
  --accent-lila: #5e00b5;
  --accent-yellow: #fbba24;
  --yellow-hover-bg: #fccc5b;

  --accent-green: #77ba1d;
  --border: 1px solid #5e00b5;
  --button-color: #ffffff;
  --transparent: rgba(0, 0, 0, 0);
  --rounded-large: 100px;
  --slightly-rounded: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Tahoma";
  src: local("Tahoma-Regular"),
    url("/fonts/Tahoma-Regular.woff2") format("woff2"),
    url("/fonts/Tahoma-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tahoma";
  src: local("Tahoma-Bold"), url("/fonts/Tahoma-Bold.woff2") format("woff2"),
    url("/fonts/Tahoma-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  font-family: Tahoma, sans-serif;
  position: relative;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--main-background);
  font-family: Tahoma, sans-serif;
}

p,
span,
h1,
h2,
h4,
h5,
h6,
ol,
ul,
figure,
figcaption,
li,
main .general-table-wrapper,
main .faq-container {
  color: var(--color);
  font-family: Tahoma, sans-serif;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main ol,
main ul,
main figure,
main .general-table-wrapper,
main .faq-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}

main .general-table-wrapper {
  overflow-x: overlay;
}

main figure {
  margin: 0 auto;
  margin-bottom: 20px;
}

main p,
.content .general-ol li,
.general-table .general-tr .general-td,
.content .general-ul li {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  line-height: normal;
  color: #fff
}

main .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1300px;
}

body {
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

table,
tr,
td,
tbody,
thead {
  font-family: Tahoma, sans-serif;
}

input,
button {
  font-family: Tahoma, sans-serif;
  border: none;
  box-shadow: none;
  transition: 0.3s;
}

input:hover,
button:hover {
  opacity: 0.8;
  cursor: pointer;
}

input {
  outline: none;
}

p,
span,
li,
a {
  font-size: 18px;
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  padding: 15px 0;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.32px;
  color: #fff;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
  line-height: 30px;
  color: #fff;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  line-height: 26px;
  color: #fff;
}

h4,
.faq-container .faq-question {
  font-size: 22px;
  line-height: 1.4;
}

h5,
h6 {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}

p {
  padding-bottom: 20px;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
}

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

i {
  font-style: normal;
}

#__next {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  position: relative;
  flex-grow: 1;
  padding-top: 0px;
  background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);
  background-color: #031425;
}

.content .content-block {
  margin-bottom: 20px;
}

.content .contentMain {
  padding: 0 15px;
}

.content .general-ol {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
  counter-reset: counter-ol;
  padding-left: 36px;
}

.content .general-ol li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  counter-increment: counter-ol;
}

.content .general-ol li::before {
  position: absolute;
  content: counter(counter-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  top: -2px;
  left: -26px;
  background: var(--accent-lila);
  font-size: 14px;
  color: var(--button-color);
}

.content .general-ul {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px;
}

.content .general-ul li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 15px;
}

.content .general-ul li::before {
  content: no-open-quote;
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: 10px;
  background-color: var(--accent-lila);
  border-radius: 50%;
}

.pageError {
  min-height: calc(100vh - 70px);
}

.buttonsAndLangs {
  display: flex;
  align-items: center;
}

.buttons {
  display: flex;
  align-items: center;
}

.buttonsAndLangs .buttons {
  margin-right: 24px;
}

.buttonsAndLangs .langsMenu {
  position: relative;
  cursor: pointer;
}
.buttonsAndLangs .langsMenu .lang {
  display: flex;
  align-items: center;
}
.buttonsAndLangs .langsMenu .lang span {
  color: var(--button-color);
  text-transform: uppercase;
  font-style: 20px;
  margin-left: 12px;
}
.buttonsAndLangs .langsMenu .lang .arrow.rotated {
  transform: rotate(180deg);
}
.buttonsAndLangs .langsMenu .langsList {
  position: absolute;
  background: #c383ff;
  top: 48px;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  width: 110px;
  display: none;
}
.buttonsAndLangs .langsMenu .langsList.shown {
  display: block;
}
.buttonsAndLangs .langsMenu .langsList .lang {
  margin-bottom: 12px;
}
.buttonsAndLangs .langsMenu .langsList .lang a {
  display: flex;
  align-items: center;
}

.imgWrap {
  display: block;
  position: relative;
}

figure {
  margin-bottom: 20px;
  text-align: center;
}

figure span {
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  top: -50%;
}

figcaption {
  font-size: 14px;
}

.general-image {
  display: block;
  border-radius: var(--slightly-rounded);
  max-height: 500px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;
}

.general-image.vertical {
  max-height: 500px;
  max-width: 70%;
}

.general-image.horizontal {
  max-width: 100%;
}

.general-table {
  border-collapse: collapse;
  width: 100%;
  overflow: scroll;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  margin: 20px auto;
}

.general-table .general-tr {
  background: var(--transparent);
}

.general-table .general-tr .general-td {
  padding: 16px;
  text-align: start;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.2;
  padding-left: 20px;
  border: var(--border);
  color: #000;
  background-color: #fff;
}
.general-table .general-tr .general-td__img {
  padding: 16px;
  text-align: start;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.2;
  padding-left: 20px;
  border: var(--border);
  color: #000;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.general-table thead tr th {
  padding: 16px;
  color: var(--accent-lila);
  font-size: 20px;
  font-weight: 700;
  border-right: var(--border);
  border-top: var(--border);
  border-bottom: var(--border);
}

.general-table thead tr th:first-child {
  border-right: var(--border);
  border-left: var(--border);
  border-top: var(--border);
}

.general-table thead tr th:last-child {
  border-right: var(--border);
  border-top: var(--border);
}
.general-table .general-tr .general-td img  {   
  width: 80px;
  min-width: 60px;
} 
.faq-container .faq-item {
  margin: 0 auto;
  position: relative;
  min-height: 54px;
  margin-bottom: 20px;
  background: var(--transparent);
  z-index: 5;
  border-radius: var(--slightly-rounded);
  transition: all 0.4s ease;
  border: var(--border);
}

.faq-container .faq-item:hover .icon::before,
.faq-container .faq-item:hover .icon::after {
  background: var(--accent-lila);
}

.faq-container .faq-item:hover {
  border-color: #fff;
}

.faq-container .faq-item:hover .faq-question {
  color: #fff;
}

.faq-container .faq-question {
  color: #fff;
  position: relative;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  top: 15px;
  width: 96%;
  line-height: 22px;
  padding-right: 25px;
}

.faq-container .faq-answer {
  width: 94%;
  padding: 10px 0 22px 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  top: 10px;
}

.faq-container .icon {
  height: 18px;
  position: absolute;
  width: 18px;
  right: 25px;
  top: 25px;
  z-index: 2;
}

.faq-container .icon::before,
.faq-container .icon::after {
  background: #fff;
  content: no-open-quote;
  height: 4px;
  right: 0;
  position: absolute;
  top: 0;
  width: 18px;
  transition: transform 0.4s ease;
}

.faq-container .toggle {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 3;
}

.faq-container .bg-active {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(249, 51, 51, 0.0784313725);
  border-radius: var(--slightly-rounded);
  z-index: -1;
  opacity: 0;
}

.faq-container .toggle:checked ~ .bg-active {
  opacity: 1;
}

.faq-container .toggle:checked ~ .icon::before,
.faq-container .toggle:checked ~ .icon::after {
  background: #fff;
}

.faq-container .toggle:checked ~ .faq-question {
  color: #fff;
  margin: 0;
  padding-left: 20px;
}

.faq-container .toggle:checked ~ .faq-answer {
  color: #fff;
}

.faq-container .toggle:not(:checked) ~ .icon:before {
  transform: rotate(180deg);
}

.faq-container .toggle:not(:checked) ~ .icon:after {
  transform: rotate(90deg);
}

.faq-container .toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
  margin: 0;
  padding-left: 20px;
}

.columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.columns p {
  width: 100%;
}

.columns .column {
  width: 48%;
}

.columns .column-header {
  padding-top: 0;
  text-align: left;
}

.columns .column-p {
  position: relative;
  margin-left: 15px;
  padding-left: 25px;
}

.columns .column-p::before {
  content: no-open-quote;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/list.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 8px;
}

.table_of_contents_wrapper {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.table_of_contents {
  max-width: 400px;
  border-radius: 8px;
  border: var(--border);
}

.table_of_contents .toggle {
  display: none;
}

.table_of_contents .lbl-toggle {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #c01414;
  width: 100%;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.table_of_contents .table_box {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
}

.table_of_contents .toggle:checked + .lbl-toggle + div {
  max-height: 1000px;
  padding: 20px;
  border-radius: 8px;
  gap: 20px;
}

.table_of_contents .table_link {
  position: relative;
  padding-left: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}

.table_of_contents .table_link:hover {
  color: #e13d22;
}

.content404Page.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background-color: var(--main-background);
}

.content404Page.wrapper .content404 {
  display: flex;
  flex-direction: column;
  width: 280px;
  gap: 100px;
}

.content404Page.wrapper .content404 img {
  display: block;
  margin: 0 auto;
}

.content404Page.wrapper .content404 h1 {
  color: var(--primary-color);
}

.content404Page.wrapper .content404 button {
  display: inline-block;
  background: #53d239;
  box-shadow: 0 0 12px 0 rgba(255, 0, 0, 0.26);
  padding: 5px 15px;
  border-radius: var(--rounded-large);
  font-size: 18px;
  line-height: 28px;
  color: var(--button-color);
}

.content404Page.wrapper .content404 button:hover {
  opacity: 0.8;
}

.button-block {
  padding: 24px 16px;
  text-align: center;
  margin: 10px 0;
  background-color: rgba(0, 0, 0, 0);
}

.button-block button {
  position: relative;
  overflow: hidden;
  width: 620px;
  max-width: 100%;
  padding: 16px 34px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: var(--slightly-rounded);
  background: #a917e9;
  box-shadow: 0px 0px 12px 0px rgba(11, 54, 0, 0.16);
}

.button-block button::after,
.button-block button::before {
  position: absolute;
  content: no-open-quote;
  background-repeat: no-repeat;
  background-size: cover;
}

.button-block button::after {
  width: 78px;
  height: 52px;
  background-image: url(/circle_1.svg);
  left: 0;
  top: 0;
}

.button-block button::before {
  width: 135px;
  height: 68px;
  background-image: url(/circle_2.svg);
  right: -30px;
  bottom: 0;
}

.quote {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
  width: 96%;
  max-width: 600px;
  border-radius: var(--slightly-rounded);
  background: var(--light-background);
}

.quote p {
  padding: 40px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.quote::after,
.quote::before {
  position: absolute;
  content: no-open-quote;
  width: 24px;
  height: 20px;
  background-image: url(/quote-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.quote::after {
  left: -5px;
  top: -10px;
}

.quote::before {
  right: -5px;
  bottom: -10px;
  transform: rotate(180deg);
}

.reviews {
  max-width: 1128px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reviews .review {
  border: var(--border);
  padding: 20px 20px 0 20px;
  border-radius: 20px;
  border-left: 5px solid var(--accent-lila);
  margin-bottom: 20px;
  width: 48%;
}

.reviews .review p {
  max-width: 100%;
  width: 100%;
}

.reviews .review .name {
  font-weight: bold;
}

.reviews .review .date {
  color: rgba(0, 0, 0, 0.5);
}

.reviews .review .answer {
  padding-left: 10px;
  border-left: var(--border);
  padding-bottom: 0;
  margin-bottom: 20px;
}

.footer {
  display: block;
  padding: 20px 0;
  background: #1f2833;
}

.footer .footerInner {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.footer .footerInner .dmca-badge {
  display: block;
  margin-top: 4px;
  margin-bottom: 8px;
}

.footer .footerInner .dmca-badge img {
  display: block;
  margin: 0 auto;
}

.footer .footerInner .copyright {
  font-size: 15px;
}

.footer .footerInner .menu {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  gap: 10px;
}

.footer .footerInner .menu a {
  margin: 0 5px 5px 5px;
}

.footer .scrollTop {
  background: var(--accent-lila);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 100px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.footer .scrollTop.pam_content {
  opacity: 1;
}

.footer-block-btn {
  z-index: 5;
  position: fixed;
  right: 0;
  bottom: 0;
  height: 60px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #000
}

.footer-block-btn .buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-block-btn .buttons .btn-reg {
  color: #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 199px;
  height: 46px;
  background: linear-gradient(90deg, #43c0b7 .41%, #66fcf1 58.68%), #66fcf1;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
}

.site-info {
  max-width: 1180px;
  padding: 10px;
}

.site-info center {
  padding: 16px 0;
}

.site-info .copyright {
  color: #7a7a7a;
  font-size: 12px;
}

.site-info img {
  max-height: 25px;
  filter: grayscale(1);
  opacity: .5;
}

.site-info .gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.site-info .gallery > div {
  margin: 8px;
}

.site-info a:hover {
  border: none!important;
}

.icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease;
}

.icon span:nth-child(1) {
  top: 5px;
}

.icon span:nth-child(2) {
  top: 47%;
}

.icon span:nth-child(3) {
  bottom: 50%;
}

.icon span:nth-child(4) {
  bottom: 5px;
}

.header {
  background: #000;
  min-height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
}

.header .headerInner {
  height: 100%;
  margin-bottom: 20px;
}

.header .headerInner .headerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header .headerInner .logo {
  position: relative;
  left: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header .headerInner .toggle {
  width: 28px;
  height: 28px;
  left: 40px;
  top: 4px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 3;
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(1) {
  transform: scaleX(0);
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(2) {
  transform: rotate(45deg);
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.header .headerInner .toggle:checked ~ .headerWrapper .icon span:nth-child(4) {
  transform: scaleX(0);
}

.header .headerInner .toggle:checked ~ .menu {
  height: 100%;
  opacity: 1;
  padding-bottom: 40px;
  padding-top: 37px;
}

.header .headerInner .logo a {
  display: block;
}

.header .headerInner .logo .ampLogo {
  position: relative;
}

.header .headerInner .logo .ampLogo button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.header .headerInner .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  transition: all 0.3s ease;
}

.header .headerInner .menu a {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
}

.header .headerInner .menu a:hover {
  text-decoration: underline;
  color: #45c4bb;
}

.header .headerInner .menu a.active {
  text-decoration: underline;
  color: #45c4bb;
}

.buttons .logButton {
  padding: 5px 24px;
  border-radius: var(--rounded-large);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-green);
}

.burger {
  display: none;
  position: relative;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: #000;
  width: 100%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px 20px;
  transition: right 0.8s;
}

.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}

.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}

.mobileMenu[hidden] {
  right: -200%;
}

.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
}

.mobileMenu .mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobileMenu .mobileMenuLinks a {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
}

.mobileMenu .mobileMenuLinks a:active {
  color: #45c4bb;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: block;
}

.overlay[hidden] {
  display: none;
}

/* Баннер */
.banner-block.table-wrap img {
  height: auto;
}
.nav-submenu {
  position: relative;
  height: 100%;
}

.nav-submenu:hover .nav-submenu-list {
  display: flex;
}

.nav-submenu .nav-submenu-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: 55px;
  display: flex;
  align-items: center;
}

.nav-submenu .nav-submenu-list {
  position: absolute;
  background: #000;
  top: 40px;
  left: -10px;
  width: 160px;
  flex-direction: column;
  padding: 10px 10px 0px 10px;
  display: none;
}

.nav-submenu .nav-submenu-list a {
  margin-bottom: 10px;
  margin-right: 0px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  padding-top: 25px;
  overflow-x: hidden;
}

.breadcrumbs a {
  color: #fff;
  font-size: 14px;
}

.breadcrumbs a:hover {
  text-decoration: none;
}

.breadcrumbs .last {
  position: relative;
  margin-left: 10px;
  font-size: 14px;
}

.breadcrumbs a:after {
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(/arrow-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 10px;
  content: no-open-quote;
}

.advantages {
  padding: 20px 0;
}

.advantages ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.advantages ul li {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.advantages ul li img {
  width: 60px;
  height: 60px;
}

.advantages ul li p {
  width: 100%;
  padding-bottom: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

/* Витрина */

.casinos {
  width: 96%;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 10px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.casinos-wrapper {
  background: var(--light-background);
  border-radius: 10px;
  width: 100%;
  padding: 20px 24px;
}
.casino {
  background: var(--main-background);
  border-radius: 10px;
  padding: 20px 24px 20px 24px;
  display: grid;
  grid-template-columns: 160px 15% auto 350px;
  align-items: center;
  gap: 0 20px;
}
.casino .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 66px;
  border-radius: 4px;
}
.casino .rating span {
  color: var(--primary-color);
  font-family: Tahoma;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 5px;
}
.casino .rating .license {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.casino .rating {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.rating-info {
  display: flex;
}
.casino .rating_rating {
  display: flex;
  gap: 10px;
}
.casino .rating_rating img {
  width: 15px;
  height: 15px;
  gap: 4px;
}
.casino .rating .title {
  font-family: Tahoma;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  color: #333;
}
.casino .rating_numbers {
  font-family: Tahoma;
  font-size: 14px;
  line-height: 18px;
  color: #333;
}
.casino .bonus span {
  font-family: Tahoma;
  font-size: 12px;
  font-weight: 400;
  line-height: 13.2px;
  text-align: left;
  color: #333;
}
.casino .bonus p {
  font-family: Tahoma;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #333;
  padding-top: 8px;
  margin: 0;
  width: 100%;
  max-width: 300px;
}

.casino .button {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.casino .button button {
  font-family: Tahoma;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: var(--button-color);
  background: var(--accent-yellow);;
  border-radius: 50px;
  box-shadow: none;
  border: none;
  width: 100%;
  max-width: 250px;
  padding: 14px 24px;
  cursor: pointer;
  transition: 0.4s;
  text-align: center;
  opacity: 1;
}
.casino .button button:hover {
  opacity: 0.8;
}
.casino .button .info-casino {
  display: flex;
  gap: 4px;
}
.casino .button .info-casino span {
  font-family: Tahoma;
  font-size: 10px;
  font-weight: 400;
  line-height: 12.1px;
  text-align: left;
  color: #333;
  background: transparent;
  position: relative;
}
.casino .button .info-casino img {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
}

.more-info {
  margin-top: 17px;
  display: none;
  gap: 17px;
  grid-template-columns: auto auto;
  grid-column-start: 1;
  grid-column-end: 5;
}
.more-info .info-deposit {
  background: #e9f3ff;
  border-radius: 10px;
  padding: 5px 12px 5px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.more-info .min-dep,
.more-info .max-dep {
  background: #e9f3ff;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
}
.more-info .info-deposit .more-info-title,
.more-info .min-dep .more-info-title,
.more-info .max-dep .more-info-title {
  font-family: Tahoma;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
  color: #333;
  margin: 0;
  padding-bottom: 8px;
}
.more-info .info-deposit span,
.more-info .min-dep span,
.more-info .max-dep span {
  font-family: Tahoma;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #333;
}
.more-info.visible {
  display: block;
}
.video {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
frame {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

/* Баннеры */
.frame {
  width: 100%;
  margin: 32px auto 10px;
  aspect-ratio: 4/2;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

.frame-header .icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.frame-header span {
  display: block;
  width: 100%;
  font-family: Verdana;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
}

.frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.frame button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .banner {
  margin: 20px auto 20px;
}
main .banner-wrap {
  background: var(--light-background);
  border-radius: var(--slightly-rounded);
  height: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

.banner-block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: min-content;
}

.banner .banner-caption {
  width: 100%;
  padding: 0;
  margin: 0;
}

.banner .banner-img {
  width: 100%;
  height: auto;
}

.banner .buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.banner .show-iframe {
  width: 74px;
  height: 74px;
  background: left 25px center / 26px 32px url(/play-button.svg) no-repeat,
    var(--light-background);
  border-radius: 50%;
}

.banner .show-iframe:hover {
  color: #e7e5e5;
}

.banner .banner-btn:hover {
  color: #e7e5e5;
  background-color: var(--yellow-hover-bg);
}

.banner-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 29.92px;
  text-align: left;
}

.banner-caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.95px;
  text-align: left;
}

.table-wrap .descr {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.table-wrap .descr .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0px;
  border-bottom: 1px solid rgba(1, 33, 105, 0.5);
}

.table-wrap .descr .item span {
  font-family: Verdana;
  font-size: 14px;
  line-height: 20.95px;
  color: #012169;
}

.table-wrap .descr .item span:first-of-type {
  font-weight: 400;
}

.table-wrap .descr .item span:last-of-type {
  font-weight: 700;
}

.table-wrap .descr .rating {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-wrap .descr .rating p {
  font-size: 14px;
  padding: 0;
  width: 100%;
  margin: 0;
}

.table-wrap button {
  min-width: 273px;
  display: block;
  min-height: 40px;
  color: #fff;
  border-radius: var(--rounded-large);
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.playFree {
  background: var(--accent-yellow);
}
.realMoney {
  background: var(--accent-green);
}
/* .wrap .left .left-content {
    height: 300px;
  } */
.panel {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
.panel .item {
  padding: 10px;
  border-radius: var(--slightly-rounded);
  background-color: var(--light-background);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.panel .item span {
  text-align: center;
  font-size: 15px;
}
.panel .item span:first-of-type {
  font-weight: 400;
  line-height: 1.3;
}
.panel .item span:nth-of-type(2) {
  color: var(--accent-lila);
  font-weight: 700;
  font-family: Verdana;
  line-height: 1.4;
}

/* Отзывы */
.testimonials-block {
  padding: 0 20px;
}

.testimonial-block {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: left;
  vertical-align: middle;
  width: 96%;
  max-width: 1300px;
  padding: 20px;
  border: 1px solid #055be5;
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: 12px;
}
.testimonial-head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.testimonial-block .title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
}

.testimonial-block p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 1960px) {
  .header {
    height: 85px;
    position: relative;
  }

  .header .headerInner .toggle {
    left: 16px;
    top: 3px;
  }

  .header .headerInner .logo {
    left: unset;
  }

  .header .buttons .btn-reg {
    color: #000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 199px;
    height: 46px;
    background:linear-gradient(90deg, #43c0b7 .41%, #66fcf1 58.68%), #66fcf1 ;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
  }
  .header .buttons .btn-reg:hover {
    opacity: 0.8;
  }

  .header .buttons .logButton {
    font-size: 1rem;
    border-radius: 0.25rem;
    background-color: inherit;
    font-weight: 600;
  }

  .header .buttons .logButton:hover {
    transition: 0.3s;
  }
}
@media screen and (max-width: 1320px) {
  main .banner {
    padding: 0 10px;
  }
  .panel {
    gap: 6px;
  }
}
@media (max-width: 1250px) {
  /* Общие стили */
  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main ol,
  main ul,
  main figure,
  main .general-table-wrapper,
  main .faq-container {
    width: 100%;
  }

  main p,
  .content .general-ol li,
  .general-table .general-tr .general-td,
  .content .general-ul li,
  .content .general-ul li {
    font-size: 16px;
    color: #fff;
  }


  main .wrapper {
    width: 100%;
    padding: 0 15px;
  }

  h1 {
    font-size: 26px;
    line-height: 30px;
    color: #fff;
  }

  h2 {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
  }

  h4,
  .faq-container .faq-question {
    font-size: 18px;
    line-height: 28px;
  }

  h5,
  h6 {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 10px 0;
  }

  .general-table .general-tr .general-td {
    padding-left: 10px;
    padding-right: 10px;
    color: #000;
  }

  .content .contentMain {
    width: 100%;
  }

  .content .general-ol li,
  .content .general-ul li {
    width: 100%;
  }
  /* Хедер */
  .burger {
    display: none;
  }
  .header .buttons .playNow {
    display: none;
  }

  #mobileMenu .nav-submenu {
    margin-top: 20px;
  }

  #mobileMenu .nav-submenu-link {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    height: auto;
  }

  #mobileMenu .nav-submenu-list {
    display: flex;
    width: 100%;
    left: 0;
    position: relative;
    top: 0;
  }
  /* Хлебные крошки */
  .breadcrumbs.wrapper {
    margin-top: 15px;
  }

  /* не знаю */
  .columns {
    flex-wrap: wrap;
  }

  .columns .column {
    width: 100%;
  }

  .column-p {
    margin-left: 0;
  }
  /*Контентные кнопки */
  .button-block button {
    padding: 14px 5px;
  }
  /*Цитата*/
  .quote {
    width: calc(100% - 32px);
  }
  /* FAQ */
  .faq-container .faq-item {
    border-radius: 14px;
  }

  .faq-container .faq-question {
    width: 100%;
    padding-left: 20px;
    padding-right: 30px;
  }

  .faq-container .faq-answer {
    width: 100%;
    padding-left: 20px;
  }

  .faq-container .bg-active {
    border-radius: 14px;
  }

  .faq-container .icon {
    right: 15px;
  }

  /* Баннеры */
  .banner {
    margin-bottom: 20px;
  }
  /* Плюсы минусы */

  .advantages {
    overflow-x: scroll;
    flex-wrap: nowrap;
  }

  .advantages ul {
    justify-content: flex-start;
  }

  .advantages ul li {
    max-width: 160px;
    flex: 0 0 auto;
  }
  .panel .item {
    padding: 10px 6px;
  }
  /* Витрина */
  .casino {
    display: grid;
    grid-template-columns: 200px 150px auto 200px;
    padding: 10px 20px 14px 20px;
  }

  .casino .bonus p {
    font-size: 16px;
    line-height: 18px;
    padding-bottom: 0;
  }

  .casino .text {
    border-right: none;
  }

  .casino .button {
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .panel {
    display: grid;
    gap: 10px 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .panel .item {
    padding: 10px;
  }
  .panel .item span {
    font-size: 16px;
  }
  .frame-header span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .table-wrap button {
    width: 100%;
    font-size: 14px;
  }
  .banner .buttons {
    padding: 15px 10px;
  }

  .frame {
    margin: 10px auto;
  }
}

@media screen and (max-width: 950px) {
  .banner-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
    /* Футер */
    .footer {
      padding: 20px 0 80px 0px;
    }
  
    .footer-block-btn {
      display: flex;
    }

    .buttons {
      display: none;
    }
    .logo img {
      width: 80px;
      height: 42px;
    }
}
@media (max-width: 450px) {
  .header .headerInner .menu a {
    font-size: 16px;
    line-height: 20px;
}
.burger {
  display: flex;
}
.header .headerInner .menu {
  display: none;
}
}
@media (max-width: 1150px) {
  .casino {
    grid-template-columns: 160px 180px auto;
    padding: 20px 20px 14px 20px;
    gap: 14px;
  }
  .casino .button {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .more-info {
    grid-column-end: 4;
  }
}

@media screen and (max-width: 880px) {
  main .banner-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .banner-block.table-wrap img {
    width: 273px;
    margin: 0 auto;
  }

  .table-wrap button {
    max-width: 300px;
  }
  .frame-header span {
    font-size: 18px;
  }
  .panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner.wrapper {
    max-width: 500px;
  }
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  h4,
  h5,
  h6,
  .faq-container .faq-question {
    font-size: 15px;
  }
  main p,
  .content .general-ol li,
  .general-table .general-tr .general-td,
  .content .general-ul li,
  .content .general-ul li,
  .faq-container .faq-question {
    font-size: 14px;
  }
  p {
    padding-bottom: 10px;
  }
  .general-table .general-tr .general-td {
    padding: 5px;
  }
  .banner .show-iframe {
    width: 48px;
    height: 48px;
    background: left 16px center / 20px 24px url(/play-button.svg) no-repeat,
      var(--light-background);
  }
  .testimonial-head {
    flex-direction: column;
    gap: 0;
  }
  .testimonial-block .title {
    font-size: 20px;
    line-height: 24px;
  }
  .testimonial-block p {
    font-size: 16px;
    line-height: 19px;
  }
  .casino {
    grid-template-columns: 160px 1fr;
  }
  .casino .bonus {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .casino .bonus p {
    max-width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .casinos {
    padding: 0px 0px;
  }

  .casino {
    grid-template-columns: 150px auto;
    padding: 10px 10px 10px 10px;
  }

  .casino .img img {
    width: 150px;
    height: 68px;
  }
  .panel {
    gap: 15px;
  }
  .panel .item span {
    font-size: 15px;
  }

  .casino .bonus {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .casino .button {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .casino .rating {
    margin-left: 15px;
  }

  .casino .rating .rating-block {
    margin: 5px 0 0 5px;
    font-size: 13px;
    line-height: 16px;
  }

  .casino .text p {
    font-size: 12px;
    line-height: 15px;
  }

  .casinos .casinos-header div {
    font-size: 10px;
    line-height: 13px;
    margin: 0 5px 0 0px;
  }
}

@media screen and (max-width: 660px) {
  .header .headerInner .logo {
    left: 0;
  }
}

@media (max-width: 600px) {
  .header {
    height: 60px;
  }

  .header .buttons .playNow {
    display: none;
  }

  .header .headerInner .headerWrapper {
    justify-content: space-between;
  }

  .table-wrap .descr .item span {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
  }
  .reviews .review {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .more-info {
    grid-template-columns: 1fr;
  }
  .more-info .min-dep,
  .more-info .max-dep {
    max-width: 100%;
  }
  .casino .button {
    flex-direction: column;
  }
}

@media screen and (max-width: 500px) {
  main .banner {
    margin-top: 5px;
    width: 100%;
    padding: 0 10px;
  }
  .panel {
    gap: 10px 16px;
  }
  .panel .item span {
    font-size: 14px;
  }

  .banner-title {
    font-size: 18px;
    line-height: 26.93px;
  }

  .banner-caption {
    font-size: 14px;
    line-height: 20.95px;
  }

  .faq-container .faq-question {
    font-size: 16px;
  }
  .panel .item {
    gap: 5px;
    padding: 10px 5px;
  }
}

@media (max-width: 400px) {
  .casino {
    grid-template-columns: 120px 1fr;
  }
  .casinos-wrapper {
    padding: 20px 20px;
  }
  .casino .bonus p {
    font-size: 16px;
  }
  .casino .rating_rating {
    gap: 5px;
  }
  .casino .rating_numbers {
    font-size: 12px;
  }
  .panel .item span {
    font-size: 12px;
  }
  .testimonial-block .title {
    font-size: 16px;
    line-height: 19px;
  }
  .testimonial-block p {
    font-size: 14px;
    line-height: 16px;
  }

  .general-table {
    max-width: 100%;
  }

  .general-table-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .footer .footerInner .menu {
    grid-template-columns: repeat(1, 1fr);
  }
  .panel .item span:nth-of-type(2) {
    font-size: 11px;
  }
}

.buttonsAndLangs .langsMenu {
  position: relative;
  cursor: pointer;
}
.buttonsAndLangs .langsMenu .lang {
  display: flex;
  align-items: center;
}
.buttonsAndLangs .langsMenu .lang span {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  margin-left: 12px;
}
.buttonsAndLangs .langsMenu .lang .arrow.rotated {
  transform: rotate(180deg);
}
.buttonsAndLangs .langsMenu .langsList {
  position: absolute;
  background: #000;
  top: 50px;
  right: -15px;
  padding: 8px;
  border-radius: 8px;
  width: 110px;
  display: none;
}
.buttonsAndLangs .langsMenu .langsList.shown {
  display: block;
}
.buttonsAndLangs .langsMenu .langsList .lang {
  margin-bottom: 12px;
}
.buttonsAndLangs .langsMenu .langsList .lang a {
  display: flex;
  align-items: center;
}
.iframe {
  margin: 0 auto;
}

.bonuses {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 96%;
  max-width: 1300px;
  margin: 0 auto;
}

.bonuses > div {
  width: 49%;
  margin-bottom: 1%;
}

.bonus__title {
  color: #fff!important;
  font-weight: 700;
  font-size: 20px;
  text-transform: none;
  text-align: left;
}

.bonus__btn {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  padding: 0 32px;
  min-height: 36px;
  min-width: 125px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 36px;
  font-style: normal;
  text-decoration: none;
  outline: none;
  transition: background-position .3s ease, color .3s ease;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  text-shadow: none;
  border-radius: 25px;
  border: none;
  box-shadow: none;
  background-color: #db1919;
  background-image: linear-gradient(to right, #db1919 0%, #db1919 50%, #980300 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 550px) {
  .bonus {
      flex-direction: column;
  }

  .bonuses > div {
      width: 100%;
  }

  .bonus__pic {
      margin-bottom: 20px;
  }

  .bonus__content {
      margin-left: 0;
      text-align: center;
  }
}

.payments img {
  width: 80px;
  min-width: 60px;
}

@media (max-width: 425px) {
  .payments {
      font-size: 11px;
  }
}

.bonus {
    display: flex;
    padding: 40px 30px;
    margin-bottom: 20px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .7) 0, rgba(4, 0, 0, .7) 40%, #45a29e);
    border-radius: 8px;
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.infoBlock {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 20px;
  width: 96%;
  max-width: 1300px;
  margin-bottom: 24px;
}
.infoImg {
  width: 100%;
  max-width: 295px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.gameImg img {
  width: 241px;
  height: 114px;
}
.gameText {
  width: calc(100% - 319px);
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.gameText p {
  max-width: 100%;
  width: 100%;
  padding-bottom: 0;
}

.infoText .general-ol li::before {
  width: 20px;
  height: 20px;
  font-size: 13px;
  top: 0;
}


@media screen and (max-width: 1250px) {
  .infoBlock
   {
      width: calc(100% - 32px);
  }
}

@media screen and (max-width: 1100px) {
  .infoBlock {
      flex-direction: column;
      gap: 24px;
      align-items: center;
  }
  .infoText {
      width: 100%;
  }
}

.plus-minus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  grid-gap: 30px;
  gap: 30px;
  justify-content: center;
  margin: 30px auto;
  width: 96%;
  max-width: 1300px;
}

.plus-minus__head {
  padding-top: 10px;
  padding-left: 60px;
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 46px
}

.plus-minus__contra,.plus-minus__pro {
  padding-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid
}

.plus-minus__pro {
  border-color: #099f4f
}

.plus-minus__contra {
  border-color: #7433ff
}

.plus-minus__pro .plus-minus__head {
  background: url(/uploads/img/like.svg) left 18px center no-repeat,#099f4f
}

.plus-minus__contra .plus-minus__head {
  background: url(/uploads/img/dislike.svg) left 18px center no-repeat,#7433ff
}

main .plus-minus p {
  position: relative;
  padding: 5px 20px 5px 60px
}

main .plus-minus p:first-of-type {
  margin-top: 20px
}

main .plus-minus p::before {
  content: no-open-quote;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 8px;
  left: 20px
}

main .plus-minus .plus-minus__pro p::before {
  background-color: #099f4f
}

main .plus-minus .plus-minus__contra p::before {
  background-color: #7433ff
}

@media screen and (max-width: 1024px) {
  .plus-minus {
      grid-template-columns: minmax(min-content,calc(100% - 50px))
  }
}

@media screen and (max-width: 600px) {
  .plus-minus {
      grid-template-columns:minmax(min-content,calc(100% - 10px))
  }

  .plus-minus__contra,.plus-minus__pro {
      padding-bottom: 20px
  }

  .plus-minus__contra .plus-minus__head,.plus-minus__pro .plus-minus__head {
      font-size: 18px;
      background-size: 22px;
      min-height: 40px
  }

  main .plus-minus p:first-of-type {
      margin-top: 10px
  }

  main .plus-minus p::before {
      height: 14px;
      width: 14px
  }

  main .plus-minus p {
      padding: 5px 20px 5px 50px
  }
}

@media screen and (max-width: 400px) {
  .plus-minus {
      grid-template-columns:1fr
  }
}






