@charset "UTF-8";
* {
    --primary-color: #2244BF;
    --primary-color-rgb: 34, 68, 191;
    --thm-yellow-color: #fccf14;
    --thm-yellow-color-rgb: 252, 207, 20;
    --thm-green-color: #1c7c54;
    --thm-green-color-rgb: 28, 124, 84;
    --thm-skyblue-color: #00CEFF;
    --thm-skyblue-color-rgb: 0, 206, 255;
    --thm-purple-color: #9C63EB;
    --thm-purple-color-rgb: 156, 99, 235;
    --thm-coralred-color: #F97366;
    --thm-coralred-color-rgb: 249, 115, 102;
    --background: #F8FBF3;
    --title-font-color: #2D2D2D;
    --body-font-color:#000000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: var(--body-font-color);
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Poppins", serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
}
.sms-bg-coralred{
    background-color: var(--thm-coralred-color);
}
.sms-bg-green{
    background-color: var(--thm-green-color);
}
.txt-primary{
    color:var(--primary-color);
}
.sms-bg-primary{
    background-color: var(--primary-color);
}
.sms-bg-thm-green{
    background-color: var(--thm-green-color);
}
.bg-skyblue{
    background-color: var(--thm-skyblue-color);
}
.bg-purple{
    background-color: var(--thm-purple-color);
}
/*** Animation ***/
@keyframes bounceup {
    50% {
        transform: translateY(15px);
    }
}
/*** Header Style ***/
header.header{
    padding: 10px 0;
}
header.header .logo img{
    display: block;
    max-width: 200px;
    height: auto;
}
header.header .right-col{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}
header.header nav.desktop-menu ul.main-menu{
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
header.header nav.desktop-menu ul.main-menu li a{
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
}
header.header nav.desktop-menu ul.main-menu li a:hover{
    color: var(--thm-green-color);
}
header.header .right-col .user-account-menu a{
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    align-items: center;
    justify-content: center;
    padding: 5px;
}
header.header .right-col .user-account-menu a i{
    font-size: 15px;
    line-height: 15px;
}
header.header .right-col .mmenu-toggle{
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
/*** mobile Menu Style ***/
.mmenu-overlay{
    display: block;
    position: fixed;
    inset: 0;
    transition: all 0.25s;
    background: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
}
.mmenu-active .mmenu-overlay{
    opacity: 0.35;
    visibility: visible;
}
.mmenu-wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    background-color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1.5;
    z-index: 1051;
    transform: translateX(-100%);
    transition: transform 0.25s;
    overflow-y: auto;
    padding:20px 0;
}
.mmenu-active .mmenu-wrap{
    transform: translateX(0);
}
.mmenu-wrap .mmenu-header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 30px 0 30px;
}
.mmenu-wrap .mmenu-header .mmenu-close{
    background: transparent;
    border: 0;
    padding: 0;
    color: #ffffff;
    font-size: 40px;
    line-height: 40px;
    font-weight: 300;
}
.mmenu-wrap .mmenu-body{
    padding: 30px;
}
.mmenu-wrap .mmenu-body .main-title{
    font-size: 35px;
    line-height: 36.5px;
    color: #fff;
    margin-bottom: 30px;
}
.mmenu-wrap ul.main-menu{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.mmenu-wrap ul.main-menu li:not(:last-child){
    /*border-bottom: 1px solid #242527;*/
    margin-bottom: 30px;
}
.mmenu-wrap ul.main-menu li a{
    display: block;
    /*padding: 5px 0;
    margin: 0 10px;*/
    text-decoration: none;
    font-size: 12px;
    line-height: 15.6px;
    color: #ffffff;
}
.mmenu-wrap ul.main-menu li a:hover{
    color:var(--thm-yellow-color);
    font-weight: 500;
}
/*** Title Section ***/
.sms-title-sec{
    position: relative;
    z-index: 10;
}
.sms-title-sec .sub-title{
    font-size: 25px;
    line-height: 26.25px;
    margin-bottom: 0;
}
.sms-title-sec .main-title{
    font-size: 86px;
    line-height: 90.3px;
    font-weight: 600;
    color: var(--title-font-color);
    letter-spacing: -0.02em;
}
.sms-title-sec .sms-txt-block p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}
.sms-title-sec .sms-txt-block p strong{
    font-weight: 600;
}
/*** SMS Button Style ***/
.sms-btn{
    display: block;
    width: fit-content;
    max-width: 100%;
    font-size: 18px;
}
.sms-btn.style-3{
    display: block;
    width: fit-content;
    color: var(--primary-color);
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}
.sms-btn i{
    margin-left: 10px;
    transform: rotate(-50deg);
    transition: transform 0.25s;
}
.sms-btn:hover i{
    transform: rotate(0);
}
.sms-btn-2{
    background: #fff;
    border: 0;
    padding: 5px 15px;
    border-radius: 20px !important;
    color: var(--thm-green-color);
}
.sms-btn-2:hover{
    background: transparent;
    border: 1px solid var(--title-font-color);
    color:var(--title-font-color);
}
.sms-btn-primary{
    width: 136px;
    height: 40px;
    display: flex;line-height: 40px;
    background: var(--primary-color);
    text-align: center;
    justify-content: center;
    border-radius: 23px;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 18px;
}
.sms-btn-primary.outline{
    background-color: transparent;
    color:var(--primary-color);
    border: 1px solid var(--primary-color);
}
.sms-btn-primary.outline:hover{
    background: var(--primary-color);
    color:#ffffff;
}
.sms-btn-primary:hover{
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
/*** Welcome Section ***/
/*section:not(.sms-wel-sec) .sms-title-sec .main-title{
    font-size: 35px;
    line-height: 36.75px;
}*/
.sms-wel-sec{
    padding: 50px 0 0;
}
.sms-wel-sec img{
    display: block;
    max-width: 100%;
    margin-left: -20px;
}
.sms-wel-sec .content-block{
    /*max-width: 353px;*/
    display: block;
    margin-left: -168px;
    /*margin-top: 53px;*/
}
.sms-wel-sec .content-block .sms-txt-box p{
    font-size: 43px;
    line-height: 51px;
}
.sms-home-sec-2{
    padding-top: 120px;
}
.sms-home-sec-2 .row{
    align-items: self-end;
}
.sms-home-sec-2 .img-1{
    display: block;
    max-width: 100%;
    margin-right: -15px;
}
.sms-home-sec-2 .img-2{
    position: absolute;
    max-width: 422px;
    top: -97px;
    left: 0;
}
.sms-home-sec-2 .chat-txt{
    position: absolute;
    top: -5%;
    left: 5%;
    z-index: 2;
    max-width: 212px;
    font-size: 21px;
    line-height: 26.2px;
    font-weight: 600;
}
.sms-home-sec-2 .content-block{
    display: block;
    margin-left: 50px;
}
.sms-home-sec-2 .content-block .sms-title-sec .main-title{
    max-width: 408px;
}
.sms-home-sec-2 .content-block .sms-txt-box p{
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}
.sms-home-sec-3{
    min-height:500px;
}
.sms-home-sec-3 .img-1{
    max-width: 70%;
}
.sms-home-sec-3 .row .content-col{
    background-color: var(--primary-color);
    border-top-left-radius:6px;
}
.sms-home-sec-3 .content-block .sms-txt-box p{
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #fff;;
}
.sms-home-sec-3 .content-block .sms-txt-box p strong{
    color:var(--thm-yellow-color);
}
.sms-home-sec-3 .content-block{
    padding: 70px 100px 120px 50px;
}
/*.sms-home-sec-3 .content-block .sms-title-sec .main-title{
    font-size: 60px;
    line-height: 70.3px;
}*/
.sms-home-sec-3 .rect-shape{
    background: var(--primary-color);
    width: 56.2%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}
.sms-home-sec-3 .img-1{
    position: absolute;
    top: 2px;
    right: 0;
    /* max-height: 100vh; */
    width: 101px;
    z-index: 1;
    opacity: 0.9;
}
.sms-home-sec-3 .img-2{
    position: absolute;
    max-width: 365px;
    right: 5%;
    bottom: 0;
}
/*.sms-home-sec-4 .sms-title-sec .main-title{
    max-width: 300px;
}*/
/*** Scenario Section ***/
.sms-scenario-sec{
    overflow: hidden;
}
.scenario-carousel .scenario-wrapper .swiper-slide{
    overflow: hidden;
    height: auto;
}
.scenario-carousel.first-slide .swiper-button-next i{
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@keyframes bounce {
    50% {
        transform: translateX(15px);
    }
}
.scenario-carousel.first-slide .swiper-button-disabled{
    display: none;
}
.scenario-carousel .scenario-wrapper .swiper-slide .scenario-item{
    height: 100%;
}
.scenario-carousel .sms-swiper-btn{
    bottom: 50px;
    top: unset;
    border: 1px solid #fff;
    color: #fff;
}
.scenario-carousel .swiper-button-prev{
    left: 60px;
}
.scenario-carousel .swiper-button-next{
    right: 60px;
}
.scenario-item.main-scenario{
    display: flex;
    flex-direction: column;
}
.scenario-item.main-scenario .top-sec{
    padding: 30px 0;
    height: auto;
}
.scenario-item.main-scenario .bottom-sec{
    flex: 1;
}
.scenario-item.main-scenario .bottom-sec .row{
    height: 100%;
}
.scenario-item.main-scenario .top-sec .content-block{
    padding-left: 60px;
}
.scenario-item .bottom-sec .content-col{
    position: relative;
    padding: 50px;
}
.scenario-item.main-scenario .bottom-sec .content-col{
    padding-bottom: 80px;
    padding-left: 101px;
}
.scenario-item.main-scenario .bottom-sec .content-col.left{
    border-top-right-radius: 195px;
    border-bottom-right-radius: 195px;
}
.scenario-item.main-scenario .bottom-sec .content-col.right{
    border-top-left-radius: 195px;
    border-bottom-left-radius: 195px;
}
.scenario-item .content .title{
    font-size: 20px;
    color:#ffffff
}
.scenario-item .scenario-list{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.scenario-item .scenario-list li{
    display: flex;
    align-items: center;
    color: #ffffff;
}
.scenario-item .scenario-list li:not(:last-child){
    margin-bottom: 3px;
}
.scenario-item .scenario-list li svg{
    width: 20px;
    margin-right: 3px;
}
.scenario-item .scenario-list.two-col li .right-col{
    font-weight: 200;
    font-size: 14px;
}
.scenario-item .scenario-list.two-col li .left-col{
    margin-right: 3px;
    width: 34%;
}
.scenario-item .scenario-list.borderd{
    border: 0;
    border-top: 0.5px;
    border-bottom: 0.5px;
    border-style: dotted;
    border-color: #ffffff;
}
.scenario-item .scenario-list.borderd li:not(:last-child){
    border-bottom: 0.5px #ffffff dotted;
}
.scenario-item .bottom-sec .content-col .rectangle{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}
.scenario-item .bottom-sec .content-col.left .rectangle{
    width: 68%;
}
.scenario-item .bottom-sec .content-col.right .rectangle{
    width: 75%;
}
.scenario-item .bottom-sec .content-col .rectangle.p-right{
    right: 0;
    left: unset;
}
.scenario-item .bottom-sec .content-col .ellipse-container{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.scenario-item .bottom-sec .content-col .ellipse{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: -1;
    box-sizing: border-box;
}
.scenario-item .bottom-sec .content-col.left .ellipse{
    width: 68%;
}
.scenario-item .bottom-sec .content-col.right .ellipse{
    width: 34%;
}
.scenario-item .bottom-sec .content-col .ellipse.p-left{
    right: unset;
    left: 0;
}
.scenario-item .bottom-sec .content-col .content{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.scenario-item.style-2 .top-sec{
    padding-top: 48px;
    padding-bottom: 48px;
}
.scenario-item.style-2 .title-block{
    display: flex;
    align-items: center;
    gap: 5px;
}
.scenario-item.style-2 .title-block .left .main-title{
    font-size: 50px;
    font-weight: 600;
}
.scenario-item.style-2 .title-block .right{
    display: flex;
    align-items: center;
    gap: 18px;
}
.scenario-item.style-2 .title-block .right img.no-icon{
    max-height: 50px;
}
.scenario-item.style-2 .title-block .right .v-line{
    display: block;
    width: 3px;
    height: 39px;
    background-color: var(--title-font-color);
}
.scenario-item.style-2 .title-block .right p{
    margin: 0;
    font-size: 15px;
    line-height: 17.25px;
    font-weight: 600;
}
.scenario-item.style-2 .middle-sec .img-block{
    display: block;
    position: relative;
    margin: 0 -14px;
    z-index: 4;
}
.scenario-item.style-2 .middle-sec .img-block img{
    max-width: 100%;
    position: relative;
    z-index: 2;
}
.scenario-item.style-2 .middle-sec .content p{
    color:#ffffff;
}
.scenario-item.style-2 .middle-sec .left-col, .scenario-item.style-2 .middle-sec .right-col{
    padding: 30px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}
.scenario-item.style-2 .middle-sec .left-col{
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
}
.scenario-item.style-2 .middle-sec .right-col{
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    padding-left: 90px;
}
.scenario-item.style-2 .bottom-sec{
    position: relative;
    margin-top: -186px;
    padding: 240px 50px 30px 50px;
    overflow: hidden;
}
.scenario-item.style-2 .bottom-sec img.cover-img{
    position: relative;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
}
.scenario-item.style-2 .bottom-sec::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-color-rgb),0.8);
    z-index: 1;
}
.scenario-item.style-2 .bottom-sec .info-box{
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
    padding: 10px 70px;
    background-color: rgba(0,0,139,0.6);
    /*mix-blend-mode: multiply;*/
    position: relative;
    z-index: 5;
    color: #ffffff;
    border-radius: 50px;

}
.scenario-item.style-2 .bottom-sec .info-box .title-box img{
    max-width: 30px;
}
.scenario-item.style-2 .bottom-sec .info-box .title-box h5{
    border-bottom: 3px solid #ffffff;
    margin: 0;
    font-weight: 400;
}
.scenario-item.style-2 .bottom-sec .info-box .list-box p{
    margin-bottom: 5px;
}
.scenario-item.style-2 .bottom-sec .info-box .list-box .icon-list{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.info-box .list-box .icon-list li{
    display: flex;
    align-items: center;
    gap: 5px;
}
.info-box .list-box .icon-list li img{
    max-width: 14px;
}
/* mobile design */
.scenario-item.main-scenario .bottom-sec .content-col.mobile-list{
    padding: 0;
    width: 100%;
}
.scenario-item .content-col.mobile-list table.content thead tr th{
    padding-top: 35px;
}
.scenario-item .content-col.mobile-list table.content tbody tr:last-child td{
    padding-bottom: 35px;
    border-bottom-right-radius: 15px;
}

.scenario-item .content-col.mobile-list table.content tbody tr td:first-child, .scenario-item .content-col.mobile-list table.content thead tr th:first-child{
    background-color: var(--thm-coralred-color);
    position: relative;
    z-index: 2;
}
.scenario-item .content-col.mobile-list table.content tbody tr td:last-child, .scenario-item .content-col.mobile-list table.content thead tr th:last-child{
    background-color: var(--thm-green-color);
    position: relative;
    left: -10px;
}
.content-col.mobile-list table.content thead tr th{
    border-top-right-radius: 15px;
}
.scenario-item .content-col.mobile-list table.content tbody tr td, .scenario-item .content-col.mobile-list table.content tr th{
    padding: 5px 35px;
    width: 50%;
    vertical-align: baseline;
}
.scenario-item .content-col.mobile-list table ul.two-col li{
    display: block;
}
.scenario-item .content-col.mobile-list table ul.two-col li .left-col{
    display: flex;
    align-items: flex-start;
}
.scenario-item .content-col.mobile-list table ul.two-col li .right-col{
    padding-left: 14px;
    padding-top: 5px;
}
.scenario-item .content-col.mobile-list table ul.two-col li .left-col, .scenario-item .content-col.mobile-list table ul.two-col li .right-col{
    width: 100%;
}
.scenario-item .content-col.mobile-list table ul li{
    padding-bottom: 5px;
}

/*** Graph Section ***/
.sms-home-sec-5{
    padding-top: 50px;
}
.sms-home-sec-5 .sms-title-sec{
    margin-bottom: -125px;
    max-width: 680px;
}

.sms-home-sec-5 .sms-title-sec .sms-txt-box{
    max-width: 512px;
}
.sms-home-sec-5 .sms-pro-graph-sec{
    display: block;
}
.sms-home-sec-5 .sms-pro-graph-sec .wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: self-end;
}
.sms-home-sec-5 .sms-pro-graph-sec .wrapper img.progress-line{
    position: absolute;
    width: 45%;
    right: 2%;
}
.sms-home-sec-5 .sms-pro-graph-sec .pro-bar{
    background-color: rgba(var(--thm-green-color-rgb),0.2);
    width: 15%;
    min-height: 30px;
    padding: 10px;
    border-top-left-radius: 20px;
}
.sms-home-sec-5 .sms-pro-graph-sec .pro-bar img{
    max-width: 80px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-2 img{
    
    margin-top: -163px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-3 img{
    
    margin-top: -125px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-4 img{
    
    margin-top: -114px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-5 img{
    
    margin-top: -192px;
}
.sms-home-sec-5 .sms-pro-graph-sec .pro-bar h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 5px;
}
.sms-home-sec-5 .sms-pro-graph-sec .pro-bar.group-5 h3{
    margin-right: -40px;
}
.sms-home-sec-5 .sms-pro-graph-sec .pro-bar p{
    margin-bottom: 5px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-3{
    height: 190px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-4{
    height: 270px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-5{
    height: 350px;
}
.sms-home-sec-5 .sms-pro-graph-sec .group-6{
    height: 430px;
}
/*** Assesment Section ***/
.desktop-ver svg .st0, .desktop-ver svg .st1, .desktop-ver svg .st2, .desktop-ver svg .st3, .desktop-ver svg .st4, .desktop-ver svg .st5, .desktop-ver svg .st6, .desktop-ver svg .st7 {
    fill: none;
}
.desktop-ver svg .st8 {
fill: #f9f9f6;
}
.desktop-ver svg .st9, .desktop-ver svg .st10 {
fill: #231f20;
}
.desktop-ver svg .st11 {
fill: #eaebe8;
}
.desktop-ver svg .st10 {
fill-opacity: .2;
}
.desktop-ver svg .st12, .desktop-ver svg .st13, .desktop-ver svg .st14 {
fill: #2244be;
}
.desktop-ver svg .st12, .desktop-ver svg .st15 {
fill-opacity: .8;
}
.desktop-ver svg .st13, .desktop-ver svg .st16 {
fill-opacity: .6;
}
.desktop-ver svg .st17 {
fill: #eeeeeb;
}
.desktop-ver svg .st18, .desktop-ver svg .st19, .desktop-ver svg .st20 {
fill: #fccf14;
}
.desktop-ver svg .st21 {
isolation: isolate;
}
.desktop-ver svg .st22 {
fill: #9c63eb;
}
.desktop-ver svg .st23 {
clip-path: url(#clippath-1);
}
.desktop-ver svg .st24 {
clip-path: url(#clippath-3);
}
.desktop-ver svg .st25 {
clip-path: url(#clippath-4);
}
.desktop-ver svg .st26 {
clip-path: url(#clippath-2);
}
.desktop-ver svg .st27 {
clip-path: url(#clippath-7);
}
.desktop-ver svg .st28 {
clip-path: url(#clippath-6);
}
.desktop-ver svg .st29 {
clip-path: url(#clippath-8);
}
.desktop-ver svg .st30 {
clip-path: url(#clippath-5);
}
.desktop-ver svg .st31 {
mix-blend-mode: hard-light;
}
.desktop-ver svg .st32 {
fill: #b32b4b;
}
.desktop-ver svg .st33 {
fill: #00ceff;
}
.desktop-ver svg .st19 {
fill-opacity: .7;
}
.desktop-ver svg .st20 {
fill-opacity: .5;
}
.desktop-ver svg .st34, .desktop-ver svg .st35 {
fill: #fff;
}
.desktop-ver svg .st1 {
stroke-width: 2.9px;
}
.desktop-ver svg .st1, .desktop-ver svg .st2, .desktop-ver svg .st3, .desktop-ver svg .st4, .desktop-ver svg .st5, .desktop-ver svg .st6, .desktop-ver svg .st35 {
stroke: #000;
}
.desktop-ver svg .st1, .desktop-ver svg .st2, .desktop-ver svg .st3, .desktop-ver svg .st4, .desktop-ver svg .st5, .desktop-ver svg .st6, .desktop-ver svg .st35, .desktop-ver svg .st7 {
stroke-linecap: round;
}
.desktop-ver svg .st2 {
stroke-width: 2.7px;
}
.desktop-ver svg .st3 {
stroke-width: 2.4px;
}
.desktop-ver svg .st4, .desktop-ver svg .st35 {
stroke-width: 2.5px;
}
.desktop-ver svg .st5 {
stroke-width: 3.3px;
}
.desktop-ver svg .st36 {
fill: #ff6c3c;
}
.desktop-ver svg .st6, .desktop-ver svg .st7 {
stroke-width: 3.5px;
}
.desktop-ver svg .st37 {
fill: #bf2e50;
}
.desktop-ver svg .st38 {
fill: #fefefe;
}
.desktop-ver svg .st39 {
fill: #77b098;
}
.desktop-ver svg .st40 {
fill: #db4056;
}
.desktop-ver svg .st41 {
fill: #241f20;
}
.desktop-ver svg .st42 {
fill: #0a0a0a;
}
.desktop-ver svg .st43 {
fill: #fafaf7;
}
.desktop-ver svg .st44 {
fill: #4e69cb;
}
.desktop-ver svg .st45 {
fill: #f7941d;
}
.desktop-ver svg .st15, .desktop-ver svg .st16, .desktop-ver svg .st46 {
fill: #1c7c54;
}
.desktop-ver svg .st47 {
fill: #a32545;
}
.desktop-ver svg .st48 {
clip-path: url(#clippath);
}
.desktop-ver svg .st49 {
fill: #161616;
}
.desktop-ver svg .st50 {
fill: #499676;
}
.desktop-ver svg .st7 {
stroke: #0a0a0a;
}
.desktop-ver svg .st51 {
fill: #fddd5b;
}
.mobile-version .st7{
    stroke: none;
}
.mobile-version .st0, .mobile-version .st1, .mobile-version .st2, .mobile-version .st3, .mobile-version .st4, .mobile-version .st5, .mobile-version .st6 {
    stroke-linecap: round;
  }

  .mobile-version .st0, .mobile-version .st2, .mobile-version .st3, .mobile-version .st4, .mobile-version .st5, .mobile-version .st6 {
    stroke: #000;
  }

  .mobile-version .st0, .mobile-version .st7 {
    fill: #fff;
  }

  .mobile-version .st8 {
    fill: #fccf14;
  }

  .mobile-version .st1 {
    stroke: #0a0a0a;
  }

  .mobile-version .st1, .mobile-version .st2, .mobile-version .st3, .mobile-version .st4, .mobile-version .st5, .mobile-version .st6 {
    fill: none;
  }

  .mobile-version .st1, .mobile-version .st4 {
    stroke-width: 1.1px;
  }

  .mobile-version .st9 {
    fill: #9c63eb;
  }

  .mobile-version .st10 {
    fill: #b32b4b;
  }

  .mobile-version .st11 {
    fill: #ff6c3c;
  }

  .mobile-version .st12 {
    fill: #bf2e50;
  }

  .mobile-version .st13 {
    fill: #db4056;
  }

  .mobile-version .st14 {
    fill: #a32545;
  }

  .mobile-version .st15 {
    fill: #2244be;
  }

  .mobile-version .st3 {
    stroke-width: 1.3px;
  }

  .mobile-version .st16 {
    fill: #1c7c54;
  }

  .mobile-version .st5 {
    stroke-width: 1.2px;
  }

  .mobile-version .st6 {
    stroke-width: .9px;
  }
/*** Founder Profile Card Style ***/
.founder-wrapper::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/resources/&.png);
    background-position: top left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.founder-card{
    display: flex;
    position: relative;
    z-index: 2;
    min-height: 390px;
}
.founder-card .left-wrap{
    position: relative;
    padding: 50px 50px;
    color: #ffffff;
}
.founder-card .left-wrap::before{
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
}
.founder-card.bg-1 .left-wrap::before{
    background: rgba(var(--thm-purple-color-rgb), 0.9);
}
.founder-card.bg-2 .left-wrap::before{
    background: rgba(var(--thm-skyblue-color-rgb), 0.9);
}
.founder-card .left-wrap.right-img .founder-img{
    max-width:45%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.founder-card .left-wrap.left-img .founder-img{
    /*max-width: 36%;*/
    max-width: 56%;
    position: absolute;
    left: 10px;
    bottom: 0;
    z-index: 1;
    /*transform: rotate(4deg);*/
}
.founder-card .left-wrap.right-img .txt-box{
    text-align: right;
    max-width: 280px;
    position: relative;
    z-index: 2;
    margin-top: 36px;
}
.founder-card .left-wrap.left-img{
    display: flex;
    align-items: center;
}
.founder-card .left-wrap.left-img .txt-box{
    /*margin-left: 194px;*/
    margin-left: 290px;
    position: relative;
    z-index: 2;
    max-width: 162px;
    color: var(--primary-color);
}
.founder-card .txt-box h2.founder-name{
    font-size: 40px;
    line-height: 42px;
    font-weight: 600;
    margin-bottom: 0;
}
.founder-card .txt-box .txt-greet{
    margin: 0;
    position: absolute;
    color: #9C63EB;
    text-transform: uppercase;
    z-index: 2;
    display: none;
}
.founder-card .left-wrap.right-img .txt-box .txt-greet{
    top: 10px;
    left: 45px;
}
.founder-card .left-wrap.left-img .txt-box .txt-greet{
    top: 49px;
    right: 5px;
}
.founder-card .left-wrap.right-img .txt-box .founder-desig{
    text-transform: uppercase;
}
/*.founder-card .founder-img{
    position: relative !important;
    inset: unset;
}*/
.founder-card img.greet-vector{
    position: absolute;
    max-width: 52px;
    z-index: 1;
    display: none;
}
.founder-card .left-wrap.right-img img.greet-vector{
    top: 5px;
    left: 40px;
}
.founder-card .left-wrap.left-img img.greet-vector{
    right: 0;
    top: 43px;
}
.founder-card .right-wrap{
    background-color: #ffffff;
    padding: 10px 50px;
}
.founder-card .right-wrap .founder-intro h3.f-name{
    font-size: 22px;
}
/*** Home Section 8 ***/
.sms-home-sec-8 .img-block img{
    max-width: 200px;
    margin: 0 auto;
}
.sms-home-sec-9 .img-block img{
    float: right;
    position: relative;
    right: 50px;
}
.sms-home-sec-9 .text-block p{
    max-width: 570px;
}
/*** Contact Section ***/
/*.sms-contact-sec .sms-title-sec{
    max-width: 60%;
}*/
.sms-contact-sec .contact-form-wrapper{
    display: block;
    width: 100%;
    max-width: 95%;
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 50px;
}
.sms-contact-sec .contact-form-wrapper .sms-form label{
    color: #ffffff;
    padding-right: 20px;
}
.sms-contact-sec .contact-form-wrapper .sms-form .input-group:not(:last-child){
    margin-bottom: 20px;
}
.sms-contact-sec .contact-form-wrapper .sms-form input{
    background-color: transparent;
    color: #ffffff;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.sms-contact-sec .contact-form-wrapper .sms-form input:focus{
    background-color: transparent;
}
.sms-contact-sec .contact-form-wrapper .sms-form input:focus-visible, .sms-contact-sec .contact-form-wrapper .sms-form textarea:focus-visible{
    box-shadow: unset;
    border-radius: 0;
    color: #ffffff;
    outline: unset;
}
.sms-contact-sec .contact-form-wrapper .sms-form input[type="text"]{
    width: 50%;
}
.sms-contact-sec .contact-form-wrapper .sms-form textarea{
    border: 0;
    background-color: transparent;
    width: 90%;
    background: repeating-linear-gradient(transparent 0px, transparent 29px, #fff 30px);
    height: 147px;
    color: #ffffff;
}
.sms-contact-info-box a{
    color:var(--thm-yellow-color);
}
.sms-contact-info-box p:not(:last-child){
    margin-bottom: 10px;
}
.sms-contact-info-box p:last-child{
    margin-bottom: 0px;
}
/*** Founder Section ***/
.sms-founder-section.mobile-version .sms-title-sec{
    padding: 0 20px;
}
.sms-founder-section.mobile-version .founder-wrapper{
    overflow: hidden;
}
.sms-founder-section.mobile-version .founder-wrapper::before{
    background-position: center;
    background-size: contain;
    display:none;
}
.sms-founder-section.mobile-version .founder-card{
    display: flex;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    align-items:flex-end;
    opacity: 0.9;
    position: relative;
}
.sms-founder-section.mobile-version .founder-card::before{
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    clip-path: ellipse(100% 100% at top);
    background-color: #ffffff;
    z-index: 2;
}
.sms-founder-section.mobile-version .founder-card.founder-1::before{
    top: -40%;
}
.sms-founder-section.mobile-version .founder-card.founder-2::before{
    bottom: -37%;
    clip-path: ellipse(100% 100% at bottom);
}
.sms-founder-section.mobile-version .founder-card .founder-img{
    max-width: 219px;
    position: relative;
    z-index: 1;
}
.sms-founder-section.mobile-version .founder-card.founder-1{
    padding-top: 50px;
}
.sms-founder-section.mobile-version .founder-card.founder-2{
    padding-bottom: 50px;
}
.sms-founder-section.mobile-version .founder-card.founder-1 .img-wrap{
    margin-left: -30px;
    margin-bottom: -23px;
}
.sms-founder-section.mobile-version .founder-card.founder-2 .img-wrap{
    margin-right: -20px;
    margin-bottom: -30px;
}
.sms-founder-section.mobile-version .founder-card .txt-box{
    max-width: fit-content;
    position: relative;
}
.sms-founder-section.mobile-version .founder-card.founder-1 .txt-box{
    position: relative;
    margin-left: -20px;
}
.sms-founder-section.mobile-version .founder-card .txt-box h2.founder-name{
    font-size: 21px;
    line-height: 22.06px;
    max-width: 100px;
}
.sms-founder-section.mobile-version .founder-card .txt-box .founder-desig{
    font-size: 12px;
    line-height: 14.4px;
}
.sms-founder-section.mobile-version .founder-card.founder-1 .txt-box .founder-desig{
    max-width: 110px;
}
.sms-founder-section.mobile-version .founder-card .founder-intro p{
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 10px;
}
.sms-founder-section.mobile-version .founder-card.founder-2 .founder-intro p.first-para{
    margin-right: -60px;
}
.sms-founder-section.mobile-version .founder-card img.greet-vector{
    max-width: 46px;
}
.sms-founder-section.mobile-version .founder-card.founder-1 img.greet-vector{
    top: 10px;
    right: 0;
}
.sms-founder-section.mobile-version .founder-card.founder-2 img.greet-vector{
    top: 10px;
    right: 10px;
}
.sms-founder-section.mobile-version .founder-card .txt-box .txt-greet{
    font-size: 15px;
    line-height: 18px;
}
.sms-founder-section.mobile-version .founder-card.founder-1 .txt-box .txt-greet{
    top: 15px;
    right: 5px;
}
.sms-founder-section.mobile-version .founder-card.founder-2 .txt-box .txt-greet{
    top: 15px;
    right: 15px;
}
/*** Testimonial Section ***/
.sms-testimonial-sec .sms-testimonial-carousel{
    padding-top: 100px;
    overflow: visible;
}
.sms-testimonial-item .testi-img{
    max-width: 180px;
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -120px;
}
.sms-testimonial-item .testi-content{
    background-color: rgba(var(--primary-color-rgb),15%);
    padding: 30px;
    text-align: center;
    border-top-left-radius: 37px;
    border-top-right-radius: 37px;
    /*min-height: 418px;*/
}
.sms-testimonial-item .testi-content p{
    margin: 10px 0 0 0;
    color: var(--primary-color);
}
.sms-testimonial-item .user-info{
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    border-bottom-left-radius: 37px;
    border-bottom-right-radius: 37px;
    min-height: 115px;
}
.sms-testimonial-item .user-info .user-name{
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
}
.sms-testimonial-item .user-info .user-desig{
    margin: 0;
    font-size: 18px;
    line-height: 23px;
    font-weight: 500;
}
.sms-testimonial-carousel .swiper-button-next, .sms-testimonial-carousel .swiper-button-prev{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.sms-testimonial-carousel .swiper-button-next:after, .sms-testimonial-carousel .swiper-button-prev:after{
    display: none;
}
.sms-testimonial-carousel .swiper-button-prev{
    left: -40px;
}
.sms-testimonial-carousel .swiper-button-next{
    right: -40px;
}
@media(max-width:767px){
    .sms-testimonial-sec .sms-testimonial-carousel{
        padding-left: 30px;
        padding-right: 30px;
    }
    .sms-testimonial-carousel .swiper-button-prev{
        left: -10px;
    }
    .sms-testimonial-carousel .swiper-button-next{
        right: -10px;
    }
}
@media(max-width:575px){
    
    /*.sms-testimonial-item .testi-content{
        min-height: 383px;
    }*/
    .sms-testimonial-item .user-info .user-name {
        font-size: 18px;
        line-height: 23px;
    }
    .sms-testimonial-item .user-info .user-desig{
        font-size: 14px;
        line-height: 18px;
    }
    .sms-testimonial-item .user-info{
        min-height: 97px;
    }
}
/*** FAQ Style ***/
.faq-section{
    padding-top: 50px;
}
.faq-wrapper .faq-item{
    display: block;
    width: 100%;
    position: relative;
}
.faq-wrapper .faq-item.hidden{
    display: none;
}
.faq-wrapper .faq-item:not(:last-child){
    margin-bottom: 15px;
}
.faq-wrapper .faq-item .faq-question{
    display: flex;
    width: 100%;
    position: relative;
    background-color: rgba(var(--primary-color-rgb),0.15);
    color: var(--primary-color);
    padding: 10px 10px;
    text-transform: capitalize;
    justify-content: space-between;
    align-items: center;
    border: 0;
    border-radius: 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    cursor: pointer;
    gap: 15px;
}
.faq-wrapper .faq-item .faq-question.active{
    background-color: var(--primary-color);
    color: #ffffff;
}
.faq-wrapper .faq-item .faq-question .faq-icon{
    color: var(--thm-yellow-color);
    font-weight: 600;
    font-size: 25px;
}
.faq-wrapper .faq-item .faq-answer{
    display: none;
    position: relative;
    width: 100%;
    padding: 15px;
    /*background-color: rgba(var(--primary-color-rgb),0.2);*/
}
.faq-wrapper .faq-item .faq-answer h6{
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}
.faq-wrapper .faq-item .faq-answer strong{
    font-weight: 500;
}
.faq-wrapper .faq-item .faq-answer p:last-child{
    margin-bottom: 0;
}
.faq-buttons #loadLess{
    display: none;
}
/*** Blog Style ***/
.sms-blog-item, .sms-blog-item a, .sms-blog-item, .sms-blog-item .blog-header, .sms-blog-item .blog-body{
    display: block;
    width: 100%;
    position: relative;
}
.sms-blog-item a{
    /*box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);*/
    border-radius: 1em;
    background-color: rgba(34, 68, 190, 0.1);
}
.sms-blog-item a{
    height: 100%;
    text-decoration: none;
}
.sms-blog-item .blog-header img{
    width: 100%;
    max-width: 100%;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
}
.sms-blog-item .blog-body{
    padding: 10px;
}
.sms-blog-item .blog-body .tag{
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
    display: block;
    width: fit-content;
    font-size: 12px;
    margin-bottom: 5px;
}
.sms-blog-item .blog-body h4{
    font-size: 20px;
    line-height: 26px;
    color: var(--title-font-color);
}
.sms-blog-item .blog-body p{
    margin-bottom: 0;
    color: var(--body-font-color);
}
.sms-blog-item .blog-footer{
    display: flex;
    padding: 10px;
    gap: 10px;
    align-items: flex-start;
}
.sms-blog-item .blog-footer img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.sms-blog-item .blog-footer .user-info{
    display: block;
    width: 100%;
}
.sms-blog-item .blog-footer .user-info h5{
    font-size: 16px;
    color: var(--title-font-color);
    margin-bottom: 0;
    line-height: 20px;
}
.sms-blog-carousel{
    position: relative;
    overflow: hidden;
}
.sms-blog-carousel .sms-swiper-btn {
    background: var(--primary-color);
    color: #ffffff;
}
.sms-blog-item .blog-body .tag.tag-green{
    background-color: var(--thm-green-color);
}
.sms-blog-item .blog-body .tag.tag-skyblue{
    background-color: var(--thm-skyblue-color);
}
.sms-blog-item .blog-body .tag.tag-purple{
    background-color: var(--thm-purple-color);
}
/*** Course Listing Style ***/
/* Style 1 */
.sms-course-item.style-1{
    display: block;
    position: relative;
    background-color: rgba(var(--primary-color-rgb),0.2);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 100px;
}
.sms-course-item.style-1.color-style-green{
    background-color: rgba(var(--thm-green-color-rgb),0.2);
}
.sms-course-item.style-1.color-style-purple{
    background-color: rgba(var(--thm-purple-color-rgb),0.2);
}
.sms-course-item.style-1.color-style-coralred{
    background-color: rgba(var(--thm-coralred-color-rgb),0.2);
}
.sms-course-item.style-1 .heading{
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    padding: 10px 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.sms-course-item.style-1.color-style-green .heading{
    background-color: var(--thm-green-color);
}
.sms-course-item.style-1.color-style-purple .heading{
    background-color: var(--thm-purple-color);
}
.sms-course-item.style-1.color-style-coralred .heading{
    background-color: var(--thm-coralred-color);
}
.sms-course-item.style-1 .heading img{
    max-width: 50px;
    margin-right: 10px;
}
.sms-course-item.style-1 .heading h2{
    color: #ffffff;
    margin: 0;
    font-size: 24px;
    line-height: 34px;
}
.sms-course-item .content{
    display: block;
    position: relative;
    width: 100%;
    padding: 15px;
}
.sms-course-item .content a{
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 20px;
}
.sms-course-item.style-1 .content a{
    background-color: var(--primary-color);
    color: #ffffff;
}
.sms-course-item.style-1.color-style-purple .content a{
    background-color: var(--thm-purple-color);
    color: #ffffff;
}
.sms-course-item.style-1.color-style-green .content a{
    background-color: var(--thm-green-color);
    color: #ffffff;
}
.sms-course-item.style-1.color-style-coralred .content a{
    background-color: var(--thm-coralred-color);
    color: #ffffff;
}
/* Style 2 */
.sms-course-item.style-2{
    display: flex;
    position: relative;
    background-color: rgba(var(--thm-skyblue-color-rgb),0.2);
    border-top-left-radius: 35px;
    border-bottom-left-radius: 100px;
}
.sms-course-item.style-2 .heading{
    background-color: var(--thm-skyblue-color);
    padding: 40px 15px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 100px;
    max-width: 100px;
}
.sms-course-item.style-2 .heading h2{
    margin: 0;
    transform: rotate(90deg);
    color: #ffffff;
}
.sms-course-item.style-2 .heading h2 span{
    margin:0 5px
}
.sms-course-item.style-2 .content{
    padding: 20px;
}
.sms-course-item.style-2 .content .main-title{
    color: var(--thm-skyblue-color);
}
.sms-course-item.style-1.color-style-green .content .main-title{
    color:var(--thm-green-color);
}
.sms-course-item.style-2 .content a{
    background-color: var(--thm-skyblue-color);
    color: var(--body-font-color);
}
.sms-course-carousel-wrapper .swiper-slide{
    display: flex;
    align-items: stretch;
    height: auto;
}
.sms-course-carousel{
    position: relative;
}
.sms-course-carousel.first-slide .swiper-button-prev{
    display: none;
}
.sms-course-carousel.first-slide .swiper-button-next i{
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.sms-course-carousel .swiper-button-next, .sms-course-carousel .swiper-button-prev{
    top: -30px;
}
.sms-course-carousel .swiper-button-prev{
    left: unset;
    right: 65px;
}
/*** Swiper Navigation ***/
.sms-swiper-btn::after{
    content: "";
    display: none;
}
.sms-swiper-btn{
    background: rgba(34, 68, 190, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*** Footer Style ***/
.footer-wrapper{
    display: flex;
    align-items: stretch;
}
.footer-wrapper .left-wrap{
    width: 95%;
    padding: 30px 0;
    background-color: var(--primary-color);
}
.footer-wrapper .right-wrap{
    width: 5%;
    padding: 30px 0;
    background-color: var(--thm-yellow-color);
}
.footer-wrapper .logo-block{
    display: flex;
    background: #fff;
    justify-content: flex-end;
    padding: 20px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 90%;
}
.footer-wrapper .logo-block img{
    max-width: 76px;
}
.footer-wrapper .title-block{
    float: right;
    width: 78%;
    margin-top: 10px;
}
.footer-wrapper .title-block h2{
    color: #fff;
    font-size: 23px;
}
.footer-wrapper .right-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-wrapper .right-wrap .back-to-top-block{
    transform: rotate(270deg);
    overflow: visible;
}
.footer-wrapper .right-wrap .back-to-top-block a{
    color: var(--primary-color);
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    width:300px;
}
.footer-wrapper .right-wrap .back-to-top-block a .icon-text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}
.footer-wrapper .right-wrap .back-to-top-block a .icon-text .icon{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}
ul.sms-two-columns{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
ul.sms-two-columns li{
    width: calc(50% - 50px);
}
.footer-wrapper ul.sms-two-columns li a{
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
}
.footer-menu-widget .widget-title h3{
    font-size: 22px;
    color: #ffffff;
}
.footer-menu-widget ul.menu-links{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.footer-menu-widget ul.menu-links li a{
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
}
.footer-menu-widget ul.menu-links li:not(:last-child){
    margin-bottom: 8px;
}
.footer-wrapper .middle-bottom ul.sms-inline-links{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-wrapper .middle-bottom ul.sms-inline-links li a{
    text-decoration: none;
    color: #ffffff;
    text-transform: capitalize;
}
.footer-wrapper .middle-bottom .first-col, .footer-wrapper .middle-bottom .second-col{
    border-top: 1px solid #ffffff;
}
.footer-wrapper .middle-bottom .third-col{
    border-top: 1px solid #ffffff;
}
/*** Responsive Css ***/
@media(min-width:1200px) and (max-width:1420px){
    .founder-card .left-wrap.right-img .txt-box .txt-greet {
        top: 10px;
        left: 40px;
    }
    .founder-card .left-wrap.right-img img.greet-vector {
        top: 5px;
        left: 35px;
    }
    .founder-card .left-wrap.left-img .txt-box .txt-greet {
        top: 55px;
        right: 5px;
    }
    .founder-card .left-wrap.left-img img.greet-vector {
        right: 0;
        top: 49px;
    }
    
}
@media (max-width: 768px) {
    header.header .desktop-menu{
        display: none;
    }
    header.header .right-col .mmenu-toggle{
        display: flex;
    }
}

@media (min-width: 1600px) {
    body{
        font-size: 18px;
        line-height: 23.4px;
    } 
    .sms-wel-sec .content-block{
        max-width: 605px;
    }
    .sms-title-sec .main-title{
        font-size: 86px;
        line-height: 90.3px;
    }
    .sms-wel-sec .content-block .sms-txt-box p {
        font-size: 43px;
        line-height: 51.6px;
    }
    .sms-home-sec-2{
        padding-top: 180px;
    }
    .sms-home-sec-2 .content-block .sms-txt-box p{
        font-size: 18px;
    }
    .sms-home-sec-2 .img-1{
        width: 100%;
        position: relative;
        z-index: 2;
    }
    .sms-home-sec-2 .img-2{
        max-width: 636px;
        top: -138px;
        left: 15px;
    }
    .sms-home-sec-2 .chat-txt{
        left: 7%;
        max-width: 370px;
        font-size: 36px;
        line-height: 40px;
    }
    .sms-home-sec-3 .content-block .sms-txt-box p{
        font-size: 25px;
        line-height: 32px;
    }
    .sms-home-sec-3 .content-block .main-title{
        margin-bottom: 20px;
    }
    .sms-home-sec-3 .img-2 {
        position: relative;
        max-width: 100%;
        right: 5%;
        bottom: 0;
    }
    .container{
        max-width:1550px;
    }
    .sms-home-sec-4 .sms-title-sec .main-title{
        max-width:478px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .wrapper img.progress-line{
        width: 53%;
        transform: rotate(9deg);
        margin-bottom: -70px;
    }
    .sms-course-sec .top-wrapper .col-lg-5{
        width: 50%;
    }
    .sms-contact-sec .sms-title-sec{
        max-width: 590px;
    }
    .founder-card .right-wrap{
        padding-left: 140px;
    }
    .founder-card .left-wrap.left-img .founder-img{
        order: 1;
        margin-left: -60px;
        margin-bottom: -80px;
        margin-top: -189px;
        max-width: 290px;
        position: relative;
    }
    .founder-card .left-wrap .txt-box h2.founder-name{
        font-size: 80px;
        line-height: 84px;
    }
    .founder-card .left-wrap .txt-box p.founder-desig{
        font-size: 27px;
        line-height: 32px;
    }
    .founder-card .left-wrap.left-img .txt-box{
        order: 2;
        max-width: 275px;
        margin-left: 40px;
    }
    .founder-card .left-wrap .txt-box .txt-greet{
        font-size: 32px;
    }
    .founder-card .left-wrap img.greet-vector{
        min-width: 95px;
    }
    .founder-card .left-wrap.left-img img.greet-vector {
        right: 0;
        top: 100px;
        transform: rotate(12deg);
    }
    .founder-card .left-wrap.left-img .txt-box .txt-greet {
        top: 116px;
        right: 7px;
    }
    .founder-card .left-wrap.right-img{
        padding: 63px;
    }
    .founder-card .left-wrap.right-img .founder-img{
        max-width: 75%;
    }
    .founder-card .left-wrap.right-img .txt-box{
        max-width: 435px;
    }
    .founder-card .left-wrap.right-img img.greet-vector {
        top: 21px;
        left: -35px;
    }
    .founder-card .left-wrap.right-img .txt-box .txt-greet {
        top: 38px;
        left: -24px;
    }
    .founder-card .right-wrap .founder-intro h3.f-name {
        font-size: 27px;
        line-height: 32px;
        font-weight: 600;
    }
    header.header nav.desktop-menu ul.main-menu li a{
        font-size: 27px;
    }
 }
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1200px) and (max-width: 1400px) { 
    
    .sms-wel-sec .content-block .sms-txt-box p {
        font-size: 33px;
        line-height: 40px;
    }
    section:not(.sms-wel-sec) .sms-title-sec .main-title{
        font-size: 66px;
        line-height: 70.3px;
    }
    .sms-home-sec-2 .content-block .sms-title-sec .main-title {
        max-width: 300px;
    }
    .sms-home-sec-3 .content-block .sms-title-sec .main-title{
        font-size: 53px;
        line-height: 63px;
    }
    .sms-home-sec-11 .top-section .sms-title-sec .main-title{
        max-width: 500px;
    }
 }

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }
@media(max-width:1199px){
    p, .content-block .sms-txt-box p, .sms-home-sec-3 .content-block .sms-txt-box p, .sms-home-sec-2 .content-block .sms-txt-box p{
        font-size: 13px;
        line-height: 23px;
        margin-bottom: 10px;
    }
}
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width:1199px) {
    section:not(.sms-wel-sec) .sms-title-sec .main-title, .sms-title-sec .main-title {
        font-size: 54px;
        line-height: 60.3px;
    }
    .sms-wel-sec .content-block{
        margin-left: -47px;
        margin-top: 0px;
    }
    .sms-wel-sec .content-block .sms-txt-box p{
        font-size: 23px;
        line-height: 30px;
    }
    .sms-home-sec-2 .content-block .sms-title-sec .main-title{
        max-width: 240px;
    }
    .sms-home-sec-2{
        padding-top: 50px;
    }
    .sms-home-sec-2 .chat-txt{
        left: 8%;
        top: 0;
    }
    .sms-home-sec-2 .img-1{
        position: relative;
        z-index: 2;
        max-width: 115%;
    }
    .sms-home-sec-2 .img-2{
        top: -83px;
    }
    .sms-home-sec-2 .content-block{
        margin-left: 0;
    }
    .sms-home-sec-3 .img-1{
        display: none;
        visibility: hidden;
    }
    .sms-home-sec-3 .img-2{
        position: relative;
        max-width: 100%;
        right: unset;
        bottom: unset;
    }
    .sms-home-sec-3 .content-block{
        padding: 30px;
    }
    .sms-home-sec-3 .content-block .sms-txt-box p:last-child{
        margin-bottom: 0;
    }
    .sms-home-sec-3 .content-block .sms-title-sec .main-title {
        font-size: 44px;
        line-height: 50px;
    }
    .scenario-item.main-scenario .top-sec .sms-title-sec{
        max-width: 300px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left{
        padding-left: 30px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right{
        padding-left: 80px;
    }
    .scenario-carousel .sms-swiper-btn{
        bottom: 80px;
    }
    .scenario-item.style-2 .middle-sec .left-col{
        padding-right: 56px;
    }
    .sms-home-sec-5 .col-lg-5{
        width: 50%;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar{
        padding-right: 0;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-5{
        padding-left: 30px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar h3, .sms-home-sec-5 .sms-pro-graph-sec .pro-bar.group-5 h3{
        font-size: 22px;
        line-height: 28px;
        margin-right: -107px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar p{
        line-height: 20px;
        margin-right: -55px;
    }
    .founder-card .right-wrap{
        padding: 10px 20px;
    }
    .founder-card .left-wrap.right-img .founder-img{
        max-width: 45%;
    }
    .founder-card .left-wrap{
        display: flex;
        padding: 20px;
        align-items: center;
    }
    .founder-card .left-wrap.left-img{
        align-items:flex-end;
    }
    .founder-card .left-wrap.left-img .founder-img{
        /*max-width: 40%;*/
        max-width: 61%;
    }
    .founder-card .left-wrap.left-img .txt-box{
        margin-left: 255px;
    }
    .founder-card .left-wrap.left-img .txt-box .txt-greet{
        top: 50px;
        right: 14px;
    }
    .founder-card .left-wrap.left-img img.greet-vector {
        right: 5px;
        top: 45px;
    }
    .founder-card .left-wrap.right-img .txt-box{
        margin-top: 0;
        max-width: 242px;
        margin-bottom: 50px;
    }
    .founder-card .left-wrap.right-img .txt-box .txt-greet{
        top: 10px;
        left: 10px;
    }
    .founder-card .left-wrap.right-img img.greet-vector {
        top: 5px;
        left: 0;
    }
    .sms-course-sec .top-wrapper .col-lg-5{
        width: 50%;
    }
    .footer-wrapper .left-wrap{
        width: 95%;
    }
    .footer-wrapper .left-wrap .first-block, .footer-wrapper .left-wrap .second-block{
        padding: 0 !important;
    }
    .footer-wrapper .right-wrap{
        width: 5%;
        padding: 20px 0;
    }
    .footer-wrapper .right-wrap .back-to-top-block{
        transform: rotate(270deg);
    }
    .footer-wrapper .right-wrap .back-to-top-block a{
        min-width: 180px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width:991px) { 
    .container{
        max-width: 95%;
    }
    section:not(.sms-wel-sec) .sms-title-sec .main-title, .sms-title-sec .main-title {
        font-size: 45px;
        line-height: 50.3px;
    }
    .sms-home-sec-3 .content-block .sms-title-sec .main-title{
        font-size: 46px;
        line-height: 50px;
    }
    .sms-home-sec-2 .content-block .sms-title-sec .main-title {
        max-width: 220px;
    }
    .sms-home-sec-2 .img-1{
        max-width: 120%;
    }
    .sms-home-sec-2 .img-2{
        top:-150px;
        transform: rotate(13deg);
    }
    .sms-home-sec-2 .chat-txt{
        top: -17%;
        left: 10%;
    }
    ul.sms-two-columns{
        gap: 24px;
    }
    .sms-wel-sec .content-block{
        margin-left: unset;
        margin-top: unset;
        max-width: 410px;
    }
    .sms-wel-sec .content-block .sms-txt-box p {
        font-size: 20px;
        line-height: 25px;
    }
    .sms-home-sec-2{
        padding-top: 30px;
    }
    .sms-home-sec-2 .content-block{
        margin-left: 0;
        padding-bottom: 60px;
    }
    .sms-home-sec-2 .img-1{
        position: relative;
        z-index: 2;
    }
    .sms-home-sec-3 .row .content-col{
        border-radius: 0;
    }
    .sms-home-sec-3 .content-block{
        padding: 20px;
        border-radius: 0;
    }
    .sms-home-sec-3 .img-1{
        visibility: hidden;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li{
        margin-bottom: 60px !important;
    }
    .scenario-item.main-scenario .top-sec .sms-title-sec .main-title {
        max-width: 300px;
    }
    .sms-home-sec-5 .sms-title-sec{
        margin-bottom: 0;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .wrapper img.progress-line{
        max-width: 60%;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar{
        width: auto;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar img{
        max-width: 50px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-1, .sms-home-sec-5 .sms-pro-graph-sec .group-6{
        display: none;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-2{
        height: 120px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-2 img{
        max-width: 40px;
        margin-top: -87px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-3 img{
        margin-top: -80px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-4 img{
        margin-top: -74px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-5 img{
      max-width: 35px;
      margin-top: -88px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar h3{
        font-size: 20px;
        line-height: 25px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar p{
        line-height: 20px;
    }
    .sms-contact-sec .sms-title-sec{
        max-width: 70%;
    }
    /*** Founder Section Style ***/
    .sms-founder-section{
        overflow: hidden;
    }
    .sms-founder-section .founder-wrapper{
        display: flex;
        flex-wrap: wrap;
    }
    .sms-founder-section .sms-title-sec{
        position: relative;
        z-index: 10;
    }
    .founder-card .left-wrap{
        overflow: hidden;
        display: flex;
        padding: 30px;
        justify-content: space-between;
    }
    .sms-founder-section .founder-wrapper .founder-card .right-wrap{
        padding: 30px 30px;
    }
    .founder-card .left-wrap.left-img{
        align-items: flex-end;
        justify-content: flex-end;
    }
    .founder-card .left-wrap.left-img .founder-img{
        /*max-width: 52%;*/
        max-width: 71%;
        left: -50px;
    }
    .founder-card .left-wrap.left-img .txt-box{
        max-width: 133px;
        margin: 0;
    }
    .founder-card .txt-box h2.founder-name{
        font-size: 30px;
        line-height: 32px;
    }
    .founder-card .left-wrap.left-img img.greet-vector {
        left: unset;
        top: 35px;
        right: 4px;
    }
    .founder-card .left-wrap.left-img .txt-box .txt-greet{
        top: 38px;
    }
    .founder-card .left-wrap.right-img img.greet-vector {
        top: 4px;
        left: -10px;
    }
    .founder-card .left-wrap.right-img .txt-box .txt-greet {
        top: 6px;
        left: -2px;
    }
    .founder-card .left-wrap.right-img .founder-img{
        right: -28px;
        max-width: 72%;
    }
    .founder-card .left-wrap.right-img .txt-box{
        max-width: 175px;
        margin-right: 90px;
        margin-bottom: 10px;
        margin-top: unset;
    }
    .founder-card img.greet-vector{
        max-width: 45px;
    }
    .sms-founder-section .row.founder-card{
        position: relative;
        overflow: hidden;
    }
    
    .sms-founder-section .row.founder-card.bg-2::after{
        top:-50px
    }
    .sms-founder-section .row.founder-card.bg-1::after{
        bottom: -50px;
    }
    .sms-contact-sec .contact-form-wrapper .sms-form input[type="text"]{
        width: 90%;
    }

 }
@media(max-width:991px){
    /*** Scenario Section ***/
    .scenario-carousel.first-slide .swiper-button-next i{
        color: var(--primary-color);
    }
    .scenario-item.main-scenario .bottom-sec .content-col{
        padding: 20px;
        width: 50%;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left{
        margin-right: -10px;
        z-index: 2;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left, .scenario-item.main-scenario .bottom-sec .content-col.right {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li{
        margin-bottom: 78px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right .scenario-list li{
        display: block;
        margin-bottom: 10px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right .scenario-list li:not(:last-child){
        padding-bottom: 10px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right .scenario-list li:first-child{
        padding-top: 10px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right .scenario-list.two-col li .left-col{
        width: 100%;
        margin-right: 0;
        display: flex;
        align-items: flex-start;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right .scenario-list.two-col li .right-col{
        padding-left: 14px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col .scenario-list{
        columns: 1;
    }
    .scenario-item.main-scenario .top-sec{
        padding: 20px;
    }
    .scenario-item .scenario-list li svg{
        width: 14px;
        margin-top: -3px;
    }
    .scenario-item.main-scenario .top-sec .content-block{
        padding-left: 0;
    }
    .scenario-item.main-scenario .bottom-sec{
        margin-right: 20px;
    }
    .scenario-item.style-2 .top-sec .sms-btn{
        display: none;
    }
    .scenario-item.style-2 .top-sec{
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .scenario-item.style-2 .title-block{
        display: block;
    }
    .scenario-item.style-2 .title-block .left .main-title{
        font-size: 21px;
        text-transform: uppercase;
        margin-bottom: 0;
    }
    .scenario-item.style-2 .title-block .right{
        gap: 0;
    }
    .scenario-item.style-2 .title-block .right .v-line{
        display: none;
    }
    .scenario-item.style-2 .title-block .right p{
        max-width: 200px;
    }
    .scenario-item.style-2 .middle-sec{
        margin: 0;
    }
    .scenario-item.style-2 .middle-sec .img-block{
        margin: 0 auto;
    }
    .scenario-item.style-2 .middle-sec .middle-col{
        order: 1;
        position: relative;
        padding: 0;
    }
    .scenario-item.style-2 .middle-sec .middle-col::before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        border-radius: 50%;
        background-color: #ffffff;
    }
    .scenario-item.style-2 .middle-sec .middle-col::after{
        content: "";
        width: 100%;
        height: 50%;
        background-color:var(--thm-coralred-color);
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .scenario-item.style-2 .middle-sec .left-col{
        order: 2;
        padding: 30px 50px;
    }
    .scenario-item.style-2 .middle-sec .right-col{
        order: 3;
        border-radius: 0;
        padding: 0;
    }
    .scenario-item.style-2 .middle-sec .right-col .content{
        padding: 30px 70px;
        border-radius: 200px;
        background-color: var(--thm-green-color);
    }
    .scenario-item.style-2 .middle-sec .right-col::before{
        content: "";
        width: 100%;
        height: 50%;
        background-color: var(--thm-coralred-color);
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    .scenario-item.style-2 .middle-sec .right-col::after{
        content: "";
        width: 100%;
        height: 50%;
        background-color: #061799;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
    }
    .scenario-item.style-2 .middle-sec .left-col{
        border-radius: 0;
    }
    .scenario-item.style-2 .middle-sec .content{
        text-align: center;
    }
    .scenario-item .content .title{
        font-size: 18px;
    }
    .scenario-item.style-2 .middle-sec .content p{
        font-size: 14px;
    }
    .scenario-item .scenario-list{
        columns: 2;
    }
    .scenario-item .scenario-list li{
        align-items: flex-start;
        text-align: left;
        font-size: 14px;
    }
    .scenario-item.style-2 .bottom-sec{
        padding-top: 50px;
        margin-top: 0;
    }
    .scenario-item.style-2 .bottom-sec::before{
        background-color: #061799;
    }
    .scenario-item.style-2 .bottom-sec .info-box{
        background-color: transparent;
        padding: 0;
        display: block;
    }
    .scenario-item.style-2 .bottom-sec .info-box .title-box{
        display: flex;
        align-items: flex-end;
        gap: 5px;
        justify-content: center;
    }
    .scenario-item.style-2 .bottom-sec .info-box .title-box img{
        max-width: 22px;
    }
    .scenario-item.style-2 .bottom-sec .info-box .title-box h5{
        border-bottom: 0;
    }
    .scenario-item.style-2 .bottom-sec .info-box .list-box p{
        border-bottom: 1px solid #ffffff;
        margin: 0 auto 5px auto;
        padding: 0 10px;
        text-align: center;
    }
    .scenario-item.style-2 .bottom-sec .info-box .list-box .icon-list{
        gap: 10px;
    }
    .scenario-item.style-2 .bottom-sec .sms-btn.style-3{
        font-size: 14px;
    }
    .info-box .list-box .icon-list li{
        font-size: 14px;
    }
    .info-box .list-box .icon-list li img{
        max-width: 12px;
    }
    .scenario-carousel .sms-swiper-btn {
        bottom: unset;
        top: 50%;
        border: 0;
        color: #fff;
        transform: translateX(-50%);
        width: 150px;
        height: 150px;
        justify-content: flex-start;
        background: rgba(255,255,255,0.15);
    }
    .scenario-carousel .sms-swiper-btn:focus-visible{
        outline: 0;
        border: 0;
        box-shadow: none;
    }
    .scenario-carousel .swiper-button-prev.sms-swiper-btn{
        justify-content: flex-end;
    }
    .scenario-carousel .swiper-button-next i{
        margin-left: 24px;
    }
    .scenario-carousel .swiper-button-next {
        right: -171px;
    }
    .scenario-carousel .swiper-button-prev {
        left: -25px;
    }
    .scenario-carousel .swiper-button-prev i{
        margin-right: 24px;
    }
    .footer-wrapper{
        flex-wrap: wrap;
    }
    .sms-home-sec-9 .img-block img{
        max-width: 100%;
        right: unset;
    }
    .footer-wrapper .left-wrap, .footer-wrapper .right-wrap{
        width: 100%;
    }
    .footer-wrapper .right-wrap .back-to-top-block{
        transform: none;
    }
    .footer-wrapper .right-wrap{
        padding: 10px;
    }
    .footer-wrapper .right-wrap .back-to-top-block a .icon-text .icon{
        transform: rotate(-90deg);
    }
    .footer-wrapper .right-wrap .back-to-top-block a .icon-text .icon i{
        animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }
}
@media (max-width: 767px) {
    header.header .logo img{
        max-width: 160px;
    }
    header.header .right-col .user-account-menu a i, header.header .right-col .mmenu-toggle i{
        font-size: 20px;
    }
    header.header .right-col .mmenu-toggle, header.header .right-col .user-account-menu a{
        border: 0;
    }
    .sms-title-sec .main-title{
        font-size: 35px;
        line-height: 36.75px;
    }
    .sms-wel-sec .sms-title-sec .main-title{
        font-size: 50px;
        line-height: 52.5px;
    }
    .sms-wel-sec .content-block .sms-txt-box p {
        font-size: 21px;
        line-height: 24.15px;
    }
    .sms-title-sec .sub-title{
        font-size: 21px;
        line-height: 22.05px;
    }
    .sms-wel-sec .row, .sms-home-sec-3 .row{
        flex-direction: column-reverse;
    }
    .sms-wel-sec .content-block{
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 10px;
        max-width: 90%;
    }
    .sms-wel-sec .content-block .sms-txt-box p{
        margin-bottom: 5px;
    }
    .sms-wel-sec .row .img-col{
        padding: 0;
    }
    .sms-wel-sec img{
        margin: auto;
    }
    .sms-wel-sec img {
        margin-top: -60px;
    }
    .sms-home-sec-2{
        padding-top: 30px;
        overflow: hidden;
    }
    .sms-home-sec-2 .content-block{
        margin-left: 0;
        padding-bottom: 75px;
    }
    .sms-home-sec-2 .img-1{
        max-width: 126%;
        position: relative;
        z-index: 2;
    }
    .sms-home-sec-2 .img-2{
        max-width: 345px;
        top: -76px;
        left: -36px;
        bottom: 0;
        z-index: 1;
    }
    .sms-home-sec-2 .chat-txt{
        top: -8%;
        left: 15px;
        z-index: 2;
        max-width: 190px;
    }
    .sms-home-sec-3 .img-col{
        padding: 0;
    }
    .sms-home-sec-3 .img-group img.img-3{
        max-width: 100%;
    }
    .sms-home-sec-3 .row .content-col{
        background-color: #ffffff;
        border-radius: 0;
    }
    .sms-home-sec-3 .content-col .sms-title-sec .main-title{
        color: var(--title-font-color) !important;
    }
    .sms-home-sec-3 .content-block .sms-txt-box p{
        color: var(--body-font-color);
    }
    .sms-home-sec-3 .content-block .sms-txt-box p strong{
        color: var(--body-font-color);
    }
    .sms-home-sec-3 .content-block{
        padding: 30px 0 0 0;
    }
    
    .sms-home-sec-5 .sms-title-sec{
        margin-bottom: 0;
        padding-right: 60px;
    }
    .sms-home-sec-5 .sms-title-sec .sms-txt-box{
        text-align: justify;
    }
    .sms-home-sec-5{
        padding-top: 20px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-6, .sms-home-sec-5 .sms-pro-graph-sec .group-1{
        display: none;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar{
        width: 25%;
        min-height: 120px;
        padding: 10px 5px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar.group-5 h3{
        margin-right: 0;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar h3{
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar p{
        font-size: 12px;
        line-height: 17px;
        text-align: center;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .wrapper img.progress-line{
        width: 80%;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar img{
        max-width: 50px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-2 img {
        margin-top: -65px;
        max-width: 30px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-3 img {
        margin-top: -81px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-4 img {
        margin-top: -74px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-5 img{
        margin-top: -75px;
        max-width: 30px;
    }
    /*** SVG Section ***/
    .st13, .st16, .st12, .st15, .st10{
        fill-opacity: 1 !important;
    }
    
    /*** Course Style ***/
    .sms-course-item.style-2{
        border-bottom-left-radius: 56px;
    }
    .sms-course-item.style-2 .heading{
        max-width: 60px;
    }
    .sms-course-carousel .swiper-button-prev{
        left: -10px;
    }
    .sms-course-carousel .swiper-button-prev, .sms-course-carousel .swiper-button-next{
        top: 50%;
    }
    .sms-course-carousel .swiper-button-next{
        right: -10px;
    }
    /*** Home Section 9 ***/
    .sms-home-sec-9 .row .img-block{
        width: 35%;
    }
    .sms-home-sec-9 .row .img-block img{
        max-width: 100%;
    }
    .sms-home-sec-9 .row .text-block{
        width: 65%;
    }
    .sms-home-sec-9 .row .text-block .sms-title-sec .main-title{
        font-size: 26px;
        line-height: 32px;
    }
    .sms-home-sec-9 .row .text-block a{
        font-size: 14px;
    }
    .sms-home-sec-9 .row .text-block a i{
        margin-left: 5px;
    }
    
    /*** Contact Section ***/
    .sms-contact-sec .sms-title-sec{
        max-width: 65%;
    }
    .sms-contact-sec .contact-form-wrapper{
        padding: 20px;
    }
    .sms-contact-sec .contact-form-wrapper .sms-form input[type="text"]{
        width: 100%;
    }
    /*** Footer Style ***/
    .footer-wrapper{
        flex-wrap: wrap;
    }
    .footer-wrapper .left-wrap{
        width: 100%;
        padding: 20px 0;
    }
    .footer-wrapper .left-wrap .first-block{
        width: 50%;
    }
    .footer-wrapper .left-wrap .first-block .title-block{
        max-width: 172px;
    }
    .footer-wrapper .left-wrap .middle-top ul.sms-two-columns{
        gap: 10px;
        margin-top: 20px;
    }
    .footer-wrapper .left-wrap .middle-top ul.sms-two-columns li{
        width: 100%;
    }
    .footer-wrapper .left-wrap .middle-bottom .third-col p{
        text-align: center;
    }
    .footer-wrapper .middle-bottom ul.sms-inline-links{
        justify-content: center;
        width: 100%;
    }
}
@media (min-width:576px) and (max-width:767px){
    .content-block{
        padding: 0 10px;
    }
    .sms-wel-sec .sms-title-sec .main-title{
        max-width: 400px;
    }
    .sms-home-sec-2 .content-block .sms-title-sec .main-title {
        max-width: 157px;
    }
    .scenario-item.main-scenario .top-sec .mv-top .sms-title-sec .main-title{
        max-width: 200px;
    }
    .sms-home-sec-5 .sms-title-sec .main-title{
        max-width: 270px;
    }
    .sms-home-8 .sms-title-sec .main-title{
        max-width: 320px;
    }
    .sms-home-sec-11 .sms-title-sec .main-title{
        max-width: 300px;
    }
    .sms-home-sec-2 .img-group .vec-img{
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
    }
    .sms-home-sec-2 .img-group img.main-img {
        position: relative;
        z-index: 2;
        float: right;
    }
    .sms-home-sec-2 .sms-btn.mobile-btn {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
    }
}
@media(max-width:575px){
    .sms-blog-sec .top-wrapper .main-title{
        max-width:200px;
    }
    body{
        font-size: 12px;
        line-height: 15.6px;
    }

    .sms-btn{
        font-size: 14px;
        line-height: 18.2px;
        width: 141px;
    }
    
    .sms-wel-sec{
        padding-top: 30px;
    }
    .sms-wel-sec .content-block{
        padding: 0 10px;
        max-width: 362px;
    }
    .sms-wel-sec img{
        margin-top: -60px;
    }
    .sms-home-sec-2 .content-block .sms-txt-box p, .sms-home-sec-3 .content-block .sms-txt-box p{
        font-size: 12px;
        line-height: 15.6px;
        margin-bottom: 10px;
    }
    .sms-home-sec-2 .sms-btn.mobile-btn{
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
    }
    .sms-home-sec-2 .img-group img.main-img{
        position: relative;
        z-index: 2;
        float: right;
    }
    .sms-home-sec-2 .img-group img.vec-img{
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
    }
    .content-block{
        padding: 0 10px;
    }
    .sms-home-sec-2 .content-block{
        padding-bottom: 100px;
    }
    .sms-home-sec-2 .img-2{
        max-width: 362px;
        top: -137px;
        left: -18px;
        bottom: 0;
        z-index: 1;
    }
    .sms-home-sec-2 .chat-txt {
        top: -16%;
        left: 31px;
    }
    .sms-home-sec-3{
        padding-top: 30px;
        max-width: 312px;
    }
    .sms-home-sec-3 .content-block{
        padding: 0 10px;
    }
    .sms-home-sec-3 .img-group img.img-3{
        max-width: 100vw;
    }
    
    .sms-scenario-sec .mv-top{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sms-scenario-sec .mv-top .sms-title-sec{
        max-width: 200px;
    }
    .scenario-item.main-scenario .top-sec .content-block{
        max-width: 320px;
    }
    .scenario-item.style-2 .top-sec{
        padding-bottom: 0;
    }
    .scenario-item .content .title{
        font-size: 15px;
        line-height: 19.5px;
    }
    .scenario-item .scenario-list li{
        font-size: 12px;
        line-height: 15.1px;
        font-weight: 500;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right .scenario-list li{
        padding: 0 !important;
    }
    .scenario-item.style-2 .scenario-list li{
        font-size: 10px;
        line-height: 17.6px;
    }
    .scenario-item .scenario-list li svg{
        width: 12px;
        height: 12px;
        margin-top: 0;
    }
    .scenario-item .scenario-list.two-col li .right-col{
        font-size: 12px;
        font-weight: 200;
    }
    .scenario-item.main-scenario .bottom-sec{
        flex: none;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li{
        margin-bottom: unset;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li:not(:first-child){
        margin-top: 52px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li:nth-child(2){
        margin-top: 49px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li:last-child{
        margin-top: 65px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.right .scenario-list li:not(:last-child){
        margin-bottom: 20px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col{
        padding: 35px 35px;
    }
    .scenario-item.style-2 .middle-sec .content p{
        font-size: 10px;
        line-height: 13px;
        max-width: 283px;
        margin-left: auto;
        margin-right: auto;
    }
    .scenario-item.style-2 .middle-sec .scenario-list{
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }
    .scenario-item .content .title{
        font-size: 12px;
        line-height: 15.6px;
    }
    .scenario-item.main-scenario .content .title{
        max-width: 120px;
        font-size: 15px;
        line-height: 19.5px;
        margin-bottom: 15px;
    }
    .scenario-item.main-scenario .scenario-list.borderd, .scenario-item.main-scenario .scenario-list.borderd li{
        border: 0;
    }
    .scenario-item.style-2 .top-sec{
        position: relative;
        z-index: 2;
    }
    .scenario-item.style-2 .middle-sec{
        margin-top: -10px;
    }
    .scenario-item.style-2 .middle-sec .content{
        margin: 0 auto;
    }
    .scenario-item.style-2 .middle-sec .left-col{
        padding: 20px 60px;
    }
    .scenario-item.style-2 .middle-sec .middle-col{
        margin-top: -75px;
    }
    .scenario-item.style-2 .middle-sec .img-block img{
        max-width: 100%;
        border-radius: 50%;
    }
    .scenario-wrapper .swiper-slide:last-child .scenario-item.style-2 .middle-sec .left-col{
        padding: 30px 60px;
    }
    .scenario-item.style-2 .middle-sec .right-col .content{
        padding: 20px 52px;
    }
    .scenario-item.style-2 .middle-sec .right-col .content{
        padding: 30px 52px;
    }
    .scenario-item.style-2 .bottom-sec{
        padding-top: 20px;
    }
    .scenario-item.style-2 .bottom-sec .info-box .title-box h5{
        font-size: 12px;
        line-height: 15.6px;
    }
    .scenario-item.style-2 .bottom-sec .info-box .title-box p{
        margin: 0;
    }
    .scenario-item.style-2 .bottom-sec .info-box .title-box img{
        width: 15px;
    }
    .scenario-item.style-2 .bottom-sec .info-box .title-box{
        border-bottom: 1px solid rgba(255,255,255,0.85);
        margin-bottom: 10px;
    }
    .scenario-item.style-2 .bottom-sec .info-box .list-box .icon-list li{
        font-size: 10px;
        line-height: 14.94px;
    }
    .scenario-item.style-2 .bottom-sec .info-box .list-box .icon-list li img{
        max-width: 10px;
    }
    .scenario-item.style-2 .bottom-sec .sms-btn.style-3{
        font-size: 13px;
    }
    .scenario-carousel .sms-swiper-btn{
        width: 140px;
        height: 140px;
    }
    .scenario-carousel .swiper-button-next{
        right: -164px;
    }
    /*.scenario-carousel.first-slide .swiper-button-next{
        right: -21px;
        top: 49px;
        border-radius: 0;
        background: black;
        /* left: 100%; 
        height: 61px;
        opacity: 0;
    }*/
    .sms-home-sec-5 .sms-txt-box p:not(:first-child){
        max-width: 205px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec{
        margin-top: -40px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar{
        border-radius: 0;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar h3{
        font-size: 21px;
        line-height: 22.05px;
        color:var(--thm-green-color);
        text-align: left;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar p{
        font-size: 12px;
        line-height: 15.6px;
        text-align: left;
        margin-right: -87px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar.group-5 p{
        margin-right: 0;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .pro-bar{
        width: 19.66%;
        padding: 10px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-2{
        height: 176px;
        padding-left: 20px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-3{
        height: 296px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-4{
        height: 420px;
    }
    .sms-home-sec-5 .sms-pro-graph-sec .group-5{
        width: 41%;
        height: 544px;
    }
    .testimonial-item.style-1 .testi-content{
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
    .sms-home-sec-5{
        padding-top: 50px;
    }
    .sms-home-sec-5 .sms-title-sec{
        padding: 0 10px;
        max-width: 306px;
    }
    .sms-home-sec-6 .mobile-version{
        padding-left: 10px;
    }
    .sms-home-8{
        padding: 0 5px;
    }
    .sms-home-8 .sms-title-sec{
        max-width: 296px;
    }
    
    /*.sms-course-carousel-wrapper{
        padding-bottom: 50px;
    }*/
    .sms-course-carousel .swiper-button-prev, .sms-course-carousel .swiper-button-next{
        top: -30px;
        bottom: unset;
    }
    .sms-course-carousel .swiper-button-prev{
        left: unset;
    }
    .sms-course-carousel .swiper-button-next{
        right: 0;
    }
    .sms-home-sec-9{
        padding: 0 10px;
    }
    .sms-home-sec-9 .row .img-block{
        width: 25%;
    }
    .sms-home-sec-9 .row .text-block{
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .sms-home-sec-9 .row .text-block a.sms-btn{
        width: 100%;
    }
    
    .sms-blog-item .blog-body h4{
        font-size: 15px;
        line-height: 20px;
    }
    .sms-blog-item .blog-footer .user-info h5{
        font-size: 13px;
        line-height: 17px;
    }
     .faq-wrapper .faq-item .faq-question{
        font-size: 12px;
        line-height: 18px;
        padding: 5px 10px;
        font-weight: 600;
        border-width: 1px;
     }
     .faq-wrapper .faq-item .faq-question .faq-icon{
        font-size: 16px;;
     }
    .sms-home-sec-11{
        padding-bottom: 30px;
    }
    .sms-contact-sec .sms-title-sec{
        max-width: 100%;
    }
    .sms-contact-sec .top-section .row{
        padding: 0 10px;
    }
    .sms-contact-sec .top-section .left-col{
        width: 47%;
    }
    .sms-contact-sec .top-section .right-col{
        width: 53%;
    }
    .footer-wrapper .left-wrap{
        padding: 30px 50px;
    }
    .footer-wrapper .left-wrap .middle-top{
        padding: 0;
    }
    .footer-wrapper .left-wrap .middle-top .col-lg-9{
        padding: 0;
    }
    .footer-wrapper .middle-bottom ul.sms-inline-links.social-links{
        justify-content: space-between;
    }
    .footer-wrapper .left-wrap .mobile-logo{
        margin-bottom: 10px;
        position: relative;
    }
    .footer-wrapper .left-wrap .mobile-logo::before, .footer-wrapper .left-wrap .mobile-logo::after{
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 48px;
        background-color: var(--thm-yellow-color);
        min-width: 50px;
    }
    .footer-wrapper .left-wrap .mobile-logo::before{
        left: -60px;
        border-top-right-radius: 24px;
        border-bottom-right-radius: 24px;
    }
    .footer-wrapper .left-wrap .mobile-logo::after{
        right: -60px;
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
        width: 70%;
    }
    .footer-wrapper .left-wrap .mobile-logo img{
        max-width: 122px;
    }
    .footer-wrapper .middle-bottom .first-col{
        order:2;
        padding: 0;
    }
    .footer-wrapper .middle-bottom .second-col{
        order:1;
        padding: 0;
    }
    .footer-wrapper .middle-bottom .third-col{
        order:3;
        border:0;
        margin-top: 20px;
        padding: 0;
    }
    .footer-wrapper .middle-bottom ul.quick-links{
        justify-content: flex-start;
        gap: 10px;
    }
    .footer-wrapper .middle-bottom ul.quick-links li:not(:last-child){
        padding-right: 10px;
        border-right: 1px solid #ffffff;
    }
}
@media(max-width:439px){
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li:not(:first-child){
        margin-top: 65px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li:nth-child(4){
        margin-top: 50px;
    }
    .scenario-item.main-scenario .bottom-sec .content-col.left .scenario-list li:last-child {
        margin-top: 87px;
    }
}
.spinner {
    width: 30px;
    aspect-ratio: 1;
    display:grid;
    -webkit-mask: conic-gradient(from 15deg,#0000,#000);
    animation: s6 3s infinite steps(12);
  }
  .spinner,
  .spinner:before,
  .spinner:after{
    background:
      radial-gradient(closest-side at 50% 12.5%,
      var(--thm-yellow-color) 96%,#0000) 50% 0/20% 80% repeat-y,
      radial-gradient(closest-side at 12.5% 50%,
      var(--thm-yellow-color) 96%,#0000) 0 50%/80% 20% repeat-x;
  }
  .spinner:before,
  .spinner:after {
    content: "";
    grid-area: 1/1;
    transform: rotate(30deg);
  }
  .spinner:after {
    transform: rotate(60deg);
  }
  
  @keyframes s6 {
    100% {transform:rotate(1turn)}
  }
  .form-btn-spinner{
    gap: 20px;
  }
  .form-btn-spinner .spinner{
    display: none;
  }
  .form-btn-spinner .spinner.active{
    display: grid;
  }
  .input-group span.error{
    width: 100%;
    color: var(--thm-skyblue-color);
    font-size: 13px;
    font-weight: 500;
  }  
  .form-response{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    color:#fccf14;
  }
.breadcrumb-section{
    display: block;
    position: relative;
    width: 100%;
    padding: 0 10px;
    background: rgba(34, 68, 190, 0.1);
}
.breadcrumb-section ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
}
.breadcrumb-section ul li{
    list-style-type: none;
    position: relative;
    padding: 10px 10px;
} 
.breadcrumb-section ul li:first-child{
    padding-left: 0;
}
.breadcrumb-section ul li:last-child{
    padding-right: 0;
}
.breadcrumb-section ul li:not(:last-child){
    padding-right: 20px;
}
.breadcrumb-section ul li a{
    text-decoration: none;
    color:var(--primary-color);
}
.breadcrumb-section ul li:not(:last-child)::after{
    content: ">";
    color: var(--thm-coralred-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    line-height: 23px;
    font-weight: 500;
}
.sms-text-primary{
    color:var(--primary-color);
}
.blog-details-wrapper .blog-info .blog-category{
    width: fit-content;
    padding: 10px;
    background: var(--thm-green-color);
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
}
.blog-details-wrapper .blog-info .blog-title{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}
.blog-details-wrapper .blog-info .bottom{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.blog-details-wrapper .blog-info .bottom .author-info{
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-details-wrapper .blog-info .bottom .author-info img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.blog-details-wrapper .blog-info .bottom .author-info h5{
    margin: 0;
    text-transform: capitalize;
    color: var(--primary-color);
    font-size: 20px;
}
.blog-details-wrapper .blog-info .bottom .devider{
    color: #F97366;
    font-weight: 500;
    font-size: 18px;
}
.blog-details-wrapper .blog-info .bottom .date-posted span{
    color: var(--thm-yellow-color);
    font-size: 18px;
    font-weight: 500;
}
.blog-sidebar{
    display: block;
    position: relative;
    background: rgba(34, 68, 190, 0.1);
    padding: 15px;
}
.blog-sidebar .widget-title{
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}
.recent-post-widget .recent-post-list .post-item{
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.recent-post-widget .recent-post-list .post-item a{
    display: flex;
    gap: 10px;
    text-decoration: none;
    align-items: flex-start;
}
.recent-post-widget .recent-post-list .post-item a .post-img{
    padding: 5px;
    background: #fff;
}
.recent-post-widget .recent-post-list .post-item a .post-img img{
    width: 80px;
    height: 80px;
}
.recent-post-widget .recent-post-list .post-item a .post-info .post-title{
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.recent-post-widget .recent-post-list .post-item a .post-info .post-date{
    margin: 0;
    font-size: 12px;
    color: var(--bs-body-color);
    font-weight: 600;
}
.recent-post-widget .recent-post-list .post-item:not(:last-child){
    border-bottom: 1px solid rgba(var(--thm-purple-color-rgb), 0.5);
    padding-bottom: 10px;
    margin-bottom: 10px;
}