/* Import css from other sections of Home */
@import url('home-banner.css');
@import url('home-about.css');
@import url('home-services.css');
@import url('home-process.css');
@import url('home-get-in-touch.css');
@import url('home-client-testimonials.css');
@import url('home-support.css');
@import url('home-articles.css');
@import url('home-smsf.css');

/* Home */
.home * {
    box-sizing: border-box;
}
.home #content {
    margin: 0;
    padding: 0;
}
.home section .container {
    max-width: 1440px;
    max-width: 1530px;
    max-width: 1470px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    padding-right: 15px !important;
    position: relative;
}
@media (max-width: 1728px) {
    .home section .container {
        padding-left: 50px;
        /* max-width: 1440px; */
        padding-right: 43px !important;
    }
}
@media (max-width: 1024px) {
    .home .menu-sticky {
        display: none;
    }
    .home .page-content > section {
        margin-left: 0;
        width: 100%;
    }
    .home .vertical-line {
        display: none;
    }
    .home section .container {
        padding-right: 15px !important;
    }
    .home.admin-bar .navigation-overlay.open ~ #site-header {
        z-index: 99;
    }
}
@media (max-width: 767.96px) {
    .home section .container {
        padding: 0 15px !important;
    }
}
@keyframes hideTab {
    0% {
        opacity: 1;
        transform: translateY(0%);
    }

    100% {
        opacity: 0;
        transform: translateY(100%);
        display: none;
    }
}
@keyframes showTab {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@keyframes mbLeftToRight {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(50%);
    }
}
@keyframes mbRightToLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}
@keyframes showHideElementOpacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes showHideElementTransform {
    0% {
        transform: translateY(0%);
        opacity: 0;
    }

    50% {
        transform: translateY(200%);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
@keyframes showHideElementTransformBottomToTop {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-300%);
    }
}
@keyframes showHideElementTransformTopToBottom {
    0% {
        transform: translateY(-300%);
    }

    100% {
        transform: translateY(0%);
    }
}
@keyframes growHeight {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}
@keyframes growWidth {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
/* CSS Slider Banner */
.award-section .swiper-pagination {
    display: flex;
    justify-content: center;
    position: static;
    max-width: 1470px;
    margin-top: 30px;
}
.award-section .swiper-pagination .swiper-pagination-bullet {
    height: 1.4px;
    width: auto;
    flex: 1;
    max-width: 34.21px;
    margin: 0 10px !important;
    position: relative;
    border-radius: 0;
    background-color: #eff1ff;
    opacity: 0.3;
}
.award-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}
.award-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    height: 100%;
    background-color: #EFB257;
    left: 0;
    width: 0;
    bottom: 0;
    opacity: 1;
    animation-name: countingBar;
    animation-duration: 2s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}
.award-section .swiper {
    max-width: 455px;
    margin-right: 0;
}
@keyframes countingBar {
    0% {
        width: 0
    }

    to {
        width: 100%;
    }
}
@media (max-width: 767.96px) {
    .award-section .swiper-pagination {
        display: none;
    }
    .award-section .swiper {
        margin-right: auto;
        max-width: 100%;
    }
}
@media (max-width: 525px) {
    .award-section .swiper {
        padding-right: 10px;
    }
}
