:root {
    --primary-color: #fdc242;
    --secondary-color:#0e384c;
}

body{
   font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Outfit", sans-serif;
}

html, body{
    overflow-x: clip;
}

p{  
   
    color: #4c4c4c;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

img{
    height:auto;
    max-width:100%;
}


li{
    list-style:none;
}
a{
    text-decoration:none !important;
    color:#000;
}

.social-icons{
    display: flex;
    gap: 8px;
}

.banner-sec-em{
    padding:13rem 0 0;
    position:relative;
}
.banner-sec-em:before{
    position:absolute;
    content:"";
    top:0;
    left:0;
    background:linear-gradient(90deg, #1c1e21 0%, #737373 100%);
    width:100%;
    height:85%;
}
.banner-content-box{
    position:relative;
}
.banner-content-box:before{
    position:absolute;
    content:"";
    border-top: 1px solid #ffffff1f;
    border-left: 1px solid #ffffff1f;
    width: 90px;
    height: 60%;
    top:45px;
    left:155px;
}
.banner-content-box:after{
        position: absolute;
    content: "";
    border-top: 1px solid #ffffff1f;
    border-right: 1px solid #ffffff1f;
    width: 90px;
    height: 60%;
    top: 45px;
    right: 155px;
}

.banner-content-box .banner-title-btn{
    width: 61%;
    margin: 0 auto;
    text-align: center;
    position:relative;
}
.banner-content-box .banner-title-btn h1{
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    margin-top: -45px;
    text-transform: uppercase;
    position: relative;
}
.banner-content-box .banner-title-btn .bannr-che{
    margin-top:40px;
}
.banner-content-box .banner-img{
    text-align:center;
}


.chess-game {
  display: inline-block;
    background: #fdc242;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(253, 194, 66, 0.4);
    transition: all 0.3s 
ease;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}
.banner-mobile {
    display:none;
}

.chess-game::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent);
  transition: all 0.4s ease;
}

.chess-game:hover::before {
  left: 100%;
}

.chess-game:hover {
  background: #ffcf55;
  box-shadow: 0 6px 14px rgba(253, 194, 66, 0.6);
  transform: translateY(-2px);
}

.chess-header {
    position: relative;
    z-index: 2;
    transition: .5s;
}
.mega-menu > ul > li > a {
    color: #4F5158;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 18px 0;
}
@media (max-width:1320px){
    .mega-menu > ul{
        gap:10px
    }
    .mega-menu > ul > li > a{
        font-size:14px;
    }
}
.mega-menu > ul > li > a:before{
    content: "";
    position: absolute;
    bottom: 15px;
    height: 2px;
    width: 0;
    left: 0;
    background-color: #fff;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: 
ease-in-out;
}

.mega-menu > ul > li:hover > a:before,.mega-menu > ul > li > .active:before{
    width: 100%;
}
.mega-menu > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    /*padding-left: 1rem;*/
    margin-right: 1rem
}

.dropdowns{
       position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.mega-menu > ul > li > .tp-submenu {
    position: absolute;
    top: 100%;
    left: -10px;
    width: 240px;
    z-index: 99;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    visibility: hidden;
    transition: 0.5s;
    border-radius: 0px 0px 8px 8px;
    background: #fff;
    border: 1px solid rgba(48, 48, 47, 0.1);
    box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
    padding: 25px 0 15px;
    text-align: start;
}

.mega-menu > ul > li > .tp-submenu li > a {
    position: relative;
    display: block;
    color: #55585B;
    font-size: 14px;
    font-weight: 400;
   
    padding-left:30px;
   
    transition: all 0.3s 0s 
ease-out;
}
.mega-menu > ul > li > .tp-submenu li > a.active::before {
    width: 12px;
}

.mega-menu > ul > li > .tp-submenu li > a.active {
    padding-left: 40px;
    color: rgb(0, 0, 0);
}
.mega-menu > ul > li > .tp-submenu li > .master.active::after{
    bottom: -2px;
      width: 20%;
}
.mega-menu > ul > li > .tp-submenu li:not(:last-of-type) {
    margin-bottom: 12px;
}
.mega-menu > ul > li > .tp-submenu li:not(:last-of-type) a {
   border-bottom: 1px solid #EDEDED;
   margin-bottom: 12px;
    padding-bottom: 12px;
}

.mega-menu > ul > li > .tp-submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}
.mega-menu > ul > li.dropdowns:hover > .tp-megamenu-main, .mega-menu > ul > li.dropdowns:hover .tp-submenu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.tp-megamenu-small-content{
    padding: 30px 40px 25px;
}
.tp-megamenu-small-content .tp-megamenu-list a {
    position: relative;
    display: block;
    color: #55585B;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 15px;
    margin-bottom: 14px;
    border-bottom: 1px solid #EDEDED;
        transition: all 0.3s 0s 
ease-out;
}
.tp-megamenu-small-content .tp-megamenu-list a:hover::before,  .mega-menu > ul > li > .tp-submenu li > a:hover::before{
    width: 12px;
}

.tp-megamenu-small-content .tp-megamenu-list a::before, .mega-menu > ul > li > .tp-submenu li > a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 10px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: all 0.3s 0s 
ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s 
ease-out;
}
.mega-menu > ul > li > .tp-submenu li > a::before{
    left: 22px;
}
.mega-menu > ul > li > .tp-submenu li > a:hover{
    padding-left: 40px;
    color: #000;
}
.tp-megamenu-small-content .tp-megamenu-list a:hover  {
    padding-left: 15px;
    color: #000;
}
.tp-megamenu-main {
    position: absolute;
    z-index: 99;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    visibility: hidden;
    transition: 0.3s;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 8px;
}
.tp-megamenu-small {
    top: 100%;
    left: -10px;
    width: 500px;
    text-align: start;
    border-radius: 0px 0px 8px 8px;
    background: #fff;
    border: 1px solid rgba(48, 48, 47, 0.1);
    box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
}
.tp-megamenu-fullwidth {
    top: 100%;
    left: -10px;
    padding: 25px;
    right: 0;
        width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    text-align: start;
    border-radius: 0px 0px 8px 8px;
    background: #fff;
    border: 1px solid rgba(48, 48, 47, 0.1);
    box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
}
.hea-dropstatic{
    position:static;
}

.tp-megamenu-fullwidth-content-thumb {
       min-width:180px;
    }
.tp-megamenu-fullwidth-content p{
    font-size:14px;
}
.tp-megamenu-fullwidth-content {
    padding: 25px 0 25px 30px;
}
.tp-megamenu-fullwidth-content .tp-btn {
    padding: 5px 12px 6px 14px;
    color: #15161D;
    font-size: 14px;
    background-color: transparent;
    border-radius: 6px;
    transition: all 0.3s 0s 
ease-out;
    border: 1.5px solid rgba(21, 22, 29, 0.1);
    display: inline-block;
    font-weight: 600;
}
.tp-megamenu-fullwidth-content:hover .tp-btn{
    background:#fff;
}
.tp-megamenu-fullwidth-content .tp-btn i{
    font-size: 15px;
    transform: translateY(3.5px);
    display: inline-block;
}
.tp-megamenu-fullwidth-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    font-weight: 500;
    display: inline-block;
    z-index: 1;
    
    background: linear-gradient(90deg, rgba(255, 137, 180, 0.16) 0%, rgba(204, 201, 122, 0.16) 100%);
}

