

/*===== Header ======*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 4px #ddd;
    z-index: 999;
}
.header__content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header__logo-img{
    width: 70px;
}

.header__logo-name{
    color: var(--text-color);
    font-size: 24px;
    width: calc(100% - 50px);
    font-weight: 600;
}

.header__menu{
    display: flex;
    align-items: center;
}

.header__menu-item{
    display: block;
    padding: 8px 16px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.hide-link{
    background: #ff7f15;
    color: #fff;
    padding: 8px 20px;
    margin-left: 6px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
}


.header__menu-item:hover{
    color: var(--primary-color-2);
}

.hide-link:hover{
    color: #fff;
}

.header__action{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    padding: 0;
    position: relative;
}

.header__action-icon{
    font-size: 28px;
    padding: 4px;
    cursor: pointer;
    display: none;
    position: relative;
    z-index: 999;
}
.header__action-icon.active{
    display: inline-block;
}
.action-icon-hide.active{
    display: inline-block;
    animation: spin 0.5s linear forwards;
}

@keyframes spin {
    100%{transform: rotate(90deg);}
}

.header__action-icon:hover{
    color: var(--primary-color-2);
}

.header__submenu{
    position: absolute;
    top: 40px;
    right: 0;
    width: 150px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    text-align: start;
    border-radius: 4px;
    display: none;
}
.header__submenu.active{
    display: block;
    animation: showMenu 0.5s linear;
}

@keyframes showMenu {
    0%{opacity: 0; transform: translateY(5px);}
    100%{opacity: 1; transform: translateY(0);}
}

.header__submenu-item{
    display: block;
    padding: 10px 0;
    padding-left: 14px;
}

.header__submenu-item:hover{
    color: var(--primary-color-2);
}

.submenu__icon{
    width: 20px;
}

.btn-lang{
    padding: 0 6px 0 8px;
    border-left: 1px solid #ddd;
}
.btn-lang:focus{
    border: none;
    outline: none;
}

.language-img{
    width: 24px;
    transform: translateY(-2px);
}

.dropdown-menu-lang{
    min-width: 100px !important;
    padding: 4px 0;
}
.dropdown-lang{
    padding: 4px 8px;
    font-size: 12px;
}
.dropdown-lang .language-img{
    width: 20px;
    height: 12px;
    margin-right: 4px;
}

/* Nav mobile */


.nav_mobile{
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 50px;
    display: none;
}

.btn_show-menu{
    padding: 10px 0;
    cursor: pointer;
}

.nav-mobile-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}
.nav-mobile-toggle > span{
    display: block;
    width: 20px;
    height: 1px;
    background-color: #000;
    transition: .3s;
}

.nav_mobile-menu{
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    height: calc(100vh - 0px);
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}


.nav_mobile-list{
    position: relative;
    width: 100%;
    background: #fff;
    height: 100vh;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all .3s cubic-bezier(.39,.575,.565,1);
    padding: 30px 0;
}
.nav_mobile-list.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.nav_mobile-menu.active{
    opacity: 1;
    visibility: visible;
}

.btn-close-nav{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-block;
    padding: 10px;
    font-size: 22px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 9999;
}
.btn-close-nav i{
    transition: .3s;
}

.btn-close-nav:hover i{
    transform: rotate(180deg);
}

.nav-logo{
    position: relative;
    left: 46px;
    max-width: 50px;
    margin-bottom: 30px;
}

.nav_mobile-list li:first-child{
    margin-top: 40px;
}
.line-nav {
    width: 100%;
    height: 1px;
    margin-top: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav_mobile-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 46px;
}
.nav_mobile-item span{
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    display: inline-block;
    transition: .3s;
    position: relative;
}
.nav_mobile-item span::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: #000;
    transition: .3s;
}

.nav_mobile-item svg{
    opacity: 0;
    transform: translate(-4px,-2px);
    transition: .3s;
}
.nav_mobile-item:hover svg,
.nav_mobile-item.active svg{
    opacity: 1;
    transform: translate(0, -2px);
}

.nav_mobile-item:hover span,
.nav_mobile-item.active span{
    color: #000;
}

.nav_mobile-item:hover span::after{
    width: 100%;
}


.phone-mobile{
    display: block;
    color: rgba(0, 0, 0, 0.8);
    font-family: "utm-caviar";
    position: absolute;
    bottom: 5px;
    left: 0;
    padding: 10px 46px;
}
.phone-mobile svg{
    transform: rotate(-35deg);
}
.btn-search-close{
    background: transparent;
    color: #ccc !important;
    cursor: pointer;
    font-size: 18px !important;
}

