@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Permanent+Marker&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

ul {
    list-style: none;
    padding-left: 0;
}

.btn:focus,
input.form-control:focus {
    box-shadow: none;
}

a:hover,
.btn:hover {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.banner_content ul li {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
}
.v2_sec_1{
    position: relative;
}

.banner_content ul li:not(:last-child) {
    margin-bottom: 8px;
}

.bg_site {
    background-color: #F16E00;
    border-radius: 5px;
}
.v2_sec_3 .bg_site{
    background-color: #2ba60e;
}
.v2_sec_1,
.v2_sec_2,
.v2_sec_3,
.v2_sec_5,
.v2_sec_6,
.v2_sec_7,
.v2_sec_8
{
    background-color: #0D0D0D;
}
.v2_sec_9{
    background-color: #F16E00;
}
.sec_1:not(.v2_sec_1),
.sec_2:not(.v2_sec_2),
.sec_3:not(.v2_sec_3),
.v2_sec_4,
.sec_5,
.sec_6,
.sec_7 {
    background-repeat: no-repeat;
    background-size: cover;
}

.sec_1:not(.v2_sec_1) {
    background-image: url(../images/sec-bg1.jpg);
    background-position: top;
    background-attachment: fixed;
}

.sec_2:not(.v2_sec_2) {
    background-image: url(../images/sec-img2.jpg);
    background-position: top;
    background-attachment: fixed;
}
.v2_sec_4{
    background-image: url(../images/v2/join-bg.png);
    background-position: top;
    /*background-attachment: fixed;*/
}
.sec_3:not(.v2_sec_3) {
    background-image: url(../images/banner-3.png?v=1.2);
    background-position: top;
    background-attachment: fixed;
}

.sec_5 {
    background-image: url(../images/sec-bg4.png);
    background-position: top;
    background-attachment: fixed;
}

.sec_6 {
    /*background-image: url(../images/sec-bg6.png);*/
    background-color: rgba(0, 0, 0, 0.80);
    /*background-position: top;*/
    /*background-attachment: fixed;*/
    position: relative;
}

.sec_7 {
    background-image: url(../images/bg-mob-8.jpg);
}
.v2_sec_6  .slick-slider{
    margin-left: -8px;
    margin-right: -8px;
}
.v2_sec_6 .slick-slide  {
    margin-right:15px;
    margin-left:15px;
}

.saying_bx {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding: 20px;
}

.saying_bx_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 4px solid #29a50b;
}

.saying_bx_top .dflex {
    display: flex;
    align-items: center;
    max-width: 75%;
}

.saying_bx_top span {
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    font-weight: 600;
}

.banner_h {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
}
.v2_sec_1 .banner_h {
    font-family: 'DM Sans';
    font-weight: 700;
}
.v_banner_h span,
.v2_change_font_2,
.v2_change_font{
    font-family: "Permanent Marker";
    color: #2BA60E;
    font-weight: 400;
}
.v2_blue_color{
    color: #09F;
}
.banner_h:not(.v_banner_h){
    -webkit-text-stroke: 1px #000;
}
.banner_content ul li:before {
    content: '';
    background-image: url(../images/tick-icon.png);
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    display: inline-block;
    background-size: contain;
    margin-right: 16px;
}
.v2_site_para{
    line-height: normal;
}
.site-btn {
    font-size: 18px;
    overflow: hidden;
    position: relative;
}
.site-btn:not(.v2_site_btn){
    box-shadow: -3px -3px 4px 0px rgba(255, 255, 255, 0.25), 3px 3px 4px 0px rgba(255, 255, 255, 0.25);
    border-color: #000;
    border-radius: 10px;
}

.v2_site_btn{
    border-radius: 0;
    color: #fff;
    font-family: 'DM Sans';
    font-weight: 500;
}
.site-btn {
    position: relative;
    overflow: hidden;
}

.site-btn:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .35));
    transform: skewX(-25deg)
}

