:root{

    --bg-gradien:linear-gradient(270deg, #000000 0, #F58220 100%);
    --second-color:#ff9c00;
}
.header-button a {
    background: var(--bg-gradien);
    height: 30px;
    font-weight: 500;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.header-button a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bg-gradien);
    opacity: .3;
    left: 0;
    top: 0;
    border-radius: 6px;
    -webkit-animation: scaleIn 1s ease infinite alternate;
    animation: scaleIn 1s ease infinite alternate;
    z-index: -1;
}
@-webkit-keyframes scaleIn {
    to {
        -webkit-transform: scale(1.1,1.3);
        transform: scale(1.1,1.3)
    }
}

@keyframes scaleIn {
    to {
        -webkit-transform: scale(1.1,1.3);
        transform: scale(1.1,1.3)
    }
}
/* Header mn */
.mobile_nav-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile_nav-icon .icon {
    width: 25px;
    position: relative;
    text-align: right;
    display: flex;
    justify-content: end;
    flex-flow: column;
    align-items: end;
    gap: 5px;
}

.mobile_nav-icon .icon span {
    position: relative;
    transition: all 0.3s ease-in-out;
    transition-delay: 40ms;
    width: 16px;
    height: 2px;
    background: #fff;
    display: inline-block;
}

.mobile_nav-icon .icon:before,
.mobile_nav-icon .icon:after {
    content: "";
    height: 2px;
    transition: all 0.3s ease-in-out;
    transition-delay: 40ms;
    background: #fff;
    display: inline-block;
}

.mobile_nav-icon .icon:before {
    width: 20px;
}

.mobile_nav-icon .icon:after {
    width: 23px;
}

.mobile_nav-icon.rotate-mb .icon *,
.mobile_nav-icon.rotate-mb .icon:after,
.mobile_nav-icon.rotate-mb .icon:before {
    background-color: var(--second-color);
    width: 25px;
}
div#menu_bar form .search-field {
    border-radius: 4px;
    border: 1px solid var(--primary-color);
}
div#menu_bar form {
    margin-bottom: 15px;
}

div#menu_bar form.searchform button.ux-search-submit {
    width: 20px;
    height: 20px;
    min-height: 20px;
    min-width: 20px;
    font-size: 14px !important;
    padding: 0 !important;
    background: none;
    border: none;
    color: #000;
    line-height: 1;
    top: 0px;
}

div#menu_bar form.searchform .flex-col:last-child {
    width: 20px;
    height: 20px;
    left: auto;
    right: 5px;
    position: absolute;
}
div#menu_bar {
    position: absolute;
    top: 0;
    background: var(--bg-gradien);
    z-index: 99999;
    -webkit-box-shadow: 0 1px 8px #555555;
    -moz-box-shadow: 0 1px 8px #555555;
    -o-box-shadow: 0 1px 8px #555555;
    box-shadow: 0 1px 8px #555555;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(-350px);
    transition: .5s;
    padding: 0 15px;
}

div#menu_bar.scroll-menu {
    transform: translateX(0);
    transition: .5s;
}

div#menu_bar .bar_close {
    text-align: center;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

div#menu_bar .bar_close i.fa.fa-times {
    font-size: 16px;
    margin-right: 5px;
}

div#menu_bar ul#header_menu>li {
    border: none;
    position: relative;
    margin: 0
}

div#menu_bar ul#header_menu>li:not(:last-child) {
    border-bottom: 1px solid #ffffff;
}

div#menu_bar ul#header_menu>li>a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 10px;
    text-transform: uppercase;
}

div#menu_bar ul#header_menu>li button.toggle {
    position: absolute;
    right: 0;
    margin: 0;
    opacity: 1;
    color: #fff;
    top: 3px
}

div#menu_bar ul.sub-menu {
    border: none;
    padding: 0;
    margin: 0
}

div#menu_bar ul.sub-menu li a {
    color: #fff;
    font-size: 14px;
    height: 34px;
    display: flex;
    align-items: center;
    position: relative
}

div#menu_bar ul.sub-menu li a::before {
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    font-size: 14px;
    color: #fff;
}

div#menu_bar ul.sub-menu li {
    list-style: none;
    margin: 0;
    position: relative;
}

div#menu_bar ul#header_menu button.toggle:after {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    font-size: 12px;
    color: #fff;
    top: 50%;
    position: absolute;
    left: 50%;
    margin: 0;
    width: 13px;
    height: 13px;
    transform: translate(-50%, -50%)
}

