﻿
.callback-section {
    position: relative;
    overflow: hidden;
}

.page-logo {
    position: absolute;
    top: 24px;
    left: 50px;
    z-index: 1000;
}

    .page-logo img {
        width: 180px;
        height: auto;
        display: block;
    }

.hero-box {
    position: absolute;
    background: #9CBCEB;
    border-radius: 18px;
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}


.hero-box-1 {
    width: 80px;
    height: 80px;
    top: 100px;
    left: 600px;
    background-color: #004393;
    opacity: 0.8;
}
html[dir="rtl"] .hero-box-1 {
   right: 600px;
}

.hero-box-2 {
    width: 50px;
    height: 50px;
    top: 250px;
    left: 700px;
    opacity: .6;
    border-radius: 16px;
}
html[dir="rtl"] .hero-box-2 {
    right: 700px;
}


.hero-box-3 {
    width: 50px;
    height: 50px;
    left: 60px;
    bottom: 230px;
    opacity: .6;
    border-radius: 16px;
}
html[dir="rtl"] .hero-box-3 {
    right: 60px;
}

.hero-box-4 {
    width: 80px;
    height: 80px;
    left: 140px;
    bottom: 80px;
    background-color: #004393;
    opacity: 0.8;
}
html[dir="rtl"] .hero-box-4 {
    right: 140px;
}

.hero-box-1 {
    animation-duration: 6s;
}

.hero-box-2 {
    animation-duration: 7s;
    animation-delay: .8s;
}

.hero-box-3 {
    animation-duration: 6.5s;
    animation-delay: 1.5s;
}

.hero-box-4 {
    animation-duration: 7.5s;
    animation-delay: .3s;
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    25% {
        transform: translate3d(4px, -8px, 0) rotate(2deg);
    }

    50% {
        transform: translate3d(0, -14px, 0) rotate(0deg);
    }

    75% {
        transform: translate3d(-4px, -8px, 0) rotate(-2deg);
    }
}

.card {
    position: relative;
    z-index: 1;
    background-color: #fff;
}




@media (max-width: 991.98px) {
    .page-logo {
        left: 24px;
    }

        .page-logo img {
            width: 180px;
        }

    .hero-box-1 {
        width: 50px;
        height: 50px;
        top: 80px;
        left: auto;
        right: 20px;
    }

    .hero-box-2 {
        width: 35px;
        height: 35px;
        top: 160px;
        left: auto;
        right: 60px;
    }

    .hero-box-3 {
        width: 35px;
        height: 35px;
        left: 20px;
        bottom: 160px;
    }

    .hero-box-4 {
        width: 50px;
        height: 50px;
        left: 30px;
        bottom: 40px;
    }
}



@media (max-width: 575.98px) {
    .hero-box {
        display: none;
    }

    .callback-section {
        padding-top: 70px;
    }

    .content {
        margin-top: 0 !important;
    }

    .callback-section.vh-100 {
        height: auto !important;
        min-height: 100vh;
        overflow-y: auto;
    }

    .container.h-100 {
        height: auto !important;
    }
}


