
button {
    width: auto;
    position: relative;
}

.header {
    height: auto !important;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.2);
}
.header-inner {
    position: relative !important;
}

.tamount-section {
    background-color: var(--dark-color);
    padding: 50px 0 50px 0;
    /*background-image: url("../images/achievement/achievement-bg.png");*/
    background-image: url("../images/about/pattern.png");
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    color: #fff;
    word-break: break-word;
}

.tamount-section .l-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tamount-section .l-content .title-lay {
    display: flex;
    align-items: center;
}
.tamount-section .l-content .title-lay i {
    font-size: 2rem;
}
.tamount-section .l-content .title-lay .title {
    color: #fff;
    margin-left: 1rem;
}
.tamount-section .l-content .content {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 1rem;
}


.tamount-section .r-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    word-break: break-word;
}
.tamount-section .r-content .amount-content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border: 1px dashed #fff;
    padding: 20px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.tamount-section .r-content .amount-content:hover {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
}
.tamount-section .r-content .amount {
    color: #fff;
}
.tamount-section .r-content .btn {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
}


/* lines Bg */
.common-area .verticle-lines .vlines {
    width: 3px;
    height: 100%;
    background: linear-gradient(0deg, #fff, #fff, transparent);
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-name: lineanim;
    animation-name: lineanim;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    opacity: 0.2;
}

.common-area .verticle-lines .vlines.one {
    left: 20%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.common-area .verticle-lines .vlines.two {
    left: 40%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.common-area .verticle-lines .vlines.three {
    left: 60%;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.common-area .verticle-lines .vlines.four {
    left: 80%;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}


.about-us .about-right img {
    max-width: 100%;
}
.testimonials::before {
    max-width: 100%;
}



@media only screen and (min-width: 992px) {
    .navbar-expand-lg .me-auto.navbar-nav:nth-last-child(1) {
        margin: 0;
        flex: 1;
        justify-content: flex-end;
    }
}


@media (max-width:992px) {
    .sm-content-hide {
        display: none !important;
    }
}
@media (min-width:992px) {
    .lg-content-hide {
        display: none !important;
    }
}




.f-toast {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    top: 10% !important;
}
.f-toast.toast-success {
    background-color: var(--primary-color);
    color: #fff;
}
.f-toast.toast-danger {
    background-color: #ff4b4b;
    color: #fff;
}



.sidebar .widget.categories-widget ul li a.active {
    background-color: rgba(var(--primary-color-rgb), 0.5);
}

.sidebar .widget.categories-widget ul li a.active:hover {
    color: #fff;
    border-color: transparent;
    background-color: var(--primary-color);
}

.sidebar .widget.categories-widget ul li a.active:hover span {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
}










.navbar-uinfo {
    position: relative;
}
.navbar-uinfo .user-info-content {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 5px;
    border: 1px dashed rgba(255, 255, 255, 0);
}
.navbar-uinfo .user-info-content:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.6);
}
.navbar-uinfo .user-info-content .left-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 112px;
    white-space: nowrap;
    overflow: hidden;
}
.navbar-uinfo .user-info-content .uname {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
}
.navbar-uinfo .user-info-content .uwallet {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
    color: var(--primary-color);
    font-style: italic;
    font-size: 12px;
    background: rgba(var(--primary-color-rgb), 0.2);
    padding: 1px 4px;
    border-radius: 5px;
}
.navbar-uinfo .user-info-content .avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-left: 10px;
}

.navbar-uinfo .user-info-content.user-info-content-sm {
    padding: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}
.navbar-uinfo .user-info-content.user-info-content-sm .left-info {
    max-width: 100%;
}
.navbar-uinfo .user-info-content.user-info-content-sm .avatar {
    margin-left: 0;
    margin-right: 10px;
}


.navbar-uinfo .user-info-content.bstyle {
    position: absolute;
    bottom: -70px;
    right: calc(var(--bs-gutter-x)/ 2);
    height: 70px;
    padding: 0 20px;
    justify-content: center;
    background-color: rgba(var(--dark-color-rgb), 0.75);
    border: 1px dashed rgba(255, 255, 255, 0.75);
    border-top: none !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: -1;
    background-image: url(../images/achievement/achievement-bg.png);
    background-size: 300%;
    background-position: center;
}
.navbar-uinfo .user-info-content.bstyle:hover {
    background-color: rgba(var(--dark-color-rgb), 0.9);
    border: 1px dashed rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}










.cform-section {
    position: relative;
    background-color: #F4F7FA;
}

