body {
    width: 100%;
    margin: 0;
    background-color: #f6f6ed;
    font-family: "TikTok Sans", sans-serif;
}
.b-1 {
    border: 1px solid red;
}
.m-top-30 {
    margin-top: 30px;
}

.m-bottom-30 {
    margin-bottom: 30px;
}
.m-bottom-50 {
    margin-bottom: 50px;
}

.mob-top-30 {
    margin-top: 0;
}

.up-case {
  text-transform: uppercase;
}

.td-none {
    text-decoration: none;
}
.df {
    display: flex;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.header-block {
    background: #e1cece;
    width: 100%;
}
.text_s1{
    font-size: 10px;
    opacity: 0.7;
}
.header-content {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
}

.header-block .nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 40px;
    width: 100%;
    margin-top: 30px;
}

.nav-bar .social-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav-bar .menu-items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.header-block .menu-items .menu-link{
  font-weight: 500;
  font-size: 11px;
  line-height: 20px;
  text-decoration: none;
  color: #000
}

.alt-logo {
    width: 32px;
}
.alt-text {
    color: #e1516c;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Geometria', sans-serif;
}

.home-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
}
.social-icons {
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.social-icons img{
    width: 26px;
}

.tel-social {
    color: #000;
    font-size: 14px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    background: #000;
    border-radius: 2px;
}


.main-header {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 50px;
}
.main-info {
    width: 60%;
    flex-direction: column;
    height: -webkit-fill-available;
    justify-content: flex-start;
}

.main-advantages {
    width: 70%;
    display: flex;
    gap: 15px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
}

.advantage-item {
    width: 45%;
    background-color: #fff;
    border-radius: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.advantage-icon {
    width: 100%;
    justify-content: flex-end;
}
.advantage-text {
    flex-direction: row;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    margin-left: 25px;
    margin-top: -50px;
    margin-bottom: 15px;
}

.advantage-img {
    object-fit: scale-down;
}
.advantage-img.map-img {
    margin-right: -10px;
}
.advantage-img.list-img {
    margin-right: -25px;
    margin-top: -13px;
}


.main-calculate {
    width: 40%;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: flex-end;
}
.main-sliders {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-banner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.main-banner img{
    max-height: 400px;
}
.sliders-wrapper {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
}

.slider-block {
    position: relative;
    width: 47%;
    margin: 20px 0;
}


input[type=range] {
    width: 100%;
    margin: 0;
    appearance: none;
    background: transparent;
}

.slider-block .labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 10px;
    color: #555;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: #000;
}

input[type=range]::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #000;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #e1516c;
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    cursor: pointer;
    margin-top: -9px;
}

input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #e1516c;
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    cursor: pointer;
}

.popover {
    position: absolute;
    top: -40px;
    padding: 10px 12px;
    background: #e1516c;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
    font-weight: 700;
}
.popover::after {
    content:"";
    position:absolute;
    bottom:-6px;
    left:50%;
    transform:translateX(-50%);
    border-width:6px 6px 0 6px;
    border-style:solid;
    border-color:#e1516c transparent transparent transparent;
}

.sliders-form {
    display: flex;
    width: 100%;
}

