/*--------------------- Copyright (c) 2025 -----------------------
[Master Stylesheet]
Project: SellerBot
Version: 1.0.0
Author:
 -------------------------------------------------------------------
[Table of contents]
    1. Global CSS Start
    2. Comman CSS Start
-------------------------------------------------------------------*/
/********************************************************
    1. Global CSS Start
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro: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');

:root {
    --white-color: #ffffff;
    --bg-color: #001112;
    --yellow-color: #FFB800;
    --primary-color: #00F9F9;
    
    --transition: all 0.3s;
    --webkit-transition: all 0.3s;
    --moz-transition: all 0.3s;
    --o-transition: all 0.3s;
    --ms-transition: all 0.3s;
    --themefont: "Be Vietnam Pro", sans-serif;
}
/* font-family: "Be Vietnam Pro", sans-serif; */

body {
    font-family: var(--themefont);
    font-size: 16px;
    line-height: 1.42857143;
    font-weight: 400;
    background: var(--bg-color) url('../images/bodyBg.png') top center / cover;
    color: var(--white-color);
    overflow-x: hidden;

}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.pointer {
    cursor: pointer;
}
a,
a:hover,
a:focus,
button,
button:hover,
svg,
svg path,
::after,
::before {
    text-decoration: none;
    -webkit-transition: var(--webkit-transition);
    -moz-transition: var(--moz-transition);
    -ms-transition: var(--ms-transition);
    -o-transition: var(--o-transition);
    transition: var(--transition);
}
img {
    max-width: 100%;
}
input,
textarea,
select,
button,
button:focus,
button:hover,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
.form-control:focus {
    outline: none;
    box-shadow: none;
}
ul,
p {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    color: var(--white-color);
}
/* width */
.custom_scroll::-webkit-scrollbar {
    width: 4px;
}
/* Track */
.custom_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
.custom_scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
/********************************************************
    2. Common CSS Start
********************************************************/
/* ::placeholder {
    color: #B1CDD7;
}
:-ms-input-placeholder {
    color: #B1CDD7;
}
::-ms-input-placeholder {
    color: #B1CDD7;
} */
.secondary_color{
    color: var(--secondary-color);
}
.aa_container {
    max-width: 1250px;
    margin: auto;
    width: 100%;
    padding: 0px 15px;
}
/* button css start  */
.aa_btn {
    background: linear-gradient(83.84deg, #8355FF 0%, #FF1DAC 50%, #FFBF10 100%);
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    font-size: 16px;
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    background-size: 100% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.aa_btn:before {
    content: '';
    width: 49px;
    height: 49px;
    top: auto;
    position: absolute;
    bottom: -15px;
    background: rgb(255 255 255);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
}
.aa_btn:active {
    transform: scale(0.95);
}
.aa_btn:hover {
    color: var(--white-color);
    background: linear-gradient(83.84deg, #FFBF10 0%, #FF1DAC 50%, #8355FF 100%);
}
.primary_gradient {
    background: var(--primary-gradient);
}
.organge_gradient {
    background: var(--orange-gradient);
}
.darkBtn {
    background: radial-gradient(50% 50% at 50% 50%, #3B475B 0%, #2B3546 100%);
}
.wbBtnIcon>svg,
.wbBtnIcon>img {
    display: flex;
}
.wbBtnIcon {
    display: inline-flex;
}
.wbBI_L {
    margin-right: 8px;
}
.wbBI_R {
    margin-left: 8px;
}
.btn40 {
    height: 40px;
    font-size: 14px;
}
.btn50 {
    height: 50px;
}
.btn60 {
    height: 60px;
}
.btnP-0-10 {
    padding: 0 10px;
}
.btnP-0-20 {
    padding: 0 20px;
}
.btnP-10 {
    padding: 10px;
}
.btnP-20 {
    padding: 20px;
}
/* max-width btn */
.max-width {
    width: max-content;
    padding: 0 30px;
}
.btnP20 {
    padding: 0 20px;
}
.btnP10 {
    padding: 0 10px;
}

.underline {
    text-decoration: underline;
}
.pb_5 {
    padding-bottom: 5px
}
.pb_10 {
    padding-bottom: 10px
}
.pb_15 {
    padding-bottom: 15px
}
.pb_20 {
    padding-bottom: 20px
}
.pb_30 {
    padding-bottom: 30px
}
.pb_40 {
    padding-bottom: 40px
}
.pb_50 {
    padding-bottom: 50px
}.pb_60 {
    padding-bottom: 60px
}
.pb_70 {
    padding-bottom: 70px
}
.pb_80 {
    padding-bottom: 80px
}
.pt_5 {
    padding-top: 5px
}
.pt_10 {
    padding-top: 10px
}
.pt_15 {
    padding-top: 15px
}
.pt_20 {
    padding-top: 20px
}
.pt_30 {
    padding-top: 30px
}
.pt_40 {
    padding-top: 40px
}
.pt_50 {
    padding-top: 50px
}
.pt_60 {
    padding-top: 60px
}
.pt_70 {
    padding-top: 70px
}
.pt_80 {
    padding-top: 80px
}
.mb_5 {
    margin-bottom: 5px
}
.mb_10 {
    margin-bottom: 10px
}
.mb_15 {
    margin-bottom: 15px
}
.mb_20 {
    margin-bottom: 20px
}
.mb_30 {
    margin-bottom: 30px
}
.mb_40 {
    margin-bottom: 40px
}
.mb_50 {
    margin-bottom: 50px
}
.mb_60 {
    margin-bottom: 60px
}
.mb_70 {
    margin-bottom: 70px
}
.mb_80 {
    margin-bottom: 80px
}
.mt_5 {
    margin-top: 5px
}
.mt_10 {
    margin-top: 10px
}
.mt_15 {
    margin-top: 15px
}
.mt_20 {
    margin-top: 20px
}
.mt_30 {
    margin-top: 30px
}
.mt_40 {
    margin-top: 40px
}
.mt_50 {
    margin-top: 50px
}
.mt_60 {
    margin-top: 60px
}
.mt_70 {
    margin-top: 70px
}
.mt_80 {
    margin-top: 80px
}
.pr_1 {
    padding-right: 1px
}
.pr_2 {
    padding-right: 2px
}
.pr_3 {
    padding-right: 3px
}
.pr_4 {
    padding-right: 4px
}
.pr_5 {
    padding-right: 5px
}
.pr_6 {
    padding-right: 6px
}
.pr_7 {
    padding-right: 7px
}
.pr_8 {
    padding-right: 8px
}
.pr_9 {
    padding-right: 9px
}
.pr_10 {
    padding-right: 10px
}
.pr_15 {
    padding-right: 15px
}
.pr_20 {
    padding-right: 20px
}
.pl_1 {
    padding-left: 1px
}
.pl_2 {
    padding-left: 2px
}
.pl_3 {
    padding-left: 3px
}
.pl_4 {
    padding-left: 4px
}
.pl_5 {
    padding-left: 5px
}
.pl_6 {
    padding-left: 6px
}
.pl_7 {
    padding-left: 7px
}
.pl_8 {
    padding-left: 8px
}
.pl_9 {
    padding-left: 9px
}
.pl_10 {
    padding-left: 10px
}
.pl_15 {
    padding-left: 15px
}
.pl_20 {
    padding-left: 20px
}
.weight300 {
    font-weight: 300;
}
.weight400 {
    font-weight: 400;
}
.weight500 {
    font-weight: 500;
}
.weight600 {
    font-weight: 600;
}
.weight700 {
    font-weight: 700;
}
.weight800 {
    font-weight: 800;
}
.weight900 {
    font-weight: 900;
}
/********************************************************
    .Page CSS Start
********************************************************/
.container {
    max-width: 1200px;
}
.sb_mainWrapper {
    padding: 40px 20px;
    background-image: url(../images/bannerBg.png);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.sb_banner {
    text-align: center;
}
.sb_logoWrap {
    /* width: 280px; */
    margin: 0 auto 20px;
    /* border-radius: 65px;
    background-color: #fff;
    border-left: 7px solid #00989E;
    border-right: 7px solid #00989E;
    padding: 7px; */
}
.sb_logoWra img{
    max-width: 64px;
    width: 100%;
}
.sb_bannerContent_wrap h1 {
    font-weight: 900;
    font-size: 56px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    margin: 38px 0 18px;
}
.sb_themeColor{
    color: var(--primary-color);
}
.sb_yellowText {
    color: var(--yellow-color);
}
.sb_sectionWrap {
    padding: 90px 0 25px;
}
.sb_everyDay_content {
    text-align: center;
}
.sb_bannerContent_wrap h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
    text-transform: lowercase;
}
.sb_bannerContent_wrap h3 span{
    text-transform: none;
}
.sb_bannerContent_wrap {
    margin: 0 auto 0px;
}
.sb_bannerContent_wrap h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 30px;
}
.sb_videoBox {
    max-width: 895px;
    margin: auto;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.sb_videoBox::before{
    content: '';
    position: absolute;
    z-index: 0;
    background-color:#00989E;
    border-radius: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    width: 100%;
}
.sb_videoBox iframe {
    z-index: 11;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
}
.sb_everyDay_content h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 25px;
}
.sb_everyDay_content p {
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.sb_textContent p {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.sb_textContent {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: end;
    margin-bottom: 50px;
}
.sb_coloredBgWrap {
    background-image: url(../images/midBg.png);
    max-width: 1720px;
    margin: 70px auto;
    padding: 90px 20px;
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    background-position: top center;
}
.sb_coloredBgWrap h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
}
.sb_sellerBotContent {
    max-width: 1200px;
    margin: 0px auto 0;
}
.sb_imageWrap.sb_bgOverlay:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 143, 149, 0.2) 0%, rgba(98, 245, 255, 0.2) 100%);
    height: 65%;
    width: 100%;
    border-radius: 20px;
}
.sb_botAiImg {
    position: absolute;
    right: -40px;
    bottom: 0;
}
.sb_imageWrap.sb_bgOverlay {
    position: relative;
    text-align: center;
}
.sb_imageWrap.sb_bgOverlay {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100%;
}
.sb_sellerBotContent .sb_textContent p {
    padding-left: 30px;
}
.sb_sellerBotContent .sb_textContent p:last-child{
    margin-bottom: 0px;
}
.sb_centerSection ul li {
    border: 1px solid #00989E21;
    backdrop-filter: blur(8px);
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px 20px 15px 50px;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    background: #00989E21;
}
.sb_centerSection ul li img {
    position: absolute;
    left: 13px;
    top: 17px;
}
.sb_contentHead {
    text-align: center;
}
.sb_contentHead h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.sb_centerSection img {
    margin-bottom: 40px;
}
.sb_centerSection ul {
    padding: 0;
    max-width: 970px;
    margin: auto;
    text-align: left;
}
.sb_footerWrapper {
    max-width: 1720px;
    margin: 50px auto;
    background-image: url('../images/footerBGnew.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    position: relative;
    padding: 90px 20px;
    border-radius: 20px;
}
.sb_footCenterText_wrap {
    text-align: center;
    max-width: 970px;
    margin: auto;
}
.sb_footCenterText_wrap h3 {
    font-weight: 800;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.sb_footCenterText_wrap h4 {
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    max-width: 800px;
    margin: 0px auto 30px;
}
.sb_btn {
    border: 2px solid #FFFFFF;
    background: #FFB800;
    max-width: 220px;
    height: 64px;
    border-radius: 35.5px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #fff;
    gap: 10px;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-left: 75px;
    margin: 0 auto 30px;
    transition: all 0.3s;
}
.sb_btn:hover{
    background-color: #00989E;
    color: #fff;
}
.sb_btn span {
    width: 52px;
    height: 52px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    position: absolute;
    left: 5px;
    top: 4px;
}
.sb_footAIImg {
    position: absolute;
    bottom: 0;
    left: 40px;
}
@media(max-width:1600px){
    .sb_botAiImg {
        width: 150px;
    }   
    .sb_sellerBotContent .sb_textContent p {
        padding-right: 70px;
    } 
}
@media(max-width:1380px){
    .sb_footAIImg img {
        max-width: 265px;
    }
}
@media(max-width:1320px){
    .sb_botAiImg {
        right: 0px;
        bottom: auto;
        top: -55px;
    }
    .sb_sellerBotContent .sb_textContent p {
        padding-right: 0px;
    }
}
@media(max-width:1200px){
    .sb_footAIImg img {
        max-width: 180px;
    }
    .sb_sellerBotContent .sb_textContent p {
        padding-left: 0px;
        font-size: 16px;
        line-height: normal;
    }
    .sb_coloredBgWrap {
        padding: 50px 20px;
        background-color: #00989e;
        background-image: none;
        border-radius: 20px;
    }
}
@media(max-width:1080px){
    .sb_botAiImg{
        display: none;
    }
}

@media(max-width:991px){
    .sb_footAIImg img {
        display: none;
    }
    .sb_footCenterText_wrap h3 {
        font-size: 24px;
        line-height: 28px
    }
    .sb_footCenterText_wrap h4 {
        font-size: 20px;
        line-height: 28px
    }
    br {
        display: none;
    }
    .sb_videoBox iframe {
        height: fit-content;
        background-color: #fff;
    }
}
@media(max-width:768px){
    .sb_imageWrap.sb_bgOverlay {
        margin-top: 30px;
    }
    .sb_textContent{
        text-align: center;
    }
    .sb_imageWrap {
        text-align: center;
    }
    .sb_bannerContent_wrap h1 {
        font-size: 42px;
        line-height: 54px;
    }
    .sb_everyDay_content h2,
    .sb_coloredBgWrap h2,
    .sb_contentHead h2 {
        font-size: 32px;
        line-height: 40px;
    } 
    .sb_centerSection ul li, 
    .sb_everyDay_content p,
    .sb_bannerContent_wrap h3 {
        font-size: 18px;
        line-height: 24px;
    }   
    .sb_videoBox {
        padding: 10px;
    }
}