.dropdowns > i{
    font-size: 13px;
    height: 15px;
    display: block;
}


.hambuuefer, .close-button, .dropdownd .dropn-btnmobile{
    display:none;
}
.btnsd{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    padding: 9px 24px;
    color: #020f17;
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(253, 194, 66, 0.4);
    overflow:hidden;
    position:relative;
    z-index: 2;
    vertical-align: middle;
    transition: 1s 
ease;
}
.btnsd:hover{
    color:#fff;
}
.btnsd:before {
    top: -2em;
    left: -2em;
}
.btnsd:after {
    left: calc(100% + 2em);
    top: calc(100% + 2em);
}
.btnsd:hover:after, .btnsd:hover:before {
    height: 410px;
    width: 410px;
}
.btnsd:after, .btnsd:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: #020f17;
    transition: 1s 
ease;
}
.top-chess-header{
    position: relative;
    background:#011e30;
    padding:5px 0;
}

.had-call-mail{
        padding: 0;
    gap: 30px;
    display: flex;
    margin: 0;
    justify-content: flex-end;
}

.had-call-mail li{
    display: flex;
    align-items: center;
    gap: 10px;
}

.had-call-mail li .icon-head-call i{
    font-size: 16px;
    position: relative;
    color: #000;
}
.header-menusd{
    color:#fff;
    margin-bottom: 0;
    font-size: 15px;
}
.had-call-mail li .icon-head-call{
    position: relative;
    display: inline-block;
    line-height: 30px;
    border-radius: 50%;
    height: 27px;
    min-width: 27px;
    text-align: center;
    background:var(--primary-color);
}
.had-call-mail li a{
    font-size:15px;
    color:#ffffff;
}
.heade-sec-mainn{
      box-shadow: 0px 1px 3px 0px rgba(35, 18, 4, 0.14);
}
.sticky .heade-sec-mainn{
    transform: translateY(0%);
    visibility: visible;
    animation: sliddown 1s;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
     z-index:9999;
}
.sticky .top-chess-header{
  display:none;  
}
.mega-menu > ul > li > a{
    color:#000;
}

.mega-menu > ul > li > a:before{
    background-color: var(--primary-color);
}

@keyframes sliddown{
    0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
}
100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}

.about-sec-chess{
    padding:0 0 4rem;
    position:relative;
}
.list-boxs{
    position: relative;
    display: flex;
    gap: 20px;
    margin: 1.5rem 0;
}
.work__list-box-top{
    display: flex;
    gap: 20px;
    align-items: center;
}
.work__list-box-top .icons {
       width: 60px;
    height: 60px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50%;
    background: var(--primary-color);
    border: 1px solid rgb(17 22 29 / 95%);
    font-size: 35px;
    line-height: 0;
    box-shadow: 3px 3px 0px 0px rgb(0 0 0 / 82%);
}
.work__list-box-top .title{
    font-size: 1.2rem;
    margin: 0;
}
.sec-big-title{
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 600;
}
.about-sec-chess .section-title {
    max-width:60%;
    margin:0 auto;
    position:relative;
}
.about-sec-chess .section-title:before{
    position: absolute;
    content: "";
    width: 30%;
    background: #000;
    height: 1px;
    left: -30%;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.about-sec-chess .section-title:after{
    position: absolute;
    content: "";
    width: 30%;
    background: #000;
    height: 1px;
    right: -30%;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.sec-sml-title{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}
.section-title.text-center{
    margin-bottom:30px;
}
.about-content-box p{
    text-align:center;
}
.about-content-box .abou-img-box{
   text-align:center; 
}

.why-choose-sec{
    padding:4rem 0 0;
    position:relative;
    background:#011e30;
}
.why-choose-sec .row{
    row-gap:25px
}
.why-choose-sec .sec-big-title, .cta-sec-chess .sec-big-title{
    color:#fff;
}
.why-choose-sec .sec-sml-title, .cta-sec-chess .sec-sml-title{
    color:#fff;
}
.why-choo-box{
    text-align: center;
    position: relative;
    padding: 30px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(255 255 255 / 6%);
        display: block;
}
.why-choo-box .why-content .why-title{
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}
.why-choo-box .why-content p{
    color:#fff;
        font-size: 15px;
    margin:0;
}

.why-choo-box .why-box{
  margin-bottom:20px;  
}

.why-choo-box .why-box img{
    filter: invert(76%) sepia(85%) saturate(465%) hue-rotate(329deg) brightness(103%) contrast(102%);
}

.cta-sec-chess{
    padding: 2rem 0 0px;
    margin-bottom: 12vw;
    background-color: #011e30;
    position: relative;
    z-index: 1;
}
.cta-sec-chess:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-size: contain;
    background-repeat: repeat;
    background-image: url(../image/bg/diamond-pattern.jpg) !important;
    z-index: -1;
    opacity: 0.05;
}
.cta-sec-chess:before{
    background-image: url(../image/bg/cta-bg-bottom.svg);
    background-size: 100% 12vw;
    bottom: -1px;
    height: 12vw;
    z-index: -1;
    transform: scale(1, 1);
    position:absolute;
    content:"";
    width:100%;
    z-index:1;
}
.cta-sec-box-main .cta-che{
        text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.cta-sec-box-main .cta-box-img img{
    margin-bottom: -12vw !important;
    position: relative;
    z-index: 2;
}
.cta-box-img{
   text-align: center;
    margin-top: 3rem;
    z-index: 3;
    position: relative;
}
.testiom-sec-che{
    padding:5rem 0;
    position:relative;
    background: linear-gradient(90deg, #1c1e21 0%, #2d2f33 100%);
}

.testimonial-items{
    margin: 10px 10px 0;
    background-color: #fff;
    border:1px solid rgba(255, 255, 255, 0.102);
    box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.35);
    position:relative;
}
.testimonial-items .test-monial-content{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    padding-left: 20px;
    position:relative;
}
.testimonial-items .test-monial-content .title-test{
    font-size:20px;
    font-weight:600;
}
.testimonial-items .test-monial-content .test-monial-quote{
    position:relative;
}
.testimonial-items .test-monial-content .test-monial-quote:before{
    background: url(../image/bg/quote2.png) no-repeat center;
    background-size: contain;
    height: 23px;
    left: 0;
    position: absolute;
    top: -20px;
    width: 23px;
    content:"";
}
.testimonial-items .test-monial-content .test-monial-quote:after{
    background: url(../image/bg/quote2.png) no-repeat center;
    background-size: contain;
    bottom: -1px;
    content: "";
    height: 23px;
    position: absolute;
    right: 0;
    transform: rotate(180deg);
    width: 23px;
}
.testimonial-items .test-monial-content .test-monial-quote p{
    text-align:center;
}

.testimonial-items:before{
    background-color: #efefef;
    bottom: 10px;
    box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.35);
    content: "";
    left: -10px;
    position: absolute;
    right: -10px;
    top: 10px;
    transition: all 0.6s ease-in-out;
    z-index: -1;
    content:"";
}
.testimonial-items:hover:before{
    bottom: -10px;
    left: 10px;
    right: 10px;
    top: -10px;
}

.testiom-sec-che .sec-big-title, 
.testiom-sec-che .sec-sml-title{
    color: #fff;
}

.testiomonial-carousel{
     position: static !important;   
}

.testiomonial-carousel .swiper-button-prev:after, 
.testiomonial-carousel .swiper-button-next:after{
    content: "\f172";
    font-family: flaticon_normal-icon !important;
    color:#fff;
    font-size:30px;
}
.testiomonial-carousel .swiper-button-next{
    right: 14%;
    top:55%;
}
.testiomonial-carousel .swiper-button-prev{
    left:14%;
    top:55%;
}
.testiomonial-carousel .swiper-button-prev:after{
    transform: rotate(180deg);
}

.with-particles .particles-js {
	display: block;
	opacity: 0.4;
	overflow: hidden;
	position: absolute;
	width: 100%;
}


/*banner*/
.banner-news{
   position: relative;
    background-color: #fcf6e6;
    display: grid;
    align-items: center;
    padding-top: 3rem;
    padding: 5rem 0;
    max-height: 700px;
    background-size: cover;
    background-image: url(../image/academy/time2chess-academy.webp);
    min-height: 575px;
    background-position: center;
}
@media (min-width:1800px){
    .banner-news{
        min-height: 685px !important;
    }
}
.span-textsd{
   font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color:#4c4c4c;
    padding: 6px 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    border-radius: 30px;
    display: flex
;
    gap: 4px;
    max-width: fit-content;
    border: 1px solid rgba(3, 31, 66, 0.08);
    align-items: center;
}
.span-textsd img{
    margin-right:5px;
}
.banner-news .container{
    width: 100%;
    height: 100%;
    margin: auto;
    left: 0;
    right: 0;
    display: grid;
    align-items: center;
}
.banner-contsd{
   max-width: 40%;
   position:relative;
}
.banner-contsd:before{
    content: "";
    position: absolute;
    background-image: url(../image/reff/banner_shape.svg);
    width: 262px;
    height: 400px;
    background-size: contain;
    filter: brightness(0.9);
    transform: rotateY(180deg);
    right: -100px;
    bottom: 65px;
    background-repeat: no-repeat;
}
.banner-tilsd{
    font-size:3.8rem;
}
.banner-tilsd span{
        text-shadow: 2px 2px 1px rgb(0 0 0 / 99%);
        color: var(--primary-color);
}
.tp-btn-inner{
    display: flex;
    font-weight: 600;
    color: #020f17;
    background-color: var(--primary-color);
    box-shadow: 0px 1px 2px 0px rgb(70 70 70 / 25%), 0px 0px 1px 0px #a7a9ad;
    padding: 12px 17px;
    border-radius: 12px;
    align-items: center;
    gap: 7px;
    transition:0.3s ease-in-out;
    border: none;
}
.tp-btn-inner:hover{
    background:#020f17;
    color:#fff
}
.banne-flesdc{
    position: relative;
    display: flex;
    margin-top: 2.2rem;
    gap: 20px;
    align-items: center;
}
.tp-btn-inner i{
        height: 17px;
    display: block;
}
.video-btns{
        display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    color: #020f17;
    background-color: #fff;
    border: 4px solid #FFD25D;
    position:relative;
}
.video-btns i{
    display: inline-block;
    transform: translate(2px, 5px);
    font-size: 20px;
}

.video-btns::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 90%;
    height: 90%;
    transform: scale(1);
    border: 1px solid #FFD25D;
    animation: video-border 1.5s 
linear infinite;
    border-radius: 50%;
}
@keyframes video-border{
    0% {
    transform: translate(-50%, -50%) scale(0.9);
}

60% {
    opacity: 1;
}
100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
}
}

