﻿.modal.show {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
.modal-account .modal-content {
    background-color: #fff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    display: block;
    border-radius: 4px;
    border: 0;
    min-height: 655px;
}
.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.forget-container {
    right: 0;
    width: 50%;
    z-index: 999;
    border-left: 1px solid #eee;
    display: none;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.forget-desc {
    margin: 10px 0;
}
.forget-desc span:not(:nth-child(2)) {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.forget-desc span:nth-child(2) {
    margin: 0 10px;
    font-weight: 300;
    font-size: 12px;
}
.forget-container.active {
    display: block;
}
.modal-account__container.right-panel-active .forget-container {
    left: 0;
    border-right: 1px solid #eee;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.modal-account__container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

#swal2-content {
    line-height: 26px;
    font-size: 15px;
}
#swal2-content b {
    color: #052036;
    font-weight: 700;
    margin: 0 5px;
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.modal-account__container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.modal-account__container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
    box-shadow: 0px 0px 40px 16px rgba(1, 108, 181, 0.29);
    background: #016cb5;
}

.modal-account__form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

.modal-account__form input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    outline: none;
}

.modal-account__form h5 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}
.modal-account__form a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
    font-weight: 500;
}
.modal-account__form > span {
    font-size: 13px;
    font-weight: 300;
}
.modal-account__container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.modal-account__container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.modal-account__container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

.modal-account__form .button {
    background: #006cb5;
    border: 1px solid #006cb5;
    color: #fff;
    padding: 10px 35px;
    border-radius: 25px;
    min-width: 150px;
    text-transform: uppercase;
    font-weight: 500;
    -webkit-box-shadow: 0 1px 11px 2px rgba(0,0,0,.05), 0 0 0 rgba(0,0,0,.05) inset;
    -moz-box-shadow: 0 1px 11px 2px rgba(0,0,0,.05),0 0 0 rgba(0,0,0,.05) inset;
    box-shadow: 0 1px 11px 2px rgba(0,0,0,.05), 0 0 0 rgba(0,0,0,.05) inset;
    transition: all .3s ease;
    cursor: pointer;
    outline: none;
    position: relative;
}

