#doors_block {
    padding-bottom: 40px;
}
.pop-up-text {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 30px;
    text-align: center !important;
}

.hi {
    left: 50% !important;
    transform: translateX(-50%);
}

.door__sales {
    left: 0 !important;
}

@media (max-width: 767px) {
    .door__sales {
        font-size: 20px !important;
        padding: 10px !important;
    }
}

.door__container {
    display: flex;
    justify-content: space-around;
}

.box1 {
    perspective: 500px;
    position: relative;
}

.box1,
.door {
    width: 190px;
    height: 400px;
    box-shadow: inset -1px -1px 0px 1px #191919, inset 1px 1px 0px 1px #191919;
}

.door,
.hi {
    position: absolute;
    top: 0;
    left: 0;
}

.door {
    background-image: url("./door.png");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateY(0deg);
    display: inline-block;
    transition: all 0.75s ease;
    transform-origin: 0% 0%;
    cursor: pointer;
}

#door__2 {
    background-image: url("./door2.png");
}

#door__3 {
    background-image: url("./door3.png");
}

.door:hover {
    transform: rotateY(-30deg);
}

.door.open {
    transform: rotateY(-85deg);
}

.door__sales {
    position: relative;
    top: 140px;
    font-size: 46px !important;
    font-weight: 700 !important;
    color: red !important;
    border-radius: 30px !important;
    padding: 30px 5px !important;
    box-shadow: 0px 1px 2px 2px #7F7878;
    font-family: Roboto,Tahoma,Geneva,sans-serif;
}


.door__title {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    font-size: 22px !important;
    margin-bottom: 25px;
    background-color: #3A4752;
    padding: 10px 0;
    border-radius: 0.5em;
    font-family: Roboto,Tahoma,Geneva,sans-serif;
}

@media (max-width: 840px) {
    .door__sales {
        font-size: 20px !important;
        font-weight: 700 !important;
        top: 50px !important;
        color: red !important;
        border-radius: 30px !important;
    }

    .box1,
    .door {
        width: 95px;
        height: 200px;
    }

    
}

@media(max-width:360px) {
    .box1+.box1 {
        margin-left: 15px;
    }

    .door__sales {
        font-size: 25px !important;
        font-weight: 700 !important;
        top: 50px !important;
        color: red !important;
        left: 0!important;
        border-radius: 30px !important;
    }

}

.spin-result-wrapper {
    display: none;
}

.spin-result-wrapper {
    max-width: 100%;
    display: none;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    top: 0;
    z-index: 999;
    left: 0;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, .6);
    text-align: center
}

.pop-up-window {
    position: relative;
    max-width: 400px;
    right: 0;
    left: 0;
    top: 40%;
    margin: 0 auto;
    background: #fff none repeat scroll 0 0;
    text-align: center;
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 20px;
    border-radius: 10px;
    animation: .7s ease 0s normal none 1 running pop-up-appear
}

.pop-up-text {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 30px;
    text-align: center !important;
    font-family: Roboto,Tahoma,Geneva,sans-serif;
}

.pop-up-button {
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 10px 20%;
    font-size: 20px;
    border-radius: 5px;
    background-color: #71c341;
    color: #fff !important;
    border: medium none;
    cursor: pointer;
    outline: medium none;
    font-family: Roboto,Tahoma,Geneva,sans-serif;
}

.pop-up-window {
    position: relative;
    max-width: 400px;
    right: 0;
    left: 0;
    top: 40%;
    margin: 0 auto;
    background: #fff none repeat scroll 0 0;
    text-align: center;
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 20px;
    border-radius: 10px;
    animation: .7s ease 0s normal none 1 running pop-up-appear
}

.pop-up-window::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    top: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #71c341;
    border-radius: 50%;
    animation: .5s ease .6s normal backwards 1 running pop-up-appear-before
}