.site-btn:hover {
    opacity: .9;
}

.site-btn:hover:before {
    animation: shine 1s
}

@keyframes shine {
    to {
        left: 130%
    }
}

.btn-white:not(.v2_btn_white) {
    background-color: #F16E00;
    color: #fff;
    -webkit-text-stroke: .3px #000;
    font-weight: 600;
}
.v2_btn_white{
    background-color: #2BA60E;
}
.btn-black {
    background-color: #F16E00;
    color: #fff;
    font-weight: 700;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn:first-child:active {
    border-color: #F16E00;
    background-color: #F16E00 !important;
    color: #fff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn:first-child:active {
    border-color: #F16E00;
    background-color: #F16E00 !important;
    color: #fff;
}

.pb80,
.py80 {
    padding-bottom: 40px;
}

.pt80,
.py80 {
    padding-top: 40px;
}

.site-h {
    font-size: 26px;
    font-weight: 700;
}
.v2_sec_4 p.site-h{
    line-height: normal;
}
.v2_site_h{
    font-family: 'DM Sans';
}
.sec_5 .site-h {
    font-size: 22px;
}

.site-para {
    font-size: 16px;
}
.v2_site_para{
    font-family: 'DM Sans';
}
.saying_bx {
    margin-bottom: 30px;
}
.v2_sec_3 .saying_bx {
    margin-bottom: 20px;
}
.saying_bx_bottom {
    padding-top: 1rem;
}

.saying_bx_bottom p {
    font-weight: 500;
}

.site_navbar {
    background-color: #000;
}

.site_navbar .navbar-nav .nav-item:not(:last-child) .nav-link.active,
.site_navbar .navbar-nav .nav-item:not(:last-child) .nav-link.show,
.site_navbar .navbar-nav .nav-item:not(:last-child) .nav-link:hover {
    color: #adff2f;
    /*background-color: #5a6268;*/
}

.site_navbar .nav-link {
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.site_navbar .nav-link .fa {
    font-size: 18px;
}

.site_navbar .nav-item:not(:last-child) {
    margin-right: 4px;
}

.site_navbar .btn-vendor {
    margin-left: 8px;
}

.site_navbar .btn-vendor {
    background-color: #F16E00;
    border-color: #F16E00;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    min-width: 100px;
}

.btn-vendor:hover {
    opacity: .9;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-btn:not(.v2_site_btn){
    min-width: 200px;
    min-height: 50px;
}

.site_footer {
    background-color: #000;
}

.site_footer .col-sm-6,
.site_footer .col-sm-6 a {
    color: #e04e14;
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 18px;
}

.site_footer .col-sm-6 a {
    text-decoration: none;
}

.site_footer .col-sm-6 a i {
    color: #6f9c32;
    display: inline-block;
    margin-right: 4px;
}

/*Css Added BY Mohammad AYaz on Feb 17 2024 */
.bg_black {
    background-color: #0d0d0d;
    border: 1px solid #0d0d0d;
}

/*font-DM*/
.new_sec_01,
.new_sec_03,
.new_sec_07 {
    font-family: "DM Sans", sans-serif;
}

.new_sec_07 span {
    font-size: 21px;
    font-weight: 500;
    -webkit-text-stroke: 0.13480287790298462 #fff;
}

/*text-white*/
.nw_banner_h,
.heading,
.banner_para,
.site_para,
.box_sec_3 ul li,
.sec_5_bx h4,
.sec_5_bx h5,
.sec_5_bx h6 {
    color: #FFF;
}

.nw_banner_h {
    font-size: 26px;
    font-weight: 500;
}

.heading {

    font-size: 32px;
    font-weight: 600;
}

.stroke-black {
    -webkit-text-stroke: .02px #000;
}

.stroke-white {
    -webkit-text-stroke: .02px #fff;
}

.new_sec_03 .heading,
.new_sec_04 .heading,
.new_sec_05 .heading,
.new_sec_06 .heading {
    font-size: 28px;

}


.new_sec_06 .heading {
    margin-bottom: 20px;
}

.new_sec_05 .heading {
    margin-left: 60px;
    margin-bottom: 20px;
}

.nw_color_text {
    color: #F16E00;
}

.nw_other_font {
    font-family: "Permanent Marker";
}

.banner_para {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: normal;
}

.site_para {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    -webkit-text-stroke: .2753413915634155px #000;
}

/*owl-caruosel css*/

#steps .owl-nav div,
#slider .owl-nav div {
    position: absolute;
    top: 45%;
    font-size: 0;
    background-image: url(../images/next-prev.png);
    width: 50px;
    height: 50px;
    background-size: cover;
}

#slider .owl-nav div {
    top: 40%;
}

#steps .owl-nav div.owl-prev,
#slider .owl-nav div.owl-prev {
    transform: rotate(180deg);
}