div#menu_bar i.icon-angle-down {
    display: none
}

div#menu_bar ul#header_menu button.toggle {
    width: 30px;
    min-height: 30px;
    height: 30px;
    -webkit-transition: transform .3s ease-out;
    -moz-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    right: 5px
}

div#menu_bar ul#header_menu .active>.toggle {
    transform: rotate(-180deg);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg)
}

div#menu_bar ul#header_menu ul.sub-menu {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    max-height: 0;
    -webkit-transition: max-height .3s, -webkit-transform .3s;
    transition: max-height .3s, -webkit-transform .3s;
    -o-transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s, -webkit-transform .3s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    overflow-y: hidden;
    display: block!important;
    padding-left: 15px!important
}

div#menu_bar ul#header_menu li.active>ul.sub-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    max-height: 100vh
}

html.js.active body {
    overflow: hidden;
}
div#masthead {
    border-bottom: 5px solid #F58220;
}
.absolute-footer {
    padding: 10px 0 !important;
}
.footer_title h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -.5px;
    line-height: 34px;
    position: relative
}

.footer_title h3:after {
    content: "";
    display: block;
    height: 8px;
    margin-top: 8px;
    background: repeating-linear-gradient(-45deg,#fff0,#fff0 3px,rgb(255 255 255 / .15) 3px,rgb(255 255 255 / .15) 6px)
}

.ss_footer a.ux-menu-link__link.flex {
    line-height: 28px;
    min-height: 28px;
    padding: 0;
    position: relative
}

.ss_footer .ux-menu.stack.stack-col {
    gap: 5px
}

.ss_footer a.ux-menu-link__link.flex:before {
    content: "\f0da";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-right: 5px;
    font-size: 14px;
    color: #fff
}

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

.ss_footer a.ux-menu-link__link.flex:hover {
    color: var(--second-color)
}
.ss_footer {
    background: #002e5b url(https://set-edu.com/wp-content/themes/set-education/assets/img/debut-light.png) 0 0 repeat scroll;
    background-blend-mode: overlay
}
.copyright-footer {
    color: #ffffff;
    font-size: 14px;
}
.home_bottom .img_border {
    border-radius: 35px;
    overflow: hidden;
    border: 12px solid #fff;
}
.home_title h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.home_title h2:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 4px;
    width: 200px;
    background: #ff4d00;
    bottom: 0;
    margin: 0 auto;
}
.ss_receive .icon-box .icon {
    background: linear-gradient(180deg,rgba(186, 190, 253, 1) 0%, rgba(56, 68, 231, 1) 100%);
    height: 60px;
    padding: 15px;
    border-radius: 5px;
}

.ss_receive .icon-box h3 {
    font-size: 20px;
    color: #5271ff;
}

.ss_receive .icon-box p {
    font-size: 18px;
	margin:0;
}
.form_group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
}

.ss_form .col_form .form_group .wpcf7-form-control.wpcf7-text {
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    height: 40px;
}

.ss_form .col_form .wpcf7-radio span {
    margin-right: 5px;
    font-size: 12px;
}

.ss_form .col_form .wpcf7-radio input[type="radio"] {
    margin: 0;
    margin-right: 2px;
}

.ss_form .col_form  span.required {
    color: red;
}

.ss_form .col_form  p > label {
    margin: 0;
	color:#0036d7;
}
.ss_form .col_form input[type="checkbox"] {
    margin-bottom: 0;
}
.ss_form .col_form .wpcf7-checkbox span.wpcf7-list-item {
    width: 100%;
    font-size: 14px;
}

.ss_form .col_form .wpcf7-form-control.wpcf7-submit {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    border-radius: 99px;
    background: #ff4d00;
}

span.wpcf7-spinner {
    display: none;
}
.wpcf7-response-output {
    display: none;
}

.ss_form .col_form form {
    margin: 0;
}

.ss_form .col_form form input.wpcf7-form-control.wpcf7-text.faq {
    border-radius: 4px;
    margin-top: 5px;
    border: 1px solid #ccc;
    box-shadow: none;
    font-size: 14px;
}
.ss_webinar .col_icon .icon-box {
    align-items: center;
}

.ss_webinar .col_icon .icon-box:not(:last-child) {
    margin-bottom: 10px;
}