.pop-up-window::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-width: medium medium 4px 4px;
    border-style: none none solid solid;
    border-color: currentcolor currentcolor #fff #fff;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
    transform: rotate(-45deg);
    transition: opacity 1s ease 0s;
    animation: .5s ease .6s normal backwards 1 running pop-up-appear-after
}

@keyframes pop-up-appear {
    0% {
        transform: translateY(-2000px)
    }

    30% {
        transform: translateY(100px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes pop-up-appear-before {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes pop-up-appear-after {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.pop-up-button:hover {
    color: #fff !important;
    text-decoration: none !important
}






.quiz_wrap * {
    font-family: sans-serif;
  }
  .quiz_wrap {
    position: relative;
    margin: 20px auto;
    max-width: 344px;
    width: 100%;
    height: 620px;
    border-radius: 10px;
    background: linear-gradient(180deg, #adfbb9 0%, #e4fbad 100%), #e4fbad;
    overflow: hidden;
  }
  .quiz_header {
    background: linear-gradient(180deg, #8840c0 0%, #5a1784 71.67%);
    position: relative;
  }
  .quiz_header:after {
    content: " ";
    display: block;
    position: absolute;
    bottom: -27px;
    background: 0 0/100% 100% url(./quiz_header-bg.png) no-repeat;
    height: 27px;
    width: 100%;
  }
  .quiz_title {
    padding-top: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    text-align: center;
    color: #fff;
  }
  .order_title {
    display: none;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
   
    padding: 0px 17px;
    padding-top: 17px;
  }
  .order_title span {
    color: #e4fbad;
    font-size: 20px;
    display: block;
    margin-top: 4px;
  }
  .quiz_question {
    display: flex;
    align-items: center;
    height: 48px;
    margin: 48px 38px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: #000;
  }
  .quiz_question div {
    display: flex;
  }
  .quiz_question div span {
    display: block;
    padding-right: 8px;
  }
  .quiz_options {
    margin: 0 34px;
  }
  .quiz_option {
    position: relative;
    padding-left: 40px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 21px;
    line-height: 135%;
    cursor: pointer;
    color: #7931b1;
  }
  .quiz_option:before {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    content: " ";
    display: block;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #959595;
    position: absolute;
    left: 0;
    top: -2px;
  }
  .quiz_option:after {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    content: " ";
    display: block;
    background: #7931b1;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 3px;
    opacity: 0;
  }
  .quiz_option:hover:before {
    border: 1px solid #7931b1;
  }
  .quiz_option:hover:after {
    opacity: 1;
  }
  .quiz_nums {
    padding: 0 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 65px;
  }
  .quiz_num {
    -webkit-transition: 1s all;
    transition: 1s all;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    background: #e5d2f2;
    border: 1px solid #fff;
    color: #9747ff;
  }
  .quiz_num span {
    -webkit-transition: 1s all;
    transition: 1s all;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    background: #fff;
    border-radius: 50%;
  }
  .quiz_num.active {
    background: #e5d2f2;
    border: 1px solid #a260d4;
  }
  .quiz_num.active span {
    background: linear-gradient(180deg, #962dd8 0%, #ad74da 100%), #f64777;
    color: #fff;
  }
  .quiz_nums:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: calc(100% - 64px);
    height: 1px;
    background: #a260d4;
  }
  .quiz_footer {
    width: 100%;
    position: absolute;
    bottom: 20px;
    color: #000;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
  }
  .quiz_footer span {
    font-weight: 700;
    color: #5a1784;
  }
  .quiz_step,
  #prod_img {
    transition: 0.5s all;
    display: none;
    opacity: 0;
    margin-top: -7px;
  }
  .quiz_step.active {
    opacity: 1;
    margin-top: 0;
  }
  .quiz_timer {
    margin-top: 39px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
  }
  .quiz_timer div {
    margin-top: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    color: #f64777;
    text-align: center;
  }
  .quiz_timer span {
    display: inline-block;
    width: 32px;
  }
  .quiz_prices {
    margin-top: 16px;
    margin-bottom: 12px;
    text-align: center;
  }
  .quiz_prices .quiz_oldprice {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-decoration-line: line-through;
    color: #000;
  }
  .quiz_prices .quiz_newprice {
    margin-top: 4px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5a1784;
  }
  .quiz_form form {
    width: 280px;
    margin: 0 auto;
  }
  .quiz_form form input {
    line-height: 48px;
    padding-left: 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    display: block;
    background: #fff;
    border: 1px solid #5a1784;
    border-radius: 24px;
    width: 100%;
    margin-bottom: 16px;
    position: relative;
  }
  .quiz_form form button {
    text-transform: uppercase;
    margin-top: 0;
    border-radius: 24px;
    line-height: 1.2 !important;
    /* height: 48px; */
    display: block;
    text-align: center;
    width: 100%;
    background: #f64777;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    border: none;
    color: #fff;
    cursor: pointer;
  }
  @media (max-width: 360px) {
    .quiz_question {
      margin: 48px 18px 20px;
    }
    .quiz_options {
      margin: 0 14px;
    }
  }
  
  .nw {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    text-align: left;
    margin-top: 5px !important;
  }
  
  .quotes {
    margin: 30px 0 30px;
    border-radius: 6px;
    border: 1px solid #b99bd2;
  }
  .quotes__content {
    padding: 20px 20px 20px 20px;
    /* background: url(./quote_close.png) bottom 25px right 55px no-repeat; */
    background-size: 235px;
    /* background: rgba(5, 5, 5, 0.3); */
  }
  
  .quotes li > p:first-child {
    margin-bottom: 10px;
    padding-top: 15px;
  }

  .quotes li > p {
    font-size: 18px;
  }
  
  .quotes ul {
    list-style-type: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .quotes li {
    padding-left: 30px;
    display: block;
    position: relative;
    margin-bottom: 25px;
  }
  .quotes li span {
    font-weight: 600;
  }
  .quotes li:last-of-type {
    margin-bottom: 0;
  }
  
  .quotes.quotes-butterfly h4,
  .quotes.quotes-butterfly h4,
  .quotes.quotes-green h4,
  .quotes.quotes-green h5,
  .quotes.quotes-green h6,
  .quotes.quotes-red h5 {
    margin-left: 29px;
  }
  
  .quotes.quotes-butterfly li::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background: url(./butterfly.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    left: -55px;
    top: 5px;
    transform: translateY(-50%);
    z-index: 10;
  }
  .quotes.quotes-butterfly .yellow-bg {
    font-size: 18px;
  }
  
  .geffects2 {
    text-align: left;
    border: 1px solid #6aa869;
    border-radius: 6px;
    box-sizing: border-box;
    /* background: #162634; */
    margin: 15px auto 35px;
    width: auto;
    max-width: 960px;
  }
  .effects2__container {
    padding: 15px 55px 25px;
  }
  .geffects2 h2 {
    margin-top: 10px;
  }
  
  .geffects2 li {
    position: relative;
    padding-bottom: 0;
    padding-left: 32px;
    margin: 0 0 20px -32px !important;
  }
  .geffects2 li p {
    margin-bottom: 0;
    font-weight: 400;
  }
  
  .effects2__container > p {
    margin-bottom: 20px;
    margin-top: 10px;
    text-align: center;
    font-size: 20px !important;
  }
  
  .list-green2 {
    list-style-type: none;
    padding: 0;
  }
  
  .list-green2 > li {
    background-image: url(./gal.png);
    background-position: left top 3px;
    background-size: 25px;
    background-repeat: no-repeat;
    padding-left: 40px;
  }
  
  .regaly__item {
    position: relative;
    display: grid;
    grid-template-columns: 94px auto;
    gap: 1em;
    margin-bottom: 35px;
    align-items: center;
  }
  
  blockquote.news {
    position: relative;
    margin: 15px 0;
    z-index: 0;
  }
  
  blockquote.news p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 21px;
    line-height: 29px;
    /* color: #fff; */
  }
  
  blockquote.news:before {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 33px;
    top: 0;
    left: 0;
    background: url(../%281.html).svg) no-repeat;
    background-size: 32px 33px;
    content: "";
  }
  
  
  @media (min-width: 768px) {
    blockquote.news:before {
      position: absolute;
      width: 53px;
      height: 42px;
      top: 5px;
      left: 0;
      background-size: 53px 42px;
    }
  }
  @media (min-width: 768px) {
    blockquote {
      margin: 30px 0;
      padding: 0 0 0 85px;
    }
  }
  
  .list {
    /* padding-left: 35px; */
    margin-bottom: 30px;
  }
  .list ul {
    list-style-type: none;
  }
  .list li {
    display: block;
    margin-bottom: 15px;
    background: linear-gradient(95.88deg, crimson 33.37%, transparent 86.23%);
    background-color: red;;
    padding: 3px 12px;
    padding-right: 50px;
    border-left: 2px solid crimson;
    position: relative;
    line-height: 1.4em;
    color: #fff;
  }
  .list li span {
    font-weight: 700;
  }
  .list li:last-of-type {
    margin-bottom: 0;
  }
  .list li::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -37px;
    top: 0px;
    background: url(./check_red_1.png) center center no-repeat;
    background-size: contain;
  }
  
  
  .clear-fix {
    content: " ";
    clear: both;
    display: table;
  }
  
  .mb-new {
    margin-bottom: 30px;
  }
  
  
  blockquote.new {
    position: relative;
    margin: 15px 0;
    z-index: 0;
    margin-bottom: 30px;
    /* padding-left: 0; */
    display: flex;
    align-items: start;
    gap: 15px;
}
  .-darkMode blockquote.new {
    color: #fff;
  }
  
  blockquote.new p {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500 !important;
    font-size: 21px !important;
    line-height: 27px !important;
  
  
  }
  
  blockquote.new:before {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 33px;
    top: 0;
    left: 0;
    background: url(./quote-icon-24hu-24.svg) no-repeat;
    background-size: 32px 33px;
    content: "";
    flex: 0 0 auto;

  }
  
  @media (min-width: 768px) {
    blockquote.new:before {
      position: absolute;
      width: 53px;
      height: 42px;
      /* top: 5px; */
      left: 0;
      background-size: 53px 42px;
    }
  }
  

  
.pulse {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
    }
  
    50% {
      transform: scale(1.05);
      -webkit-transform: scale(1.05);
      -moz-transform: scale(1.05);
      -o-transform: scale(1.05);
      -ms-transform: scale(1.05);
    }
  
    100% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
    }
  }
  
  .delivery {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 16px !important;
    color: #0b2e6e;
  }
  
  .firstComment {
    opacity: 0;
  }
  
  .list-green {
    list-style-type: none !important;
    list-style: none !important;
    margin: 25px 0 !important;
    padding: 0 !important;
  }
  
  .list-green li {
    position: relative;
    padding-left: 32px;
    background-image: url(./checkmark.png);
    background-position: left top 2px;
    background-size: 20px;
    background-repeat: no-repeat;
    margin-bottom: 15px;
    font-weight: bold;
    list-style-type: none !important;
    list-style: none;
  }
  
  .list-green2 li {
    background-image: url(./gal_1.png);
    font-weight: normal;
  }

  .list-green2 li::marker{
    content: '';
    display: none !important;
  }
  
  .red-txt {
    color: red !important;
  }
  
  .effects {
    background: linear-gradient(117.36deg, #3262be 2.35%, #21417d 99.66%);
    color: #fff;
    margin-bottom: 30px;
    border: none;
  }
  .effects__container {
    padding: 5% 15%;
    padding-bottom: 5%;
  }
  
  .effects > img {
    position: absolute;
    margin-top: 50px !important;
  }
  
  @media screen and (max-width: 768px) {
    .effects__container {
      padding-left: 10px;
      padding-right: 10px;
    }

    .list {
        padding-left: 15px;
    }
  }
  
  .effects ul {
    list-style-type: none;
  }
  .effects h3 {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    color: #fff !important;
    font-size: 22px;
  }
  .effects h3::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
  }
  .effects li {
    font-size: 18px;
    min-height: 35px;
    padding-left: 30px;
    position: relative;
  }
  
  .effects li:before {
    content: none;
  }
  
  .effects li img {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    left: 0;
    top: 3px;
  }
  
  .effects p {
    color: #fff;
  }
  
  .effects ul li p {
    color: #fff !important;
    margin: 0 !important;
  }
  
  .gal2 {
    list-style-type: none !important;
  }
  
  .gal1 img {
    display: inline-block;
    position: static;
    width: 25px;
    height: 25px;
    left: -20px;
  }
  
  .gal1 ul li {
    list-style: none;
    padding-left: 30px;
  }
  
  .gal1 ul li {
    position: relative;
  }
  
  .gal2 li {
    position: relative;
    list-style: none;
    list-style-type: none !important;
  }
  
  .gal2 li img {
    position: static;
    width: 25px;
    height: 25px;
    float: left;
  }
  
  .componente_materia {
    float: left;
    margin: 0 1.75em 2.5em 0;
    max-width: 400px;
  }
  
  @media (max-width: 642px) {
    .componente_materia {
      width: 100%;
      max-width: 100%;
      margin: 0 0 15px 0;
    }
  
    .quotes.quotes-butterfly li::before {
      left: -50px !important;
    }
  }
  
  .foto strong {
    background: #eee;
    display: block;
    font-weight: 400;
    padding: 0.67em;
    font-size: 14px;
  }
  .foto img {
    display: block;
  }
  

  

.swiper {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .swiper2 {
    max-width: 460px;
    height: auto;
    padding-bottom: 15px;
    margin: 0 auto;
    margin-bottom: 35px;
    margin-top: 35px;
    position: relative;
  }
  
  @media (min-width: 768px) {
    .swiper2 {
      max-width: 560px;
    }
  }
  
  .slider-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .slider-2 {
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  
  .slider-1__text {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    text-align: center;
  
    color: #000000;
  
    padding: 33px 19px 9px;
    box-shadow: 2px 1px 2px rgba(51, 26, 26, 0.15);
    position: relative;
    top: -20px;
  }
  
  .slider-1__text:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(90deg, #dd7000 0%, #f2b200 48%, #f3ad01 100%);
    opacity: 0.3;
  }
  
  .slider-1__img {
    z-index: 2;
    /* box-shadow: (1px 1px 3px rgba(0, 0, 0, 0.25)); */
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  }
  
  .slider-1__text__text {
    z-index: 2;
    position: relative;
  }
  
  /* .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    display: flex;
    justify-content: center;
    margin-top: 0px;
  }
  
  .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
  
    background: #ffffff;
    border: 8px solid #0e0097;
  }
  
  .swiper-pagination-bullet-active {
    background: linear-gradient(265.51deg, #b61814 0%, #d8b022 100%);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  } */
  
  .slider-top {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: #fff;
    padding: 0 15px;
  }
  
  .slider-top__img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dce2e9;
    padding: 2px;
    margin-right: 11px;
    background-size: cover;
  }
  
  .slider-top__name {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
  
    color: #131212;
  }
  
  .slider-top__doted {
    margin-left: auto;
  }
  
  .slider-image {}
  
  .slider-nav {
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    position: relative;
    top: -5px;
  }
  
  .slider-nav img {
    display: inline-block;
    max-width: 24px;
    height: 24px;
    margin-left: 5px;
  }
  
  .slider-bottom {
    padding: 0 15px;
    background-color: #fff;
  }
  
  .slider-bottom__like {
    margin: 0 0 8px !important;
    font-style: normal;
    font-weight: 600;
    font-size: 15px !important;
    line-height: 16px;
    display: flex;
    align-items: center;
  
    color: #131212;
  }
  
  .slider-bottom__text2 {
    font-style: normal;
    font-size: 15px !important;
    line-height: 1.25em !important;
    color: #131212 !important;
    padding-bottom: 20px !important;
    text-align: left;
  }
  
  .sidegutterleft .swiper-wrapper {
    flex-wrap: wrap;
  }
  
  .sidegutterleft .swiper-wrapper .swiper-slide {
    height: auto;
  }
  
  .swiper1 .swiper-cube-shadow {
    display: none !important;
  }
  
  .swiper1 {
  
    margin-left: auto !important;
    margin-right: auto !important;
    height:
  }
  
  @media only screen and (min-width: 1024px) {
    .swiper1 img {
      height: 332px;
    }
  
    .swiper1 .article__media-caption {
      margin-bottom: 0;
      padding-bottom: 8px;
    }
  
  
  }
  
  
  .swiper-backface-hidden .swiper-slide {
    max-width: 100%;
  }
  
  .swiper-cube .swiper-slide {
    height: auto !important;
  }
  
  .card-img {
    width: 100%;
  }
  
  
  /* .new-pag>.swiper-pagination-bullet {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 0;
    background-image: url(./dot.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    opacity: 0.3;
    outline: none;
  }
  
  .new-pag>.swiper-pagination-bullet-active {
    border: none;
    box-shadow: none;
  
    opacity: 1;
    outline: none;
  } */
  

  .btn-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px 0;
}
.btn-link {
	border-radius: 6px;
	border: 1px solid red;
	background-color: red;
	color: #fff !important;
	padding: 10px 15px;
	display: inline-block;
	transition: box-shadow 0.2s ease-in-out;
	text-decoration: none;
}
.btn-link:hover {
	background-color: red;
	text-decoration: none;
	box-shadow: 1px 1px 5px #222;
}
.btn-link:active {
	background-color: red;
	color: #fff;
}

.quiz_boxing, .quiz_boxing2 {
	display: none;
}


h1.red {
    margin: 0 0 17px;
    font-size: 30px;
    line-height: 34px;
    color: #1b354a;
	padding: 0;
    color: #e14444;
    font-weight: bold;
}



.excl {
    margin: 0;
    background: #2e4b83;
    color: #fff;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
    min-height: 80px;
    border-radius: 0 100px 100px 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
  }
  
  .excl-red {
    background: red;
  }
  
  .excl p {
    margin: 15px 0;
  }
  
  .excl p span.red {
    color: crimson;
  }
  
  .excl p a {
    color: #6e9bff;
  }
  
  .excl::before {
    content: '';
    display: block;
    width: 18px;
    height: 80px;
    left: 22px;
    top: -10px;
    position: absolute;
    background: url(./excl.png) center center no-repeat;
    background-size: contain;
  }
  
  .adva {
    display: table;
    width: auto;
    margin: 25px auto 25px;
  }
  
  @media(max-width: 570px) {
    .adva {
      width: 85%;
    }
  }
  
  .adva h2 {
    font-size: 24px;
    font-weight: 700;
  }
  
  .adva ul {
    font-size: 20px;
  }
  
  .adva ul li {
    position: relative;
    margin-bottom: 12px;
  }
  
  .adva ul .checkmark {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    margin-left: -30px;
  }
  
  /* .adva li::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(./checkmark.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    left: 10px;
    top: 0px;
    transform: translateY(0);
  } */
  
  .article-image {
    display: block;
    margin: 0px auto 20px;
  }
  




  .comments__item {
    display: grid;
    grid-template-columns: 1fr 10fr;
    gap: 1em;
    font-size: 18px;
    margin-bottom: 50px;
}
.comments__ava img {
    border-radius: 2px;
    width: 60px;
	border-radius: 50%;
	overflow: hidden;
	max-width: none;
	flex: 0 0 60px;
}
.comments__title {
    line-height: 1em;
    margin-bottom: 10px;
}
.comments__text {
    line-height: 1.4em;
}

.comments__text img{
	margin-top: 15px;
}