/*=========== Banner ======= */
.video{
    margin-top: 80px; 
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.banner{
    margin-top: 80px;
}

.video video{
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.banner__content{
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.banner__left{
    padding-right: 30px;
    max-width: 580px;
}

.banner-home{
    padding-left: 20px;
}

.banner__title{
    font-weight: 900;
    font-size: 34px;
    line-height: 1.4;
    text-transform: capitalize;
    color: var(--text-color);
}

.banner__title span{
    color: var(--primary-color);
    position: relative;
}
/* .banner__title span::after{
    content: "";
    position: absolute;
    left: 0;
    height: 95%;
    width: 100%;
    border-left: 4px solid var(--text-color);
    animation: typing 2s steps(16) infinite;
    background: #fff;
} */

@keyframes typing{
    100%{
        left: 100%;
        margin: 0 -35px 0 35px;
    }
}


.banner__desc{
    padding: 30px 0;
    color: #555;
    line-height: 1.8;
}
.banner__desc-icon{
    width: 30px;
}

/* Banner tvc */

.banner-tvc{
    background-color: #f3f3f9;
    background-size: 640px 458px;
    position: relative;
    width: 100%;
    padding: 100px 0;
}

.banner-tvc::after{
    background-image: url(../imgs/tvc/banner-line.svg);
    background-position: 0 0;
    background-size: 3840px 66px;
    bottom: -66px;
    content: "";
    display: block;
    height: 66px;
    left: 0;
    position: absolute;
    width: 100%;
}


.shape-yellow{
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
}
.shape-teal{
    position: absolute;
    top: 60px;
    left: 0;
    width: 8%;
}
.shape-leaf{
    position: absolute;
    bottom: -100px;
    right: 0;
    width: 7%;
}

.banner-content-tvc{
    display: flex;
    gap: 40px;
    align-items: center;
}

.banner-content-left,
.banner-content-right{
    width: 50%;
}

.banner-content-subtitle{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.line-span{
    height: 9px;
    width: 120px;
    background-image: url(../imgs/tvc/line-span.svg);
    background-repeat: no-repeat;
    background-size: 120px 9px;
    display: block;
}

.banner-content-title{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.4;
    margin: 20px 0;
    max-width: 600px;
}

.banner-content-title b{
    font-weight: 600;
}

.banner-btn{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background: #23408c;
    padding: 8px 80px;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    transition: .3s;
}

.banner-btn:hover{
    background: #181c47;
}


.banner-content-video{
    position: relative;
}

.banner-content-video::after{
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background-image: url(../imgs/tvc/bg-video.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.banner-content-video video{
    width: 100%;
    position: relative;
    z-index: 1;
}


.banner-tvc{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 80px;
    padding: 100px 0 40px;
    position: relative;
}

.banner-container{
    position: relative;
}

.banner-shape{
    position: absolute;
    width: 850px;
    bottom: 0px;
    right: -30px;
}


.banner-main{
    position: relative;
    margin-bottom: 30px;
}


.banner-main h2{
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: rgb(0, 0, 0) 1px 1px 2px;
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-main ul{
    list-style: circle;
    margin-left: 30px;
}

.banner-main ul li{
    font-size: 20px;
    font-weight: 400;
}
.banner-main ul li span{
    color: #23408c;
    font-weight: 600;
}

.contact-now{
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background: #23408c;
    padding: 10px 80px;
    border-radius: 30px;
    margin-top: 40px;
    display: inline-block;
    cursor: pointer;
    transition: .3s;
}
.contact-now:hover{
    background: #ff8015;
}

.tvc-body{
    margin-top: 100px;
}

.product-home{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px 20px;
}

.product-content,.product-image{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-image img{
    transition: 1s;
}

.product-image:hover img{
    transform: scale(1.1);
}

.icon-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: .3s;
}
.icon-play:hover{
    background: #415b76;
}


.product-title{
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0;
    flex-grow: 1;
}

.product-desc{
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
}

.view-more{
    font-size: 22px;
    font-weight: 600;
    padding: 6px 40px;
    border-radius: 30px;
    background: #23408c;
    color: #fff;
    display: inline-block;
}

/* number */

.number{
    background: url(../imgs/tvc/why-bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}
.number::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.number-body{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    padding: 100px;
    position: relative;
    z-index: 1;
}

.number-content{
    text-align: center;
}

.number-content h2{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.number-content p{
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
}

/* Why */

.why-body{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin: 40px 0;
}

.why-content{
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    padding: 30px 40px;
    text-align: center;
    border: 1px solid #f8f8f8;
}

.why-icon{
    width: 120px;
    margin: auto;
}

.why-title{
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
    color: #23408c;
}

.procedure-tvc{
    text-align: center;
    margin-top: 50px;
}

.procedure-tvc img{
    width: auto;
}

.video-intro video{
    width: 100%;
}

/* benefit */







.benefit-head{
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.benefit-head span{
    font-size: 46px;
    font-weight: 700;;
    color: #fff;
    display: inline-block;
    max-width: 400px;
}

.benefit-head::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg,#23408c 0%,#1083e6 100%);
    box-shadow: 0vmin 4vmin #00000030;
    border-radius: 35% 65% 62% 38% / 49% 61% 39% 51%;
    z-index: -1;
}

.benefit{
    display: flex;
    align-items: center;
}

.benefit-left{
    width: 45%;
}

.benefit-right{
    width: 55%;
}

.benefit-main{
    position: relative;
}

.benefit-content{
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    margin-bottom: 20px;
}

.benefit-even{
    left: 70px;
}
.benefit-odd{
    left: 140px;
}

.benefit-number{
    color: #92939e;
    font-size: 80px;
    font-weight: 600;
}

.benefit-title{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #23408c;
}

/* contact */


.contact-tvc{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ct-left{
    padding:0 20px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    position: relative;
    z-index: 3;
}

.form-wrapper{
    max-width: 500px;
}

.contact-heading h2{
    font-weight: 600;
    white-space: nowrap;
    height: 120px;
    font-size: 40px;
}

.contact-heading h2 span{
    color: #ff8015;
    font-size: 80px;
}

.contact-heading p{
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
}
.contact-heading p a{
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

.contact-form{
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.input-wrap{
    position: relative;
}

.input-wrap.w-100{
    grid-column: span 2;
}

.contact-input{
    width: 100%;
    background-color: #f5f5f5;
    padding: 14px 20px;
    border: none;
    outline: none;
    border-radius: 14px;
    font-weight: 400;
    transition: .3s;
    border: 1px solid transparent;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.4);
}
.contact-input:hover{
    background: #eee;
}

.input-wrap label{
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    pointer-events: none;
    font-weight: 400;
    transition: .3s;
    padding: 0 6px;
    background: transparent;
}

.input-wrap .icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-wrap.textarea textarea{
    resize: none;
    min-height: 150px;
}

.input-wrap.textarea label, .input-wrap.textarea .icon {
    top: 24px;
}

.input-wrap.focus .contact-input, .input-wrap.not-empty .contact-input{
    background-color: #fff;
    border: 1px solid #23408c;
    box-shadow: 0 0 5px #23408c;
}

.input-wrap.focus label, .input-wrap.focus .icon,
.input-wrap.not-empty label, .input-wrap.not-empty .icon{
    color: #23408c;
}

.input-wrap.not-empty label{
    font-size: 13px;
    top: 0;
    background: #fff;
}


.contact-btn{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
    width: 100%;
    grid-column: span 2;
}

.contact-btn .btn{
    display: inline-block;
}

.uploads{
    background: #fff;
    border: 1px solid #000;
    height: 60px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}
.uploads span{
    font-weight: 400;
}

.btn-submit{
    background: #23408c;
    color: #fff;
    font-weight: 500;
    border: 1px solid #23408c;
    border-radius: 30px;
    font-size: 18px;
}


.upload-file{
    display: none;
}


.ct-right{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    overflow: hidden;
    pointer-events: none;
}

.image-wrapper{
    position: relative;
    height: 100%;
    width: 100%;
    grid-column: 2;
}

.ct-image{
    position: absolute;
    height: 100%;
    width: 130%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}

.wave-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 100%;
    background: #fff;
}

.wave-wrap svg{
    position: absolute;
    height: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 40px);
}

#wave{
    fill: #fff;
    height: 100%;
}

.dashed-wave{
    position: absolute;
    z-index: 3;
    height: 130%;
    bottom: -14%;
    left: -48px;
}

#dashed-wave{
    fill: none;
    stroke: #999;
    stroke-width: 1px;
    stroke-dasharray: 6.5;
    opacity: 0.8;
}



/* About */
/*-------- Giới thiệu -----------*/
.about{
    /* background-image: url(../imgs/bg-2.png);
    background-repeat: no-repeat;  */
    position: relative;
    top: -5px;
}

.about__container{
    display: flex;
    align-items: center;
    padding: 50px 0;
}
.about__content{
    padding-left: 30px;
}
.about__content h5{
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    color: #00c3e2;
    position: relative;
}
.about__content h5::after{
    content: "";
    position: absolute;
    top: 10px;
    right: -30px;
    width: 22px;
    height: 2px;
    background-color: #00c3e2;
}
.about__content h2{
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(to bottom, #0932e1 0%, #1e7ee6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    margin: 20px 0;
}
.about__content p{
    font-size: 18px;
    margin: 20px 0;
    color: #666;
}

.about__text{
    font-size: 16px;
    list-style-type: disc;
    padding-left: 2rem;
    color: var(--text-color-2);
}
.about__text li{
    margin: 14px 0;
    padding-left: 14px;
    font-style: italic;
}

/* Khối lập phương */
.cube__content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-cube{

}


.cube{
    position: relative;
    width: 8rem;
    height: 8rem;
    transform-style: preserve-3d;
    transform: rotateX(-30deg);
    animation: cube 8s linear infinite;
}
.cube-st{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.cube-st span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#151515, #580101);
    transform: rotateY(calc(90deg * var(--i))) translateZ(4rem); /*300/2=150 */
}

.cube .top{
    position: absolute;
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background: #222;
    transform: rotateX(90deg) translateZ(4rem);
}
.cube .bottom{
    position: absolute;
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background: #580101;
    transform: rotateX(90deg) translateZ(-6rem);
    filter: blur(10px);
    box-shadow: 0 0 4rem rgba(88,1,1, 0.2),
    0 0 8rem rgba(88,1,1, 0.4),
    0 0 12rem rgba(88,1,1, 0.6),
    0 0 16rem rgba(88,1,1, 0.8),
    0 0 22rem rgba(88,1,1, 1);
}

.cube:hover{
    cursor: pointer;
}
.cube:hover .cube-st span{
    background: linear-gradient(#151515, #1a5801);
}
.cube:hover .bottom{
    background: #1a5801;
    box-shadow: 0 0 4rem rgba(4, 88, 1, 0.2),
    0 0 8rem rgba(4, 88, 1, 0.4),
    0 0 10rem rgba(4,88,1, 0.6),
    0 0 14rem rgba(4,88,1, 0.8),
    0 0 18rem rgba(4,88,1, 1);
}

@keyframes cube {
	0%{
		transform: rotateX(-30deg) rotateY(0);
	}
	100%{
		transform: rotateX(-30deg) rotateY(360deg);
	}
}

@keyframes rotate {
	0%{
		transform: rotate(0);
	}
	100%{
		transform: rotate(-360deg);
	}
}





/*===== Main ======*/
.main{
    position: relative;
}

.background__main{
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 100%;
    height: 2000px;
    background-image: url(../imgs/bg-4.png);
    background-repeat: no-repeat;
    background-size: 50%;
    z-index: -1;
}
/*===== Services ======*/

.background__services{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 1400px;
    background-image: url(../imgs/bg-4.png);
    background-repeat: no-repeat;
    background-position: right;
    z-index: -9;
}

.section__title{
    padding: 20px 0;
    text-align: center;
}
.section__title h4{
    font-family: sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #00c3e2;
    font-weight: 700;
}

.section__title h3{
    font-family: sans-serif;
    font-size: 32px;
    color: #454545;
    font-weight: 700;
    margin: 10px 0;
    position: relative;
    line-height: 1.6;
}
.section__title p{
    max-width: 460px;
    margin: auto;
}

.section__title .what{
    display: inline-block;
}
.section__title .what::after{
    content: "";
    position: absolute;
    left: 0;
    height: 95%;
    width: 100%;
    border-left: 4px solid var(--text-color);
    animation: typing2 2s steps(16) infinite;
    background: #fff;
}

@keyframes typing2{
    70%,100%{
        left: 100%;
        margin: 0 -35px 0 10px;
    }
}

/*.title-bar{
    position: relative;
}
.title-bar::after{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 270px;
    height: 13px;
    margin: auto;
    background: url('../imgs/title_bar02.png') no-repeat;
}*/
.services__action{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 30px auto;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #dde2e9;
}
.services__action-item{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    background: #fff;
}
.services__action-item.active{
    background: rgba(211, 223, 255, 0.4);
}
.services__action-item:hover::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;;
    background: rgba(211, 223, 255, 0.4);
    z-index: 9;
}

.services__action .services__action-item:first-child{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right: 1px solid #dde2e9;
}
.services__action .services__action-item:last-child{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.services__action-item:hover{
    cursor: pointer;
}


.services__name{
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #403f3f;
    position: relative;
    z-index: 99;
}

.services__container{
    padding: 30px 0;
    display: none;
}
.services__container.active{
    display: block;
    animation: opacity 1s linear;
}

@keyframes opacity {
    0%{opacity: 0;}
    100%{opacity: 1;}
}

.services__item{
    margin-bottom: 30px;
}
.services__item a{
    height: 100%;
}

.services__item-service{
    position: relative;
    padding: 40px;
    box-shadow: 0 0 20px #ddd;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    transition: 0.4s;
    background: #fff;
    color: var(--text-color);
}
.services__item-service:hover{
    cursor: pointer;
    transform: translateY(-5px);
}

.items__overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.01);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%,-50%) rotate(0deg);
    transition: all 0.5s ease-in-out;
}
.services__item-service:hover .items__overlay{
    width: 100%;
    height: 100%;
}
.services__item-service a{
    padding: 10px 0 20px;
    text-align: center;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    display: block;
    position: relative;
    z-index: 2;
    transition: .3s;
}
.service__item-service a:hover{
    color: var(--primary-color);
}

.services__item-img{
    width: 120px;
    height: 150px
}

.services__item-img img{
    object-fit: cover;
}
.services__service .services__item-img img{
    -webkit-box-reflect: right -70px linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05), rgba(255,255,255,0.05));
}

.services__marketing{
    padding: 20px;
    max-height: 1450px;
    overflow-y: scroll;
    overflow-x: hidden;
}
/* Handle */
.services__marketing::-webkit-scrollbar {
    width: 10px;
  }
  /* Track */
  .services__marketing::-webkit-scrollbar-track {
    background: #fff; 
    box-shadow: inset 0 0 5px grey;
  }
  .services__marketing::-webkit-scrollbar-thumb {
    background: var(--text-color);
    border-radius: 10px;
  }

.services__marketing .services__item-img{
    width: 320px;
    height: 320px;
    transform-style: preserve-3d;
    transition: all .6s ease-in-out;
}
.services__marketing .services__item-service:hover .services__item-img{
    transform: rotateY(180deg) scale(1.1);
}

.services__marketing .services__item-img img{
    border-radius: 10px;
}

.services__marketing .services__item-service h4{
    font-size: 20px;
    padding: 0px 20px;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    transition: 1.5s;
}
.services__marketing .services__item-service h4::after{
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 40%;
    height: 100%;
    background: teal;
    transition: 1.5s;
}
.services__marketing .services__item-service:hover h4{
    color: teal;
}
.services__marketing .services__item-service:hover h4::after{
    left: 150%;
}

.services__item-icon{
    position: absolute;
    bottom: 5px;
    right: 30px;
    font-size: 20px;
    color: #999;
    transition: .4s;
    transform: translateX(-2px);
    opacity: 0;
}
.services__item-service:hover .services__item-icon{
    transform: translateX(3px);
    color: #222;
    opacity: 1;
}

/* Watch video */
.watch{

}
.watch__container{
    position: relative;
    width: 100%;
    height: 600px;
/*    background-image: url(../imgs/tivi-bg.png);
    background-position: center;
    background-repeat: no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.watch__bg{
    /* position: absolute;
    top: 0;
    left: 0; */
}

.watch__video,.box-review{
    position: relative;
    text-align: center;
/*    display: none;*/
}
.watch__video.active,.box-review.active{
    display: block;
    animation: opaci 1s linear;
}

@keyframes opaci{
    0%{opacity: 0}
    100%{opacity: 1}
}

.cto-line{
    position: absolute;
    top: 230px;
}
.cto-cube{
    position: absolute;
    bottom: 100px;
    width: 400px;
}

@media (max-width: 1500px) {
    .cto-line{
        position: absolute;
        top: 300px;
    }
}

.box-review iframe{
    width: 890px;
    border: 0;
    height: 510px;
}
.watch__video iframe{
    width: 890px;
    border: 0;
    height: 510px;
}

.watch__video-img{
    width: 800px;
    height: 470px;
    transform: translateY(-40px);
    border-radius: 10px;
}

.watch__play-icon{
    position: absolute;
    top: 35%;
    left: 46%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 21px rgba(0, 118, 229, 0.79);
    background-color: #00ade2;
    transition: box-shadow .4s,background-color .4s,-webkit-box-shadow .4s;
    transition-duration: 0.4s, 0.4s, 0.4s;
    transition-timing-function: ease, ease, ease;
    transition-delay: 0s, 0s, 0s;
    transition-property: box-shadow, background-color, -webkit-box-shadow;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.watch__play-icon:hover{
    box-shadow: 0 0 21px rgb(0 214 229 / 79%);
    background-color: #00c3e2;
    transition: box-shadow .4s,background-color .4s,-webkit-box-shadow .4s;
    transition-duration: 0.4s, 0.4s, 0.4s;
    transition-timing-function: ease, ease, ease;
    transition-delay: 0s, 0s, 0s;
    transition-property: box-shadow, background-color, -webkit-box-shadow;
}

.watch__play-icon img{
    width: 30px;
    transform: translateX(5px);
}

.modal__watch{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal__watch.active{
    display: flex;
    animation: opacity 0.5s linear;
}

.box__watch{
    width: 1000px;
    height: 600px;
}
.box__watch iframe{
    width: 100%;
    height: 100%;
}
.partners__title{
    text-align: center;
    padding: 20px 0;
    color: var(--text-color);
}

.contact{
    margin-top: 40px;
    position: relative;
    background-image: url(../imgs/bg-contact.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}

.contact__content{
    align-items: center;
    color: #fff;
}

.contact__title{
    color: #dcf5fd;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.contact__title::after{
    content: "";
    position: absolute;
    bottom: 6px;
    right: -50px;
    width: 44px;
    height: 2px;
    background-color: #dcf5fd;
}

.contact__name{
    font-size: 30px;
    font-weight: 700;
    padding: 20px 0;
}
.contact__list p{
    color: #ddd;
}

.form__group{
    display: block;
    margin: 20px 0;
}
.form__group input{
    height: 54px;
    width: 100%;
    padding: 0 10px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #ddd;
}
.form__group textarea{
    background: #ddd;
}
.form__group input::placeholder, .form__group textarea::placeholder{
    color: #999;
    font-size: 14px;
}

.form__group input:focus,.form__group textarea:focus{
    background: #fff;
}

.btn__submit{
    padding: 10px 30px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 20px;
    border-radius: 8px;
    border: none;
    background: #fff;
    box-shadow:  0 0 8px #ccc;
    transition: 0.5s;
}
.btn__submit:hover{
    background: #d3f2fc;
}

.social{
    display: flex;
    align-items: center;
}
.social__item{
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    transition: 0.5s;
    border: 2px solid #fff;
}
.social__item:hover{
    transform: scale(1.1);
}

/* Parners */
.partners__item{
    height: 100%;
    padding: 0 8px;
}
.partners__item img{
    height: 100%;
}
.partners__img{
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px #eee;
    height: auto !important;
}
/* Adviser */
.adviser{
    margin-top: 20px;
}

.slick-adviser-item{
    margin-bottom: 30px;
}

/* Gallery */
.gallery__title{
    text-align: center;
}
.gallery__title h5{
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    text-transform: uppercase;
    color: #00c3e2;
}
.gallery__title h2{
    color: var(--text-color);
    display: inline-block;
    position: relative;
}
.gallery__title h2::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: translateX(-24%);
    width: 200%;
    height: 1px;
    background: var(--text-color);
}

.gallery__content{
    padding-top: 60px;
}

.gallery__item{
    cursor: pointer;
    position: relative;
    margin-bottom: 26px;
}
.gallery__item::before{
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 10px;
    right: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 1;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.gallery__item:hover::before{
    transform: scale(1);
    -webkit-transform: scale(1);
}

.gallery__item::after{
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 20px;
    right: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 1;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.gallery__item:hover::after{
    transform: scale(1);
    -webkit-transform: scale(1);
}

.gallery__item:hover .gallery__name{
    opacity: 1;
}

.gallery__name{
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    text-shadow: 0 1px 4px rgb(11, 9, 148);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 1s;
}

.gallery__item .gallery__name img{
    width: 80px;
    height: auto;
    opacity: 0.5;
}

.gallery__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.modal__gallery{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.modal__gallery.active{
    display: flex;
}
.modal__img{
    position: relative;
    background: #fefefe;
    padding: 60px 40px;
    box-shadow: 0 0 10px #ddd;
    max-width: 80vw;
    height: 90vh;
    text-align: center;
}
.modal__preview{
    width: 100%;
    max-height: 100%;
}

.modal__gallery-close{
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
}
.modal__gallery-close:hover{
    color: var(--primary-color);
}


/*===== Footer ======*/

.copyright{
    text-align: center;
    padding: 10px;
    font-style: italic;
}



.bg-arrows{
    position: absolute;
    top: 100%;
    z-index: -9;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/bg-arrows-2.png');
    background-repeat: no-repeat;
    background-size: 693px 360px;
}

.bg-cube{
    position: absolute;
    top: -100px;
    z-index: -9;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/bg-cube.png');
    background-repeat: no-repeat;
    background-size: 723px 600px !important;
    background-position: right;
}
.bg-gif-cube{
    position: absolute;
    top: -20px;
    z-index: 9;
    width: 90%;
    height: 18%;
    background-image: url('../imgs/cube.gif');
    background-repeat: no-repeat;
    background-size: 280px 200px !important;
    background-position: right;
}
.bg-img-one{
    position: absolute;
    z-index: -9;
    top: 40%;
    left: 0;
    width: 150px;
    height: 150px;
    animation: imgOne 8s linear infinite;
}
@keyframes imgOne{
    0%{
        transform: translate(0,0);
    }
    30%{
        transform: translate(30px,0);
    }
    60%{
        transform: translate(0,-10px);
    }
    80%{
        transform: translate(0,20px);
    }
    100%{
        transform: translate(0,0);
    }
}

.bg-img-two{
    position: absolute;
    z-index: -9;
    top: -30%;
    left: 0;
    width: 400px;
    height: 400px;
    animation: imgTwo 6s linear infinite;
}

@keyframes imgTwo{
    0%{
        transform: translate(0,0);
    }
    50%{
        transform: translate(0,40px);
    }
    100%{
        transform: translate(0,0);
    }
}

.bg-img-three{
    position: absolute;
    z-index: -9;
    bottom: 20%;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.6;
    animation: imgTwo 6s linear infinite;}

@keyframes imgTwo{
    0%{
        transform: translate(0,0);
    }
    50%{
        transform: translate(0,40px);
    }
    100%{
        transform: translate(0,0);
    }
}

/* Poster program */

.poster-content{
    position: relative;
}

.poster-content::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.poster-content:hover::after{
    opacity: 1;
    visibility: visible;
}

.btn-signup{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,0%);
    display: inline-block;
    padding: 14px 30px;
    background: #ff7f15;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: .3s ease-in;
    z-index: 2;
}
.poster-content:hover .btn-signup{
    opacity: 1;
    transform: translate(-50%,-50%);
}

.poster-data{
    padding: 20px 30px;
    position: relative;
    box-shadow: 0 1px 2px #ccc;
}

.poster-category{
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.poster-category span i{
    color: var(--primary-color);
    margin-right: 4px;
    font-size: 16px;
}

.poster-name{
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}
.poster-desc{
    margin-bottom: 10px;
}

.link-poster{
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    padding: 10px 0;
    font-size: 18px;
}

.link-poster i{
    transition: .3s;
}

.link-poster:hover i{
    transform: translateX(4px);
}



/* Update css 27/01/2024 */

.content-head{
    text-align: center;
    margin: 20px 0;
}

.banner-services{
    position: relative;
}

.banner-sv-body{
    box-shadow: 0 0 4px #ddd;
}

.banner-sv-title{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
}


.banner-sv-title h1{
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-sv-title p{
   max-width: 500px;
}

.content-head-desc{
    font-size: 20px;
    line-height: 1.8;
    padding-top: 20px;
    max-width: 920px;
    margin: auto;
}

.content-row{
    display: flex;
    align-items: center;
    gap: 30px;
}

.content-col{
    width: 50%;
}

.sv-head-title{
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 30px;
}

.sv-list{
    position: relative;
}

.sv-item{
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}
.sv-item::before{
    content: "✔";
    font-family: icomoon;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border: #0932e1 solid 1px;
    border-radius: 50%;
    background-clip: padding-box;
    position: absolute;
    top: 0;
    left: 0;
    color: #0932e1;
}

.whyus-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.whyus-icon{
    text-align: center;
}
.whyus-icon img{
    width: 140px;
}

.whyus-text{
    text-align: center;
}

.whyus-counter{
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.counter-group{
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
}

.whyus-counter .counter-item:last-child{
    border-right: none;
}

.counter-icon{
    width: 22px;
    display: block;
}

.counter-info{
    width: calc(100% - 22px);
}

.counter-number{
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
}

.counter-after{
    font-size: 40px;
    padding-left: 4px;
}



/* Menu services */

.menu-sv{
    background: #f5f5f5;
}

.menu-nav{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.menu-nav-link{
    display: block;
    width: 100%;
    padding: 16px 0;
    text-align: center;
    transition: .3s;
    font-weight: 500;
    font-size: 18px;
}

.menu-nav-link.active, .menu-nav-link:hover{
    background: var(--primary-color);
    color: #fff;
}


.wrapper-content{
    padding: 30px 0;
}

.content-grid-3{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.content-grid-4{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}


.content-grid-col .icon{
    width: 100px;
    margin-bottom: 20px;
}

.content-grid-col .title{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.content-grid-col .desc{
    line-height: 1.8;
}


.wrapper-middle{
    margin: 40px 0;
    background: #0009b2;
    color: #fff;
}

.middle-content{
    padding: 40px;
    margin: auto;
    text-align: center;
}

.middle-content h2{
    font-size: 34px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.middle-content h3{
    font-size: 28px;
    margin-bottom: 30px;
}

.middle-content p{
    max-width: 800px;
    font-size: 20px;
    margin: auto;
}

.middle-content p a{
    font-weight: 600;
    color: #fff;
}


.wrapper-image{
    padding: 40px 0;
    max-width: 800px;
    margin: auto;
}

.services__body{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}


.service__item {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: .3s;
}

.service__item:hover {
    box-shadow: 0 0 6px #ddd;
}

.service__item .name {
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
    padding: 12px;
}


.wrapper-introduce{
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.introduce-left{
    width: 40%;
}
.introduce-right{
    width: 60%;
    padding-left: 40px;
}

.grid-introduce{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.introduce-text{
    line-height: 1.8;
}

.introduce-text strong{
    font-weight: 500;
}

.introduce-img{
    text-align: center;
    margin: 30px 0 10px;
}

.introduce-img i{
    margin-top: 20px;
    display: block;
}

.btn-wrapper{
    padding-top: 20px;
}


.btn-shape-1{
    position: relative;
    display: inline-block;
    background-color: #d8ff09;
    background-image: -webkit-linear-gradient(left, #0983ff, #161ba1);
    background-size: inherit;
    font-size: 16px;
    padding: 0 44px;
    line-height: 70px;
    border-radius: 60px 0 60px 60px;
    overflow: hidden;
}

.btn-shape-1:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url(../imgs/btn-style1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.btn-shape-1 span, .btn-shape-1 a{
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    position: relative;
    display: inline-block;
    z-index: 2;
    text-transform: capitalize;
}

.home-icon{
    width: 70px;
    height: 70px;
    background-image: -webkit-linear-gradient(left, #06ffdf, #0042ff);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.home-icon img{
    width: 36px;
}

.introduce-title{
    color: #403f3f;
    padding: 10px 0 20px;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    position: relative;
}

.introduce-title::after{
    width: 30px;
    height: 3px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#06ffdf), to(#0042ff));
}

.introduce-description{
    padding: 20px 0 10px;
    line-height: 1.8;
}

.introduce-description strong{
    font-weight: 500;
}

.introduce-content{
    border: 1px solid #eaeaea;
    padding: 20px 30px;
}
.grid-introduce .introduce-content:nth-child(2) .introduce-title::after{
    background-image: -webkit-linear-gradient(left, #ffe712, #ed585a);
}
.grid-introduce .introduce-content:nth-child(3) .introduce-title::after{
    background-image: -webkit-linear-gradient(left, #d8ff09, #4ba116);
}
.grid-introduce .introduce-content:nth-child(4) .introduce-title::after{
    background-image: -webkit-linear-gradient(left, #f798fe, #612be1);
}


.wrapper-home{

}

.about-sv{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.about-sv-content{
    padding: 40px 20px;
}

.about-sv-icon{
    max-width: 90px;
    margin-bottom: 20px;
}

.about-sv-title{
    color: #403f3f;
    padding: 10px 0 20px;
    font-size: 24px;
    font-weight: 700;
}

.about-sv-desc{
    padding: 20px 0;
}


.about-sv-link-details{
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services__item-service > p{
    font-size: 14px;
}

.services__item-service > p strong{
    font-weight: 500;
}


.banner__content{
    padding: 40px 0 0;
}


.wrapper-advise{
    padding: 40px 0;
}

.button-advise{
    text-align: center;
}


.iframe-content iframe{
    width: 100%;
    height: 720px;
    overflow: hidden;
    border: none;
}



.lecture-body{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 30px 0;
}

.edu-link{
    padding: 6px 16px;
    background: #fff;
    border: 1px solid var(--primary-color);
}

.btn-shape-2{
    padding: 0 30px;
    line-height: 46px;
    background-image: -webkit-linear-gradient(left, #f8b52b, #f27c48);
    border-radius: 50px 10px 50px 50px;
}

.btn-shape-2 a {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    position: relative;
    display: inline-block;
    z-index: 2;
    text-transform: capitalize;
}

.btn-shape-2:before{
    background-image: none;
}


.header-item-link{
    display: none;
}

.brand-logo-content{
    text-align: center;
}