body, html {
    overflow: hidden;
}

html {
    overflow-y: auto;
}

.container {
    max-width: 1400px;
}

header {
    position: fixed;
    width: 100%;
}

.footer-text-area {
    font-size: 16px;
}
.elementToFadeInAndOut {
    animation: fadeinout 1s linear forwards;
}

@keyframes fadeinout {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.loop-text {
    animation: loopText 15s linear infinite;
}

@keyframes loopText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.swiper-button-next,
.swiper-button-prev {
    background-color: #ff3011;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    transition: .5s;
}

input[type=checkbox] {
    appearance: none;
    background-color: transparent;
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    border-radius: .15em;
}

.activeButton {
    color: #e73a2a;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
}
@media only screen and (max-width: 1279px) {
    header {
        position: fixed !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 1100px) {
    .footer-text-box {
        max-width: 220px;
        margin: 15px auto;
    }
}
.gradientBg {
    background: linear-gradient(224deg,#f3f3f3,#fff);
}

.absolute-blur-effect {
    background: hsla(0,0%,100%,.37);
    backdrop-filter: blur(5.1px);
    box-shadow: 0 0 10px 5px rgba(0,0,0,.1);
}
.section-banner {
    position: relative;
}

.section-banner::before {
    content: '';
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.swiper-cards .swiper-slide {
    overflow: visible !important;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}


.md-speed-dial{
    display:none!important;
}