:root {
    --base-color: rgb(255 68 109);
    --primary-color: rgb(255 68 109) !important;
    --alt-font: "Arial", sans-serif;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1230px;
    }
}

.image-service img {
    height: 230px;
    object-fit: cover;
}

.icon-with-text-style-03 .feature-box {
    position: relative;
    z-index: 1;
}

.icon-with-text-style-03 .feature-box::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg, red, orange, yellow, green, cyan, blue, violet, red);
    background-size: 400% 100%;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.icon-with-text-style-03 .feature-box:hover::before {
    opacity: 1;
    animation: rainbowGlow 7s linear infinite;
}

@keyframes rainbowGlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 400% 0%;
    }
}

#gtranslate-floating .gt-menu li {
    list-style-type: none;
}

.accordion-style-04 .accordion-item .accordion-header {
    padding: 18px 20px;
}

/* footer.footer-style-1{
    background-image: radial-gradient(circle, rgb(255 124 85) 0%, rgb(255 68 109) 60%, rgb(223, 26, 91) 100%) !important;
} */
footer .footer-logo img {
    max-height: 60px;
}

.title-banner {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 4rem;
}

.banner-height {
    height: 500px;
    object-fit: cover;
}


.btn.btn-rounded.btn-small {
    padding: 10px 20px;
}

.button-header {
    font-size: 14px !important;
}

.btn-gradient-fast-blue-purple {
    background-image: linear-gradient(to right, rgb(255 68 109), rgb(255 124 85), rgb(255 68 109));
    background-size: 200%;
    color: var(--white);
}

.section-feature .feature-box.feature-box-left-icon {
    box-shadow: 0px 6px 20px rgb(26 137 185 / 35%);
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.section-feature .feature-box-icon img {
    border-radius: 50px;
    box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.09);
}

/* responsive */
@media (max-width: 767px) {}