#steps .owl-nav div.owl-next,
#slider .owl-nav div.owl-next {
    right: 0
}

#steps .owl-nav .disabled,
#slider .owl-nav .disabled {
    display: none;
}

.box_sec_3,
.sec_5_bx {
    border-radius: 60px;
    border: 1px solid #fff;
    background: rgba(36, 34, 34, 0.70);
    padding: 30px;
}

.box_sec_3 {
    background-image: url(../images/section-3-bg.png);
    background-repeat: no-repeat;
    position: relative;
}

.sec_5_bx {
    background-image: url(../images/sec5-bg.png);
    background-repeat: no-repeat;
    position: relative;
}
.v2_sec_5 .sec_5_bx {
    background-image: url(../images/v2/real-games-bg.png);
    background-size: cover;
}
.sec_5_bx::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    right: 0;
    height: 100%;
    background: rgba(36, 34, 34, 0.90);
    top: 0;
    border-radius: 60px;
}
.v2_sec_5 .sec_5_bx::before{
    display: none;
}
.sec_5_bx .col-lg-8,
.v2_sec_5 .row {
    position: relative;
    z-index: 2;
}

.sec_5_bx h4 {
    font-size: 65px;
    font-weight: 600;
}

.sec_5_bx h5 {
    font-size: 35px;
}

.sec_5_bx h6 {
    font-size: 34px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.box_sec_3 ul {
    margin-bottom: 0;
}

.box_sec_3 ul li {
    display: flex;
    align-items: center;
}

.box_sec_3 ul li:not(:last-child) {
    margin-bottom: 20px;
}

.box_sec_3 ul li span {
    font-weight: 500;
    text-transform: uppercase;
}

.box_sec_3 ul li img {
    max-height: 90px;
}

.box_sec_3 .col-lg-3:first-child li {
    justify-content: flex-end;
}

.box_sec_3 .col-lg-3:first-child li span {
    margin-right: 10px;
    display: block;
    text-align: right;
}

.bx_6_img {
    cursor: pointer;
}

.box_sec_3 .col-lg-3:last-child li span {
    order: 2;
    display: block;
    margin-left: 10px;
}

.new_sec_04 div a:not(.btn):first-child {
    margin-right: 20px;
}

.new_sec_04 div a:not(.btn) {
    display: inline-block;
}

.new_sec_04 div a img {
    max-width: 250px;
}

.sec_5_bx .col-lg-4 .img-fluid {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    border-radius: 60px;
}

.sec_06_bx {
    position: relative;
    border-radius: 10px;
}
.v2_sec_8 .nav button{
    border-radius: 0;
    background-color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'DM Sans';
    text-align: left;
    color: #000;
    padding: 12px 10px;

}
.v2_sec_8 .nav button.active{
    background-color: #2BA60E;
    color: #fff;
}
.v2_sec_8 .nav button:not(:last-child){
    margin-bottom: 30px;
}
.sec_06_bx img:not(.play-btn) {
    border-radius: 10px;
}

.sec_06_bx .play-btn {
    max-width: 50px;
    filter: drop-shadow(0px 0px 1px #000);
    cursor: pointer;
    position: relative;
    left: 15px;
    bottom: 15px;
}

.bx_6_img img:not(.play-btn) {
    width: 100%;
    object-fit: cover;
}

#video_1 .modal-header,
#video_2 .modal-header,
#video_3 .modal-header,
#video_4 .modal-header,
#video_5 .modal-header,
#video_6 .modal-header,
#video_7 .modal-header {
    border-bottom: 0;
}

#video_1 .btn-close:focus,
#video_2 .btn-close:focus,
#video_3 .btn-close:focus,
#video_4 .btn-close:focus,
#video_5 .btn-close:focus,
#video_6 .btn-close:focus,
#video_7 .btn-close:focus {
    box-shadow: none;
}
.v2_sec_8 .tab-pane h3 ~ div{
    font-size: 20px;
    font-weight: 500;
    font-family: 'DM Sans';
    margin-bottom: 20px;
}
.sec_06_bx .position-absolute {
    bottom: 6px;
}