.sliders-form form {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.slider-label {
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
}

.slider-input {
    text-align: left;
    border-radius: 36px;
    font-size: 26px;
    font-weight: 700;
    background-color: #fff;
    color: #000000;
    padding: 10px 10px 10px 25px;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
    width: 100%;
    font-family: 'Geometria', sans-serif;
}


.slider-button {
    color: #fff;
    background-color: #e1516c;
    border-radius: 30px;
    border: 0;
    height: -webkit-fill-available;
    font-size: 12px;
    font-weight: 700;
    margin-left: -50px;
    width: 100%;
    z-index: 3;
    position: relative;
}

.slider-button:hover {
    outline: none;
    border: 1px solid #e1516c;
    background-color: #fff;
    color: #e1516c;
    cursor: pointer;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.header-info {
    flex-direction: row;
    width: 100%;
    margin-top: 80px;
    flex-wrap: wrap;
}

.info-title {
    width: 100%;
    font-size: 45px;
    font-weight: 700;
    padding-top: 40px;
}

.info-text {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 40px;
    margin-bottom: 100px;
    gap: 25px;
}

.work-block {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin: 60px 0;
}

.work-content {
    width: 70%;
    flex-direction: column;
    flex-wrap: nowrap
}

.work-title {
    font-weight: 700;
    font-size: 45px;
    line-height: 55px;
}

.work-text {
    font-size: 16px;
    font-weight: 400;
}

.work-steps {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    display: flex;
    flex-direction: column;
    width: 25%;
    background-color: #e1cece;
    flex-wrap: nowrap;
    border-radius: 30px;
    padding: 20px;
    gap: 25px;
}

.step-number {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.step-img {
    width: 40px;
    object-fit: contain;
}

.step-number-text {
    font-size: 40px;
    color: #e1516c;
    font-weight: 300;
}

.main-step-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.main-step-text {
    font-size: 14px;
    font-weight: 400;
}

.apply-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.apply-content{
    display: flex;
    width: 70%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 60px;
}

.apply-title {
    width: 33%;
    font-size: 55px;
    line-height: 55px;
    font-weight: 700;
}

.apply-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 66%;
    gap: 30px
}

.apply-item {
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

img.apply-img {
    width: 40px;
    object-fit: contain;
}

.apply-text {
    font-size: 24px;
    font-weight: 400;
}

img.coin-img {
    max-width: 350px;
}

.reviews-block {
    width: 100%;
    margin: 50px auto;
    background-color: #e1cece;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.reviews-content.owl-carousel.owl-loaded.owl-drag {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    height: 400px; /* важно указать высоту */
}


.review-item {
    background: #f6f6ed;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.review-item img {
    border-radius: 50%;
    margin-bottom: 10px;
    width: 63px;
    height: 63px;
}

.advertising {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 40px 0 60px;
}

.advertising-content {
    display: flex;
    flex-direction: row;
    width: 70%;
    justify-content: center;
}

img.ads-icon {
    max-width: 450px;
}

.advertising-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    width: 60%;
}

.advertising-item {
    display: flex;
    width: 25%;
    flex-direction: column;
    background-color: #e1cece;
    border-radius: 20px;
    padding: 15px;
    justify-content: space-between;
}

img.advertising-img {
    width: 40px;
    object-fit: contain;
}

.advertising-item-img {
    margin-bottom: 30px;
}

.advertising-item-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: 20px;
}

.advertising-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    width: 40%;
}

.swiper-button-prev,
.swiper-button-next {
    color: #e1516c; /* стрелки */
}

.swiper-pagination-bullet {
    background: #e1516c; /* точки */
}

.slide-item-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.swiper-slide.review-item.swiper-slide-active {
    display: flex;
    flex-direction: column;
}
.user-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
}

.slide-item-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.progress-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.progress-content {
    width: 70%;
    flex-direction: column;
    margin-bottom: 60px;
}

.progress-title {
    border-top: 1px solid #e1516c;
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    padding: 30px 0 40px;
}

.progress-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.progress-item-title {
    font-size: 24px;
    font-weight: 700;
}

.progress-item-text {
    font-size: 55px;
    font-weight: 700;
    line-height: 55px;
    color: #e1516c;
}

.mainTopUpNav {
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.mainTopUpNav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  font-size: 17px;
}

/* Change the color of links on hover */
.mainTopUpNav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.mainTopUpNav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.mainTopUpNav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .mainTopUpNav a:not(:first-child) {display: none;}
  .mainTopUpNav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .mainTopUpNav.responsive {position: relative;}
  .mainTopUpNav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .mainTopUpNav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}



.menu-items.active,
.social-block.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-text.service-text {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 50px;
}

.features-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.features-block .features {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
}

.features-block .features .feature {
    width: 22%;
}

