.fixed-block {
    position: fixed;
    right: 2.5%;
    z-index: 203;
    top: 18px;
}

a.fixed-btn {
    padding: 15px 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--MainColor);
    color: white;
    position: relative;
    font-weight: 500;
    max-width: 250px;
    min-width: 250px;
    border-radius: var(--BorderRadius);
}

a.fixed-btn:before {
    content: "\f3d6";
    position: absolute;
    font-family: "Ionicons";
    right: 1rem;
    font-size: 1.25rem;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: var(--SubColor);
    border-radius: 100%;
}

a.fixed-btn:hover {
    background: var(--SubColor);
}

@media (max-width: 1800px) {
    a.fixed-btn {
        padding: 15px 1rem;
        max-width: 220px;
        min-width: 220px;
    }

}

@media (max-width: 1600px) {
    .fixed-block {
        right: 15px;
    }

    a.fixed-btn {
        max-width: 180px;
        min-width: 180px;
    }

    a.fixed-btn:before {
        font-size: 1rem;
        width: 25px;
        height: 25px;
        right: 15px;
    }
}


@media (max-width: 1400px) {
    .fixed-block {
        right: 270px;

    }
     a.fixed-btn {
        max-width: 200px;
        min-width: 200px;
    }

}



@media (max-width: 1199px) {
    .fixed-block {
        top: 15px;

    }
}

@media (max-width: 700px) {

    a.fixed-btn {
    min-width: auto;
    max-width: none;
    border-radius: 0;
    background: var(--SubColor);
    padding: 15px;
}

.fixed-block {
    width: 100%;
    right: 0;
    top: auto;
    bottom: 0;
}
a.fixed-btn:before {
    display: none;
}


}