.sec_06_bx .bx_6_txt {
    background-color: rgba(241, 110, 0, 0.9);
    border-radius: 0 0 10px 10px;
    padding: 10px;
    font-weight: 600;
    color: #fff;
}
.v2_sec_7 .site-h{
    text-transform: capitalize;
}
.v2_sec_6 .bx_6_txt{
    background-color: #2BA60E;
}
.set__icons img{
    max-width: 230px;
}
.set__icons a{
    color: transparent;
}
.set__icons a:first-child img{
    margin-right: 20px;
}
.sec_4 {
    background-color: #fff;
}
.get_the_free a{
    color: #fff;
    text-decoration: underline;
}
#zoho_form{
    height: 420px;
}
.v2_sec_8 .tab-pane h3{
    color: #2BA60E;
    text-decoration: underline;
}
.v2_sec_8 .nav {
    counter-reset: my-sec-counter;
}
.v2_sec_8 .nav button::before {
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter) ". ";
    display: inline-block;
    margin-right: 4px;
}
.bx_6_img video {
    border-radius: 10px;
}
.v2_sec_1  .col-lg-6 p{
    color: #fff;
}
.rev_part,
.rev_img{
    display: flex;
}
.rev_img{
    align-items: flex-start;
}
.rev_content span{
    display: block;
}
.v2_sec_9 .btn{
    border-radius: 8px;
    -webkit-text-stroke-width: 0.1px;
    box-shadow: -1.395px -1.395px 6.974px 0px rgba(255, 255, 255, 0.70), 1.395px 1.395px 6.974px 0px rgba(255, 255, 255, 0.70);
    -webkit-text-stroke-color: #000;
    font-weight: 700;
}
.rev_content img{
    align-items: flex-start;
}
.rev_img{
    margin-right: 20px;
}
.rev_content span{
    color: #fff;
}
.rev_img img:not(:first-child){
    margin-left: -15px;
}
.v2_sec_8 .tab-pane .v2_site_para{
    margin-bottom: 0;
    font-weight: 300;
}
.text-amber{
    color: #ffc107;
}
.v2_sec_4 .text-amber{
    font-style: normal;
}
.v2_h2{
    font-size: 24px;
    line-height: normal;
    font-family: 'DM Sans';
    font-weight: 600;
}
.v2_sec_4 .v2_site_btn{
    background-color: #fff;
    color: #000;
    font-weight: 500;
}
.v2_sec_4 h2.site-h{
    font-style: italic;
}
.v2_sec_6 .v2_change_font_2{
    font-size: 30px;
    -webkit-text-stroke-width: 0.2;
    -webkit-text-stroke-color: #FFF;
    letter-spacing: -3.456px;
}

