@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";* {
    box-sizing: border-box;
    font-family: Poppins,sans-serif
}
.button-class {
    position: relative;
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #0984E3;
    color: #fff;
    text-decoration: none;
    transition-duration: .1s;
    -webkit-transition-duration: .4s;
    border: none;
    font-size: 1.1rem;
    min-width: max-content;
    cursor: pointer
}

.button-class:hover {
    transition-duration: .1s
}

.button-class:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .4s;
    box-shadow: 0 0 10px 15px #aaa
}

.button-class:active:after {
    box-shadow: 0 0 #aaaaaab7,inset 0 0 5px 5px #0000000e;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s
}

.button-class:active {
    box-shadow: inset 0 0 5px 5px #0000000e
}

.App {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh
}

.max12 {
    max-width: 1200px
}

.max13 {
    max-width: 1300px
}


.home-banner-area {
    height: 100vh;
    max-height: 750px;
    min-height: 650px;
    padding: 107px 35px 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-banner-area-inner {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 25px
}

.home-banner-input-area {
    position: absolute;
    inset: 40px;
    background-color: #e8edfb;
    border-radius: 25px;
    padding: 55px 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

@keyframes slide {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-1405px,0,0)
    }
}

.sliding {
    animation: slide 15s linear infinite;
    background-size: contain;
    background-repeat: repeat;
    max-height: 750px;
    min-height: 650px;
    width: 3600px;
    height: 100vh;
    transition: background-image 0.5s ease-in-out;
    background-position: center;
}

.home-banner-input-area-title {
    display: flex;
    align-items: center;
    margin: 0 0 45px;
    justify-content: center;
    flex-direction: column
}

.home-banner-input-area-title h1 {
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    text-align: center
}

.home-banner-input-area-title p {
    margin: 15px 0 0;
    color: #0006;
    font-weight: 500;
    font-size: 1.05rem
}

.home-banner-input-area-choices {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 50px
}

.home-banner-input-area-choice-wrapper {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center
}

.home-banner-input-area-choice {
    padding: 15px 25px;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-radius: 25px;
    background-color: #fff;
    min-width: 265px;
    border: 2px solid rgba(0,0,0,.1);
    cursor: pointer;
    position: relative
}

.home-banner-input-area-choice img {
    width: 52px;
    height: 52px;
    opacity: .7
}

.home-banner-input-area-choice p {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    opacity: .3
}

.selected-choice {
    color: black;
    transition: all 0.3s ease-in-out;
}

.selected-choice img,.selected-choice p {
    opacity: 1
}

#animDiv {
    width: 100%;
    position: relative;
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.05);
    transition: .35s
}


.home-banner-input-area-input {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    width: 95%;
    margin: 0 0 40px;
    position: relative
}

.home-banner-input-area-input #serviceIcon {
    transition: .3s;
    position: absolute;
    left: 15px;
    top: 17px
}

.home-banner-input-area-input input {
    border-radius: 12px;
    border: none;
    background: #FFF;
    width: 100%;
    font-size: 1rem;
    outline: none;
    transition: .3s
}

.home-banner-input-area-button {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.home-banner-button span {
    display: flex;
    align-items: center;
    justify-content: center
}


.section {
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.section1 {
    padding-bottom: 70px
}

.section-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.section-left {
    margin-right: 15px;
    flex: 1
}

.section-subtitle {
    margin-bottom: 25px
}

.section-subtitle-div {
    height: 52px;
    padding: 14px 16px;
    border-radius: 100px;
    background: rgba(85,239,196,.22);
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center
}

.section-subtitle-div p {
    font-size: 1rem;
    font-weight: 600;
    color: #00b894;
    text-transform: capitalize
}

.section-title h2 {
    margin-top: 0;
    color: #000;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize
}

.section-text {
    margin-bottom: 35px
}

.section-text p {
    opacity: .7;
    color: #000;
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 400;
    line-height: 26px
}

.section-text p b {
    color: #0984e3
}

.section-button-area {
    margin-bottom: 15px
}

.section-section1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap
}

.section-right {
    display: flex;
    justify-content: center;
    flex: 1;
    align-items: center
}

.section1 img {
    width: 100%;
    transform: translate(35px)
}

.dark-section {
    background-color: #033053
}

.dark-section2 {
    background-color: #001e20
}

.section2 {
    margin: 0
}

.section2-column {
    flex-direction: column;
    width: 100%
}

.section2-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px
}

.section2-title h2 {
    color: #fff;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize
}

.section2-logo-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 35px
}

.section2-logo-div {
    display: flex;
    flex-direction: column;
    min-width: 170px;
    max-width: 270px;
    flex: auto
}

.section2-logo-div img {
    margin-right: 15px
}

.section2-logo-div p {
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase
}

.section2-logo-div span {
    color: #fff;
    font-weight: 400;
    font-size: 1rem
}

.blue-section {
    background-color: #e8edfb
}

.section3 {
    padding-top: 70px;
    padding-bottom: 70px
}

.section3-left {
    flex-basis: 42%
}

.section3-title h2 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize
}

.section3-right {
    flex-basis: 58%;
    padding-left: 55px
}

.section3-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px
}

.section3-logo-div {
    min-width: 270px;
    min-height: 200px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 24px 52px #00000014;
    flex: 1
}

.section3-dark-logo-div {
    min-width: 270px;
    min-height: 200px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #033053;
    box-shadow: 0 24px 52px #00000014;
    flex: 1;
    color: #fff
}

.section4 {
    padding-top: 70px;
    padding-bottom: 70px
}

.section4-left {
    flex-basis: 42%;
    padding-right: 55px
}

.section4-left img {
    width: 100%
}

.section4-right {
    flex-basis: 58%;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.section4-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0
}

.section-section4 {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px
}

.section4-logo-div {
    display: flex;
    width: 300px;
    align-items: center;
    gap: 16px
}

.section5 {
    padding-top: 70px;
    padding-bottom: 70px
}

.section5-column {
    flex-direction: column
}

.section5-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 660px
}

.section5-title h2 {
    color: #000;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 25px;
    margin-top: 0
}

.section-section5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.section-comment-div {
    display: flex;
    align-items: center;
    padding: 27px 52px;
    max-width: 380px;
    min-width: 250px;
    min-height: 210px;
    margin: 10px;
    border-radius: 100px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 64px #00000014
}

.section-comment-div h3 {
    margin: 0 0 5px;
    color: #060919;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.section-comment-div img {
    margin-right: 15px;
    border-radius: 50%
}

.section-comment-div p {
    color: #060919;
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 5px 0
}

.comment-stars {
    display: flex;
    margin-bottom: 10px
}

.section6 {
    padding-top: 70px;
    padding-bottom: 70px
}

.section6-column {
    flex-direction: column
}

.section6-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin: 0
}

.section6-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 830px
}

.section-section6 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px
}

.section6-blog-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    margin: 20px
}

.section6-blog-div img {
    width: 100%;
    border-radius: 20px
}

.section6-blog-div h3 {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
    max-width: 360px
}

.section6-blog-div p {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    opacity: .7;
    width: 100%
}

.section6-blog-div a {
    color: #033053;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    width: max-content
}

.section6-blog-div a:active {
    color: #0984e3
}

#smallBannerInput {
    display: none
}

.blogs-page,.blogs-single-column {
    width: 100%;
    position: relative;
    background: transparent;
    flex: auto
}

.blogs-page-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(255,255,255,.85) 0%,rgba(255,255,255,.85) 100%),linear-gradient(45deg,#ED1EFF 0%,#F00 11.7%,#1EF1FF 100%);
    z-index: -2
}

.blogs-page-bg2 {
    position: absolute;
    inset: 0;
    background-image: url('https://www.viralvoom.com/banner_bg.png');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    z-index: -1;
    opacity: 1
}

.blog-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
    padding: 0 35px
}

.blog-list-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 60px
}

.blog-list-inner a {
    text-decoration: none
}

.blog-list-div-outer {
    display: flex;
    justify-content: center;
    width: calc(33.33% - 40px)
}

.blog-list-div {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    width: 100%;
    z-index: 0;
    transition: .2s;
    position: relative;
    background: transparent
}

.blog-list-div img {
    width: 100%;
    border-radius: 20px;
    z-index: 5
}

.blog-list-div p {
    opacity: .7;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    line-height: 26px;
    margin: 0
}

.blog-list-div p:first-of-type {
    margin-bottom: 15px
}

.blog-list-div p:last-of-type {
    opacity: 1;
    font-weight: 500
}

.blog-list-div h3 {
    color: #141e46;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-list-div:active {
    scale: .975
}

.blog-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 35px
}

.blog-area-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 142px;
    margin-bottom: 70px
}

.blog-area-inner h1 {
    color: #033053;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600
}

.blog-area-inner h2 {
    color: #033053;
    font-size: 1.5rem;
    font-weight: 500
}

.blog-area-inner h3 {
    color: #033053;
    font-size: 1.25rem;
    font-weight: 500
}

.blog-area-inner p {
    opacity: .7;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    line-height: 26px;
    margin: 0
}

.blog-area-inner ol {
    list-style: none;
    counter-reset: item
}

.blog-area-inner li {
    counter-increment: item;
    margin-bottom: 5px
}

.blog-area-inner li h2:before {
    margin-right: 10px;
    content: counter(item);
    background: lightblue;
    border-radius: 100%;
    color: #fff;
    width: 1.2em;
    text-align: center;
    display: inline-block;
    font-size: 1.25rem
}

.terms,.privacy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*background: #FEDBEA;*/
    /*background-image: url('https://www.viralvoom.com/banner_bg.png');*/
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    padding: 0 35px
}

.previewContent {
    margin-top: 125px;
    margin-bottom: 50px;
    max-width: 1200px
}

.telegram-popup {
    padding: 10px;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 40px;
    z-index: 90;
    background: transparent;
    transition: .2s;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    color: unset;
    height: 100px
}

