.header .navbar_nav li.dropdown:first-child a {
    color: var(--color);
    font-weight: bold;
}

.AMore {
    transition: 0.5s;
    width: 190px;
    height: 50px;
    color: #fff;
    background: var(--jb);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AMore:hover {
    color: #fff;
}

.AMore img {
    position: absolute;
    width: 60px;
    height: 12px;
    object-fit: none;
    object-position: right;
    right: -40px;
    transition: 1s;
}

.AMore:hover img {
    width: 75px;
    right: -55px;
}

.sectionTitle {
    font-weight: bold;
    font-size: 50px;
    line-height: 1;
    color: #000000;
}



@media (max-width: 1440px) {
    .sectionTitle {
        font-size: 38px;
    }
}

@media (max-width: 1200px) {
    .AMore {
        width: 140px;
        height: 45px;
    }

    .sectionTitle {
        font-size: 30px;
    }
}

@media (max-width: 720px) {
    .AMore {
        width: 120px;
        height: 35px;
        font-size: 14px;
    }

    .sectionTitle {
        font-size: 24px;
    }
}



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

    100% {
        transform: rotate(360deg);
    }
}