/*Media Queries*/
@media (min-width: 576px) {

    .bx_6_img img:not(.play-btn),
    .bx_6_img video {
        height: 394px;
    }

    .new_sec_06 .col:nth-child(6) .bx_6_img img,
    .new_sec_06 .col:nth-child(9) .bx_6_img img,
    .new_sec_06 .col:nth-child(11) .bx_6_img img,
    .new_sec_06 .col:nth-child(5) .bx_6_img video,
    .new_sec_06 .col:nth-child(7) .bx_6_img video,
    .new_sec_06 .col:nth-child(8) .bx_6_img video,
    .new_sec_06 .col:nth-child(10) .bx_6_img video,
    .new_sec_06 .col:nth-child(12) .bx_6_img video {
        height: 325px;
    }

    .bx_6_img video {
        object-fit: cover;
    }
}

@media(min-width: 768px) {

    .bx_6_img img:not(.play-btn),
    .bx_6_img video {
        height: 534px;
    }

    .new_sec_06 .col:nth-child(6) .bx_6_img img,
    .new_sec_06 .col:nth-child(9) .bx_6_img img,
    .new_sec_06 .col:nth-child(11) .bx_6_img img,
    .new_sec_06 .col:nth-child(5) .bx_6_img video,
    .new_sec_06 .col:nth-child(7) .bx_6_img video,
    .new_sec_06 .col:nth-child(8) .bx_6_img video,
    .new_sec_06 .col:nth-child(10) .bx_6_img video,
    .new_sec_06 .col:nth-child(12) .bx_6_img video {
        height: 440px;
    }

    .bx_6_img video {
        object-fit: cover;
    }
}

@media(min-width: 992px) {
    .v2_sec_1 .col-lg-6{
        width: 42%;
    }
    .bx_6_img img:not(.play-btn) {
        object-fit: contain;
    }
    .v2_sec_8 .nav button {
        padding: 15px 20px;
    }
    .v2_sec_4 p.site-h{
        font-size: 40px;
    }
    .v2_sec_9 .btn{
        font-size: 36px;
    }
    .v2_sec_8 .tab-content{
        max-width: 60%;
        margin-left: 40px;
    }
    .v2_sec_8 .tab-pane h3 ~ div{
        font-size: 30px;
        margin-bottom: 40px
    }
    .v2_sec_8 .nav button{
        min-width: 320px;
        font-size: 20px;
    }
    .v2_sec_5 .v2_change_font_2{
        font-size: 53px;
    }
    .v2_sec_6 .v2_change_font_2{
        font-size: 95px;
    }
    .v2_sec_7 .v2_change_font_2{
        font-size: 65px;
    }
    .v2_sec_8 .container > .v2_site_h{
        font-size: 75px;
    }

    .v2_sec_4 .v2_site_btn{
        font-size: 35px;
    }
    .v2_h2{
        font-size: 60px;
    }
    .rev_content span,
    .get_the_free{
        font-size: 22px;
    }
    .v2_sec_1  .col-lg-6 p{
        font-size: 25px;
        margin-bottom: 50px;
        width: 90%;
    }
    .box_sec_3 .col-lg-3 {
        width: 30%;
    }

    .box_sec_3 .col-lg-6 {
        width: 40%;
    }

    .box_sec_3 ul li:not(:last-child) {
        margin-bottom: 50px;
    }

    .bx_6_img img:not(.play-btn),
    .bx_6_img video {
        height: 450px;
    }

    .new_sec_06 .col:nth-child(6) .bx_6_img img,
    .new_sec_06 .col:nth-child(9) .bx_6_img img,
    .new_sec_06 .col:nth-child(11) .bx_6_img img,
    .new_sec_06 .col:nth-child(5) .bx_6_img video,
    .new_sec_06 .col:nth-child(7) .bx_6_img video,
    .new_sec_06 .col:nth-child(8) .bx_6_img video,
    .new_sec_06 .col:nth-child(10) .bx_6_img video,
    .new_sec_06 .col:nth-child(12) .bx_6_img video {
        height: 350px;
    }

    .bx_6_img video {
        object-fit: cover;
    }

    .sec_6 .row {
        align-items: center;
    }

}

