/* Default Banner Style starts*/
root:{
--arrowColor:#2b0060;
}
.hm_banner_2021 {
    padding: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    max-width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.hm_banner_2021 > a {
    display: flex;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    width: 100%;
}
.hm_banner_2021 > a:hover {
    text-decoration: none;
}
.hm_banner_2021 .fadeUp {
    display: flex;
    width: 100%;
}

.hm_banner_2021 .bg {
    clip-path: circle(0 at 50% 50%);
    transition: clip-path 0.8s 0.3s ease-in-out;
}

.hm_banner_2021.animate .bg {
    clip-path: circle(100% at 50% 50%);
}

.hm_banner_2021 .fadeUp .text {
    display: flex;
    margin: 0 auto;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.hm_banner_2021 .fadeUp .text .title {
    color: #2b0060;
    opacity: 0;
    transform: translate(0, 100px);
    transition: opacity 0.5s 0.5s ease-in-out, transform 0.5s 0.5s ease-in-out;

    font-family: var(--pnb);
    font-size: 70px;
    text-align: center;
    line-height: 1.1;
    margin: 0 auto;
    width: 100%;
}

.hm_banner_2021 .fadeUp .text .title span {
    color: #3699b2;
}

.hm_banner_2021 .fadeUp .text .desc {
    color: #2b0060;
    opacity: 0;
    transform: translate(0, 100px);
    transition: opacity 0.5s 0.6s ease-in-out, transform 0.5s 0.6s ease-in-out;
    font-size: 32px;
    margin-top: 26px;
    font-family: var(--pnr);
    text-align: center;
    margin: 26px auto 0;
    width: 100%;
}
.hm_banner_2021 .fadeUp .text .buttonContainer {
    /* margin-top: 40px; */
    margin: 40px auto 0;
    width: 90%;
}

.hm_banner_2021 .fadeUp .text .buttonContainer > .button {
    background: #2b0060;
    opacity: 0;
    transform: translate(0, 100px);
    transition: opacity 0.5s 0.8s ease-in-out, transform 0.5s 0.8s ease-in-out;
    padding: 15px 25px !important;
    border-radius: 100px;
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.5px;
    font-family: var(--pnt);
    text-decoration: none;
}
.hm_banner_2021 .fadeUp .text .buttonContainer > .button:hover {
    text-decoration: underline;
}
.hm_banner_2021 .scrollDown {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--arrowColor);
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.5s 1s ease-in-out;
}

.hm_banner_2021 .scrollDown:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-width: 0 2px 2px 0;
    border-color: var(--arrowColor);
    border-style: solid;
    transform: rotate(45deg);
    color: #fff;
    animation: sdb04 2s infinite ease-in-out;
}

.hm_banner_2021.animate .fadeUp .text .title,
.hm_banner_2021.animate .fadeUp .text .desc,
.hm_banner_2021.animate .fadeUp .text .buttonContainer > .button {
    opacity: 1;
    transform: translate(0, 0);
}

.hm_banner_2021.animate .scrollDown {
    opacity: 1;
}
.hm_banner_2021 .bg video {
    object-fit: cover;
}
@keyframes sdb04 {
    0% {
        transform: rotate(45deg) translate(0, 0);
    }

    40% {
        transform: rotate(45deg) translate(50%, 10px);
    }

    80% {
        transform: rotate(45deg) translate(0, 0);
    }
}

@media screen and (max-width: 1024px) {
    .hm_banner_2021 .fadeUp .text .title {
        font-size: 40px;
        line-height: 1.2;
    }

    .hm_banner_2021 .fadeUp .text .desc {
        font-size: 23px;
    }
    .hm_banner_2021 .fadeUp .text br {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hm_banner_2021 .fadeUp .text .title {
        font-size: 28px;
        margin-top: 0;
    }

    .hm_banner_2021 .fadeUp .text .desc {
        font-size: 19px;
        margin-top: 16px;
    }

    .hm_banner_2021 .fadeUp .text .buttonContainer {
        margin-top: 20px;
    }

    .hm_banner_2021 .fadeUp .text .buttonContainer .button {
        padding: 10px 15px 10px 15px !important;
    }
}
/* Default Banner Style Ends*/

/* Banner Style starts text align left */
.hm_banner_2021.textAlignLeft .fadeUp .text .title,
.hm_banner_2021.textAlignLeft .fadeUp .text .desc,
.hm_banner_2021.textAlignLeft .fadeUp .text .buttonContainer {
    justify-content: flex-start;
    text-align: left;
}
/* Banner Style Ends text align left */

/* Banner Style starts text align right */
.hm_banner_2021.textAlignRight .fadeUp .text .title,
.hm_banner_2021.textAlignRight .fadeUp .text .desc,
.hm_banner_2021.textAlignRight .fadeUp .text .buttonContainer {
    justify-content: flex-end;
    text-align: right;
}
/* Banner Style Ends text align right */

/* Banner Style starts Small Font size */
.hm_banner_2021.smallFont .fadeUp .text .title {
    font-size: 55px;
}
.hm_banner_2021.smallFont .fadeUp .text .desc {
    font-size: 28px;
}
.hm_banner_2021.smallFont .fadeUp .text .buttonContainer .button {
    font-size: 18px;
}
@media screen and (max-width: 1024px) {
    .hm_banner_2021.smallFont .fadeUp .text .title {
        font-size: 40px;
    }
    .hm_banner_2021.smallFont .fadeUp .text .desc {
        font-size: 24px;
    }
    .hm_banner_2021.smallFont .fadeUp .text .buttonContainer .button {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .hm_banner_2021.smallFont .fadeUp .text .title {
        font-size: 25px;
    }
    .hm_banner_2021.smallFont .fadeUp .text .desc {
        font-size: 16px;
    }
    .hm_banner_2021.smallFont .fadeUp .text .buttonContainer .button {
        font-size: 16px;
    }
}
/* Banner Style Ends  Small Font size */
