.maps-new,
.add-points {
    background: #ffffff;
}
.map-control-filters {
    padding: 0 15px;
    display: flex;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    background: #ffffff;
}

.map-control-filters-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 -15px;
    position: relative;
}

.map-control-filters-inner .flex-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
}

.custom-dropdown {
    position: relative;
    min-width: 250px;
    max-width: 350px;
}

#cityInput {
    width: 100%;
    padding: 10px 70px 10px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
}

.icons-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #f1f1f1;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.icon-wrapper:hover {
    background-color: #e0e0e0;
}

.icon-wrapper i {
    color: #888;
    font-size: 14px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #004f64;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #004f64;
}

.dropdown-content {
    scrollbar-width: thin;
    scrollbar-color: #004f64 #f1f1f1;
}

.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #004f64;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #004f64;
}

.dropdown-content div {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
    border-bottom: 1px solid #d1d1d1;
}

.dropdown-content div:hover {
    background-color: #f1f1f1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-control-filters-inner .checkbox-selection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.legend {
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    color: #555;
}

.input-wrapp {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    min-width: 100px;
}

.input-wrapp label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222729;
    font-size: 14px;
    font-family: Manrope;
}

.input-wrapp input {
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
}

.input-wrapp input:checked ~ .checkmark {
    background-color: #004f64;
    border-color: #004f64;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.input-wrapp input:checked ~ .checkmark:after {
    display: block;
}

.addpoints-button,
.res-filters {
    font-size: 11px;
    line-height: 15px;
    padding: 10px 15px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: #fff;
    color: #222729;
    display: block;
    font-family: Manrope;
    border: 1px solid rgba(207, 54, 32, 0.3);
    cursor: pointer;
}

.nearest-point-block {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.section-map {
    min-height: 400px;
    width: 100%;
}

.section-map-inner {
    width: 100%;
    height: 100%;
    max-width: 1440px;
    position: relative;
    margin: 50px auto;
}

.ymaps-2-1-79-balloon {
    display: none;
}

.section-map-inner #map {
    width: 100%;
    min-height: 800px;
    position: relative;
    max-height: 100vh;
}

#detailsPanel {
    position: absolute;
    top: calc(50% - 140px);
    left: -900px;
    width: 380px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgb(34 39 41 / 28%);
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    -webkit-transition: left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 0.15s ease;
    transition: left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 0.15s ease;
}

#detailsPanel.visible {
    left: 0;
    opacity: 1;
    -webkit-transition: left 0.4s cubic-bezier(0.39, 0.975, 0.565, 1), opacity 0.9s ease;
    transition: left 0.4s cubic-bezier(0.39, 0.975, 0.565, 1), opacity 0.9s ease;
}

.closePanelcont {
    -webkit-transform: translateX(25px) translateY(-25px);
    transform: translateX(25px) translateY(-25px);
    height: 25px;
    width: 25px;
    background-color: #004f64;
    border: 1px solid #004f64;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 1px #000000;
    box-shadow: 0 0 1px #000000;
    cursor: pointer;
}

#detailsPanel .close-btn i {
    color: #fff;
    font-size: 23px;
}

#detailsPanel i {
    color: #004f64;
}

@media (max-width: 768px) {
    #detailsPanel {
        position: absolute;
        margin: 0 auto;
        width: 80%;
        left: 10%;
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    #detailsPanel.visible {
        margin: 0 auto;
        width: 80%;
        left: 10%;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .section-map-inner #map {
        min-height: 400px;
        height: 400px !important;
    }
}

.count-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    z-index: 100;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(207, 54, 32, 0.3);
}

.panel-content h3 {
    font-size: 1.2em;
    margin: 10px;
    font-family: "Cormorant Garamond";
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 1px #000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.panel-content p {
    margin: 5px 10px;
    font-size: 0.9em;
    color: #555;
    font-weight: 500;
}

.panel-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.swiper-container {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    user-select: none;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50% !important;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 30px !important;
    color: #004f64;
}

.modal-points-container {
    width: 100%;
    max-width: 1440px;
    padding: 0 15px;
    margin: 25px auto 90px;
}

.modal-points-container-inner {
    display: flex;
    justify-content: flex-end;
}
.modal-points-container,
.points-container {
    width: 100%;
    max-width: 1440px;
    padding: 0 15px;
    margin: 25px auto 90px;
}