@media(min-width: 1024px) {
    #steps .owl-nav div.owl-prev {
        left: -30px;
    }
    .v2_sec_1{
        overflow: hidden
    }
    .v2_sec_1 .container > img{
        position: absolute;
        right: -20px;
    }
    #steps .owl-nav div.owl-next {
        right: -30px;
    }

    .banner_h {
        font-size: 45px;
        margin-bottom: 30px;
    }

    .heading {
        font-size: 90px;
    }


    .new_sec_06 .heading {
        font-size: 90px;
    }

    .new_sec_01 .row {
        align-items: center;
    }

    .new_sec_03 .heading {
        font-size: 70px;
    }

    .new_sec_05 .heading {
        font-size: 70px;
        letter-spacing: -2px;
    }

    .new_sec_04 .heading {
        font-size: 70px;
        letter-spacing: -2.5px;
    }

    .site_para {
        font-size: 50px;
    }

    .new_sec_03 .site_para,
    .new_sec_06 .site_para {
        font-size: 38px;
    }

    .new_sec_03 .site_para,
    .new_sec_06 .site_para {
        margin-left: auto;
        margin-right: auto;
        width: 70%;
    }

    .box_sec_3,
    .sec_5_bx {
        padding: 50px;
    }

    .sec_5 .row {
        align-items: center;
    }

    .nw_banner_h {
        font-size: 47px;
    }

    .mb30 {
        margin-bottom: 30px;
    }

    .new_sec_01 .col-lg-6:not(:last-child) {
        width: 55%;
    }

    .new_sec_01 .col-lg-6:last-child {
        width: 45%;
    }

    .mb40 {
        margin-bottom: 40px;
    }

    .mb50 {
        margin-bottom: 50px;
    }

    .banner_content ul {
        margin-bottom: 50px;
    }

    .banner_content ul li {
        font-size: 27px
    }

    .fs24 {
        font-size: 24px;
    }

    .sec_5 .fs24 {
        font-size: 22px;
    }

    .banner_content ul li:not(:last-child) {
        margin-bottom: 2px;
    }

    .site-btn:not(.v2_site_btn) {
        font-size: 30px;
        min-width: 280px;
        min-height: 70px;
    }
    .v2_site_btn{
        font-size: 25px;
    }
    .pb80,
    .py80 {
        padding-bottom: 80px;
    }
    .v2_sec_1 .pb80,
    .v2_sec_1 .py80 {
        padding-bottom: 100px;
    }

    .pt80,
    .py80 {
        padding-top: 80px;
    }

    .v2_sec_1  .pt80,
    .v2_sec_1 .py80 {
        padding-top: 150px;
    }

    .site-h {
        font-size: 42px;
    }
    .v2_sec_6 .site-h{
        font-size: 45px;
    }
    .v2_sec_7 .site-h{
        font-size: 50px;
    }
    .v2_sec_9 .site-h{
        font-size: 62px;
    }
    .sec_5 .site-h {
        font-size: 28px;
    }

    .sec_6 .py80 {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .site-para {
        font-size: 24px;
    }
    .v2_site_para{
        font-size: 25px;
    }
    .v2_sec_8 > .container > .v2_site_para{
        font-size: 30px;
    }
    .v2_sec_8 .tab-pane .v2_site_para{
        font-size: 20px;
    }
    .saying_bx {
        margin-bottom: 60px;
    }
    .v2_sec_3 .saying_bx {
        margin-bottom: 30px;
    }
    .sec_3 .row {
        justify-content: space-between;
    }

    .sec_3 .col-lg-6 {
        width: 49%;
    }

    .sec_2 .row,
    .sec_4 .row,
    .sec_6 .row {
        align-items: center;
    }

    .fs20 {
        font-size: 20px;
    }

    .fs32 {
        font-size: 32px;
    }

    .sec_2 .img-fluid {
        max-width: 90%;
    }

    .sec_7 {
        background-image: url(../images/bg-newsletter.png?v=2.2);
    }

    .saying_bx_top h4 {
        font-weight: 700;
    }

    .sec_7 .col-lg-6 .fs32 {
        margin-bottom: 0px;
    }

    .sec_6 .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .sec_7_1 .sec_6_right_content {
        padding: 40px;
        width: 80%;
    }

    .sec_6:not(.sec_7_1) .sec_6_right_content {
        padding: 10px 40px 10px;
        width: 100%;
    }

}