.telegram-popup a {
    display: flex;
    align-items: center
}

.telegram-text {
    flex-direction: column;
    display: flex;
    transition: .2s;
    overflow: hidden;
    white-space: nowrap;
    width: 0
}

.telegram-text h3 {
    margin: 0;
    transition: .3s;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap
}

.telegram-text h4 {
    margin: 0;
    transition: .3s;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap
}

.telegram-text i {
    font-size: 13px;
    transition: .2s;
    white-space: nowrap;
    overflow: hidden;
    margin: 0
}

.telegram-popup img {
    width: 50px;
    margin-right: 10px;
    border: 3px solid #fff;
    border-radius: 50%
}

@media only screen and (max-width: 1350px) {

}

@media only screen and (max-width: 1290px) {

}

@media only screen and (max-width: 830px) {

}

@media only screen and (max-width: 570px) {
    #return2Top {
        bottom:25px;
        right: 25px
    }

}

.telegram-area {
    display: none;
    position: fixed;
    width: 100vw;
    bottom: -1px;
    background-color: #fff;
    padding: 10px;
    align-items: center;
    z-index: 90;
    box-shadow: 0 0 31px #00000059
}

.telegram-area-left {
    display: flex;
    flex-direction: column
}

.telegram-area-right {
    display: flex;
    align-items: center;
    margin-left: auto
}

.telegram-area img {
    width: 35px;
    margin-right: 10px
}

.telegram-area a {
    margin-left: auto;
    border: none;
    background-color: #0984e3;
    padding: 5px 7px;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 500
}

.telegram-area button {
    border: none;
    background-color: red;
    padding: 5px 10px;
    border-radius: 7px;
    color: #fff;
    margin-left: 15px;
    font-weight: 500
}

.telegram-area h4,.telegram-area i {
    margin: 0;
    font-size: 14px
}

@media only screen and (max-width: 1025px) {
    .telegram-popup {
        display:none
    }

    .telegram-area {
        display: flex
    }
}

.side-menu-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 280px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: #00000026 0 5px 15px;
    padding: 25px;
    z-index: 100;
    transition: .3s
}

.hamburger-div {
    display: none;
    border-radius: 50%;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: 15px;
    outline: none;
    cursor: pointer
}

.haburger-line {
    min-height: 4px;
    width: 25px;
    border-radius: 12px;
    margin: 2px 0;
    transition: .3s
}

@media only screen and (max-width: 1200px) {
    .nav-element-div {
        margin:0 15px
    }
}

@media only screen and (max-width: 1071px) {
    .nav-element-div a {
        font-size:1rem
    }

    .large-button {
        margin: 0 0 0 15px
    }
}

@media only screen and (max-width: 1024px) {
    .large-nav,.large-button {
        display:none
    }

    .mobile-button {
        margin: auto 0 0
    }

    .mobile-nav {
        margin: 15px 0
    }

    .mobile-nav a {
        font-size: 1.2rem
    }

    .mobile-logo {
        margin-bottom: auto
    }

    .side-menu-mobile,.hamburger-div {
        display: flex
    }
}

@media only screen and (max-width: 535px) {
    .language-header .language-switcher {
        width:max-content;
        min-width: unset
    }

    .language-header .name1 {
        display: none
    }

    .language-list-header {
        left: -15px
    }
}

@media only screen and (max-width: 450px) {
    .language-list-header {
        left:-40px
    }

    .language-header svg {
        display: none
    }

    .flag1 {
        margin: 0
    }
}

@media only screen and (max-width: 400px) {
    .side-menu-mobile {
        min-width:200px
    }

    .header-logo {
        width: 160px;
        margin-bottom: -5px
    }

    .hamburger-div {
        margin-left: 15px;
        padding: 8px
    }

    .haburger-line {
        min-height: 3px;
        width: 20px;
        border-radius: 12px;
        margin: 2px 0
    }
}

@media only screen and (max-width: 345px) {
    .hamburger-div {
        margin-left:10px;
        padding: 8px
    }

    .language-header svg {
        display: none
    }

    .flag1 {
        margin: 0
    }

    .headerLanguage {
        padding: 0!important
    }

    .headerLanguage .flag1 {
        width: 25px
    }

    .header-logo {
        width: 150px;
        margin-right: 5px
    }

    .language-list-header {
        left: -60px
    }
}

@media only screen and (max-width: 1024px) {
    .home-banner-input-area-choice {
        min-width:unset;
        padding: 15px 50px
    }

    .home-banner-input-area-choices p {
        display: none
    }
}

@media only screen and (max-width: 980px) {
    .home-banner-input-area-title {
        margin-bottom:35px
    }

    .home-banner-input-area-title h1 {
        font-size: 2rem
    }

    .home-banner-input-area-choices {
        margin-bottom: 40px
    }

    .home-banner-input-area-input {
        margin-bottom: 30px
    }
}

@media only screen and (min-width: 930px) {
    .home-banner-input-area {
        min-height:500px
    }
}

@media only screen and (max-width: 930px) {
    .home-banner-input-area {
        padding:45px
    }

    .home-banner-input-area-title,.home-banner-input-area-choices {
        margin-bottom: -100px
    }

    .home-banner-input-area-input {
        margin-bottom: 20px;
        width: 100%
    }

    .home-banner-input-area-button {
        width: 100%
    }
}

@media only screen and (max-width: 870px) {
    .home-banner-area {
        padding:0px 0 0;
        margin-top: -25px;
    }

    .home-banner-area-inner {
        border-radius: 0
    }

    .home-banner-input-area {
        inset: 25px
    }
}

@media only screen and (max-width: 775px) {
    .home-banner-input-area-title p {
        text-align:center
    }

    .home-banner-input-area {
        justify-content: space-around
    }
}

@media only screen and (max-width: 730px) {
    #result-account {
        width:50%
    }
}

@media only screen and (max-width: 691px) {
    .home-banner-area,.sliding {
        max-height:unset;
        min-height: unset
    }
}

@media only screen and (max-width: 670px) {
    .home-banner-input-area-choice {
        min-width:unset;
        width: 100%;
        padding: 15px 25px
    }

    .home-banner-input-area-choice img {
        margin: 0
    }

    .home-banner-input-area-choice p {
        display: none
    }
}

@media only screen and (max-width: 610px) {
    .home-banner-input-area-button {
        justify-content:center
    }

    .home-banner-input-area-button button,#result-account {
        width: 100%
    }
}

@media only screen and (max-width: 470px) {
    .home-banner-input-area-button {
        justify-content:center
    }

    .home-banner-input-area {
        inset: 0;
        border-radius: 0;
        justify-content: space-evenly
    }



    /* TikTok Form Style */
    .tt-form {
        background: linear-gradient(0deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .85) 100%),
        linear-gradient(134deg, #69C9D0 30%, #000000 60%, #EE1D52 90%);
        border-radius: 12px;
        padding: 20px;
        transition: background 0.5s ease;
    }

    /* Instagram Form Style */
    .ig-form {
        background: linear-gradient(0deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .85) 100%),
        linear-gradient(134deg, #405DE6 30%, #5851DB 50%, #833AB4 70%, #C13584 85%, #E1306C 95%, #FD1D1D 100%);
        border-radius: 12px;
        padding: 20px;
        transition: background 0.5s ease;
    }

    .sliding {
        display: none
    }

    .home-banner-input-area-choice {
        width: 100%;
        padding: 15px
    }
}

@media only screen and (max-width: 417px) {
    .home-banner-input-area {
        padding:25px
    }
}

@media only screen and (max-width: 385px) {
    #smallBannerInput {
        display:block
    }

    #bigBannerInput {
        display: none
    }
}

@media only screen and (max-width: 376px) {
    .home-banner-area {
    }

    .home-banner-input-area-title h1 {
        font-size: 1.5rem
    }
}

@media only screen and (max-width: 295px) {
    .home-banner-input-area-title h1 {
        font-size:1.4rem
    }
}

@media only screen and (max-width: 1175px) {
    .section-title h2,.section2-title h2,.section3-title h2,.section4-title h2,.section5-title h2,.section6-title h2 {
        font-size:3rem
    }
}

@media only screen and (max-width: 1055px) {
    .section-title h2,.section2-title h2,.section3-title h2,.section4-title h2,.section5-title h2,.section6-title h2 {
        font-size:2rem
    }

    .section1 {
        padding-bottom: 35px
    }
}

@media only screen and (max-width: 900px) {
    .section1 img {
        display:none
    }

    .section-left,.section-right {
        flex: unset
    }
}

@media only screen and (max-width: 470px) {
    .section {
        padding:35px 20px
    }
}

@media only screen and (max-width: 295px) {
    .section-title h2,.section2-title h2,.section3-title h2,.section4-title h2,.section5-title h2,.section6-title h2 {
        font-size:1.5rem
    }
}

@media only screen and (max-width: 1155px) {
    .section3 .section-inner {
        flex-direction:column
    }

    .section3-right,.section3-left {
        flex-basis: unset;
        padding: 0;
        margin: 0
    }

    .section3-right {
        margin-top: 35px
    }

    .section3-logo-div,.section3-dark-logo-div {
        min-width: 345px
    }
}

@media only screen and (max-width: 785px) {
    .section3-right {
        width:100%
    }

    .section3-logo-area {
        flex-direction: column;
        width: 100%
    }

    .section3-logo-div,.section3-dark-logo-div {
        min-width: unset;
        width: 100%
    }
}

@media only screen and (max-width: 1055px) {
    .section4-left img {
        width:100%;
        height: 100%;
        margin-left: 0
    }
}

@media only screen and (max-width: 990px) {
    .section4-left img {
        display:none
    }

    .section4-left,.section4-right {
        flex-basis: unset;
        padding-right: 0
    }
}

@media only screen and (max-width: 570px) {
    .section4-logo-div {
        width:100%
    }
}