.ss_webinar .col_icon .icon-box .icon-box-text {
    font-size: 20px;
}
.ss_webinar .col_icon .img_vongquay {
    position: absolute;
    right: -300px;
    width: 600px !important;
    top: -120px;
}
.ss_webinar .note {
    font-size: 14px;
}
.animation-image {
    animation: zoom-in-zoom-out 1s ease infinite
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1,1)
    }

    50% {
        transform: scale(1.1,1.1)
    }

    100% {
        transform: scale(1,1)
    }
}
a.button.btn_nhanqua {
    font-size: 18px;
    position: relative;
}

a.button.btn_nhanqua:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    right: -5px;
    bottom: -7px;
    background: #ffba9b;
    z-index: -1;
    border-radius: 99px;
}
a.button.btn_nhanqua:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    background: var(--fs-color-secondary);
    z-index: 0;
    border-radius: 99px;
}
a.button.btn_nhanqua span{
	position:relative;
	z-index:1;
}
.tab_date ul.nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 10px;
    border-bottom: 4px solid #b1b1b1;
}

.tab_date ul.nav li {
    width: calc(100% / 3);
    margin: 0;
    position: relative;
	margin: 0 !important;
	border-radius: 29px 29px 0 0;
}

.tab_date ul.nav li a{
    padding: 15px 0 5px;
    border-radius: 29px 29px  0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #717171;
}
.tab_date ul.nav li.active ,.tab_date ul.nav li:hover{
    background-color: #bfc3ff;
    color: #2a37d4;
    border-radius: 29px 29px 0 0;
}

.tab_date ul.nav li a {
    display: flex;
    align-items: center;
    flex-flow: column;
    line-height: 1.2;
}

.tab_date ul.nav li a:after {
    content: "(sắp diễn ra)";
    display: block;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    font-style: italic;
}


.tab_date ul.nav li.active a,.tab_date ul.nav li:hover a {
    color: #2a37d4;
}

.tab_date ul.nav li.active a:before {
	content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #2a37d4;
}
/* .tab_date ul.nav li:nth-child(1) a:after {
    content: "(đang diễn ra)";
} */
.ss_schedule .col_info .title p {
    font-size: 24px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    margin: 0;
}

.ss_schedule .col_info .icon-box {
    margin-left: 45%;
    margin-bottom: 15px;
    width: 55%;
    padding-right: 20px;
	z-index:1;
}

.ss_schedule .col_info .icon-box .icon-box-text {
    padding-top: 20px;
    font-size: 18px;
}

.ss_schedule .col_info .icon-box p {
    margin: 0;
}

.ss_schedule .col_info .icon-box li {
    margin-bottom: 0;
}
.ss_schedule .col_info .bg_left {
    position: absolute;
    bottom: 0;
    z-index: 0;
}
button.flickity-button.flickity-prev-next-button svg{
    display: none;
}
button.flickity-button.flickity-prev-next-button.previous {background-image: url('data:image/svg+xml,<svg class="" xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><rect x="-0.5" y="0.5" width="39" height="39" rx="19.5" transform="matrix(-1 0 0 1 39 0)" stroke="url(%23paint0_linear_4022_3979)"></rect><rect width="28" height="28" rx="14" transform="matrix(-1 0 0 1 34 6)" fill="%230e76bc"></rect><path d="M26 19.9997H14M14 19.9997L18.6667 15.333M14 19.9997L18.6667 24.6663" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><defs><linearGradient id="paint0_linear_4022_3979" x1="0" y1="21.5" x2="36" y2="21.5" gradientUnits="userSpaceOnUse"><stop stop-color="%230e76bc"></stop><stop offset="1" stop-color="%230e76bc" stop-opacity="0.2"></stop></linearGradient></defs></svg>') !important;}
button.flickity-button.flickity-prev-next-button.next{
    background-image: url('data:image/svg+xml,<svg class="" xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><rect x="-0.5" y="0.5" width="39" height="39" rx="19.5" transform="matrix(-1 0 0 1 39 0)" stroke="url(%23paint0_linear_2150_3984)"></rect><rect width="28" height="28" rx="14" transform="matrix(-1 0 0 1 34 6)" fill="%230e76bc"></rect><path d="M14 19.9997H26M26 19.9997L21.3333 15.333M26 19.9997L21.3333 24.6663" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><defs><linearGradient id="paint0_linear_2150_3984" x1="0" y1="21.5" x2="36" y2="21.5" gradientUnits="userSpaceOnUse"><stop stop-color="%230e76bc" stop-opacity="0.2"></stop><stop offset="1" stop-color="%230e76bc"></stop></linearGradient></defs></svg>') !important;
}
button.flickity-button.flickity-prev-next-button {
    background-repeat: no-repeat;
	width: 40px;
}
@keyframes animate{
    20%, 24%, 55%{
        color: rgb(255, 77, 0);
        text-shadow: none;
    }
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100%{
        color: #fff6a9;
        text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    }
}
.ss_form .col_form h2 {
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    position: relative;
    animation: animate 2s ease-in-out infinite;
}
.border_10{
	border-radius:10px;
	overflow:hidden;
}
select.wpcf7-form-control.wpcf7-select {
    border-radius: 4px;
    margin-top: 5px;
    border: 1px solid #ccc;
    box-shadow: none;
    font-size: 14px;
}
/* thank you page */
.page_thankyou .bg {
    border-radius: 0;
}
.page_thankyou .img_center {
    width: 150px !important;
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
}
.page_thankyou .icon-box {
    align-items: center;
}