.tp-funfact-6-ptb {
    padding: 39px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #011e30;
}
.tp-funfact-icon {
    flex: 0 0 auto;
    margin-right: 25px;
}
.tp-funfact-icon img{
    transition:1s ease-in-out;
   filter: invert(82%) sepia(89%) saturate(1349%) hue-rotate(320deg) brightness(99%) contrast(100%);
}
.tp-funfact-title {
        color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}
.tp-funfact-content span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.tp-funfact-item:hover .tp-funfact-icon img{
    transform:rotate(360deg);
}

/*class*/
.time-classs{
    position:relative;
    padding:4.5rem 0;
}
.tp-program-3-item {
    border-radius: 30px;
    border: 1px solid rgba(17, 22, 29, 0.04);
    box-shadow: 0px 1px 1px 0px rgba(17, 22, 29, 0.08);
    padding: 25px;
   
    transition: all 0.3s 0s 
ease-out;
}
.tp-program-3-item:hover {
    border: 1px solid rgba(3, 31, 66, 0.08);
    box-shadow: 0px 6px 10px 0px rgba(10, 29, 58, 0.1);
}
.tp-program-3-schedule-item:not(:last-of-type) {
        margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid rgba(156, 41, 178, 0.2);
}
.tp-program-3-schedule {
    margin-bottom: 28px;
}
.tp-program-3-btn a {
    display: block;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(3, 31, 66, 0.1);
    background-color: #011e30;
    color:#fff;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 10px 12px 10px;
    line-height: 1;
    
    transition: all 0.3s 0s 
ease-out;
}

.tp-program-3-content p{
    color:#424242;
    font-size:15px;
}
.tp-program-3-schedule-item {
   margin-bottom: 0;
    color: #020f17 !important;
    font-size: 13px !important;
    text-align:center;
}
.tp-program-3-title{
    font-size:1.4rem;
}
.tp-program-3-thumb img {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
   
    transition: 0.5s;
}
.tp-program-3-thumb {
    border-radius: 15px;
    margin-bottom: 27px;
    overflow: hidden;
}
.tp-program-3-item:hover .tp-program-3-thumb img {
    transform: scale(1.06);
}
 .tp-program-3-btn a:hover{
   
     background-color: var(--primary-color);
    color: #020f17;
}

.section-big-titles{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}
.small-titlsd{
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #4c4c4c;
    padding: 6px 0px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    border-radius: 30px;
    display: inline-block;
    max-width: fit-content;
   position: relative;
}
.small-titlsd:before{
    content: "";
    position: absolute;
    left: 0;
    background-image: url(../image/reff/underline.webp);
    bottom: -5px;
    width: 130px;
    max-width: 100px;
    height: 6px;
    right: 0;
    margin: auto;
}
.section-ttilsd{
    margin-bottom:20px;
}
.section-ttilsd.text-center{ 
    margin-bottom:35px;
}

.section-ttilsd.text-center .small-titlsd{
    margin:0 auto 10px;
}

/*why chosoe us*/
.why-chosoe-chesd{
    position:relative;
    padding:3rem 0;
}
.top-category-wrapper .top-category-box-items {
    padding: 30px;
    height:100%;
    text-align: center;
    transition: all .4s 
ease-in-out;
    border-right: 1px solid #7171715c;
    border-top: 1px solid #7171715c;
}
.top-category-wrapper .top-category-box-items.active{
   box-shadow: 10px 4px 60px #5757573d;
    background: #fff;
}
.top-category-wrapper .top-category-box-items.active .why-icon:before{
    background-color:var(--primary-color);
}
.top-category-wrapper .top-category-box-items.active .why-icon img{
    filter:brightness(0);
}
.top-category-wrapper .top-category-box-items h6 {
    margin-top: 20px;
    font-weight: 600;
}
.top-category-wrapper {
    border: 1px solid #7171715c;
    border-radius: 7px;
    background-color: #faf5e1;
    border-top: none;
     cursor:pointer;
     border-right: 0;
}
.top-category-wrapper .top-category-box-items .why-icon {
    font-size: 45px;
    position: relative;
    z-index: 9;
   
    margin: 0 auto;
    transition: all .4s 
ease-in-out;
}
.top-category-wrapper .top-category-box-items .why-icon:before{
    border-radius: 50%;
    width: 50px;
    height: 50px;
     background-color: #fff;
     position:absolute;
     content:"";
     transition: all .4s 
ease-in-out;
}
.top-category-wrapper .top-category-box-items .why-icon img {
    padding-top: 5px;
    margin-left: 10px;
    display: inline-block;
    z-index: 10;
    position: relative;
    transition: all .4s 
ease-in-out;
}
.why-kearn-card{
    position:relative;
}