.steps-block {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.steps-content {
    width: 70%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.steps {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 30%;
    padding: 15px;
    background-color: #e1cece;
    border-radius: 30px;
    gap: 20px;
}

.step {
    font-size: 40px;
    font-weight: 300;
    color: #e1516c;
    margin-bottom: 10px;
}

.step-title
{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.step-text {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.mobile-features {
    display: none;
}

.service-text-info {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-text-info-item {
    flex-direction: column;
    width: 45%;
}

.service-info-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-info-text {
    font-size: 14px;
    font-weight: 400;
    flex-direction: row;
}

.service-info-text ol {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.question-block {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.question-content {
    width: 75%;
    flex-direction: column;
    align-items: center;
    background-color: #e1cece;
    border-radius: 30px;
    padding: 30px;
}

.accordion {
    overflow: hidden;
    width: 90%;
    flex-direction: column;
    align-items: flex-start;
}
.toggle-wrapper {
    width: 10%;
    display: flex;
    align-items: flex-start;
    height: -webkit-fill-available;
}
.question-item {
    display: flex;
    width: 100%;
    padding: 25px 10px;
    border-bottom: 1px solid #ddd;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.question-item:last-child {
    border-bottom: none;
}

.question-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 10px;
}

.answer-content {
    display: none;
}

.question-item .toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #e1516c;
    font-weight: 400;
}

.question-item .toggle.active {
    color: #e1516c;
    background-color: #fff;
    font-weight: 500;
}

.answer-content.open {
    display: block;
}

.question-text.active {
    width: 85%;
}

.question-text {
    margin-left: 0;
}

.desktop-none {
    display: none;
}

.mob-none {
    display: flex;
}


@media (max-width: 1600px) {
    .features-block .features .feature {
        width: 20%;
    }



    .header-content,
    .work-content ,
    .apply-content,
    .feedback-content,
    .reviews-content,
    .advertising-content,
    .progress-content {
        width: 80%;
        margin: 0 auto;
    }

    .footer-content {
        width: 90%;
        margin: 0 auto;
    }

}


@media (max-width: 1024px) {
    .desktop-none {
        display: flex;
    }

    .mob-none {
        display: none;
    }
    .nav-bar .menu-items,
    .nav-bar .social-block {
        display: none;
    }

    .nav-bar .burger {
        display: flex;
    }
    .info-title{
        font-size: 36px;
    }

    .nav-bar {
        justify-content: space-between;
    }


    .header-content {
        width: 100%;
    }

    .main-info,
    .main-calculate,
    .work-content,
    .progress-content,
    .advertising-content,
    .advertising-items,
    .advertising-img,
    .step-item {
        width: 100%;
    }




    .header-content,
    .footer-content,
    .work-content,
    .progress-content,
    .apply-content,
    .advertising-content {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .main-header,
    .work-steps,
    .advertising-content,
    .progress-items {
        flex-direction: column;
    }

    .main-banner {
        justify-content: center;
    }
    .main-advantages.desktop-none {
        width: 100%;
    }
    .main-sliders,
    .sliders-wrapper {
        flex-direction: column;
    }

    .slider-block {
        width: 100%;
    }

    .sliders-form form {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sliders-form form .slider-label {
        width: 100%;
    }

    .sliders-form form .input-wrapper {
        width: 100%;
        align-items: center;
    }
    .slider-button{
        height: 53px;
    }
    .main-info{display: block;height: auto}
    .main-banner img{
        width: 100%;
        display: block;
    }

    .work-steps .step-item {
        box-sizing: border-box;
    }

    img.ads-icon {
        max-width: 350px;
    }

    .advertising-content {
        box-sizing: border-box;
    }

    .main-advantages .advantage-item {
        width: 100%;
        min-height: 95px;
        overflow: hidden;
    }

    .apply-content {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .apply-title,
    .apply-steps {
        width: 100%;
    }


    .coins-block {
        order: -1; /* перемещаем блок вверх */
        margin-bottom: 20px; /* немного отступа снизу */
    }

    img.coin-img {
        margin-right: -40px
    }

    .apply-title {
        margin-top: 30px;
        font-size: 45px;
    }

    .apply-steps {
        margin: 30px 0;
    }

    .apply-title,
    .apply-steps {
        order: 0; /* остальные элементы следуют после coins-block */
    }

    .advertising-items {
        flex-direction: row;
        justify-content: space-between;
    }
    .advertising-item {
        width: 37%;
    }

    .advertising-img {
        justify-content: center;
    }

    .reviews-block {
        max-width: 350px;
    }

    .progress-items {
        gap: 50px;
    }


    .header-block .nav-bar {
        margin-top: 0;
        padding: 20px;
        align-items: center;
    }

    .header-info {
        margin-top: 20px;
    }

    .info-title {
        text-align: center;
        padding-top: 0;
    }
    .info-text {
        margin-top: 20px;
        flex-direction: column;
    }
    .campaign-contacts {
        width: 100%;
        gap: 10px;
    }

    .features {
        width: 100%;
        justify-content: space-between;
        gap: 15px 0;
    }

    .feature {
        width: 43%;
        gap: 10px;
    }
    .feature-text {
        height: unset;
        padding: 0 5px;
    }

    .feature-icon {
        justify-content: flex-start;
        padding: 0 5px;
        margin: unset;
    }

    .notice {
        width: 100%;
        box-sizing: border-box;
    }

    .feedback-content {
        width: 100%;
    }
    .feedback-block,
    .unsubscribe-block,
    .unsubscribe-success-block {
        margin: 20px 0;
    }

    .feedback-title,
    .unsubscribe-title
    .unsubscribe-success-title {
        padding: 10px 0;
    }

    .feedback-form form,
    .unsubscribe-form form {
        width: 100%;
        flex-direction: column;
        gap: 5px;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .form-field,
    .unsubscribe-field {
        box-sizing: border-box;
        width: 100%;
        padding: 10px;
    }
    .feedback-button,
    .unsubscribe-button {
        width: 100%;
        padding: 10px;
        height: 50px;
    }
    .feedback-info p {
        text-align: center;
    }

    .footer-content {
        width: 100%;
        background-color:initial;
        padding: unset;
    }
    .legal-links {
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px;
        gap: 10px;
    }
    .legal-links .legal-link {
        margin: 0;
    }
    .legal-links a{
        font-size: 14px;
    }

    .footer-copy {
        margin: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-text {
        flex-direction: column;
    }
    .footer-text > div > p {
        margin: 5px 0;
    }

    .info-text.service-text {
        width: 100%;
    }

    .steps-content {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .steps {
        width: 90%;
    }

    .services-page .features-block .features .feature {
        display: none;
    }

    .services-page .mobile-features {
        display: flex;
    }

    .about-page .service-text-info {
        flex-direction: column;
    }
    .about-page .service-text-info .service-text-info-item{
        width: 100%;
    }

    .service-info-title {
        margin: 10px 0;
    }

    .mob-top-30 {
        margin-top: 30px;
    }

    .about-page .features-block .features,
    .faq-page .features-block .features{
        width: 90%;
    }

    .about-page .features-block .features .feature,
    .faq-page .features-block .features .feature {
        width: 43%;
    }

    .question-content {
        width: 90%;
        padding: 5px;
    }
    .question-item{
        padding: 15px 0;
    }

    .question-item .toggle {
        width: 40px;
        height: 40px;
    }
    .question-header {
        margin-top: 5px;
    }
    .accordion {
        width: 95%;
    }
    .question-text {
        margin-left: 15px;
    }

    .unsubscribe-success-content {
        align-items: flex-start;
    }
    .nav-bar .menu-items.active{
        display: block;
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        background: #fff;
        padding: 40px;
        text-align: center;
    }
    .header-block .menu-items .menu-link{
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    .nav-bar .burger.active{
        position: relative;
        z-index: 999;
    }
    .burger.active span:first-child, .burger.active span:last-child{
        opacity: 0;
    }
}


.reviews-block {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.review-item {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
}
.slide-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.user-name {
    font-weight: bold;
}
.slide-item-text {
    font-size: 14px;
    line-height: 1.4;
}

/* стрелки */
.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.owl-nav button {
    background: none;
    border: none;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.3s;
}
.owl-nav button:hover {
    color: #e1516c;
}

/* пагинация */
.owl-dots {
    text-align: center;
    margin-top: 15px;
}
.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px 4px;
    transition: background 0.3s;
}
.owl-dots .owl-dot.active span {
    background: #e1516c;
}