.cform-section .inner-title {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.cform-section .inner-content {
    padding: 6%;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.cform-section .title {
    margin-bottom: 30px;
}

.cform-section .contant-inner-title {
    margin-bottom: 45px;
}

.cform-section .auth-content {
    max-width: 450px;
}

.cform-section .form-group {
    margin-bottom: 15px;
    display: block;
}
.cform-section .form-group .title {
    margin-bottom: 5px;
}

.cform-section .form-group .input-group {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #e6e2f5;
    border-radius: 5px;
    overflow: hidden;
}

.cform-section .form-group .input-group input {
    height: 55px;
    line-height: 55px;
    padding: 0px 20px;
    color: #333;
    font-weight: 400;
    flex: 1;
    border: 0;
}

.cform-section .form-group textarea {
    height: 180px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 15px 20px;
    color: #333;
    resize: none;
    font-weight: 400;
    border-radius: 5px;
}

.cform-section .wbutton {
    margin: 0;
}

.cform-section .wbutton .btn {
    height: 50px;
    border: none;
}



.btnhover:hover {
    opacity: 0.8;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}
.btnhover2:hover {
    opacity: 0.8;
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}
.texthover:hover {
    opacity: 0.8;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.text-transform-none {
    text-transform: none !important;
}




.mobile-areas-popup {
    max-height: 70vh;
    /*top: 30vh;*/
    top: unset;
    bottom: 0;
}

.mconnom-popup {
    max-height: 70vh;
    /*top: 30vh;*/
    top: unset;
    bottom: 0;
}
.mconnom-popup .row, .mconnom-popup .row>div{
    margin: 0;
    padding: 0;
}





.mcontent-p {
    padding: 30px !important;
}
.mcontent-px {
    padding-left: 30px !important;;
    padding-right: 30px !important;;
}
.mcontent-py {
    padding-top: 30px !important;;
    padding-bottom: 30px !important;;
}
.mcontent-pt {
    padding-top: 30px !important;;
}
.mcontent-pl {
    padding-left: 30px !important;;
}
.mcontent-mt {
    margin-top: 30px !important;;
}
.mcontent-mb {
    margin-bottom: 30px !important;;
}
.mcontent-ml {
    margin-left: 30px !important;;
}
.mcontent-mr {
    margin-right: 30px !important;;
}




.common-section {
    position: relative;
    background-color: #F4F7FA;
}

.common-section .sidebar {
    margin-top: 0 !important;
}

.common-section .sidebar .widget{
    margin-bottom: 30px;
    padding: 30px;
}

.common-section .widget.scard {
    background-color: var(--primary-color);
    background-image: url("../images/about/pattern.png");
    border: none;
}


.common-section .m-content {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
}

.common-section .m-content .avatar, .u-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(var(--primary-color-rgb), 0.3);
}
.common-section .m-content .hiname {
    font-size: 20px;
    font-weight: bolder;
}


.edit-img-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 3px 5px;
    transform: translate3d(-50%, 50%, 0) scale(1);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    font-size: 12px;
}
.edit-img-icon i {
    font-size: 16px;
    margin-right: 5px;
}





.datapagination-list-lay {
    min-height: 330px;
}
.datapagination-list .list-load-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
.datapagination-list .list-load-img img {
    width: 35%;
}
.datapagination-nodata, .datapagination-nomoredata {
    display: none;
    margin-top: 40px;
}
.datapagination-nodata .content, .datapagination-nomoredata .content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.datapagination-nodata .content {
    margin-top: 100px;
    flex-direction: column;
}
.datapagination-nodata .content img{
    width: 40%;
}
.datapagination-nodata .content .title{
    padding: 20px;
    margin: 0;
}
.datapagination-nomoredata .content img{
    height: 30px;
}
.datapagination-nomoredata .content .title{
    margin: 0 0 0 20px;
}

.pagination form input {
    background: rgba(255, 255, 255, 0.3);
}

.cform-section .inner-content.mlist {
    border: 1px solid #eee;
    background: rgba(255, 255, 255, 0.3);
}
.mdlist-item {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}



.flag_curr_ico{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 40px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.4s ease-out;
}
.flag_curr_ico:hover{
    opacity: 0.65;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: all .2s ease-out;
}



@media only screen and (max-width: 991px) {
    .mcontent-p {
        padding: 20px !important;;
    }
    .mcontent-px {
        padding-left: 20px !important;;
        padding-right: 20px !important;;
    }
    .mcontent-py {
        padding-top: 20px !important;;
        padding-bottom: 20px !important;;
    }
    .mcontent-pt {
        padding-top: 20px !important;;
    }
    .mcontent-pl {
        padding-left: 20px !important;;
    }
    .mcontent-mt {
        margin-top: 20px !important;;
    }
    .mcontent-mb {
        margin-bottom: 20px !important;;
    }
    .mcontent-ml {
        margin-left: 20px !important;;
    }
    .mcontent-mr {
        margin-right: 20px !important;;
    }

    .common-section .sidebar .widget{
        padding: 20px;
        margin-bottom: 20px;
    }

    .common-section .m-content .avatar, .u-avatar {
        width: 80px;
        height: 80px;
        border: 4px solid rgba(var(--primary-color-rgb), 0.3);
    }

    .common-section .m-content .hiname {
        font-size: 18px;
        font-weight: bold;
    }

    .flag_curr_ico{
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .common-section .m-content .avatar, .u-avatar {
        width: 60px;
        height: 60px;
        border: 3px solid rgba(var(--primary-color-rgb), 0.3);
    }

    .common-section .m-content .hiname {
        font-size: 16px;
    }

    .flag_curr_ico2{
        width: 30px;
        height: 30px;
    }
}







/* 大转盘样式 */
.rgame-content {
    display: block;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.rgame-content .turnplate {
    display: block;
    width: 100%;
    position: relative;
}
.rgame-content .turnplate canvas.wheelcanvas {
    width: 100%;
}
.rgame-content .turnplate img.pointer {
    position: absolute;
    width: 28%;
    left: 50%;
    top: 25.1%;
    margin-left: -14%;
    cursor: pointer;
    transition: all 0.4s ease-out;
}
.rgame-content .turnplate img.pointer:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: all .2s ease-out;
}
.play-disabled .rgame-content .turnplate img.pointer {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
    transition: all .2s ease-out;
}
.play-disabled .rgame-content .turnplate img.pointer:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
    transition: all .2s ease-out;
}

.rgame-handpointer {
    position: absolute;
    width: 15%;
    left: 55%;
    top: 53%;
    transition: all 1s ease-out;
}
.play-disabled .rgame-handpointer {
    width: 0;
    opacity: 0;
    transition: all .2s ease-out;
}


.rgame-f-img {
    position: absolute;
    transition: all 1s ease-out;
}
.rgame-f-img img {
    width: 100%;
}
.rgame-f-img1 {
    bottom: 20px;
    left: 0;
    width: 15%;
}
.rgame-f-img2 {
    top: -10%;
    right: 0;
    width: 20%;
}
.rgame-f-img3 {
    bottom: 20px;
    right: 0;
    width: 12%;
}

.play-disabled .rgame-f-img {
    transition: all 5s ease-out;
    width: 0;
    opacity: 0;
}
.play-disabled .rgame-f-img1 {
    bottom: 45%;
    left: 45%;
}
.play-disabled .rgame-f-img2 {
    top: 45%;
    right: 45%;
}
.play-disabled .rgame-f-img3 {
    bottom: 45%;
    right: 45%;
}




.prize-body-bg {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.prize-body {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-out;
}
.prize-content {
    background: rgba(255, 233, 118, 0.76);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.32);
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    opacity: 0.95;
}
.prize-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}