/*level*/
.course-levesd{
    position:relative;
    background:#faf5e1;
        padding: 4rem 0;
}
.cor-card{
    background: #fff;
    border: 1px solid rgba(17, 22, 29, 0.04);
    box-shadow: 0px 6px 10px 0px rgba(41, 36, 3, 0.1);
    border-radius: 10px;
    position: relative;
    overflow:hidden;
    display: flex
;
    align-items: center;
    padding: 1rem;
}
.cor-card:before{ 
   content: "";
    right: 0;
    width: 20%;
    background: linear-gradient(to bottom right, #f9bc37, #ffdb8c);
    position: absolute;
    height: 100%;
}
.cod-card-left{
   
    width: 65%;
}
.cod-card-right{
        position: relative;
    z-index: 2;
    text-align: center;
    width: 35%;
}
.cod-card-right img{
    filter:drop-shadow(0 15px 15px rgb(253 194 66 / 40%));
}
.cor-card:hover .cod-card-right img{
        animation: 1s ease 0s 1 normal none running bounce;
}
@keyframes bounce{
    0%, 20%, 53%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0px);
}

40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0px, -30px, 0px) scaleY(1.1);
}

70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0px, -15px, 0px) scaleY(1.05);
}
80% {
    transform: translateZ(0px) scaleY(0.95);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
90% {
    transform: translate3d(0px, -4px, 0px) scaleY(1.02);
}
}
.button-namesd{
        display: inline-block;
    width: auto;
    transition: all .5s;
    position: relative;
    padding: 0 calc(38px / 2.5);
}
.button-namesd .btn-arrow {
    display: flex
;
    align-items: center;
    height: 40px;
}
.button-namesd:hover .btn-arrow:before {
    width: calc(100% + 5px);
}
.button-namesd .btn-arrow:before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #fac143 0%, #fdc242 100%);
    margin: 0;
    left: 0;
    top: 0;
    border-radius: 15em;
    transition: all .5s 
cubic-bezier(.65, 0, .076, 1) !important;
}
.ahievementsd .swiper-slide-active {
  z-index: 10;           /* make sure center slide appears on top */
}
.ahievementsd .swiper-slide-prev, .ahievementsd .swiper-slide-next {
  z-index: 8;           /* make sure center slide appears on top */
}
.ahievementsd .swiper-slide-active .achive-cards h4, .ahievementsd .swiper-slide-active .extr-fontsd-2, .ahievementsd .swiper-slide-active .extr-fontsd{
   opacity:1;
}
.ahievementsd .achive-cards h4, .ahievementsd .extr-fontsd-2, .ahievementsd .extr-fontsd{
   opacity:0;
}
.ahievementsd .swiper-slide-active .achive-cards{
  filter:blur(0px);
}
.ahievementsd .swiper-slide-next .achive-cards, .ahievementsd .swiper-slide-prev .achive-cards{
  filter:blur(1px);
}
.ahievementsd .achive-cards{
  filter:blur(2px);
}
.achivemen-btn i{
    display:none;
}
.data-flecxsd {
        display: flex;
    align-items: flex-start;
    /*margin-bottom: 12px;*/
    justify-content: space-between;
}
.data-flecxsd i{
    font-size: 13px;
    margin-right: 3px;
}
.data-flecxsd p{
    font-size:14px;
    margin:0;
}
.button-namesd .btn-text {
    transition: all .5s 
cubic-bezier(.65, 0, .076, 1) !important;
    position: relative;
    padding-left: 35px;
    z-index: 1;
    font-weight: 600;
    font-size: 15px;
}
.button-namesd .btn-text:after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    top: 50%;
    left: calc(40px - 43px + 2px);
    margin-top: -5px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: rotate(45deg);
    transition: all .5s 
cubic-bezier(.65, 0, .076, 1) !important;
}
.button-namesd .btn-text:before {
       content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 1.7px;
    background: 0 0;
    top: 50%;
    left: -12px;
    margin-top: -1.4px;
    transition: all .45s 
cubic-bezier(.65, 0, .076, 1);
}
.button-namesd:hover .btn-text:before {
        background: #000000;
    transform: translate(16px, 0);
}
.button-namesd:hover .btn-text:after {
    transform: translate(12px, 0) rotate(45deg);
}
.cor-card p{
    font-size:15px
}
.course-levesd-row{
    row-gap:25px
}