.modal-points-container-inner {
    display: flex;
    justify-content: flex-end;
}
.addpoints-modal {
    margin: 25px;
    padding: 25px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border: 1px solid#999;
    border-radius: 4px;
    background: url(../img/pattern-grey.png);
}
.points-container-inner {
    display: flex;
    justify-content: center;
}
.addpoints-button,
.res-filters {
    font-size: 11px;
    line-height: 15px;
    padding: 21px 25px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: #fff;
    color: #222729;
    display: block;
    font-family: Manrope;
    border: 1px solid rgba(207, 54, 32, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.addpoints-button::after,
.res-filters::after {
    background: rgba(207, 55, 32, 0.705);
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 0;
}

.addpoints-button:hover::after,
.res-filters:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.addpoints-button span,
.res-filters span {
    position: relative;
    z-index: 1;
}

body.modal-open {
    overflow: hidden;
}

.addpoints-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #fff;
    cursor: pointer;
}

.addpoints-modal-buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.addpoints-button-submit {
    color: #222729;
}

.addpoints-button-cancel {
    color: #222729;
    border: 1px solid rgba(0, 79, 100, 0.3);
}

.section-map-inner::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    height: 37px;
    width: 100%;
    background: url(../img/bg-img.png);
}

.section-map-inner::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    height: 37px;
    width: 100%;
    background: url(../img/bg-img.png);
    transform: rotate(180deg);
}

#dataForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 780px;
}

@media screen and (max-width: 768px) {
    #dataForm {
        min-width: 300px;
        max-width: 500px;
    }
}

@media screen and (max-width: 476px) {
    #dataForm {
        min-width: 280x;
        max-width: 300px;
    }
}

#dataForm .select2-container {
    width: 100% !important;
}

.close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-container-2,
.grid-container-3 {
    display: flex;
    gap: 10px;
    width: 100%;
}

.grid-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-width {
    flex: 1 1 100%;
}

.grid-item label {
    margin-bottom: 5px;
    font-weight: 400;
}

button,
input,
select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.file-input-label {
    font-size: 15px;
    line-height: 15px;
    padding: 21px 25px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: #fff;
    color: #222729;
    display: block;
    font-family: Manrope;
    border: 1px solid rgba(207, 54, 32, 0.3);
    cursor: pointer;
    text-align: center;
}

.file-input {
    display: none;
}

.file-info {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    /*  min-height: 150px; */
    justify-content: center;
}

.preview-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .grid-container-2,
    .grid-container-3 {
        flex-direction: column;
    }
}

.gr-card-center {
    display: flex;
    justify-content: center;
}

.input-with-icon,
.input-with-icon .icon {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.input-with-icon .icon {
    position: absolute;
    color: #004f64;
    font-size: 16px;
    z-index: 1;
    background: #cacaca;
    width: 44px;
    height: 34px;
    justify-content: center;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.input-with-icon .icon.fix {
    height: 49px;
}
.input-with-icon input,
.input-with-icon select {
    padding-left: 56px;
    width: 100%;
    position: relative;
    z-index: 0;
}

.input-group-prepend .input-group-text {
    background-color: transparent;
    border-right: none;
}

.input-group-prepend .input-group-text i {
    color: #555;
}

.preview-wrapper {
    position: relative;
    display: inline-block;
    margin: 5px;
    padding: 5px;
    border-radius: 8px;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 0, 0, 0.7);
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.add-item-phone,
.adsemail,
.adsuri,
.adsmessenger,
.adssocial {
    background-color: #004f64;
    border: 0;
    color: #fff;
    min-width: 150px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.add-item-phone:hover,
.adsemail:hover,
.adsuri:hover,
.adsmessenger:hover,
.adssocial:hover {
    background-color: #235025;
}

.add-item-phone i,
.adsemail i,
.adsuri i,
.adsmessenger i,
.adssocial i {
    margin-right: 15px;
    color: #df4e35;
}
.remove-btn:hover {
    background-color: red;
}

#loadingIndicator {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
}

#loadingIndicator::after {
    content: "";
    display: inline-block;
    width: 130px;
    height: 130px;
    border: 15px solid #f3f3f3;
    border-top: 15px solid #235025;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.input-group-append,
.item-group {
    display: flex;
}

.item-group {
    align-items: center;
    margin: 10px;
}

.form-control {
    flex: 1;
}

.mr-1 {
    margin-right: 0.25rem;
}

.remove-item {
    background-color: red;
    margin-left: 5px;
    cursor: pointer;
}

.remove-item i {
    color: #cacaca;
}

.map-control-filters
    .select2-container--classic
    .select2-selection--single
    .select2-selection__arrow {
    height: 43px !important;
}

.map-control-filters .select2-container--classic .select2-selection--single {
    height: 45px !important;
}

.map-control-filters
    .select2-container--classic
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 45px;
}

.addpoints-modal-content
    .select2-container--classic
    .select2-selection--single {
    height: 34px !important;
}

.addpoints-modal-content
    .select2-container--classic
    .select2-selection--single
    .select2-selection__arrow {
    height: 32px !important;
}

.addpoints-modal-content
    .select2-container--classic
    .select2-selection--single
    .select2-selection__rendered {
    padding-left: 55px;
    line-height: 34px;
}

input:focus,
select:focus {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #004f64 !important;
}

.grid-item
    .select2-container--classic
    .select2-selection--multiple
    .select2-selection__rendered {
    padding-left: 50px !important;
    font-size: 14px;
}

.grid-item
    .select2-container--classic
    .select2-selection--multiple
    .select2-selection__choice {
    float: none;
}

.w-100 {
    width: 100%;
}

.input-block-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.input-block-container .grid-item {
    flex: 1;
}

.select2-container .select2-selection--multiple {
    min-height: 44px !important;
}

.fix-select .select2-container {
    width: auto;
}

.suc-message,
.err-message {
    padding: 10px;
    background: aliceblue;
    font-size: 16px;
    font-weight: 800;
    color: green;
}

.err-message {
    color: red;
}

.politics-data .input-wrapp {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    position: relative;
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 25px;
}

.politics-data .input-wrapp.inactive {
    color: #aaa;
    cursor: default;
    pointer-events: none;
}

.politics-data .input-wrapp input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.politics-data .input-wrapp .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 0.73529412vw;
    width: 20px;
    height: 20px;
    border: 1.5px solid #004f64;
}