@media only screen and (max-width: 825px) {
    .section-section6 {
        flex-wrap:wrap
    }

    .section6-blog-div {
        min-width: 431.61px;
        width: 100%
    }
}

@media only screen and (max-width: 550px) {
    .section6-blog-div {
        min-width:100%;
        margin: 0 0 20px
    }
}

@media only screen and (max-width: 1035px) {
    .blog-list-div-outer {
        width:calc(50% - 30px)
    }
}

@media only screen and (max-width: 700px) {
    .blog-list-div-outer {
        width:100%
    }
}

@media only screen and (max-width: 360px) {
    .blog-list {
        padding:0 20px
    }
}

@media only screen and (max-width: 746px) {
    .blog-area-inner h1 {
        font-size:1.85rem
    }
}

@media only screen and (max-width: 535px) {
    .blog-area-inner h1 {
        font-size:1.5rem
    }

    .blog-area-inner h2 {
        font-size: 1.25rem
    }
}

@media only screen and (max-width: 450px) {
    .blog-area {
        padding:0 25px
    }
}

@media only screen and (max-width: 380px) {
    .blog-area-inner ol {
        margin:0;
        padding: 0
    }
}

@media only screen and (max-width: 320px) {
    .blog-area-inner h1 {
        font-size:1.25rem
    }

    .blog-area-inner h2 {
        font-size: 1.15rem
    }
}

.ig-button-class {
    position: relative;
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #BB2524;
    color: #fff;
    text-decoration: none;
    transition-duration: .1s;
    -webkit-transition-duration: .4s;
    border: none;
    font-size: 1.1rem;
    min-width: max-content;
    cursor: pointer
}

.ig-button-class:hover {
    transition-duration: .1s
}

.ig-button-class:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .4s;
    box-shadow: 0 0 10px 20px #aaa
}

.ig-button-class:active:after {
    box-shadow: 0 0 #aaaaaab7,inset 0 0 5px 5px #0000000e;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s
}

.ig-button-class:active {
    box-shadow: inset 0 0 5px 5px #0000000e
}

.ig-home {
    width: 100%
}

.ig-home-banner-area {
    height: 100vh;
    height: 100svh;
    max-height: 750px;
    min-height: 680px;
    padding: 107px 35px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.ig-home-banner-area-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(255,255,255,.85) 0%,rgba(255,255,255,.85) 100%),linear-gradient(135deg,#ED1EFF 0%,#F00 51.7%,#FF8A00 100%);
    z-index: -2
}

.ig-home-banner-area-bg2 {
    position: absolute;
    inset: 0;
    background-image: url('https://www.viralvoom.com/banner_bg.png');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    z-index: -1;
    opacity: 1
}

.ig-home-banner-area-inner {
    width: 100%;
    overflow: hidden
}

.ig-home-banner-input-area {
    /*height: 100%;*/
    width: max-content;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.ig-video-section .swiper-button-prev {
    color: #bb2524;
    left: -150px
}

.ig-video-section .swiper-button-next {
    color: #bb2524;
    right: -150px
}

.ig-video-section .swiper {
    width: 300px;
    height: 535px
}

@media only screen and (max-width: 1280px) {
    .ig-video-section .swiper {
        width:250px;
        height: 445px
    }

    .ig-video-section .swiper-button-prev {
        left: -120px
    }

    .ig-video-section .swiper-button-next {
        right: -120px
    }
}

@media only screen and (max-width: 1055px) {
    .ig-video-section .swiper {
        width:200px;
        height: 355px
    }

    .ig-video-section .swiper-button-prev {
        left: -120px
    }

    .ig-video-section .swiper-button-next {
        right: -120px
    }
}

.light-ig-section.ig-section.ig-section1 {
    padding-bottom: 70px
}

@media only screen and (max-width: 990px) {
    .light-ig-section.ig-section.ig-section1 {
        padding-bottom:0
    }

    .ig-video-section .swiper {
        width: 300px;
        height: 535px;
        margin-top: 50px;
        margin-bottom: 50px
    }

    .light-ig-section.ig-section.ig-section1 {
        margin-top: -45px
    }

    .ig-video-section .swiper-button-prev {
        left: -150px
    }

    .ig-video-section .swiper-button-next {
        right: -150px
    }
}

@media only screen and (max-width: 670px) {
    .ig-video-section .swiper {
        width:250px;
        height: 445px
    }

    .ig-video-section .swiper-button-prev {
        left: -50px
    }

    .ig-video-section .swiper-button-next {
        right: -50px
    }
}

@media only screen and (max-width: 470px) {
    .ig-video-section .swiper {
        width:250px;
        height: 445px
    }

    .ig-video-section .swiper-button-prev {
        left: -35px
    }

    .ig-video-section .swiper-button-next {
        right: -35px
    }
}

.ig-video-section .swiper-slide {
    border-radius: 14px;
    box-shadow: #00000030 0 10px 20px,#0000003b 0 6px 6px
}

.ig-video-section .swiper-slide .video-curtain {
    height: 100px!important;
    transition: .2s;
    opacity: 0;
    background: linear-gradient(transparent,#bb2524)!important
}

.ig-video-section .swiper-slide video {
    transition: .2s;
    opacity: .5
}

.ig-video-section .swiper-slide.swiper-slide-next video {
    opacity: .9
}

.ig-video-section .swiper-slide.swiper-slide-prev video {
    opacity: .9
}

.ig-video-section .swiper-slide.swiper-slide-active video {
    opacity: 1
}

.ig-video-section .swiper-slide.swiper-slide-active .video-curtain {
    opacity: 1
}

.ig-section1 .ig-video-section img {
    display: block;
    transform: translate(0);
    width: unset;
    margin-left: 0
}

.ig-section1 .ig-video-section .review-video-button {
    background-color: #bb2524;
    -webkit-user-select: none;
    user-select: none
}

@media only screen and (max-width: 990px) {
    .ig-video-section {
        flex-direction:column-reverse!important
    }
}

.ig-home-banner-input-area-title {
    display: flex;
    align-items: center;
    margin: 0 0 7.5px
}

.ig-home-banner-input-area-title h1 {
    color: #000;
    font-size: 3.375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 69px;
    text-transform: capitalize;
    margin: 0
}

.ig-home-banner-input-area-subtitle {
    display: flex;
    justify-content: center;
    flex-direction: column
}

.ig-home-banner-input-area-subtitle-div {
    display: flex;
    align-items: center
}

.ig-home-banner-input-area-subtitle-div:nth-of-type(2) {
    margin-top: 5px
}

.ig-banner-accounts {
    margin-right: 21px;
    width: 144px
}

.ig-subtitle-p {
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize
}

.ig-subtitle-p-bold {
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize
}

.ig-check {
    display: flex;
    align-items: center;
    margin-right: 18px;
    padding: 7px 28px 7px 7px;
    border-radius: 42px;
    background: #FFF5E0
}

.ig-check img {
    width: 30px;
    height: 30px
}

.ig-check p {
    color: #000;
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0
}

.ig-home-banner-input-area-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    position: relative
}

.ig-home-banner-input-area-input img {
    position: absolute;
    left: 15px
}

.ig-home-banner-input-area-input input {
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.1);
    background: #FFF;
    width: 100%;
    padding: 20px 20px 20px 55px;
    font-size: 1rem;
    outline: none;
    transition: .3s
}

.ig-home-banner-input-area-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.ig-home-banner-button span {
    display: flex;
    align-items: center;
    justify-content: center
}

.ig-banner-image-right {
    position: absolute;
    top: 230px;
    right: -119px;
    height: 570px;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transform: rotate(-45deg);
    z-index: -1
}

.ig-banner-image {
    width: 265px;
    height: 265px;
    flex-shrink: 0;
    margin: 10px;
    position: relative;
    border-radius: 25px;
    overflow: hidden
}

.ig-left-image:before {
    left: -345px;
    top: -383px
}

.ig-right-image:before {
    left: -630px;
    top: -665px
}

.ig-top-image:before {
    left: -629px;
    top: -385px
}

.ig-bottom-image:before {
    left: -350px;
    top: -660px
}

.ig-banner-image:before {
    width: 1024px;
    height: 1024px;
    content: "";
    position: absolute;
    background: url('https://www.viralvoom.com/ig_banner_image_right_v2.jpg');
    background-position-x: 0px;
    background-position-y: 0px;
    background-repeat: no-repeat;
    border-radius: 18.28px;
    transform: rotate(45deg);
    scale: .7
}

.ig-section0 {
    padding-top: 90px!important;
    padding-bottom: 90px!important
}

.ig-section0 .ig-section-inner {
    width: 100%;
    align-items: unset!important
}

.ig-section0-column {
    flex-direction: column
}

.ig-section0-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: .9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 660px
}

.ig-section0-text b {
    color: #bb2524
}

.ig-section0-title {
    margin-bottom: 35px
}

.ig-section0-title h2 {
    color: #000;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 25px;
    margin-top: 0
}

.ig-section0-title p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

.ig-section0-title span,.ig-section0-title b {
    color: #bb2524
}

.ig-section-section0 {
    display: flex;
    justify-content: space-between
}

.ig-section-section0-div {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    background: #FFF5E0;
    border-radius: 25px;
    padding: 25px;
    align-items: center
}

.ig-section-section0-div h3 {
    text-align: center;
    font-weight: 600;
    margin-top: 30px
}

.ig-section0-button-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px 0 0
}

