.text-right {
    text-align: right;
}
.custom-section {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -32px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: unset;
    color: #562B7D;
    border-bottom: solid 2pt #562B7D;
    border-radius: 0;
}

.img-hover-zoom:hover {
    transform: scale(1.05);
}

.header-logo {
    -webkit-animation: slide_up_down 2s ease-in-out infinite alternate both;
    animation: slide_up_down 2s ease-in-out infinite alternate both;
}

.img-partner {
    position: relative;
}

.img-partner img {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
}

.img-bg-partner {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    -webkit-animation: rotate-center 70s linear infinite both;
    animation: rotate-center 70s linear infinite both;
}

.img-logo-partner {
    position: relative;
    width: 100%;
    z-index: 2;
    -webkit-animation: slide_up_down 3s ease-in-out infinite alternate both;
    animation: slide_up_down 3s ease-in-out infinite alternate both;
}

.step-icon img {
    width: 125px;
    height: 125px;
}

.img-contact {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
}

.hover-translate:hover .step-icon img {
    -webkit-animation: slide_up_down 1.5s ease-in-out infinite alternate both;
    animation: slide_up_down 1.5s ease-in-out infinite alternate both;
}

.slide_up_down {
    -webkit-animation: slide_up_down 1.5s ease-in-out infinite alternate both;
    animation: slide_up_down 1.5s ease-in-out infinite alternate both;
}

@-webkit-keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.bubble {
    position: absolute;
    left: 10%;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
    z-index: -1;
}

.rotate-center {
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