.politics-data .input-wrapp input:checked ~ .checkmark {
    background-color: #004f64;
    border: 1px solid #004f64;
}

.politics-data .input-wrapp .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.polit-button-bottom {
    gap: 20px;
    display: flex;
}

.points-button {
    margin-bottom: 20px;
}

.politics-data {
    align-content: center;
}

.politics-data .input-wrapp input:checked ~ .checkmark:after {
    display: block;
}

.modal-open .addpoints-modal {
    overflow-y: auto;
}

.input-wrapp {
    display: flex;
}

.of-svg {
    height: 25px;
    width: 25px;
}

.of-svg svg {
    height: 25px;
    width: 25px;
}
@media (max-width: 476px) {
    #detailsPanel.visible {
        width: 95%;
        left: 2.5%;
    }

    .map-control-filters-inner .flex-container {
        align-items: center;
    }
    .addpoints-button,
    .res-filters {
        padding: 17px 18px;
    }
}
.swiper-container {
    border-radius: 8px;
}
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }
  
  .toast {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(150%);
    transition: transform 0.3s ease-in-out;
    max-width: 350px;
    min-height: 60px;
    overflow: hidden;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  }
  
  .toast::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
  }
  
  .toast.show {
    transform: translateX(0);
  }
  
  /* Toast Types */
  .toast.success {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  }
  
  .toast.error {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  }
  
  .toast.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  }
  
  .toast.info {
    background: linear-gradient(135deg, #60a5fa 0%, #1d4ed8 100%);
  }
  
  
  .toast-icon {
    margin-right: 22px;
    font-size: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
  }
  
  .toast-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .toast-title {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 15px;
  }
  
  .toast-message {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
  }
  
  .toast-close {
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }
  
  .toast-close:hover {
    opacity: 1;
  }
  

  .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    animation: progress 3s linear forwards;
  }
  
  @keyframes progress {
    to {
      transform: scaleX(1);
    }
  }
.preloader-dop {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease-in-out;
    z-index: 9999999;
    overflow: hidden;
    display: none;
}

.preloader-dop.active {
    display: block;
}

.preloader-dop .preloader-container-dop {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-logo {
    width: 275px;
    height: auto;
    margin: 0 auto;
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
}

.preloader-dop .preloader-container-dop div {
    border: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 50%;
    animation: 4s infinite spin;
    background: #004f64;
}

.preloader-container-dop div:first-child {
    animation-delay: -3s;
}

.preloader-container-dop div:nth-child(2) {
    animation-delay: -2s;
}

.preloader-container-dop div:nth-child(3) {
    animation-delay: -1s;
}

.preloader-container-dop div:last-child {
    animation-delay: 0;
}

@keyframes spin {
    0%,
    100% {
        transform: translate(0);
    }
    25% {
        transform: translate(240%);
    }
    50% {
        transform: translate(240%, 230%);
    }
    75% {
        transform: translate(0, 240%);
    }
}

.points-container.fix-w {
    max-width: 1360px;
}

.points-container-inner-head {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}
.points-header h2 {
    font-family: "Cormorant Garamond";
    font-size: calc((100vw - 480px) / (1280 - 480) * (65 - 20) + 20px);
    line-height: calc((100vw - 480px) / (1280 - 480) * (75 - 20) + 20px);
    font-weight: 500;
    color: #222729;
    letter-spacing: -1px;
    margin-bottom: calc((100vw - 480px) / (1280 - 480) * (25 - 10) + 10px);
}
.points-description {
    font-size: calc((100vw - 480px) / (1280 - 480) * (20 - 16) + 16px);
    line-height: 28px;
    font-family: Manrope;
    font-weight: 300;
    color: #222729;
}
/*-----------------------------------------------------------*/
  