/*keynumbers*/
.keynumbnersd{
    position:relative;
    padding:4rem 0 4.2rem;
   
    background-color: #011e30 !important;
}
.keynumbnersd:before{
        content: "";
    position: absolute;
    background-image: url(../image/bg/cta.png);
    height: 100%;
    top: 0;
    width: 100%;
    opacity: 0.1;
    left: 0;
}
.achivesd{
   position: relative;
    z-index: 2;
    text-align: -webkit-center;
}
.achivesd .number{
        color: #fff;
    font-size: 3rem;
    font-weight: 600;
}
.achivesd h5{
    color: #fff;
    font-size: 1rem;
    margin: 0.5rem 0 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.keynumbnersd .row .col-lg-3:not(:last-child) {
  border-right: 1px solid #ffffff3b;
}

/*ahvements*/
.ahievementsd{
    position:relative;
    padding-bottom:1rem;
}
.achive-cards{
    position: relative;
    transition: all 0.4s 
ease;
text-align: center;
}
.achieve-images{
        display: block;
   
}
.achieve-images{
    height: 275px;
    object-fit: cover;
    border-radius: 20px;
     margin-bottom: 3rem;
        transition: all 0.4s 
ease;
box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.extr-fontsd{
       margin-top: 0.6rem;
    font-weight: 600;
    font-size: 13px;
    display: block;
}
.extr-fontsd-2{
    font-size:13px;
    margin:0
}
.achive-cards h4{
    font-size:1.1rem;
}
.swiper-ahivemn .swiper-wrapper {
        margin: 5.5rem 0 0;
        max-width:1116px;
}
.swiper-ahivemn .swiper-button-next {
      right: 15%;
    top: 52%;
}
.swiper-ahivemn .swiper-button-prev {
   left: 15%;
    top: 52%;
}
.swiper-ahivemn .swiper-button-prev:after, .swiper-ahivemn .swiper-button-next:after {
    background-image: unset;
    content: "\f1c0";
    font-family: flaticon_normal-icon !important;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    font-size: 15px;
    transition: all 0.4s 
ease-in-out;
}
.swiper-ahivemn .swiper-button-prev:hover:after, .swiper-ahivemn .swiper-button-next:hover:after{
    background:var(--primary-color);
}
.swiper-ahivemn  .swiper-button-prev:after {
    background: #fff;
    border: 1px solid #e7e7e7;
    transform: rotate(-180deg);
}
.cjoin-nowe{
    position: relative;
    display: block;
    max-width: 230px;
    text-align: center;
    border: 1px solid #ffffff2b;
    color: #fff;
    padding: 1rem;
    padding-top: 0;
}
.cjoin-nowe img{
    object-fit:cover
}

.whatsappicon {
    position: fixed;
    right: 10px;
    top: 50%;
    z-index: 9999;
}
.whatsappicon a{
    display:inline-block;
}
.whatsappicon .call-icons {
    display: none;
}
.beatcrumb-sec-main{
    position: relative;
    background-color: #fcf6e6;
    display: grid;
    align-items: center;
    padding-top: 3rem;
    padding: 3rem 0;
    /*background-size: cover;*/
    /*background-image:url(../image/bg/beadcrumb-petten.webp);*/
   /*min-height: 350px;*/
    background-position: center;
    z-index: 1;
}
.beatcrumb-sec-main:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-image:url(../image/about/chess-pattern.webp);
    background-position: center;
    z-index: -1;
   opacity:0.05;
}
.beadcrumb-content-box h1{
    color: #011e30;
    font-size: 28px;
    font-weight: 700;
    text-align:center;
}

/*.beadcrumb-content-box ul{*/
/*    padding: 0;*/
/*    margin:30px 0 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/
/*.beadcrumb-content-box ul li a{*/
/*    color: var(--primary-color);*/
/*    font-weight: 500;*/
/*    font-size: 14px;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
/*}*/
/*.beadcrumb-content-box ul li{*/
/*    color:var(--primary-color);*/
/*     font-weight:600;*/
/*    font-size:14px;*/
/*    position:relative;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
/*}*/
/*.beadcrumb-content-box ul li:not(:last-child):before{*/
/*    position: absolute;*/
/*    content: "\f1ce";*/
/*    font-family: flaticon_normal-icon !important;*/
/*    font-size: 15px;*/
/*    color: #fff;*/
/*    right: 12px;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    margin: auto 0;*/
/*    transform: rotate(-45deg);*/
/*}*/

/*.beadcrumb-content-box{*/
    /*width:60%;*/
/*    margin:0 auto;*/
/*}*/

/*.beadcrumb-content-box ul li:not(:last-child){*/
/*    padding-right:40px;*/
/*}*/





.intro-sec-main-chess{
    padding:4rem 0 0;
    position:relative;
}
.continue-boxx .curriculum-box{
           margin-bottom:16px;
}
.introsec-main-content{
   margin-left:30px; 
}

.curriculum-box{
    border: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: 0.4s;
    position: relative;
    justify-content: center;
}
.curriculum-box:hover{
    transform: translateY(-10px);
}
.curriculum-box .icon-box-curr{
    background:#020f17e0;
    border-radius: 50%;
    height: 70px;
    min-width: 70px;
    text-align: center;
    align-content: center;
}

.curriculum-box .icon-box-curr img{
    filter: invert(82%) sepia(89%) saturate(1349%) hue-rotate(320deg) brightness(99%) contrast(100%);
}

.curriculum-box h4{
    font-size: 17px;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.curriculum-box-sec{
    margin-top:30px;
}



.online-chess-box {
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0px 1px 1px 0px rgba(42, 54, 79, .02), 0px 2px 4px 0px rgba(42, 54, 79, .02), 0px 4px 8px 0px rgba(42, 54, 79, .02), 0px 0px 20px 0px rgba(42, 54, 79, .08);
    transition: all .27s cubic-bezier(0, 0, 0.58, 1);
    height: -webkit-fill-available;
}
.online-chess-box:hover{
    transform: translateY(-5px);
    box-shadow: 0px 1px 1px 0px rgba(42, 54, 79, .05), 0px 4px 12px 0px rgba(42, 54, 79, .05), 0px 10px 20px 0px rgba(42, 54, 79, .05), 0px 10px 38px 0px rgba(42, 54, 79, .12);
}
.online-chess-box h4{
    font-size:20px;
    font-weight:600;
}
.online-chess-box p{
    margin:0;
}

.online-chess-sec .row {
    gap:20px 0;
}

.who-can-join-sec{
    padding:4rem 0 3rem;
    background: #faf5e1;
}

.who-can-join-box{
    position: relative;
     overflow: hidden;
    padding: 20px;
    transition: 0.5s;
    background: #fff;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius:10px;
    border: 1px solid #e9ecef;
    text-align:center;
}


.who-can-join-box .who-can-img {
    overflow: hidden;
    border-radius: 11px;
}

.who-can-join-box .who-can-img img {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    border-radius: 11px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ðŸ”¥ Hover ONLY when image div is hovered */
.who-can-join-box .who-can-img:hover img {
    transform: scale(1.1);
}

.who-can-join-box .who-canbtn {
    background: #fdc242;
    position: relative;
    margin: 0 auto;
    padding: 6px 10px 7px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.who-can-join-box h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 14px;
}


.who-can-carousel .swiper-wrapper{
    margin-bottom:60px;
}

.who-can-carousel .swiper-pagination-bullet-active{
    background:#020f17;
}

.what-students-sec{
    padding:4rem 0;
    position:relative;
}

.what-students-box{
    position:relative;
}

.what-students-box:before{
    position:absolute;
    content:"";
    left:30px;
    top:0;
    height:100%;
    width:1px;
    background:var(--primary-color);
}

.what-students-box .what-students-items{
    padding-left: 60px;
    position: relative;

}
.what-students-box .what-students-items:before{
    position: absolute;
    content: "";
    left: 20px;
    top: 0;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    background: var(--primary-color);
}

.what-students-box .what-students-items h4{
    font-size:20px;
    font-weight:600;
}

.what-students-box .what-students-items .what-box-inner{
    border: none;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    border-radius: 2px;
    padding: 20px;
    margin: 10px 0 0;
    justify-content: space-between;
}

.what-students-box .what-students-items:not(:last-child){
    margin-bottom:30px;
}

.what-students-items .what-box-inner ul{
    margin: 10px 0 15px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.what-students-items .what-box-inner ul li{
    padding-left:30px;
    position:relative;
    width:48%;
}
.what-students-items .what-box-inner ul li:not(:last-child){
    margin-bottom:5px;
}
.what-students-items .what-box-inner ul li:before{
    position:absolute;
    content: "\f14b";
    font-family: flaticon_normal-icon !important;
    width:18px;
    height:18px;
    line-height:18px;
    border-radius:50%;
    color:#000;
    background:var(--primary-color);
    left:0;
    font-size:12px;
    text-align:center;
}
.key-box-number-miaon{
    position: sticky;
    top: 100px;
}
.key-box-number-miaon .key-box-number{
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 20px;
    max-width: 303px;
}

.key-box-number-miaon .key-box-number span{
    font-size:40px;
    font-weight:700;
}

.key-box-number-miaon .key-box-number h5{
    font-size:20px;
    font-weight:500;
    margin:20px 0 0;
}

.key-box-number-miaon .key-box-number:not(:last-child) {
    margin-bottom:20px;
}

.key-box-number-miaon .key-box-number:nth-child(2) {
    background:var(--primary-color);
}

.beadcrumb-content-box ul li.active {
    font-weight: 800;
}

.who-can-join-sec .who-can-join-onlinesec{
   width:93%;
   margin-left:auto;
}


.who-can-carousel .swiper-button-prev:after, .who-can-carousel .swiper-button-next:after {
    background-image: unset;
    content: "\f1c0";
    font-family: flaticon_normal-icon !important;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    font-size: 15px;
    transition: all 0.4s 
ease-in-out;
}

.who-can-carousel .swiper-button-prev, .who-can-carousel .swiper-button-next{
    top:unset;
    bottom:0;
}
.who-can-carousel .swiper-button-prev{
    left:43%;
}
.who-can-carousel .swiper-button-next{
    right:50%;
}

.who-can-carousel .swiper-button-prev:hover:after, .who-can-carousel .swiper-button-next:hover:after{
    background:var(--primary-color);
}

.who-can-carousel .swiper-button-prev:after {
    background: #fff;
    border: 1px solid #e7e7e7;
    transform: rotate(-180deg);
}

.why-chose-beniner-sec{
    padding:5rem 0 0;
    position:relative;
}

.why-level-box{
    background: rgb(255, 255, 255);
    border: 1px solid #dee2e6;
    transition: 0.3s ease-in-out;
    padding: 20px;
    position: relative;
    border-radius: 15px;
    height:100%;
}

.why-level-box .icon-box-sss{
        width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: 
 color-mix(in srgb, #00305c, transparent 40%);
    background: 
 color-mix(in srgb, #00305c, transparent 97%);
    transition: .3s 
ease-in-out;
margin-bottom:25px;
}

.why-level-box h4{
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}
.why-level-box:hover{
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d !important;
    transform: translateY(-.25rem);
    border: 1px solid #dee2e6;
}

.why-level-box:hover .icon-box-sss{
        background: #faf5e1;
}
.why-chose-beniner-sec .row{
    gap:20px 0;
}

label.error{
    color: red;
    font-size: 14px;
    transform: translateY(-10px); 
}

.introsec-level-img img{
    height:auto;
    width:100%;
    object-fit:cover;
}
.form-lavel-box{
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgb(253 194 66 / 39%);
    box-shadow: 0 20px 30px 0 rgba(1, 6, 20, 0.1);
    padding: 20px;
    margin-right:30px;
    position: sticky;
    z-index: 3;
    top: 120px;
}

.form-lavel-box .contact-chess-input,
.form-lavel-box .contact-chess-textarea{
    border: 1px solid #fdc2426b;
}



.what-included-box .menu-inlude {
    padding: 3px;
    border-radius: 10px;
    background-color: #faf5e1;
    border: 1px solid rgba(253, 194, 66, 0.39);
    position: sticky;
    z-index: 3;
    top: 120px;
    display: flex;
    max-width: fit-content;
    margin: 0 0 30px;
    white-space: nowrap;
    overflow-x: auto;
}

.what-included-box .menu-inlude::-webkit-scrollbar {
    height: 8px; 
}

.what-included-box .menu-inlude::-webkit-scrollbar-track {
    background: #f5f5f5; 
    border-radius: 4px;
}

.what-included-box .menu-inlude::-webkit-scrollbar-thumb {
    background-color: #cfcfcf; 
    border-radius: 4px;
    border: 2px solid #f5f5f5; 
}


.what-included-box .menu-inlude {
    scrollbar-width: thin;
    scrollbar-color: #cfcfcf #f5f5f5;
}



.what-included-box .menu-inlude li a{
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight:600;
}


.what-included-box .menu-inlude li a.active{
    background-color: var(--primary-color);
}
.what-tab-include-box .what-tab-weekly-box{
    padding: 20px 30px;
    padding-bottom: 25px;
    border-radius: 20px;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.what-tab-include-box{
     display: grid;
    gap: 30px 0;
}

.what-tab-include-box .what-tab-weekly-box h4{
    font-size:22px;
    font-weight:600;
}

.what-tab-include-box .what-tab-weekly-box ul{
    padding: 0;
    margin: 20px 0 0;
        display: flex;
    flex-wrap: wrap;
    
}

.what-tab-include-box .what-tab-weekly-box ul li:before{
    position: absolute;
    content: "\f14b";
    font-family: flaticon_normal-icon !important;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    color: var(--primary-color);
    left: 0;
    font-size: 14px;
    text-align: center;
}
.what-tab-include-box .what-tab-weekly-box ul li{
    padding-left:25px;
    position:relative;
    width:50%;
}
.online-offline-sec{
    padding:0 0 5rem;
    position:relative;
}


.online-offline-content .online-offline-content-points{
    background:#faf5e1;
    padding: 50px 115px;
    width: 760px;
    border-radius: 0px 0px 80px 0px;
    padding-right: 0;
    margin-top: 40px;
    margin-left: -100px;
    display: inline-block;
    position: relative;
}
.online-offline-content .online-offline-content-points:after{
    border-bottom: 49px solid var(--primary-color);
    border-left: 76px solid transparent;
    border-top: 58px solid transparent;
    position: absolute;
    top: -106px;
    left: 0;
    content: "";
}
.online-offline-content-points ul li{
        padding-left: 30px;
    position: relative;
}
.online-offline-content-points ul li:before{
    position: absolute;
    content: "\f14b";
    font-family: flaticon_normal-icon !important;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    color: #000;
    background: var(--primary-color);
    left: 0;
    font-size: 12px;
    text-align: center;
}
.online-offline-content-points ul{
    padding:0;
    margin:0;
}
.online-offline-content-points ul li:not(:last-child){
    margin-bottom:10px;
}
.online-offline-content-points h4{
    font-size: 20px;
    margin-bottom: 20px;
}

.online-offline-content h4{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.offline-main-items{
    margin-top:50px;
}

.off-line-class-sec{
    position:relative;
}
.your-chess-journey{
    position:relative;
    padding:5rem 0 0;
}

.your-chess-box .your-chess-items{
    border-bottom:1px dashed #ddd;
    padding:0 0 10px;
    margin:0 0 10px;
}

.your-chess-items .title-icon-box .icon-box{
     width: 60px;
    height: 60px;
    background: #faf5e1;
    align-content: center;
    text-align: center;
    border-radius: 50%;
}

.your-chess-items .title-icon-box{
    display: flex;
    gap: 20px;
    align-items: center;
    margin:0 0 10px;
}
.your-chess-items .title-icon-box h4{
    font-size:20px;
    margin:0;
}


.your-chess-items .title-icon-box:hover .icon-box img{
    animation: wobble 1s ease-in-out;
}

@keyframes wobble { 
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.what-students-sec .what-students-img img{  
    text-align: center;
    width: 100%;
    object-fit: cover;}
    
    
.branch-address-sec {
    padding: 4rem 0;
    background: rgb(246 248 249);
 
}



/* Address Boxes */
.branch-address-sec .adrress-box {
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border: 1px solid #ece8e2;
    height: 100%;
    background:#fff;
}
.class-learning-secc .col-lg-4 .learning-box {
    padding: 29px 28px;
}


.branch-address-sec .adrress-box:hover {
       box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d !important;
    transform: translateY(-.25rem);
    border: 1px solid var(--primary-color);
}


.branch-address-sec .row{
    row-gap: 35px;
}

/* Title inside box */
.branch-address-sec .adrress-box h4 {
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.branch-address-sec .adrress-box h4::before {
    content: "";
    width: 40px;
    height: 3px;
    background: #fdc242;
    position: absolute;
    bottom: -6px;
    left: 0;
    border-radius: 5px;
}

/* List styling */
.branch-address-sec .adrress-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.branch-address-sec .adrress-content ul li {
    font-size: 14px;

    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

/* Chess pawn bullet icon */
.branch-address-sec .adrress-content ul li::before {
    content: "♙";
       position: absolute;
    left: -8px;
    top: -6px;
    color: #fdc242;
    font-size: 22px;
}


.branch-address-sec .hedarer-btn-box{
    text-align: center;
    margin: 16px 0;
    justify-content: center;
}

.testimonial-sec-box-main{
    padding:3rem 0 3rem;
    position:relative;
}

.testi-items-box {
    position:relative;
    text-align: center;
    padding: 0 24px;
    padding-bottom: 46px;
}

.testi-items-box .text-content-box{
    padding-top:100px;
}
.testi-items-box .text-content-box .image-icon{
    position: relative;
    max-width: fit-content;
    margin: 0 auto 20px;
}

.testi-items-box .tes__shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testi-items-box .quote_icon {
    background: var(--primary-color);
    width: 72px;
    height: 72px;
    line-height: 75px;
    border-radius: 50px;
    position: absolute;
    top: 9px;
    right: 12px;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 40px;
}

.testi-items-box .tes__shape svg{
    height:100%;
}
.testi-items-box .text-content-box h4{
    font-size:20px;
    margin-bottom:6px;
}

.testimonoalwiperss .swiper-slide.swiper-slide-prev, .testimonoalwiperss .swiper-slide.swiper-slide-next{
    opacity:0.5;
}

.testimonoalwiperss .swiper-wrapper{
    margin-bottom:40px;
}

.testimonoalwiperss .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    opacity: 0.4;
    transform: unset !important;
}
.testimonoalwiperss .swiper-pagination-bullet-active{
     background-color: var(--primary-color);
     opacity:1;
}
.why-chess-chess{
    padding:5rem 0 0;
    position:relative;
}

.why-chess-chess .why-pp-img{
    text-align:center;
}

/*history*/
.why-chesdd-history{
    position:relative;
    padding:3rem 0;
}

.top-history-border{
     position:relative;
     padding:0;
     margin:0 60px;
         max-width: 1116px;
}
.top-history-border:before{
       content: "";
    left: 50%;
    position: absolute;
    height: 100%;
    width: 2px;
    background: #011e30;
}
.top-history-border li{
   max-width: 54%;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.top-history-border li:nth-child(odd){
    margin-right:auto;
}
.top-history-border li:nth-child(even){
    margin-left:auto;
    flex-direction: row-reverse;
}
.top-history-border li:nth-child(even) .rowund-shapes::before{
    transform: rotate(225deg);
        width: 94.5px;
    height: 94.5px;
}
.histry-design-box img{
     max-width: 150px;
    border-radius: 50%;
    min-height: 150px;
    min-width: 150px;
    object-fit: cover;
    border: 5px solid #fcf6e6;
}
.rowund-shapes{
 background: var(--primary-color);
    color: #020f17;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.5px;
    border: 6px solid #fff;
    position: relative;
    font-weight: 600;
}
.rowund-shapes::before {
        content: "";
    position: absolute;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #011e30;
    border-right-color: #011e30;
    border-bottom-color: white;
    border-left-color: white;
    transform: rotate(45deg);
}

.history-titles{
   font-size: 18px;
    position: relative;
    padding-bottom: 13px;
    margin-bottom: 13px;
    border-bottom: 2px solid #011e30;
}
.history-titles:before{
   content: "";
    width: 8px;
    position: absolute;
    height: 8px;
    background: #011e30;
    border-radius: 100%;
    bottom: -5px;
}
.history-cntes{
        padding-top: 3rem;
}
.top-history-border li p{
    margin:0;
    font-size:15.5px;
}

.history-chess-content h4{
    font-size:22px;
    font-weight:600;
}

.history-box-main{
    width: 80%;
    margin: 0 auto 60px;
    align-items: center;
}
.history-chess-year span{
    font-size: 40px;
    font-weight: 800;
}

.history-chess-year{
    padding:40px 30px;
    text-align: center;
    position: relative;
    margin-right: 60px;
}

.history-chess-year:before{
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background: #fdc242;
    z-index: -1;
}

.train-your-sec{
    padding:5rem 0;
    position:relative;
}

.train-box-why{
    text-align:center;
}

.train-box-why h4{
    font-size:22px;
    font-weight:600;
}

.train-box-why .icon-box-mass{
    margin-bottom:20px;
}

.train-your-sec .row{
    gap:35px 0;
}

.real-time-better{
    padding:5rem 0;
    position:relative;
    background-image:url(../image/bg/tution-3-1.png);
}

.real-time-better:before{
    position: absolute;
    content: "";
    background-image: url(../image/bg/tution-3-2.webp);
    height: 150px;
    width: 440px;
    right: 80px;
    top: -80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.better-than-box{
    margin-right:20px;
}
.better-than-box h4, .rela-life-box h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:20px;
}

.rela-life-box ul{
    padding:0;
}
.rela-life-box ul li:not(:last-child){
    margin-bottom:10px;
}
.rela-life-box ul li{
    position:relative;
    padding-left:25px;
}
.rela-life-box ul li:before{
    position:absolute;
    content:"";
    left:0;
    top:0;
    bottom:0;
    font-family: flaticon_normal-icon !important;
    content: "\f14a";
}
.rela-life-box{
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--primary-color);
    height:100%;
}

.rela-life-growth{
    background:unset;
    border: 1px solid #fdc242;
}

.chess-brain-sec{
    padding:5rem 0;
    position:relative;
}

.chess-brain-box{
    border-radius: 30px;
    padding:40px;
}
.chess-brain-sec .section-big-titles{
    color:#fff;
}
.chess-brain-itrmes ul li{
    color:#fff;
}

.chess-brain-sec .chess-brain-box{
    background: #011e30;
    padding: 50px;
    background-image:url(../image/bg/language-5-1.png);
}

.chess-brain-itrmes h4{
    font-size:25px;
    font-weight:600;
    margin-bottom:20px;
}

.chess-brain-itrmes ul li:not(:last-child){
    margin-bottom:15px;
}

.chess-brain-itrmes ul{
    padding: 0;
    position: relative;
}
.chess-brain-itrmes ul li{
    position: relative;
    padding-left: 25px;
}

.chess-brain-itrmes ul li:before{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    font-family: flaticon_normal-icon !important;
    content: "\f14a";
    font-size: 19px;
}

.chess-brain-img{
    border-radius:30px;
    outline: 5px solid #fff;
    overflow:hidden;
}

.chess-brain-img img{
    border-radius:30px;
    transition: 1.3s all ease;
}

.chess-brain-img:hover img{
    transform: scale(1.1);
}

.chess-brain-sec:before{
    position: absolute;
    content: "";
    background-image: url(../image/bg/about-1-1.png);
    background-size: contain;
    background-position: center;
    width: 160px;
    height: 160px;
    bottom: 15px;
    right: 150px;
    z-index: -1;
    animation: rotate 30s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.enroll-now-sec-main{
    padding:0 0 5rem;
    position:relative;
}

.enroll-now-sec-main .enroll-noew-box{
    width:80%;
    margin:0 auto;
}

.enroll-now-btn{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.entroll-img-bottom{
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.entroll-img-bottom img{
    border-radius: 20px;
}

.enrol-number{
    padding: 70px 30px;
    border-radius: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    width: 357px;
}
.enrol-number:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    border-radius: 20px;
    background-color: var(--primary-color);
    -webkit-mask-image: url(../image/bg/mask.webp);
    -webkit-mask-size: cover;
    -webkit-mask-position: top right;
    -webkit-mask-repeat: no-repeat;
}

.enrol-number .achivesd .number, .enrol-number .achivesd h5{
    color:#000;
}

.achiement-sec-main{
    padding:5rem 0;
    position:relative;
}

.achievement-box {
    display: block;
    /*gap: 25px;*/
    background: #FAFAFA;
    /*align-items: flex-start;*/
    transition: 0.3s ease;
    /*align-items: center;*/
        border: 1px solid #E2E2E2;
    border-radius: 10px;
    height: 100%;
        overflow: hidden;
}

.achievement-box img {
    width: 100%;
    object-fit: cover;
}

.achievement-box .achievement-content {
        padding: 10px;
}

.achievement-box .tag {
 background: #fff;
    color: #333;
    padding: 6px 14px;
    display: inline-block;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid #E2E2E2;
    position: relative;
}
/*.achievement-box .tag:before {*/
/*    position: absolute;*/
/*    content: "\f132";*/
/*    font-family: flaticon_normal-icon !important;*/
/*    left: 10px;*/
/*    top: 3px;*/
/*    bottom: 0;*/
/*    margin: auto 0;*/
/*    font-size: 20px;*/
/*        color: #02020285;*/
/*}*/
.achievement-box .title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.achievement-box .achievement-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14.5px;
}
.achievement-box .achievement-details strong {
    color: #000;
}
.achievement-box .achievement-details li:not(:last-child){
    margin-bottom:5px;
}
.achiement-sec-main .row{
    gap:35px 0;
}

.why-benefit-sec{
    padding:0 0 5rem;
    position:relative;
}

.why-benefit-boxss{
    background: #011e30;
    padding:50px;
    border-radius: 16px;
    position:relative;
    z-index:1;
}
.why-benefit-boxss .section-big-titles{
    color:#fff;
}
.why-benefit-boxss p{
    color:#fff;
}

.why-benefit-boxss:before{
    position:absolute;
    content:"";
    right:0;
    top:0;
    height:100%;
    width:40%;
    background-image:url(../image/bg/vector-3.svg);
    background-size:cover;
    background-repeat:no-repeat;
    z-index:-1;
}

.why-benefit-boxss:after{
    position:absolute;
    content:"";
    left:0;
    top:0;
    height:100%;
    width:40%;
    background-image:url(../image/bg/vector-2.svg);
    background-size:cover;
    background-repeat:no-repeat;
    z-index:-1;
}

.off-line-class-content .section-big-titles{
    font-size: 25px;
}

.off-line-class-sec .row{
    align-items:center;
}

.about-sec-chess img{
    border-radius:20px;
}

.suit-curriculum {
    padding: 0;
    margin: 0;
    list-style: none;
}

.suit-curriculum li {
    position: relative;
    padding-left: 30px;  /* spacing so icon doesnâ€™t overlap */
    margin-bottom: 12px;
}

.suit-curriculum li:before {
    content: "\f14b";
    font-family: 'flaticon_normal-icon' !important;
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    font-size: 12px;
}

.structured-chess {
    padding:4rem 0;
}

.structured-chess .row {
    align-items:center;
    row-gap: 25px;
}

.chess-highlights {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 22px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 17px;
}

.chess-programs .little-title{
    font-size:25px;
    margin-bottom:17px;
}
.little-title2{
    font-size:20px;
    font-weight: 500;
}
.img-growth img{
       border-radius: 16px;
}

.main-acheivement {
    padding:4rem 0;
}

.main-acheivement {
    padding: 2rem 0 3rem;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


.gallery-item a::after {
    content: "View";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover a::after {
    opacity: 1;
}

.main-acheivement .row {
   row-gap:24px
}


/*Acheivement*/
.testimonial-filters {
    display: flex;
    flex-wrap: nowrap;            
    justify-content: flex-start;   
    gap: 24px;

    width: 100%;
    max-width: 100%;

    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;

    position: sticky;
    top: 70px;
    z-index: 999;
    background: #fff;

    padding: 12px 16px;

    overflow-x: scroll;       
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; 

    scrollbar-width: thin;        
    scrollbar-color: #c9a24d #f1f1f1;
}

.testimonial-filters::-webkit-scrollbar {
    height: 6px;                  
}

.testimonial-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-filters::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #c9a24d, #e8c873);
    border-radius: 10px;
}

.testimonial-filters::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #b8943f, #d9b85f);
}


.filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}


.tab-content h4{
        text-align: center;
    margin-bottom: 20px;
}

.testimonial-filters .filter-btn {
    background: #cccccc59;
    border: none;
    padding: 10px 22px;   /* ✔ balanced padding */
    font-size: 14px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
  
}


.testimonial-filters .filter-btn:hover {
  color: #000;
}

.testimonial-filters .filter-btn.active {
    color: #080808;
    font-weight: 700;
    background:var(--primary-color);
}

/*.testimonial-filters .filter-btn.active::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 0;*/
/*  bottom: -1px;*/
/*  width: 100%;*/
/*  height: 3px;*/
/*  background-color: #fdc242;*/
/*  border-radius: 2px;*/
/*}*/
.tab-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.contact {
    display:flex;
    gap:15px
}
.error-pp-sec{
    padding:4rem 0 5rem
}
.error-pp-sec .erorr-img-box {
    position:relative;
    margin-bottom:30px;
}
.erorr-img-box .it-error-shape-1{
    position: absolute;
    z-index: -1;
    top: 33%;
   transform: scale(0.8);
   left: 2%;
}

.btn-sec{
display: flex;
    margin-top: 20px;
    gap: 15px;
}

.why-benefit-img {
        display: flex;
    justify-content: center;
    margin-top: 38px;
}
.why-benefit-img img{
    max-width: 80% !important;
    border-radius:20px;
}

.why-benefit-boxss p{
    align-items:center;
}

.ahievementsd .section-big-titles{
    margin:0;
}

.ahievementsd .col-lg-3{
    text-align: -webkit-right;
}

.ahievementsd .btnsd{
    margin-right: 30px;
}
.spinner-border{
  display:block;  
      margin: 0 auto 1rem;
}
.secid-para{
    font-size:15px !important;
    font-weight: 600;
}
#loadMoreBtn{
    background:#fcf6e6;
}


.hedarer-btn-box .btnsd {
    font-size: 12px;
    padding: 8px 13px;
}

.loginbtn{
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding-bottom: 4px;
   font-size: 14px;
   border-bottom:1px solid #000;
}




/* hover effect */
.loginbtn:hover{
  color: #fdc242;
   border-bottom:2px solid #fdc242;
}

.hedarer-btn-box{
gap: 12px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-left: -1.8rem;
}



.mega-menu .hedarer-btn-box{
    display:none;
}

.loginbtn.second-btn{
     display:block;
}


/*timeline*/

.top-category-wrapper .top-category-box-items h4 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1rem;
}