.ig-section {
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ig-section1 {
    padding-bottom: 0
}

.ig-section1 .ig-section-inner {
    padding-bottom: 0;
    flex-direction: row-reverse
}

.ig-section-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.ig-section-subtitle {
    margin-bottom: 25px
}

.ig-section-subtitle-div {
    height: 52px;
    padding: 14px 16px;
    border-radius: 100px;
    background: linear-gradient(0deg,rgba(255,105,105,.22) 0%,rgba(255,105,105,.22) 100%),#FFF;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center
}

.ig-section-subtitle-div p {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6969;
    text-transform: capitalize
}

.ig-section-title h2 {
    margin-top: 0;
    color: #000;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize
}

.ig-section-text {
    margin-bottom: 35px
}

.ig-section-text p {
    opacity: .7;
    color: #000;
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 400;
    line-height: 26px
}

.ig-section-text b {
    color: #bb2524
}

.ig-section-button-area {
    margin-bottom: 15px
}

.ig-section-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 35px
}

.ig-section1 img {
    height: 100%;
    margin-left: -125px
}

.dark-ig-section {
    background-color: #033053
}

.ig-section2 {
    margin: 0
}

.ig-section2-column {
    flex-direction: column;
    width: 100%
}

.ig-section2-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px
}

.ig-section2-title h2 {
    color: #fff;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize
}

.ig-section2-logo-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 35px
}

.ig-section2-logo-div {
    display: flex;
    flex-direction: column;
    min-width: 170px;
    max-width: 270px;
    flex: auto
}

.ig-section2-logo-div img {
    margin-right: 15px
}

.ig-section2-logo-div p {
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase
}

.ig-section2-logo-div span {
    color: #fff;
    font-weight: 400;
    font-size: 1rem
}

.pink-ig-section {
    background-color: #fff5e0
}

.ig-section3 {
    padding-top: 70px;
    padding-bottom: 70px
}

.ig-section3-left {
    flex-basis: 42%
}

.ig-section3-title h2 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize
}

.ig-section3-right {
    flex-basis: 58%;
    padding-left: 55px
}

.ig-section3-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px
}

.ig-section3-logo-div {
    min-width: 270px;
    min-height: 400px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 24px 52px #00000014;
    flex: 1;
    margin-top: -70px
}

.ig-section3-dark-logo-div {
    min-width: 250px;
    min-height: 400px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #033053;
    box-shadow: 0 24px 52px #00000014;
    flex: 1;
    color: #fff;
    margin-bottom: -70px
}

.ig-section4 {
    padding-top: 70px;
    padding-bottom: 70px
}

.ig-section4-left {
    flex-basis: 42%;
    padding-right: 55px
}

.ig-section4-left img {
    width: 100%
}

.ig-section4-right {
    flex-basis: 58%;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.ig-section4-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0
}

.ig-section4-title h2 span {
    color: #bb2524
}

.ig-section-section4 {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px
}

.ig-section4-logo-div {
    display: flex;
    width: 300px;
    align-items: center;
    gap: 16px
}

.ig-section5 {
    padding-top: 70px;
    padding-bottom: 70px
}

.ig-section5-column {
    flex-direction: column
}

.ig-section5-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    max-width: 660px
}

.ig-section5-title h2 {
    color: #000;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 25px;
    margin-top: 0
}

.ig-section-section5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.ig-section-comment-div {
    display: flex;
    align-items: center;
    padding: 12px 32px;
    max-width: 300px;
    min-width: 250px;
    margin: 10px;
    border-radius: 100px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 64px #00000014
}

.ig-section-comment-div h3 {
    margin: 0 0 5px;
    color: #060919;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.ig-section-comment-div img {
    margin-right: 15px;
    border-radius: 50%
}

.ig-section-comment-div p {
    color: #060919;
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 5px 0
}

.ig-section6 {
    padding-top: 70px;
    padding-bottom: 70px
}

.ig-section6-column {
    flex-direction: column
}

.ig-section6-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0
}

.ig-section6-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    max-width: 830px
}

.ig-section-section6 {
    display: flex;
    align-items: center;
    justify-content: center
}

.ig-section6-blog-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    margin: 20px
}

.ig-section6-blog-div img {
    width: 100%
}

.ig-section6-blog-div h3 {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
    max-width: 360px
}

.ig-section6-blog-div p {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    opacity: .7;
    width: 100%
}

.ig-section6-blog-div a {
    color: #033053;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    width: max-content
}

.ig-section6-blog-div a:active {
    color: #0984e3
}

@media only screen and (max-width: 1250px) {
    .ig-subtitle-p,.ig-subtitle-p-bold {
        font-size:1.2rem
    }
}

@media only screen and (max-width: 1070px) {
    .ig-home-banner-input-area {
        width:100%
    }

    .ig-banner-image-right {
        opacity: .3
    }
}

@media only screen and (max-width: 990px) {
    .ig-home-banner-input-area-title h1 {
        font-size:2.3rem;
        line-height: normal
    }

    .ig-section-right {
        margin-right: 0
    }

    .ig-home-banner-input-area-subtitle-div p {
        font-size: 1.1rem
    }
}

@media only screen and (max-width: 720px) {
    .ig-banner-accounts {
        display:none
    }

    .ig-tags {
        flex-direction: column;
        align-items: flex-start
    }

    .ig-check:nth-of-type(2) {
        margin-top: 15px
    }
}

@media only screen and (max-width: 691px) {
    .ig-home-banner-area {
        max-height:unset
    }

    .ig-banner-image:before {
        scale: .85
    }
}

@media only screen and (max-width: 570px) {
    .ig-check p {
        font-size:.85rem
    }

    .ig-home-banner-input-area-input input {
        padding: 12px 12px 12px 55px
    }

    .ig-button-class {
        font-size: 1rem
    }
}

@media only screen and (max-width: 500px) {
    .ig-texts {
        flex-direction:column;
        align-items: flex-start
    }

    .ig-texts p:first-of-type {
        margin: 5px 0 0
    }

    .ig-texts p:nth-of-type(2) {
        display: none
    }

    .ig-check:first-of-type {
        margin-top: 15px
    }

    .ig-home-banner-input-area {
        justify-content: space-around
    }

    .ig-banner-accounts {
        display: initial
    }
}

@media only screen and (max-width: 490px) {
    .ig-home-banner-input-area-title h1 {
        font-size:2rem
    }
}

@media only screen and (max-width: 470px) {
    .ig-home-banner-area {
        padding:107px 20px 40px;
        max-height: unset
    }

    .ig-home-banner-input-area-title h1 {
        line-height: normal
    }
}

@media only screen and (max-width: 400px) {
    .ig-home-banner-input-area-title h1 {
        font-size:1.8rem
    }

    .ig-home-banner-input-area-input input::placeholder {
        font-size: .9rem
    }
}

@media only screen and (max-width: 355px) {
    .ig-home-banner-input-area-title h1 {
        font-size:1.5rem
    }

    .ig-home-banner-input-area-input input {
        padding: 12px
    }
}

@media only screen and (max-width: 312px) {
    .ig-home-banner-input-area-title {
        justify-content:center
    }

    .ig-home-banner-input-area-title h1 {
        font-size: 1.4rem;
        text-align: center
    }

    .ig-home-banner-input-area-subtitle-div {
        font-weight: 500;
        font-size: 1rem;
        align-items: center
    }

    .ig-check {
        margin-right: 0
    }

    .ig-check:first-of-type {
        display: none
    }

    .ig-banner-accounts {
        width: 120px;
        margin-top: 25px
    }

    .ig-home-banner-input-area {
        justify-content: center
    }

    .ig-texts p:first-of-type {
        text-align: center
    }

    .ig-home-banner-input-area-button {
        justify-content: center
    }

    .ig-home-banner-input-area-input input::placeholder {
        font-size: .9rem
    }
}

@media only screen and (max-width: 1020px) {
    .ig-section-section0 {
        flex-direction:column;
        justify-content: center;
        gap: 35px;
        align-items: center
    }

    .ig-section-section0-div {
        width: 100%;
        max-width: unset
    }
}

@media only screen and (max-width: 1175px) {
    .ig-section0-title h2,.ig-section-title h2,.ig-section2-title h2,.ig-section3-title h2,.ig-section4-title h2,.ig-section5-title h2 {
        font-size:3rem
    }
}

@media only screen and (max-width: 1055px) {
    .ig-section0-title h2,.ig-section-title h2,.ig-section2-title h2,.ig-section3-title h2,.ig-section4-title h2,.ig-section5-title h2 {
        font-size:2rem
    }

    .ig-section1 img {
        width: 100%;
        height: 100%;
        margin-left: 0;
        transform: translateY(35px)
    }

    .ig-section1 {
        padding-bottom: 35px
    }
}

@media only screen and (max-width: 990px) {
    .ig-section1 img {
        display:none
    }
}

@media only screen and (max-width: 470px) {
    .ig-section {
        padding:35px 20px
    }
}

@media only screen and (max-width: 295px) {
    .ig-section0-title h2,.ig-section-title h2,.ig-section2-title h2,.ig-section3-title h2,.ig-section4-title h2,.ig-section5-title h2 {
        font-size:1.5rem
    }
}

@media only screen and (max-width: 1140px) {
    .ig-section3-logo-div,.ig-section3-dark-logo-div {
        margin-top:0;
        margin-bottom: 0
    }
}

@media only screen and (max-width: 1138px) {
    .ig-section3-logo-div,.ig-section3-dark-logo-div {
        min-height:unset
    }
}

@media only screen and (max-width: 690px) {
    .ig-section3 .ig-section-inner {
        flex-direction:column-reverse
    }

    .ig-section3-right {
        padding-left: 0;
        width: 100%;
        margin-bottom: 70px
    }

    .ig-section3-logo-area {
        width: 100%;
        flex-direction: column
    }

    .ig-section3-logo-div,.ig-section3-dark-logo-div {
        min-width: unset;
        width: 100%
    }
}

@media only screen and (max-width: 1055px) {
    .ig-section4-left img {
        width:100%;
        height: 100%;
        margin-left: 0
    }
}

@media only screen and (max-width: 990px) {
    .ig-section4-left img {
        display:none
    }

    .ig-section4-left,.ig-section4-right {
        flex-basis: unset;
        padding-right: 0
    }
}