.page_thankyou .icon-box p {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
    color: #0824b3;
}
/* Pc      --------------------------------------------- */
@media(min-width: 766px){

}
@media (width: 1024px){

}
@media (max-width: 1024px){

}
@media (min-width: 990px) and (max-width: 1100px){

}
/*************** ------------------------PC và Tablet  --------------------------  ***************/
@media (min-width: 740px){

}
/*************** ------------------------Tablet  --------------------------  ***************/
@media (min-width: 740px) and (max-width: 1023px){

}
@media (max-width:990px){

}
/*************** ------------------------Mobile và Tablet --------------------------  ***************/
@media (max-width: 1023px){

}

 /*************** ------------------------ Mobile   --------------------------  ***************/
@media screen and (max-width: 549px){
    #logo img {
        max-height: 60px;
    }
    .header-button a {
        width: max-content;
        font-size: 12px;
        height: 36px;
    }
	.ss_receive .icon-box h3 {
		font-size: 18px;
	}

	.ss_receive .icon-box p {
		font-size: 16px !important;
	}

	.ss_receive .icon-box .icon-box-img {
		width: 50px !important;
	}

	.ss_receive .icon-box .icon {
		height: 50px;
		padding: 15px;
	}
    .home_title h2 {
		font-size: 24px;
	}
    .form_group {
		grid-template-columns: repeat(1, 1fr);
		column-gap: 0;
	}
	.ss_webinar .col_icon .img_vongquay {
		position: relative;
		left: 0;
		top: 0;
		width: 100% !important;
	}

	.ss_webinar .col_icon .icon-box .icon-box-text {
		font-size: 16px;
	}
	.ss_schedule .col_info .title p {
		font-size: 18px;
		padding: 0 15px;
	}

	.ss_schedule .col_info .icon-box {
		margin-left: 0;
		width: 100%;
		padding: 0 15px;
	}

	.ss_schedule .col_info .icon-box .icon-box-text {
		font-size: 14px;
	}

	.ss_schedule .col_info .icon-box .icon-box-img {
		width: 50px !important;
	}

	.ss_schedule .col_info .bg_left {
		position: relative;
		width: 100% !important;
	}

	.ss_schedule .col_info .col-inner {
		border-radius: 20px !important;
		padding-bottom:0 !important;
	}
	.tab_date ul.nav li a {
		font-size: 16px;
		border-radius: 10px 10px  0 0;
	}

	.tab_date ul.nav li a:after {
		font-size: 12px;
	}
	.progress-wrap.active-progress {
		display: none;
	}

	.hotline-bar {
		display: none !important;
	}
	
	#vongQuayFloat {
		width: 60px !important;
		height: 60px !important;
	}
    .slider-wrapper .flickity-prev-next-button {
        display: block;
        opacity: 1;
    }
	button.flickity-button.flickity-prev-next-button {
    opacity: 1;
    display: block;
}
	.page_thankyou .icon-box p {
    font-size: 20px;
}
	.page_thankyou .img_center {
    width: 100px !important;
    bottom: -100px;
}
}


* {
    scrollbar-width: thin;
    scrollbar-color: #ffcc32 rgba(217, 217, 217, 0.1);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(163,169,181,1) 27%, rgba(188,194,208,1) 74%, rgba(0,0,0,1) 100%);
}

*::-webkit-scrollbar-thumb {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(163,169,181,1) 27%, rgba(188,194,208,1) 74%, rgba(0,0,0,1) 100%);
    border-radius: 20px;
    border: 5px solid rgba(217, 217, 217, 0.1);
}