.prize-content::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: linear-gradient(180deg, rgba(0, 183, 255, 0), rgb(0, 183, 255), rgb(255, 255, 255), rgb(255, 48, 255), rgba(255, 48, 255, 0));
    animation: rotBGimg 6s linear infinite;
    transition: all 0.2s linear;
}
.prize-content::after {
    content: '';
    position: absolute;
    background: #ffffff;
    inset: 5px;
    border-radius: 20px;
}





.rgame-content {
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    padding: 7px;
    transition: all 1s ease-out;
}
.rgame-content .turnplate {
    z-index: 1;
    opacity: 0.95;
    box-shadow: inset 1px 1px 3px 3px rgba(133, 93, 0, 0.3);
    border-radius: 50%;
    overflow: hidden;
}
.rgame-content::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background-image: linear-gradient(180deg, rgb(255, 253, 0), rgb(0, 183, 255), rgb(255, 255, 255), rgb(255, 48, 255), rgb(0, 255, 131));
    opacity: 0.9;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
}
.rgame-content::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0);
    inset: 7px;
    border-radius: 50%;
}

.play-disabled .rgame-content {
    padding: 10px;
    transition: all 1s ease-out;
}
.play-disabled .rgame-content::after {
    padding: 10px;
    transition: all 1s ease-out;
}
.play-disabled .rgame-content::before {
    opacity: 0.2;
    transition: all 1s ease-out;
    animation: rotBGimg 1s linear infinite;
}