@media only screen and (max-width: 570px) {
    .ig-section4-logo-div {
        width:100%
    }
}

.tt-button-class {
    position: relative;
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #006A71;
    color: #fff;
    text-decoration: none;
    transition-duration: .1s;
    -webkit-transition-duration: .4s;
    border: none;
    font-size: 1.1rem;
    min-width: max-content;
    cursor: pointer
}

.tt-button-class:hover {
    transition-duration: .1s
}

.tt-button-class:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .4s;
    box-shadow: 0 0 10px 20px #aaa
}

.tt-button-class:active:after {
    box-shadow: 0 0 #aaaaaab7,inset 0 0 5px 5px #0000000e;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s
}

.tt-button-class:active {
    box-shadow: inset 0 0 5px 5px #0000000e
}

.tt-home {
    width: 100%
}

.tt-home-banner-area {
    height: 100vh;
    max-height: 750px;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.tt-home-banner-area-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(255,255,255,.85) 0%,rgba(255,255,255,.85) 100%),linear-gradient(135deg,#1EF1FF 33.85%,#000 64.81%,#F00043 81.25%);
    z-index: -2
}

.tt-home-banner-area-bg2 {
    position: absolute;
    inset: 0;
    background-image: url('https://www.viralvoom.com/banner_bg.png');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    z-index: -1;
    opacity: 1
}

.tt-home-banner-area-inner {
    height: 70%;
    width: 100%;
    overflow: hidden
}

.tt-home-banner-input-area {
    width: max-content;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.tt-video-section .swiper-button-prev {
    color: #006a71;
    left: -150px
}

.tt-video-section .swiper-button-next {
    color: #006a71;
    right: -150px
}

.tt-video-section .swiper {
    width: 300px;
    height: 535px
}

@media only screen and (max-width: 1280px) {
    .tt-video-section .swiper {
        width:250px;
        height: 445px
    }

    .tt-video-section .swiper-button-prev {
        left: -120px
    }

    .tt-video-section .swiper-button-next {
        right: -120px
    }
}

@media only screen and (max-width: 1055px) {
    .tt-video-section .swiper {
        width:200px;
        height: 355px
    }

    .tt-video-section .swiper-button-prev {
        left: -120px
    }

    .tt-video-section .swiper-button-next {
        right: -120px
    }
}

.light-tt-section.tt-section.tt-section1 {
    padding-bottom: 70px
}

@media only screen and (max-width: 990px) {
    .light-tt-section.tt-section.tt-section1 {
        padding-bottom:0
    }

    .tt-video-section .swiper {
        width: 300px;
        height: 535px;
        margin-top: 50px;
        margin-bottom: 50px
    }

    .light-tt-section.tt-section.tt-section1 {
        margin-top: -45px
    }

    .tt-video-section .swiper-button-prev {
        left: -150px
    }

    .tt-video-section .swiper-button-next {
        right: -150px
    }
}

@media only screen and (max-width: 670px) {
    .tt-video-section .swiper {
        width:250px;
        height: 445px
    }

    .tt-video-section .swiper-button-prev {
        left: -50px
    }

    .tt-video-section .swiper-button-next {
        right: -50px
    }
}

@media only screen and (max-width: 470px) {
    .tt-video-section .swiper {
        width:250px;
        height: 445px
    }

    .tt-video-section .swiper-button-prev {
        left: -35px
    }

    .tt-video-section .swiper-button-next {
        right: -35px
    }
}

.tt-video-section .swiper-slide {
    border-radius: 14px;
    box-shadow: #00000030 0 10px 20px,#0000003b 0 6px 6px
}

.tt-video-section .swiper-slide .video-curtain {
    height: 100px!important;
    transition: .2s;
    opacity: 0;
    background: linear-gradient(transparent,#006a71)!important
}

.tt-video-section .swiper-slide video {
    transition: .2s;
    opacity: .5
}

.tt-video-section .swiper-slide.swiper-slide-next video {
    opacity: .9
}

.tt-video-section .swiper-slide.swiper-slide-prev video {
    opacity: .9
}

.tt-video-section .swiper-slide.swiper-slide-active video {
    opacity: 1
}

.tt-video-section .swiper-slide.swiper-slide-active .video-curtain {
    opacity: 1
}

.tt-section1 .tt-video-section img {
    display: block;
    transform: translate(0);
    width: unset;
    margin-left: 0
}

.tt-section1 .tt-video-section .review-video-button {
    -webkit-user-select: none;
    user-select: none;
    background-color: #006a71
}

@media only screen and (max-width: 990px) {
    .tt-video-section {
        flex-direction:column-reverse!important
    }
}

.tt-home-banner-input-area-title {
    display: flex;
    align-items: center;
    margin: 0 0 7.5px
}

.tt-home-banner-input-area-title h1 {
    color: #000;
    font-size: 3.375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 69px;
    text-transform: capitalize;
    margin: 0
}

.tt-home-banner-input-area-subtitle {
    display: flex;
    justify-content: center;
    flex-direction: column
}

.tt-home-banner-input-area-subtitle-div {
    display: flex;
    align-items: center
}

.tt-home-banner-input-area-subtitle-div:nth-of-type(2) {
    margin-top: 5px
}

.tt-banner-accounts {
    margin-right: 21px;
    width: 144px
}

.tt-subtitle-p {
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize
}

.tt-subtitle-p-bold {
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize
}

.tt-check {
    display: flex;
    align-items: center;
    margin-right: 18px;
    padding: 7px 28px 7px 7px;
    border-radius: 42px;
    background: #FFF5E0
}

.tt-check img {
    width: 30px;
    height: 30px
}

.tt-check p {
    color: #000;
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0
}

.tt-home-banner-input-area-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    position: relative
}

.tt-home-banner-input-area-input img {
    position: absolute;
    left: 15px
}

.tt-home-banner-input-area-input input {
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.1);
    background: #FFF;
    width: 100%;
    padding: 20px 20px 20px 55px;
    font-size: 1rem;
    transition: .3s;
    outline: none
}

.tt-home-banner-input-area-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.tt-home-banner-button span {
    display: flex;
    align-items: center;
    justify-content: center
}

.tt-banner-image-right {
    position: absolute;
    top: 230px;
    right: -110px;
    height: 570px;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transform: rotate(-45deg);
    z-index: -1
}

.tt-banner-image {
    width: 265px;
    height: 265px;
    flex-shrink: 0;
    margin: 10px;
    position: relative;
    border-radius: 25px;
    overflow: hidden
}

.tt-left-image:before {
    left: -238px;
    top: -311px
}

.tt-right-image:before {
    left: -525px;
    top: -597px
}

.tt-top-image:before {
    left: -525px;
    top: -311px
}

.tt-bottom-image:before {
    left: -238px;
    top: -591px
}

.tt-banner-image:before {
    width: 1024px;
    height: 1024px;
    content: "";
    position: absolute;
    background: url('https://www.viralvoom.com/tt_banner_image_right_v2.jpg');
    background-position-x: 0px;
    background-position-y: 0px;
    background-repeat: no-repeat;
    border-radius: 18.28px;
    transform: rotate(45deg);
    scale: .65
}

.tt-section0 {
    padding-top: 90px!important;
    padding-bottom: 90px!important
}

.tt-section0 .tt-section-inner {
    width: 100%;
    align-items: unset!important
}

.tt-section0-column {
    flex-direction: column
}

.tt-section0-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: .9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 660px
}

.tt-section0-text b {
    color: #006a71
}

.tt-section0-title {
    margin-bottom: 35px
}

.tt-section0-title h2 {
    color: #000;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 25px;
    margin-top: 0
}

.tt-section0-title p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

.tt-section0-title span,.tt-section0-title b {
    color: #006a71
}

.tt-section-section0 {
    display: flex;
    justify-content: space-between
}

.tt-section-section0-div {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    background: #ECF4F3;
    border-radius: 25px;
    padding: 25px;
    align-items: center
}

.tt-section-section0-div h3 {
    text-align: center;
    font-weight: 600;
    margin-top: 30px
}

.tt-section0-button-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px 0 0
}

.tt-section {
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.tt-section1 {
    padding-bottom: 0
}

.tt-section1 .tt-section-inner {
    padding-bottom: 0;
    flex-direction: row-reverse
}

.tt-section-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.tt-section-subtitle {
    margin-bottom: 25px
}

.tt-section-subtitle-div {
    height: 52px;
    padding: 14px 16px;
    border-radius: 100px;
    background: linear-gradient(0deg,rgba(255,105,105,.22) 0%,rgba(255,105,105,.22) 100%),#FFF;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center
}

.tt-section-subtitle-div p {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6969;
    text-transform: capitalize
}

.tt-section-title h2 {
    margin-top: 0;
    color: #000;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize
}

.tt-section-text {
    margin-bottom: 35px
}

.tt-section-text p {
    opacity: .7;
    color: #000;
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 400;
    line-height: 26px
}

.tt-section-text b {
    color: #006a71
}

.tt-section-button-area {
    margin-bottom: 15px
}

.tt-section-section1 {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.tt-section-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 35px
}

.tt-section1 img {
    height: 100%;
    margin-left: -125px
}

.dark-tt-section {
    background-color: #001e20
}

.tt-section2 {
    margin: 0
}

.tt-section2-column {
    flex-direction: column;
    width: 100%
}

.tt-section2-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px
}

.tt-section2-title h2 {
    color: #fff;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize
}

.tt-section2-logo-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 35px
}

.tt-section2-logo-div {
    display: flex;
    flex-direction: column;
    min-width: 170px;
    max-width: 270px;
    flex: auto
}

.tt-section2-logo-div img {
    margin-right: 15px
}

.tt-section2-logo-div p {
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase
}

.tt-section2-logo-div span {
    color: #fff;
    font-weight: 400;
    font-size: 1rem
}

.pink-tt-section {
    background-color: #ecf4f3
}

