.d-motor .d-adv .b-motor-new>div .b-phone {
    background-color: #CA9E66;
        width: 11.4rem;
        height: 8.4rem;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
         -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease
}

.d-motor .d-adv .b-motor-new>div .b-phone:hover {
        background-color: #AD8566;
}

.d-motor .d-adv .b-motor-new>div .b-phone a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-motor .d-adv .b-motor-new>div .b-phone a img {
     width: 2.4rem;
     height: auto;
     object-fit: contain;
}

@media (max-width: 768px) {
    .d-motor .d-adv .b-motor-new>div .b-phone {
        display: none;
    }
}

body.scroll-down:not(.no-scroll) .contact-bar {
    transform: translateY(-250px);
}

.contact-bar {
    background-color: #00263A;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    color: white;
    padding: 1rem 5rem;
     -webkit-transition: all 1s cubic-bezier(.645,.045,.355,1);
    -moz-transition: all 1s cubic-bezier(.645,.045,.355,1);
    -ms-transition: all 1s cubic-bezier(.645,.045,.355,1);
    -o-transition: all 1s cubic-bezier(.645,.045,.355,1);
    transition: all 1s cubic-bezier(.645,.045,.355,1)
}

.contact-bar .b-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .contact-bar .b-block {
        justify-content: right;
        padding: 0;
    }
}

.contact-bar .b-block ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;

}

.contact-bar .b-block ul.b-rrss {
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-bar .b-block ul.b-rrss {
        display: none;
    }
}

.contact-bar .b-block ul.b-rrss a i {
    width: 1.8rem;
    height: 1.8rem;
    background-color: white;
}

.contact-bar .b-block ul.b-contact {
    gap: 3rem;
}

.contact-bar .b-block ul.b-contact li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-bar .b-block ul.b-contact li a img {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
}

.contact-bar .b-block ul.b-contact li a span {
    font-size: 1rem;
    line-height: 140%;
    font-weight: 600;
}

body:has(.contact-bar) header {
    top: 3.8rem;
}