.bfloat-game {
    position: fixed;
    z-index: 9;
    right: 20px;
    bottom: 30%;
    width: 20%;
    max-width: 120px;
    border-radius: 5px;
    opacity: 0.9;
}
.bfloat-game-content {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}
.bfloat-game-content>div {
    position: relative;
    z-index: 1;
    padding: 3px;
}
.bfloat-game .rgame-p-img {
    width: 100%;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
}
.bfloat-game .gtitle {
    width: 100%;
    padding: 5px;
    background: rgba(var(--primary-color-rgb), 0.2);
    color: var(--dark-color);
    text-align: center;
    font-size: 13px;
    margin: 3px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.bfloat-game-content::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: linear-gradient(180deg, rgba(0, 183, 255, 0), rgb(0, 183, 255), rgb(255, 255, 255), rgb(255, 48, 255), rgba(255, 48, 255, 0));
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
}
.bfloat-game-content::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    inset: 3px;
    border-radius: 5px;
}







.bgAudioBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    max-width: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px dashed rgba(172, 0, 255, 0.1);

    transition: all 0.36s ease;
    animation: audio_spin 3s infinite linear;
    animation-play-state: paused;
}
.bgAudioBox img {
    width: 100%;
}

.bgaudioplaying {
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

@keyframes audio_spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.cursor-text {
    cursor: text;
}



.single-team .image .social {
    width: 100%;
}

.single-team .image .social .content {
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.75);
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
}

.single-team .image .socialt {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.single-team .image .socialt i {
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.75);
    color: #fff;
}
.single-team:hover .socialt {
    opacity: 0;
    visibility: hidden;
}



.about-us.about-us2 .about-left .section-title h2{
    font-size: 18px;
    margin-bottom: 20px;
}
.about-us .about-left p {
    color: #888;
    line-height: 24px;
    font-size: 14px;
    word-break: break-word;
}

.about-us .container>div {
    border-bottom: 1px solid #eee;
}



@media only screen and (max-width: 991px) {
    .team-details .content {
        padding: 0;
        margin-top: 30px;
    }
}

.blinks2{
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.blinks2:hover {
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}

.skill-main .progress-bar{
    transition: all 0.36s ease;
}






.scroll-nexts2 {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    /*color: #081828 !important;*/
    color: var(--primary-color) !important;
    position: absolute;
    top: 50%;
    margin-top: 10px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius: 5px;
    opacity: 0.75;
    -webkit-box-shadow: 0 1rem 3rem rgba(var(--primary-color-rgb), 0.5) !important;
    box-shadow: 0 1rem 3rem rgba(var(--primary-color-rgb), 0.5) !important;
    border: 1px dashed rgba(0, 0, 0, 0.3);
}
.scroll-nexts2:hover {
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    color: var(--primary-color) !important;
    opacity: 1;
}









.hero-area.hero-areas2.style2 .hero-inner.style2, .hero-area.hero-areas2.style2{
    background-color: #F4F7FA !important;
}

.hero-area.hero-areas2.style2 .sl-img-el{
    object-fit: contain;
    max-height: 600px;
    max-width: 100%;
}

.hero-area.hero-areas2.style2 .tns-nav{
    margin-bottom: 40px;
}
.hero-area.hero-areas2.style2 .tns-controls button {
    margin-top: -67.5px;
}
@media only screen and (max-width: 991px) {
    .hero-area.hero-areas2.style2 .tns-nav{
        margin-bottom: 20px;
    }
    .hero-area.hero-areas2.style2 .tns-controls button {
        margin-top: -47.5px;
    }

    .scroll-nexts2 {
        width: 35px;
        height: 35px;
        line-height: 35px;
        right: 0;
        border-radius: 5px 0 0 5px;
        border-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    .hero-area.hero-areas2.style2 .sl-img-el{
        max-height: 500px;
    }
}

.hero-area.hero-areas2.style2 .hero-inner .hero-text{
    min-height: 0 !important;
    margin-top: 0 !important;
    padding-left: 10% !important;
    padding-right: 10% !important;
}


.hero-area.hero-areas2.style2 .hero-inner .hero-text .hbg-text{

}

.hero-area.style2 .tns-controls button{
    overflow: hidden;
}






.langi-box{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-out;
    cursor: pointer;
    padding: 10px 10px;
    border: 2px dashed #081828;
    background: rgba(8, 24, 40, 0.2);
    border-radius: 5px;
    margin: 0 15px 15px 0;
}
.langi-box:hover{
    opacity: 0.65;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: all .2s ease-out;
}
.langi-box img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 40px;
    border: 2px solid #fff;
}
.langi-box span{
    padding: 0 5px 0 15px;
    font-size: 16px;
    font-weight: bold;
    color: #081828;
}