.tt-section3 {
    padding-top: 70px;
    padding-bottom: 70px
}

.tt-section3-left {
    flex-basis: 42%
}

.tt-section3-title h2 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize
}

.tt-section3-right {
    flex-basis: 58%;
    padding-left: 55px
}

.tt-section3-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px
}

.tt-section3-logo-div {
    min-width: 270px;
    min-height: 400px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 24px 52px #00000014;
    flex: 1;
    margin-top: -70px
}

.tt-section3-dark-logo-div {
    min-width: 250px;
    min-height: 400px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #001E20;
    box-shadow: 0 24px 52px #00000014;
    flex: 1;
    color: #fff;
    margin-bottom: -70px
}

.tt-section4 {
    padding-top: 70px;
    padding-bottom: 70px
}

.tt-section4-left {
    flex-basis: 42%;
    padding-right: 55px
}

.tt-section4-left img {
    width: 100%
}

.tt-section4-right {
    flex-basis: 58%;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.tt-section4-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0
}

.tt-section4-title span {
    color: #006a71
}

.tt-section-section4 {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px
}

.tt-section4-logo-div {
    display: flex;
    width: 300px;
    align-items: center;
    gap: 16px
}

.tt-section5 {
    padding-top: 70px;
    padding-bottom: 70px
}

.tt-section5-column {
    flex-direction: column
}

.tt-section5-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    max-width: 660px
}

.tt-section5-title h2 {
    color: #000;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 25px;
    margin-top: 0
}

.tt-section-section5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.tt-section-comment-div {
    display: flex;
    align-items: center;
    padding: 12px 32px;
    max-width: 300px;
    min-width: 250px;
    margin: 10px;
    border-radius: 100px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 64px #00000014
}

.tt-section-comment-div h3 {
    margin: 0 0 5px;
    color: #060919;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.tt-section-comment-div img {
    margin-right: 15px;
    border-radius: 50%
}

.tt-section-comment-div p {
    color: #060919;
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 5px 0
}

.tt-section6 {
    padding-top: 70px;
    padding-bottom: 70px
}

.tt-section6-column {
    flex-direction: column
}

.tt-section6-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0
}

.tt-section6-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    max-width: 830px
}

.tt-section-section6 {
    display: flex;
    align-items: center;
    justify-content: center
}

.tt-section6-blog-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    margin: 20px
}

.tt-section6-blog-div img {
    width: 100%
}

.tt-section6-blog-div h3 {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
    max-width: 360px
}

.tt-section6-blog-div p {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    opacity: .7;
    width: 100%
}

.tt-section6-blog-div a {
    color: #033053;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    width: max-content
}

.tt-section6-blog-div a:active {
    color: #0984e3
}

@media only screen and (max-width: 1250px) {
    .tt-subtitle-p,.tt-subtitle-p-bold {
        font-size:1.2rem
    }
}

@media only screen and (max-width: 1070px) {
    .tt-home-banner-input-area {
        width:100%
    }

    .tt-banner-image-right {
        opacity: .3
    }
}

@media only screen and (max-width: 990px) {
    .tt-home-banner-input-area-title h1 {
        font-size:2.3rem;
        line-height: normal
    }

    .tt-section-right {
        margin-right: 0
    }

    .tt-home-banner-input-area-subtitle-div p {
        font-size: 1.1rem
    }
}

@media only screen and (max-width: 720px) {
    .tt-banner-accounts {
        display:none
    }

    .tt-tags {
        flex-direction: column;
        align-items: flex-start
    }

    .tt-check:nth-of-type(2) {
        margin-top: 15px
    }
}

@media only screen and (max-width: 691px) {
    .tt-home-banner-area {
        max-height:unset
    }

    .tt-banner-image:before {
        scale: .85
    }
}

@media only screen and (max-width: 570px) {
    .tt-check p {
        font-size:.85rem
    }

    .tt-home-banner-input-area-input input {
        padding: 12px 12px 12px 55px
    }

    .tt-button-class {
        font-size: 1rem
    }
}

@media only screen and (max-width: 500px) {
    .tt-texts {
        flex-direction:column;
        align-items: flex-start
    }

    .tt-texts p:first-of-type {
        margin: 5px 0 0
    }

    .tt-texts p:nth-of-type(2) {
        display: none
    }

    .tt-check:first-of-type {
        margin-top: 15px
    }

    .tt-home-banner-input-area {
        justify-content: space-around
    }

    .tt-banner-accounts {
        display: initial
    }
}

@media only screen and (max-width: 490px) {
    .tt-home-banner-input-area-title h1 {
        font-size:2rem
    }
}

@media only screen and (max-width: 470px) {
    .tt-home-banner-area {
        padding:1px 20px 80px
    }

    .tt-home-banner-input-area-title h1 {
        line-height: normal
    }
}

@media only screen and (max-width: 400px) {
    .tt-home-banner-input-area-title h1 {
        font-size:1.8rem
    }

    .tt-home-banner-input-area-input input::placeholder {
        font-size: .9rem
    }
}

@media only screen and (max-width: 355px) {
    .tt-home-banner-input-area-title h1 {
        font-size:1.5rem
    }

    .tt-home-banner-input-area-input input {
        padding: 12px
    }
}

@media only screen and (max-width: 312px) {
    .tt-home-banner-input-area-title {
        justify-content:center
    }

    .tt-home-banner-input-area-title h1 {
        font-size: 1.4rem;
        text-align: center
    }

    .tt-home-banner-input-area-subtitle-div {
        font-weight: 500;
        font-size: 1rem;
        align-items: center
    }

    .tt-check {
        margin-right: 0
    }

    .tt-check:first-of-type {
        display: none
    }

    .tt-banner-accounts {
        width: 120px;
        margin-top: 25px
    }

    .tt-home-banner-input-area {
        justify-content: center
    }

    .tt-texts p:first-of-type {
        text-align: center
    }

    .tt-home-banner-input-area-button {
        justify-content: center
    }

    .tt-home-banner-input-area-input input::placeholder {
        font-size: .9rem
    }
}

@media only screen and (max-width: 1020px) {
    .tt-section-section0 {
        flex-direction:column;
        justify-content: center;
        gap: 35px;
        align-items: center
    }

    .tt-section-section0-div {
        width: 100%;
        max-width: unset
    }
}

@media only screen and (max-width: 1175px) {
    .tt-section0-title h2,.tt-section-title h2,.tt-section2-title h2,.tt-section3-title h2,.tt-section4-title h2,.tt-section5-title h2 {
        font-size:3rem
    }
}

@media only screen and (max-width: 1055px) {
    .tt-section0-title h2,.tt-section-title h2,.tt-section2-title h2,.tt-section3-title h2,.tt-section4-title h2,.tt-section5-title h2 {
        font-size:2rem
    }

    .tt-section1 img {
        width: 100%;
        height: 100%;
        margin-left: 0;
        transform: translateY(35px)
    }

    .tt-section1 {
        padding-bottom: 35px
    }
}

@media only screen and (max-width: 990px) {
    .tt-section1 img {
        display:none
    }
}

@media only screen and (max-width: 470px) {
    .tt-section {
        padding:35px 20px
    }
}

@media only screen and (max-width: 295px) {
    .tt-section0-title h2,.tt-section-title h2,.tt-section2-title h2,.tt-section3-title h2,.tt-section4-title h2,.tt-section5-title h2 {
        font-size:1.5rem
    }
}

@media only screen and (max-width: 1140px) {
    .tt-section3-logo-div,.tt-section3-dark-logo-div {
        margin-top:0;
        margin-bottom: 0
    }
}

@media only screen and (max-width: 1138px) {
    .tt-section3-logo-div,.tt-section3-dark-logo-div {
        min-height:unset
    }
}

@media only screen and (max-width: 690px) {
    .tt-section3 .tt-section-inner {
        flex-direction:column-reverse
    }

    .tt-section3-right {
        padding-left: 0;
        width: 100%;
        margin-bottom: 70px
    }

    .tt-section3-logo-area {
        width: 100%;
        flex-direction: column
    }

    .tt-section3-logo-div,.tt-section3-dark-logo-div {
        min-width: unset;
        width: 100%
    }
}

@media only screen and (max-width: 1055px) {
    .tt-section4-left img {
        width:100%;
        height: 100%;
        margin-left: 0
    }
}

@media only screen and (max-width: 990px) {
    .tt-section4-left img {
        display:none
    }

    .tt-section4-left,.tt-section4-right {
        flex-basis: unset;
        padding-right: 0
    }
}

@media only screen and (max-width: 570px) {
    .tt-section4-logo-div {
        width:100%
    }
}

.x-button-class {
    position: relative;
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    transition-duration: .1s;
    -webkit-transition-duration: .4s;
    border: none;
    font-size: 1.1rem;
    min-width: max-content;
    cursor: pointer;
    border: 1px solid #fff
}

.x-button-class:hover {
    transition-duration: .1s
}

.x-button-class:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .4s;
    box-shadow: 0 0 10px 20px #aaa
}

.x-button-class:active:after {
    box-shadow: 0 0 #aaaaaab7,inset 0 0 5px 5px #0000000e;
    position: absolute;
    border-radius: 4em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s
}

.x-button-class:active {
    box-shadow: inset 0 0 5px 5px #0000000e
}

.x-home {
    width: 100%
}

.x-home-banner-area {
    height: 100vh;
    height: 100svh;
    max-height: 750px;
    min-height: 680px;
    padding: 107px 35px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.x-home-banner-area-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(0,0,0,.85) 0%,rgba(0,0,0,.85) 100%),linear-gradient(135deg,#000,#000,#000);
    z-index: -2
}

.x-home-banner-area-bg2 {
    position: absolute;
    inset: 0;
    background-image: url('https://www.viralvoom.com/banner_bg.png');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    z-index: -1;
    opacity: .6
}