.modal-account__form .button:hover {
    box-shadow: 0px 15px 20px rgba(1, 108, 181, 0.36);
    color: #fff;
}
.modal-account__form .button.button--loading {
    background-color: #258cd1 !important;
    background-image: 8121991 !important;
    background-image: -webkit-linear-gradient(#258cd1 0%, #258cd1 100%) !important;
    background-image: -moz-linear-gradient(#258cd1 0%, #258cd1 100%) !important;
    background-image: -o-linear-gradient(#258cd1 0%, #258cd1 100%) !important;
    background-image: linear-gradient(#258cd1 0%, #258cd1 100%) !important;
    position: relative;
    cursor: wait;
    pointer-events: none;
}
.modal-account__form .button.button--loading:before {
    margin: -11px 0 0 -11px;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    -webkit-border-radius: 24px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 24px;
    -moz-background-clip: padding;
    border-radius: 24px;
    background-clip: padding-box;
    border: rgba(255, 255, 255, 0.25) 2px solid;
    border-top-color: #fff;
    -webkit-animation: animation-rotate 750ms linear infinite;
    -moz-animation: animation-rotate 750ms linear infinite;
    -o-animation: animation-rotate 750ms linear infinite;
    animation: animation-rotate 750ms linear infinite;
}
.modal-account__form .button.button--loading span {
    color: transparent;
    text-shadow: none;
}

@-webkit-keyframes animation-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes animation-rotate {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes animation-rotate {
    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes animation-rotate {
    100% {
        transform: rotate(360deg);
    }
}
.modal-account__container .overlay-panel .ghost {
    background: #fff;
    color: #016cb5;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    border: 0;
    border-radius: 25px;
    min-width: 120px;
    cursor: pointer;
    outline: none;
}
.modal-account__container .overlay-panel p {
    font-weight: 300;
    margin: 0px 0 30px;
}

/* 
    ========================= End Modal Account CSS =========================
*/

.topic-box__item {
    width: 100%;
    -webkit-box-shadow: 0 13px 17px -10px rgba(0,0,0,0.2);
    box-shadow: 0 13px 17px -10px rgba(0,0,0,0.2);
    display: flex;
}
.topic-box__item .topic-box__item-date {
    width: 200px;
    position: relative;
    background-color: rgb(23, 90, 145);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.topic-box__item .topic-box__item-date:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: 100% 60%;
    background-position: center bottom;
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,0.6)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to top,rgba(0,0,0,0.6),rgba(0,0,0,0));
}
.topic-box__item .topic-box__item-text {
    width: calc(100% - 200px);
    border: 4px solid rgba(28,115,181,0.25);
    border-left: 0;
    background-color: #ffffff;
    padding: 20px;
}
.topic-box__item .topic-box__item-text h5 {
    margin-bottom: 15px;
}
.topic-box__item .topic-box__item-text h5 a {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.topic-box__item .topic-box__item-text .topic-box__item-btn {
    border-bottom: 3px solid #C1C648;
    padding-bottom: 4px;
    font-size: 14px;
    color: #006cb5;
    font-weight: 700;
    text-decoration: none;
}
.m-bottom-30 {
    margin-bottom: 30px;
}

.home-data {
    padding-top: 60px;
}
.home-data .home-data__item {
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(67, 73, 89, .1);
    -webkit-box-shadow: 0 0 20px rgba(67, 73, 89, .1);
    -ms-box-shadow: 0 0 20px rgba(67, 73, 89, .1);
    -moz-box-shadow: 0 0 20px rgba(67, 73, 89, .1);
    text-align: center;
    height: 100%;
    padding: 30px 15px;
}
.home-data .home-data__item .home-data__item-title {
    font-size: 28px;
    font-weight: 700;
    color: #036eb6;
    margin: 10px 0 0;
}
.home-data .home-data__item .home-data__item-desc {
    font-size: 15px;
    line-height: 24px;
    color: #323232;
}

.productivity-dictionary {
    background-color: #E1EAED;
    padding: 70px 0;
}
.productivity-dictionary .productivity-dictionary__box {
    background: #fff;
}
.productivity-dictionary .productivity-dictionary__box .productivity-dictionary__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0px 0 100px;
}
.productivity-dictionary .productivity-dictionary__box .productivity-dictionary__text h4 {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}
.productivity-dictionary .productivity-dictionary__box .productivity-dictionary__desc {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
    font-style: italic;
}
.productivity-dictionary .productivity-dictionary__box .productivity-dictionary__btn {
     margin-top: 20px;
}
.productivity-dictionary .productivity-dictionary__box .productivity-dictionary__btn a {
    display: inline-block;
    font-size: 14px;
    padding: 12px 20px;
    line-height: 1;
    letter-spacing: 1px;
    color: #036eb6;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    overflow: hidden;
    text-transform: uppercase;
    border: 2px solid #D0E5F1;
    font-weight: bold;
    position: relative;
    text-decoration: none;
}
.productivity-dictionary .productivity-dictionary__box .productivity-dictionary__btn a i {
    color: #C1C648;
    margin-left: 5px;
}
.productivity-dictionary .productivity-dictionary__box .productivity-dictionary__btn a:hover {
    background-color: #D0E5F1 !important;
    color: #003F6F !important;
}
.productivity-dictionary .productivity-dictionary__slide {

}
.productivity-dictionary .productivity-dictionary__slide-box {
    max-width: 252px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -6px;
    margin-bottom: 80px;
}
.productivity-dictionary .productivity-dictionary__slide-box .productivity-dictionary__slides {
    position: relative;
}
.productivity-dictionary .productivity-dictionary__slide-box .productivity-dictionary__slides:before,
.productivity-dictionary .productivity-dictionary__slide-box .productivity-dictionary__slides:after {
    content: "";
    position: absolute;
    top: 26px;
    right: -18px;
    width: 100%;
    height: calc(100% - 10px);
    background-color: #ffffff;
    outline: 8px solid #E1EAED;
    z-index: 0;
} 
.productivity-dictionary .productivity-dictionary__slide-box .productivity-dictionary__slides:before {
    top: 48px;
    left: 40px;
}
.productivity-dictionary .productivity-dictionary__slide-box .productivity-dictionary__slides:after {

}
.productivity-dictionary .productivity-dictionary-owl {
    position: relative;
    z-index: 2;
}
.productivity-dictionary .productivity-dictionary-owl .owl-nav button {
    width: 63px;
    height: 63px;
    border: 1px solid #E1EAED;
    border-radius: 50%;
    margin: 0;
    font-size: 35px;
    color: #E1EAED;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.productivity-dictionary .productivity-dictionary-owl .owl-nav .owl-prev {
    left: -130px;
}
.productivity-dictionary .productivity-dictionary-owl .owl-dots {
    position: absolute;
    margin: 0;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
}
.productivity-dictionary .productivity-dictionary-owl .owl-dots .owl-dot {
    outline: none;
}
.productivity-dictionary .productivity-dictionary-owl .owl-dots .owl-dot span {
    border: 0;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    padding: 0;
    margin: 0 12px;
    background-color: #E2EAED;
    -webkit-appearance: none;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    transition: all .3s ease;
}
.productivity-dictionary .productivity-dictionary-owl .owl-dots .owl-dot.active span {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1px #003F6F;
    box-shadow: 0 0 0 1px #003F6F;
}

/* 
    ========================= Reponsive CSS =========================
*/
@media (max-width: 1400px) {
    .home-slide .item .home-slide__item .home-slide__text h6 {
        font-size: 40px;
    }
    .page-detail {
        width: 80%;
        margin: 0 auto;
    }
}

@media(max-width: 1200px) {
    .home-slide .item a img {
        
    }
}
@media(max-width: 992px) {
    .colums-productivity .item {
        margin-top: -30px;
    }
    .colums-productivity .item h3 {
        padding: 12px 0;
        font-size: 14px;
    }
    .about-productivity .about-productivity__box .title {
        font-size: 22px;
    }
    .list-productivity .list-productivity-item .text h4 {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 20px;
    }
    .list-productivity .list-productivity-item .text .text-desc {
        color: #333;
        line-height: 22px;
        font-size: 14px;
    }
    .news-productivity .news-productivity__item .image img {
        height: 210px;
    }
    .feedback-productivity__item .image img {
        width: 110px;
        height: 110px;
    }
    .feedback-productivity__item .image {
        left: -65px;
        position: absolute;
        top: 20px;
    }
    .header-menu__box-btn {
        display: flex;
    }
    .page-detail {
        width: 100%;
        margin: 0 auto;
    }
    .home-about .home-about__img .home-about__img-2 img {
        width: 100%;
    }
    .home-about .home-about__img .home-about__img-1 {
        right: 0;
        width: calc(100% - 55px);
        border: 18px solid #fff;
        bottom: -15px;
    }
    .home-about .home-about__content iframe {
        width: 100%;
    }
    .home-about .home-about__content .home-about__title img {
        width: 130px;
    }
    .home-about .home-about__content .home-about__title h3 {
        font-size: 32px;
    }
    .header .header-menu .header-menu__box ul {
        display: none;
    }
    .header .header-top .header-top__box .header-top__btn {
        display: block;
    }
    .header .header-top .header-top__phone {
        display: none;
    }
    .about-consulting .about-consulting__title {
        padding: 10%;
    }
    .page-news__list .page-news__list-item .page-news__list-img {
        width: 170px;
    }
    .page-news__list .page-news__list-item .page-news__list-text {
        width: calc(100% - 170px);
    }
    .page-contact .page-contact__form h5 {
        font-size: 26px;
    }
    .page-contact .page-contact__info .page-contact__info-box {
        margin-top: 30px;
    }
    .header .header-menu .header-menu__box {
        height: 50px;
        display: flex;
        justify-content: flex-end;
    }
    .header .header-menu .header-logo {
        top: -40px;
    }
    .header .header-menu .header-logo a img {
        width: 100px;
    }
    .header .header-top .header-top__lang ul li.header-seach a {
        height: 38px;
        line-height: 38px;
    }
    .header .header-top .header-top__lang .header-top__lang-box .header-top__lang-flex {
        height: 38px;
    }
    .header .header-top .header-top__lang .header-top__lang-box span {
        font-size: 11px;
    }
    .header .header-top .header-top__box ul li.header-login a {
        height: 38px;
        line-height: 38px;
        padding: 0 15px;
        font-size: 12px;
    }
    .header .header-top .header-top__lang .header-top__lang-box .header-top__lang-flex .header-top__lang-title {
        font-size: 13px;
    }
    .header .header-top .header-top__box {
        height: 55px;
    }
    .header .header-menu .header-top__btn {
        display: flex;
    }
    .educate-intro .educate-intro__content {
        padding: 0;
    }
    .home-data .row > div {
        margin-bottom: 15px;
    }
    .productivity-dictionary .productivity-dictionary__box .productivity-dictionary__text {
        padding: 0 0px 0 40px;
    }
}
@media(max-width: 767px) {
    .header {
        overflow-x: hidden;
    }
    .colums-productivity .item {
        margin-top: 30px;
    }
    .list-productivity .list-productivity-item .text {
        padding: 15px;
        margin-top: 15px;
    }
    .list-productivity .row > div:nth-child(2n+0) .list-productivity-item .row > div:last-child .text {
        padding: 15px;
    }
    .list-productivity .row > div:nth-child(2n+0) .list-productivity-item .row > div:last-child {
        order: 2;
    }
    .feedback-productivity__item .image {
        left: 50%;
        position: absolute;
        top: -50px;
    }
    .feedback-productivity__item {
        margin: 50px 0 0 0;
    }
    .feedback-productivity__item .image img {
        width: 90px;
        height: 90px;
    }
    .feedback-productivity__item .text {
        padding: 50px 30px 30px 30px;
    }
    .table-productivity table tr th,
    .table-productivity table tr td {
        white-space: nowrap !important;
        width: 100% !important;
    }
    .table-productivity table tr th:nth-child(3), 
    .table-productivity table tr td:nth-child(3) {
        width: 500px !important;
        white-space: initial !important;
    }
    .header .header-top .header-top__lang ul li.header-lang {
        display: none;
    }
    .header .header-top .header-top__lang ul li.header-seach {
        margin: 0;
    }
    .home-slide .item a img {
    }
    .gallery-item img {
        max-width: 100%;
    }
    .gallery-item.gallery-item-selected,
    .gallery-item.gallery-item-previous,
    .gallery-item.gallery-item-next {
        width: 100%;
    }
    .gallery-item.gallery-item-next {
        left: 0;
    }
    .home-slide .item .home-slide__item .home-slide__text h6 {
        font-size: 25px;
    }
    .home-slide .owl-theme .owl-nav {
        top: 55%;
        right: 10px;
    }
    .home-about .home-about__img .home-about__img-1 {
        bottom: 0;
        width: 50%;
    }
    .home-about .home-about__content {
        margin-top: 30px;
    }
    .home-benefit .benefit-list {
        flex-direction: column;
    }
    .home-benefit .benefit-list li {
        flex: 1 1 100%;
        padding: 10px 14px;
        border-left: 0;
        border-bottom: 2px solid #f0f0f0;
    }
    .home-benefit .home-benefit__content .home-benefit__item-text {
        padding: 15px;
    }
    .footer .footer-top .footer-top__box .footer-top__regnews .footer-top__regnews-form {
        padding: 0;
    }
    .footer .footer-bottom .footer-bottom__item {
        flex-direction: column;
    }
    .footer .footer-bottom__item-right {
        margin-top: 15px;
    }
    .home-slide {
        margin-top: 0px;
    }
    .home-slide .owl-theme .owl-nav button.owl-prev {
        left: 10px;
    }
    .home-slide .owl-theme .owl-nav button.owl-next {
        right: 10px;
    }
    .about-history .about-history__img {
        margin-bottom: 30px;
    }
    .about-consulting .about-consulting__title {
        font-size: 26px;
        padding: 0;
    }
    .about-consulting__img {
        margin-bottom: 15px;
    }
    .about-product .about-product__box .about-product__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .about-product .about-product__box .about-product__item .about-product__sub h3 {
        width: 100%;
        font-size: 25px;
    }
    .team-list > div {
        margin-bottom: 15px;
    }
    .page-news__list .page-news__list-item {
        flex-direction: column;
        padding: 0;
    }
    .page-news__list .page-news__list-item .page-news__list-img,
    .page-news__list .page-news__list-item .page-news__list-text {
        width: 100%;
    }
    .page-news__list .page-news__list-item .page-news__list-text {
        padding: 15px;
    }
    .sidebar .sidebar-form {
        margin-top: 30px;
    }
    .page-contact:before {
        height: 30%;
    }
    .page-contact .page-contact__form {
        padding: 20px;
    }
    .page-contact .page-contact__form .page-contact__form-controls {
        margin-top: 0;
    }
    .page-contact .page-contact__form .page-contact__form-controls .page-contact__form-item {
        margin-top: 30px;
    }
    .page-contact .page-contact__form h5 {
        font-size: 18px;
    }
    .page-detail .page-detail__content h1 {
        font-size: 20px;
        line-height: 25px;
    }
    .page-title h1 {
        font-size: 22px;
    }
    .header .header-top .header-top__lang .header-top__lang-box .header-top__lang-flex .header-top__lang-title {
        display: none;
    }
    .header .header-top .header-top__box ul li .list-lang {
        left: 0;
    }
    .footer .footer-top .footer-top__logo {
        flex-direction: column;
        align-items: center;
    }
    .footer .footer-top .footer-top__logo-desc {
        width: 100%;
        padding: 0;
        margin-top: 30px;
        text-align-last: center;
        text-align: center;
    }
    .footer .footer-top .footer-top__nav ul {
        text-align: center;
        margin-top: 30px;
    }
    .page-detail .page-detail__content .page-detail__content-post img {
        width: 100%;
    }

    .footer-top__nav {
        margin-top: 30px;
        text-align: center;
    }
    .footer-top__locaiton-item {
        margin-bottom: 30px;
    }
    .footer .footer-top .footer-top__logo .footer-top__logo-img {
        width: 50%;
    }
    .topic-box__item {
        flex-direction: column;
    }
    .topic-box__item .topic-box__item-date {
        width: 100%;
        padding: 10px 0;
    }
    .topic-box__item .topic-box__item-text {
        width: 100%;
        border-left: 4px solid rgba(28,115,181,0.25);
    }
    .advisory-procedure ul {
        height: auto;
        z-index: 2;
    }
    .advisory-procedure ul:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 3px;
        background: #1a75ba;
        left: 0;
        z-index: -1;
    }
    .advisory-procedure ul li {
        background: transparent;
        height: 105px;
        width: 100%;
        display: flex;
        align-items: center;
        float: none;
    }
    .advisory-procedure ul li .advisory-procedure__order {
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        animation: none;
    }
    .advisory-procedure ul li .advisory-procedure__o {
        left: -6px;
        top: 50%;
        transform: translateY(-50%);
    }
    .advisory-procedure ul li .advisory-procedure__name {
        margin-top: 0;
        margin-left: 50px;
    }
    .advisory-procedure ul li .advisory-procedure__order:before {
        left: auto;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        right: -8px;
    }
    .educate-training .educate-training__content .educate-training__flex {
        flex-direction: column;
        align-items: end;
    }
    .educate-training .educate-training__content .educate-training__flex .educate-training__desc {
        padding: 0;
        margin: 15px 0;
    }
    .educate-training__sort {
        flex-direction: column;
    }
    .educate-training__sort .educate-training__sort-name {
        margin-bottom: 10px;
    }
    .educate-training .educate-training__sidebar {
        margin-bottom: 30px;
    }
    .educate-intro .educate-intro__content {
        text-align: center;
    }
    .educate-intro .educate-intro__video iframe {
        height: 250px;
    }
    .educate-intro .educate-intro__video {
        margin-top: 30px;
    }
    .productivity-dictionary .productivity-dictionary__box .productivity-dictionary__text {
        padding: 20px;
    }
    .productivity-dictionary .productivity-dictionary__slide-box {
        max-width: 295px;
    }
    .productivity-dictionary .productivity-dictionary__slide-box .productivity-dictionary__slides:before {
         left: -10px;
    }
    .productivity-dictionary .productivity-dictionary__slide-box .productivity-dictionary__slides:after {
         right: -10px;
    }
    .prod-lecturers {
        flex-direction: column;
    }
    .prod-lecturers > div {
        width: 100% !important;
    }
    .prod-lecturers .prod-lecturers__content {
        padding: 15px;
    }
}