@media(max-width: 1350px) and (min-width: 992px) {
    .sec_6:not(.sec_7_1) .site-h {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .sec_6:not(.sec_7_1) .fs20 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .sec_7_1 .sec_6_right_content {
        padding: 20px;
        width: 100%;
    }
}

.sec_7 .col-lg-3 iframe {
    z-index: 99;
}

@media(min-width: 1400px) {
    .container {
        max-width: 1140px;
    }
    .v2_sec_1 .container,
    .v2_sec_2 .container,
    .v2_sec_3 .container,
    .v2_sec_4 .container,
    .v2_sec_5 .container,
    .v2_sec_7 .container,
    .v2_sec_8 .container,
    .v2_sec_9:not(.how_sec_04) .container,
    .v2_header .container
    {
        max-width: 1320px;
    }
    .sec_6:not(.sec_7_1) .sec_6_right_content {
        padding: 10px 40px 10px;
        width: 100%;
    }
}
@media(min-width: 1500px){
    .v2_sec_1 .container,
    .v2_sec_2 .container,
    .v2_sec_3 .container,
    .v2_sec_4 .container,
    .v2_sec_5 .container,
    .v2_sec_7 .container,
    .v2_sec_8 .container,
    .v2_sec_9 .container,
    .v2_header .container
    {
        max-width: 1440px;
    }
}

@media(max-width: 1480px) and (min-width: 1200px) {
    .sec_7 .col-lg-6 .fs32 {
        width: 80%;
        font-size: 26px;
        margin-left: auto;
        /*margin-right: auto;*/
    }
}

@media(max-width: 1480px) and (min-width: 1100px) {
    .sec_7 .col-lg-6 .fs32 {
        font-size: 26px;
        line-height: normal;
    }
}

@media(max-width: 1023.98px) {



    .sec_1 .banner_content,
    .sec_5 .col-lg-6:first-child .py80 {
        padding-bottom: 0;
    }

    .sec_1 .col-lg-6 {
        padding-top: 0;
    }

    .banner_content ul li {
        justify-content: center;
    }

    .sec_3 .site-h {
        margin-bottom: 40px;
    }

    .saying_bx_top .dflex img {
        max-width: 50%;
    }

    .saying_bx_top .dflex div h4 {
        font-size: 18px;
    }

    .saying_bx_top .dflex div span {
        font-size: 9px;
    }

    .sec_7 {
        padding-bottom: 350px;
        background-position: center;
    }

    .sec_7 .col-lg-6 .fs32 {
        text-align: center;
        margin-bottom: 40px;
    }

    .sec_1 .banner_content ul {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .sec_6 .sec_6_left_img {
        padding-left: 0;
        padding-right: 0;
    }

    .sec_6 .py80 {
        padding-top: 0
    }
}

@media(max-width: 991.98px) {
    .sec_1,
    .sec_2,
    .sec_4,
    .sec_5,
    .sec_6 {
        text-align: center;
    }

    .v2_sec_9 .btn{
        margin-top: 20px;
        font-size: 12px;
    }
    .v2_sec_6 .bx_6_img img,
    .v2_sec_6 .bx_6_img video{
        height: 500px;
        object-fit: cover;
    }
    #PlayerSlider{
        margin-bottom: 30px
    }
    .rev_part {
        align-items: center;
        justify-content: center;
    }
    .v2_sec_8 .nav{
        width: 70%;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px
    }
    .v2_sec_8 .nav button{
        font-size: 16px;
    }
    .v2_sec_7 p{
        text-align: center;
    }
    .v2_sec_7 .site-h{
        margin-bottom: 30px;
        text-align: center;
    }
    .v2_sec_7 .col-lg-5{
        margin-bottom: 30px
    }
    .set__icons,
    .v2_sec_5 .sec_5_bx {
        text-align: center;
    }
    .set__icons img{
        width: 120px;
    }
    .v2_sec_8 .d-flex.align-items-start{
        flex-direction: column;
        margin-top: 40px;
    }
    .set__icons a:first-child img{
        margin-right: 10px;
    }
    .v2_sec_8 .tab-content,
    .v2_sec_9{
        text-align: center;
    }
    .v2_sec_6 .site-h{
        font-size: 14px;
        margin-bottom: 30px
    }
    .v2_sec_4 h2.site-h{
        font-size: 15px;
    }
    .v2_sec_4 h3.site-h{
        font-size: 18px;
    }
    .v2_sec_4 p.site-h,
    .v2_sec_4 .v2_site_btn{
        font-size: 14px;
    }
    .rev_img img:not(:first-child){
        margin-left: -10px
    }
    .rev_img img{
        max-width: 35px;
    }
    .v2_sec_2 .site-h {
        font-size: 19px;
    }
    .v2_sec_1 .banner_h{
        font-size: 24px;
    }
    .rev_content{
        text-align: left;
    }
    .v2_sec_3 .site-h,
    .get_the_free,
    .rev_content span{
        font-size: 12px;
    }
    .get_the_free {
        margin-bottom: 20px
    }
    .v2_h2{
        margin-bottom: 30px
    }
    .v2_sec_1 .container {
        display: flex;
        flex-direction: column-reverse;
    }
    .v2_sec_1{
        overflow: hidden;
    }
    .v2_sec_1 .container > img{
        position: relative;
        right:-50px;
    }
    .v2_sec_2 .col-lg-7{
        margin-bottom: 40px
    }
    .sec_4 .col-lg-6:first-child,
    .sec_6 .col-lg-6:first-child {
        margin-bottom: 30px;
    }

    .site_navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
    }

    .site_navbar [aria-expanded="true"] .navbar-toggler-icon {
        background-size: 15px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    }

    .new_sec_01 .col-lg-6 {
        text-align: center;
    }

    #steps .owl-nav div {
        width: 35px;
        height: 35px;
    }

    .box_sec_3 ul li img {
        max-height: 70px;
    }

    .new_sec_04 .mb40 {
        margin-bottom: 20px;
    }

    .new_sec_04 div a img {
        max-width: 120px;
    }

    .new_sec_05 .heading {
        margin-left: 0;
        text-align: center;
    }

    .sec_5_bx h4 {
        font-size: 26px;
    }

    .sec_5_bx h5 {
        font-size: 24px;
    }

    .sec_5_bx h6 {
        font-size: 20px;
    }

    .sec_5_bx .col-lg-4 .img-fluid {
        position: relative;
        width: 100%;
    }
}

@media(max-width: 575px) {
    .saying_bx_top {
        flex-direction: column;
        align-items: self-start;
        flex-wrap: wrap;
    }

    .saying_bx_top .dflex {
        max-width: 100%;
        margin-bottom: 8px;
    }

    .site_footer {
        text-align: center;
    }

    .new_sec_06 .bx_6_img img,
    .new_sec_06 .bx_6_img video {
        max-height: 450px;
    }

    .new_sec_06 .bx_6_img video {
        object-fit: cover;
    }
}

@media(max-width: 480px) {
    .navbar-brand.site_logo {
        max-width: 200px;
    }
}

.webinar-lnk{
    color: white;
}