.x-home-banner-area-inner {
    height: 100%;
    width: 100%;
    overflow: hidden
}

.x-home-banner-input-area {
    height: 100%;
    width: max-content;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.x-video-section .swiper-button-prev {
    color: #000;
    left: -150px
}

.x-video-section .swiper-button-next {
    color: #000;
    right: -150px
}

.x-video-section .swiper {
    width: 300px;
    height: 535px
}

@media only screen and (max-width: 1280px) {
    .x-video-section .swiper {
        width:250px;
        height: 445px
    }

    .x-video-section .swiper-button-prev {
        left: -120px
    }

    .x-video-section .swiper-button-next {
        right: -120px
    }
}

@media only screen and (max-width: 1055px) {
    .x-video-section .swiper {
        width:200px;
        height: 355px
    }

    .x-video-section .swiper-button-prev {
        left: -120px
    }

    .x-video-section .swiper-button-next {
        right: -120px
    }
}

.light-x-section.x-section.x-section1 {
    padding-bottom: 70px
}

@media only screen and (max-width: 990px) {
    .light-x-section.x-section.x-section1 {
        padding-bottom:0
    }

    .x-video-section .swiper {
        width: 300px;
        height: 535px;
        margin-top: 50px;
        margin-bottom: 50px
    }

    .light-x-section.x-section.x-section1 {
        margin-top: -45px
    }

    .x-video-section .swiper-button-prev {
        left: -150px
    }

    .x-video-section .swiper-button-next {
        right: -150px
    }
}

@media only screen and (max-width: 670px) {
    .x-video-section .swiper {
        width:250px;
        height: 445px
    }

    .x-video-section .swiper-button-prev {
        left: -50px
    }

    .x-video-section .swiper-button-next {
        right: -50px
    }
}

@media only screen and (max-width: 470px) {
    .x-video-section .swiper {
        width:250px;
        height: 445px
    }

    .x-video-section .swiper-button-prev {
        left: -35px
    }

    .x-video-section .swiper-button-next {
        right: -35px
    }
}

.x-video-section .swiper-slide {
    border-radius: 14px;
    box-shadow: #00000030 0 10px 20px,#0000003b 0 6px 6px
}

.x-video-section .swiper-slide .video-curtain {
    height: 100px!important;
    transition: .2s;
    opacity: 0;
    background: linear-gradient(transparent,#000)!important
}

.x-video-section .swiper-slide video {
    transition: .2s;
    opacity: .5
}

.x-video-section .swiper-slide.swiper-slide-next video {
    opacity: .9
}

.x-video-section .swiper-slide.swiper-slide-prev video {
    opacity: .9
}

.x-video-section .swiper-slide.swiper-slide-active video {
    opacity: 1
}

.x-video-section .swiper-slide.swiper-slide-active .video-curtain {
    opacity: 1
}

.x-section1 .x-video-section img {
    display: block;
    transform: translate(0);
    width: unset;
    margin-left: 0
}

.x-section1 .x-video-section .review-video-button {
    -webkit-user-select: none;
    user-select: none;
    background-color: #000
}

@media only screen and (max-width: 990px) {
    .x-video-section {
        flex-direction:column-reverse!important
    }
}

.x-home-banner-input-area-title {
    display: flex;
    align-items: center;
    margin: 0 0 7.5px
}

.x-home-banner-input-area-title h1 {
    color: #fff;
    font-size: 3.375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 69px;
    text-transform: capitalize;
    margin: 0
}

.x-home-banner-input-area-subtitle {
    display: flex;
    justify-content: center;
    flex-direction: column
}

.x-home-banner-input-area-subtitle-div {
    display: flex;
    align-items: center
}

.x-home-banner-input-area-subtitle-div:nth-of-type(2) {
    margin-top: 5px
}

.x-banner-accounts {
    margin-right: 21px;
    width: 144px
}

.x-subtitle-p {
    color: #fff;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize
}

.x-subtitle-p-bold {
    color: #fff;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize
}

.x-check {
    display: flex;
    align-items: center;
    margin-right: 18px;
    padding: 7px 28px 7px 7px;
    border-radius: 42px;
    background: #FFF5E0
}

.x-check img {
    width: 30px;
    height: 30px
}

.x-check p {
    color: #000;
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0
}

.x-home-banner-input-area-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    position: relative
}

.x-home-banner-input-area-input img {
    position: absolute;
    left: 15px
}

.x-home-banner-input-area-input input {
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.1);
    background: #FFF;
    width: 100%;
    padding: 20px 20px 20px 55px;
    font-size: 1rem;
    transition: .3s;
    outline: none
}

.x-home-banner-input-area-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.x-home-banner-button span {
    display: flex;
    align-items: center;
    justify-content: center
}

.x-banner-image-right {
    position: absolute;
    top: 230px;
    right: -110px;
    height: 570px;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transform: rotate(-45deg);
    z-index: -1
}

.x-banner-image {
    width: 265px;
    height: 265px;
    flex-shrink: 0;
    margin: 10px;
    position: relative;
    border-radius: 25px;
    overflow: hidden
}

.x-left-image:before {
    left: -238px;
    top: -311px
}

.x-right-image:before {
    left: -525px;
    top: -597px
}

.x-top-image:before {
    left: -525px;
    top: -311px
}

.x-bottom-image:before {
    left: -238px;
    top: -591px
}

.x-banner-image:before {
    width: 1024px;
    height: 1024px;
    content: "";
    position: absolute;
    background: url('https://www.viralvoom.com/x_banner_image_right_v2.jpg');
    background-position-x: 0px;
    background-position-y: 0px;
    background-repeat: no-repeat;
    border-radius: 18.28px;
    transform: rotate(45deg);
    scale: .65
}

.x-section0 {
    padding-top: 90px!important;
    padding-bottom: 90px!important
}

.x-section0 .x-section-inner {
    width: 100%;
    align-items: unset!important
}

.x-section0-column {
    flex-direction: column
}

.x-section0-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: .9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 660px
}

.x-section0-text b {
    color: #000
}

.x-section0-title {
    margin-bottom: 35px
}

.x-section0-title h2 {
    color: #000;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 25px;
    margin-top: 0
}

.x-section0-title p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

.x-section0-title span,.x-section0-title b {
    color: #000
}

.x-section-section0 {
    display: flex;
    justify-content: space-between
}

.x-section-section0-div {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    background: #eeeeee;
    border-radius: 25px;
    padding: 25px;
    align-items: center
}

.x-section-section0-div h3 {
    text-align: center;
    font-weight: 600;
    margin-top: 30px
}

.x-section0-button-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px 0 0
}

.x-section {
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.x-section1 {
    padding-bottom: 0
}

.x-section1 .x-section-inner {
    padding-bottom: 0;
    flex-direction: row-reverse
}

.x-section-inner {
    display: flex;
    align-items: center;
    justify-content: center
}

.x-section-subtitle {
    margin-bottom: 25px
}

.x-section-subtitle-div {
    height: 52px;
    padding: 14px 16px;
    border-radius: 100px;
    background: linear-gradient(0deg,rgba(255,105,105,.22) 0%,rgba(255,105,105,.22) 100%),#FFF;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center
}

.x-section-subtitle-div p {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6969;
    text-transform: capitalize
}

.x-section-title h2 {
    margin-top: 0;
    color: #000;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize
}

.x-section-text {
    margin-bottom: 35px
}

.x-section-text p {
    opacity: .7;
    color: #000;
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 400;
    line-height: 26px
}

.x-section-text b {
    color: #000
}

.x-section-button-area {
    margin-bottom: 15px
}

.x-section-section1 {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.counter-div {
    margin-right: 70px;
    width: 75px
}

.counter {
    color: #000;
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px
}

.counter-text {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize
}

.x-section-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 35px
}

.x-section1 img {
    height: 100%;
    margin-left: -125px
}

.dark-x-section {
    background-color: #000
}

.x-section2 {
    margin: 0
}

.x-section2-column {
    flex-direction: column;
    width: 100%
}

.x-section2-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px
}

.x-section2-title h2 {
    color: #fff;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize
}

.x-section2-logo-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 35px
}

.x-section2-logo-div {
    display: flex;
    flex-direction: column;
    min-width: 170px;
    max-width: 270px;
    flex: auto
}

.x-section2-logo-div img {
    margin-right: 15px
}

.x-section2-logo-div p {
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase
}

.x-section2-logo-div span {
    color: #fff;
    font-weight: 400;
    font-size: 1rem
}

.pink-x-section {
    background-color: #eee
}

.x-section3 {
    padding-top: 70px;
    padding-bottom: 70px
}

.x-section3-left {
    flex-basis: 42%
}

.x-section3-title h2 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize
}

.x-section3-right {
    flex-basis: 58%;
    padding-left: 55px
}

.x-section3-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px
}

.x-section3-logo-div {
    min-width: 270px;
    min-height: 400px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 24px 52px #00000014;
    flex: 1;
    margin-top: -70px
}

.x-section3-dark-logo-div {
    min-width: 250px;
    min-height: 400px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 25px;
    background: #000;
    box-shadow: 0 24px 52px #00000014;
    flex: 1;
    color: #fff;
    margin-bottom: -70px
}

.x-section4 {
    padding-top: 70px;
    padding-bottom: 70px
}

.x-section4-left {
    flex-basis: 42%;
    padding-right: 55px
}

.x-section4-left img {
    width: 100%
}

.x-section4-right {
    flex-basis: 58%;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.x-section4-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0
}

.x-section4-title span {
    color: #000
}

.x-section-section4 {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px
}

.x-section4-logo-div {
    display: flex;
    width: 300px;
    align-items: center;
    gap: 16px
}

.x-section5 {
    padding-top: 70px;
    padding-bottom: 70px
}

.x-section5-column {
    flex-direction: column
}

.x-section5-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    max-width: 660px
}

.x-section5-title h2 {
    color: #000;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 25px;
    margin-top: 0
}

.x-section-section5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.x-section-comment-div {
    display: flex;
    align-items: center;
    padding: 12px 32px;
    max-width: 300px;
    min-width: 250px;
    margin: 10px;
    border-radius: 100px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 64px #00000014
}

.x-section-comment-div h3 {
    margin: 0 0 5px;
    color: #060919;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.x-section-comment-div img {
    margin-right: 15px;
    border-radius: 50%
}

.x-section-comment-div p {
    color: #060919;
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 5px 0
}

.comment-stars {
    display: flex
}

.comment-stars svg {
    margin-right: 5px
}

.x-section6 {
    padding-top: 70px;
    padding-bottom: 70px
}

.x-section6-column {
    flex-direction: column
}

.x-section6-title h2 {
    color: #000;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0
}

.x-section6-text p {
    opacity: .7;
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    max-width: 830px
}

.x-section-section6 {
    display: flex;
    align-items: center;
    justify-content: center
}

.x-section6-blog-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    margin: 20px
}

.x-section6-blog-div img {
    width: 100%
}

.x-section6-blog-div h3 {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
    max-width: 360px
}

.x-section6-blog-div p {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    opacity: .7;
    width: 100%
}

.x-section6-blog-div a {
    color: #033053;
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    width: max-content
}

.x-section6-blog-div a:active {
    color: #0984e3
}

@media only screen and (max-width: 1250px) {
    .x-subtitle-p,.x-subtitle-p-bold {
        font-size:1.2rem
    }
}

@media only screen and (max-width: 1070px) {
    .x-home-banner-input-area {
        width:100%
    }

    .x-banner-image-right,.x-home-banner-area-bg2 {
        opacity: .3
    }
}

@media only screen and (max-width: 990px) {
    .x-home-banner-input-area-title h1 {
        font-size:2.3rem;
        line-height: normal
    }

    .x-section-right {
        margin-right: 0
    }

    .x-home-banner-input-area-subtitle-div p {
        font-size: 1.1rem
    }
}

@media only screen and (max-width: 720px) {
    .x-banner-accounts {
        display:none
    }

    .x-tags {
        flex-direction: column;
        align-items: flex-start
    }

    .x-check:nth-of-type(2) {
        margin-top: 15px
    }
}

@media only screen and (max-width: 691px) {
    .x-home-banner-area {
        max-height:unset
    }

    .x-banner-image:before {
        scale: .85
    }

    .x-home-banner-area-bg2 {
        display: none
    }
}

@media only screen and (max-width: 570px) {
    .x-check p {
        font-size:.85rem
    }

    .x-home-banner-input-area-input input {
        padding: 12px 12px 12px 55px
    }

    .x-button-class {
        font-size: 1rem
    }
}

@media only screen and (max-width: 500px) {
    .x-texts {
        flex-direction:column;
        align-items: flex-start
    }

    .x-texts p:first-of-type {
        margin: 5px 0 0
    }

    .x-texts p:nth-of-type(2) {
        display: none
    }

    .x-check:first-of-type {
        margin-top: 15px
    }

    .x-home-banner-input-area {
        justify-content: space-around
    }

    .x-banner-accounts {
        display: initial
    }
}

@media only screen and (max-width: 490px) {
    .x-home-banner-input-area-title h1 {
        font-size:2rem
    }
}

@media only screen and (max-width: 470px) {
    .x-home-banner-area {
        padding:107px 20px 40px
    }

    .x-home-banner-input-area-title h1 {
        line-height: normal
    }
}

@media only screen and (max-width: 400px) {
    .x-home-banner-input-area-title h1 {
        font-size:1.8rem
    }

    .x-home-banner-input-area-input input::placeholder {
        font-size: .9rem
    }
}

@media only screen and (max-width: 355px) {
    .x-home-banner-input-area-title h1 {
        font-size:1.5rem
    }

    .x-home-banner-input-area-input input {
        padding: 12px
    }
}

@media only screen and (max-width: 312px) {
    .x-home-banner-input-area-title {
        justify-content:center
    }

    .x-home-banner-input-area-title h1 {
        font-size: 1.4rem;
        text-align: center
    }

    .x-home-banner-input-area-subtitle-div {
        font-weight: 500;
        font-size: 1rem;
        align-items: center
    }

    .x-check {
        margin-right: 0
    }

    .x-check:first-of-type {
        display: none
    }

    .x-banner-accounts {
        width: 120px;
        margin-top: 25px
    }

    .x-home-banner-input-area {
        justify-content: center
    }

    .x-texts p:first-of-type {
        text-align: center
    }

    .x-home-banner-input-area-button {
        justify-content: center
    }

    .x-home-banner-input-area-input input::placeholder {
        font-size: .9rem
    }
}

@media only screen and (max-width: 1020px) {
    .x-section-section0 {
        flex-direction:column;
        justify-content: center;
        gap: 35px;
        align-items: center
    }

    .x-section-section0-div {
        width: 100%;
        max-width: unset
    }
}

@media only screen and (max-width: 1175px) {
    .x-section0-title h2,.x-section-title h2,.x-section2-title h2,.x-section3-title h2,.x-section4-title h2,.x-section5-title h2 {
        font-size:3rem
    }
}

@media only screen and (max-width: 1055px) {
    .x-section0-title h2,.x-section-title h2,.x-section2-title h2,.x-section3-title h2,.x-section4-title h2,.x-section5-title h2 {
        font-size:2rem
    }

    .x-section1 img {
        width: 100%;
        height: 100%;
        margin-left: 0;
        transform: translateY(35px)
    }

    .x-section1 {
        padding-bottom: 35px
    }
}

@media only screen and (max-width: 990px) {
    .x-section1 img {
        display:none
    }
}

@media only screen and (max-width: 470px) {
    .x-section {
        padding:35px 20px
    }
}

@media only screen and (max-width: 295px) {
    .x-section0-title h2,.x-section-title h2,.x-section2-title h2,.x-section3-title h2,.x-section4-title h2,.x-section5-title h2 {
        font-size:1.5rem
    }
}

@media only screen and (max-width: 1140px) {
    .x-section3-logo-div,.x-section3-dark-logo-div {
        margin-top:0;
        margin-bottom: 0
    }
}

@media only screen and (max-width: 1138px) {
    .x-section3-logo-div,.x-section3-dark-logo-div {
        min-height:unset
    }
}

@media only screen and (max-width: 690px) {
    .x-section3 .x-section-inner {
        flex-direction:column-reverse
    }

    .x-section3-right {
        padding-left: 0;
        width: 100%;
        margin-bottom: 70px
    }

    .x-section3-logo-area {
        width: 100%;
        flex-direction: column
    }

    .x-section3-logo-div,.x-section3-dark-logo-div {
        min-width: unset;
        width: 100%
    }
}

@media only screen and (max-width: 1055px) {
    .x-section4-left img {
        width:100%;
        height: 100%;
        margin-left: 0
    }
}

@media only screen and (max-width: 990px) {
    .x-section4-left img {
        display:none
    }

    .x-section4-left,.x-section4-right {
        flex-basis: unset;
        padding-right: 0
    }
}

@media only screen and (max-width: 570px) {
    .x-section4-logo-div {
        width:100%
    }
}

.home-banner-input-area-title h1 font {
    font-size: 1.8rem
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0,0%,100%,.7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    z-index: var(--toastify-z-index);
    -webkit-transform: translateZ(var(--toastify-z-index));
    position: fixed;
    padding: 4px;
    width: var(--toastify-toast-width);
    box-sizing: border-box;
    color: #fff
}

.Toastify__toast-container--top-left {
    top: 1em;
    left: 1em
}

.Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    transform: translate(-50%)
}

.Toastify__toast-container--top-right {
    top: 1em;
    right: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translate(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        width:100vw;
        padding: 0;
        left: 0;
        margin: 0
    }

    .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
        top: 0;
        transform: translate(0)
    }

    .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translate(0)
    }

    .Toastify__toast-container--rtl {
        right: 0;
        left: auto
    }
}

.Toastify__toast {
    position: relative;
    min-height: var(--toastify-toast-min-height);
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 10px #0000001a,0 2px 15px #0000000d;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-height: var(--toastify-toast-max-height);
    overflow: hidden;
    font-family: var(--toastify-font-family);
    cursor: default;
    direction: ltr;
    z-index: 0
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 6px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.Toastify__toast-body>div:last-child {
    word-break: break-word;
    -ms-flex: 1;
    flex: 1
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    margin-inline-end:10px;width: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-flexbox;
    display: flex
}

.Toastify--animate {
    animation-fill-mode: both;
    animation-duration: .7s
}

.Toastify--animate-icon {
    animation-fill-mode: both;
    animation-duration: .3s
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        margin-bottom:0;
        border-radius: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    color: var(--toastify-text-color-info);
    background: var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    color: var(--toastify-text-color-success);
    background: var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    color: var(--toastify-text-color-warning);
    background: var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    color: var(--toastify-text-color-error);
    background: var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    color: #fff;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    transition: .3s ease;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: var(--toastify-z-index);
    opacity: .7;
    transform-origin: left
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    right: 0;
    left: auto;
    transform-origin: right
}

.Toastify__spinner {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid;
    border-radius: 100%;
    border-color: var(--toastify-spinner-color-empty-area);
    border-right-color: var(--toastify-spinner-color);
    animation: Toastify__spin .65s linear infinite
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(110%,0,0)
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-110%,0,0)
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,500px,0)
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-500px,0)
    }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}



:root {
    --swiper-navigation-size: 44px
}

.swiper-button-prev,.swiper-button-next {
    position: absolute;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev.swiper-button-hidden,.swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev,.swiper-navigation-disabled .swiper-button-next {
    display: none!important
}

.swiper-button-prev svg,.swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-prev svg,.swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg)
}

.swiper-button-prev,.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-prev:after,.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

