:root {

    --grayColor: #798696;

    --blackColor: #4b4b4b;

    --yellowColor: #FFC001;

    --redColor: #ff4d4d;

    --greenColor: #059c39;

    --orangeColor: #ff9100;

}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
}



body {

    font-size: 16px;

    font-family: sans-serif !important;

    width: 100%;

}

button,
select {

    font-family: 'Open Sans', sans-serif !important;

}

span,
div,
input {

    font-family: sans-serif !important;

    font-weight: 300 !important;

}

a {

    text-decoration: none;

}

ul {

    list-style-type: none;

}

img {

    width: 100%;

}

video {

    width: 100%;

}

strong {

    font-weight: 700;

}

/* #region News */

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

@keyframes slideLeft {

    from {

        left: 0;

        opacity: 1;

    }

    to {

        left: -100px;

        opacity: 0;

    }

}

@keyframes slideRight {

    to {

        left: 0;

        opacity: 1;

    }

    from {

        left: -100px;

        opacity: 0;

    }

}

@keyframes searchSlideLeft {

    from {

        width: 0;

        opacity: 0;

        /* left: 0; */

        /* display: none; */

    }

    to {

        width: 200px;

        opacity: 1;

        /* left: -100px; */

        /* display: inline; */

    }

}

@keyframes searchSlideRight {

    from {

        width: 200px;

        opacity: 1;

        /* left: 0; */

        /* display: inline; */

    }

    to {

        width: 0;

        opacity: 0;

        /* left: -100px; */

        /* display: none; */

    }

}

/* #endregion News */

.btn {

    border: none;

    background-color: transparent;

}

.container {

    padding: 0 8em;

}

.content {

    margin: 4em 0;

}

/* Body */

/* #region Header*/

.main-header--outter {

    /* height: 90vh; */

    /* #region News */

    /* background-image: linear-gradient(rgba(121, 134, 150, 0.7), rgba(121, 134, 150, 0.7)), url("../images/z3261505668713_154917af4784fde6c1b883b0ab5f6cc1.jpg"); */

    /* background: rgb(194,194,194); */

    /* background-image: linear-gradient(43deg, rgba(227,227,227,0.40689779329700626) 50%, rgba(255,255,255,0.9447129193474265) 100%),  url("../images/z3261505668713_154917af4784fde6c1b883b0ab5f6cc1.jpg"); */

    /* #endregion News */



    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    padding-bottom: 2em;

}

.main-header--inner {

    /* background: rgba(252, 207, 84, 0.918); */

    padding: 0 1.5em;

    display: flex;

    flex-wrap: nowrap;

    justify-content: space-between;

}

.main-header__content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    /* padding: 1em 2em; */

}

.main-header__container {

    position: relative;

    display: flex;

    /* justify-content: space-between; */

    align-items: center;

    height: 400px;

    padding: 0 8em;

    margin: 1em 0 0 0;

}

.main-header__logo {

    padding: 0.5em 0;

    display: flex;

    align-items: center;

}

.main-header__logo img {

    /* width: 15%; */

    max-height: 90px;

}

.main-header__logo p {

    margin-left: 0.5em;

    color: white;

    font-weight: 700;

    font-size: 0.9em;

}

.main-header__contact {

    display: flex;

    margin-bottom: 12px;

}

.main-header__contact p {

    margin: 0 .8em;

    font-weight: bold;

    color: white;

    text-transform: uppercase;

    font-size: .8em;

    color: var(--yellowColor);

}

.main-header__menubar {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;

}

.main-header__menubar .menubar__list {

    display: inline-table;

}

.main-header__menubar .menubar__list .menubar__list-item {

    display: inline-table;

    padding: 0 1em;

    text-align: center;



}

.main-header__menubar .menubar__list .menubar__list-item>a {

    font-size: 0.9em;

    position: relative;

}

.main-header__menubar .menubar__list .menubar__list-item:hover {

    color: var(--yellowColor);

    text-decoration: underline;

    text-underline-offset: 0.2em;

}

#headSearch {

    padding: .25em;

    margin: 0 .25em;

    border-radius: .5em;

    border: none;

    color: black;

    text-decoration: none;

    width: 0px;

    opacity: 0;

}



.main-header__menubar .menubar__list .menubar__list-item>* {

    font-size: 0.8em;

    color: white;

    text-transform: uppercase;

}

/* #region News */

.navbar__mobile {

    position: absolute;

    top: 2em;

    right: 1.8em;

    display: none;

}

.nav__bars-btn {

    font-size: 2em;

    color: var(--blackColor);

}

.nav-overlay {

    position: fixed;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    background-color: rgba(121, 134, 150, 0.7);

    z-index: 1;

    display: none;

    animation: fadeIn linear 0.2s;

}

.nav__mobile {

    position: fixed;

    top: 0;

    right: 0;

    bottom: 0;

    width: 20em;

    max-width: 100%;

    background-color: var(--blackColor);

    z-index: 2;

    padding: 1em 2em 1em 0;

    text-align: right;

    transform: translate(100%);

    transition: transform linear 0.2s, opacity linear 0.2s;

    opacity: 0;

}

.nav__input:checked~.nav-overlay {

    display: block;

}

.nav__input:checked~.nav__mobile {

    transform: translate(0%);

    opacity: 1;

    overflow: scroll;

}

.menubar__mobile-list-item {

    padding: 1em 0em 0.5em;

}

.menubar__mobile-list-item:first-child {

    padding-bottom: 1em;

}

.nav__mobile-close {

    content: "\f00d";

    font-family: FontAwesome;

    font-size: 2em;

    color: white;

    display: inline-block;

    position: absolute;

    right: 8.3em;

}

.menubar__mobile-list-item a {

    color: white;

    font-size: 1em;

    text-transform: uppercase;

}

#visited a {

    color: var(--yellowColor);

}

.nav__mobile img {

    width: 100%;

}

/* #endregion News */

.main-header__desc {

    /* margin: 4em 0; */

    /* width: 50%; */

}

.main-header__desc .main-header__logo img {

    width: 15%;

}

.main-header__desc-left {

    flex: 1;

}

.main-header__desc-right {

    flex: 2;

}

.main-header__desc .main-header__logo .logo-text {

    font-size: 1.5em;

    text-align: center;

    color: var(--greenColor);

    text-shadow: 0.5px 2.5px 5px #fffa65;

    text-transform: uppercase;

}

.main-header__desc .desc__title {

    font-size: 1.5em;

    font-weight: bolder;

    word-spacing: 0.1em;

    color: var(--yellowColor);

    text-transform: uppercase;

}

.main-header__desc-left .desc__detail {

    color: white;

    word-spacing: 0.1em;

    line-height: 2em;

    font-size: 1.2em;

    font-weight: 500;

    margin: 1em 0;

    margin-right: 2em;

}

.desc-slide__list {
    width: 100%;
}

.desc-slider {

    width: 100%;

    height: 100%;

    position: relative;

    display: flex;

    align-items: center;

}



.desc-slide__btn {

    position: absolute;

    background-color: transparent;

    border: none;

    padding: 0 .9em;

    font-size: 1.2em;

    cursor: pointer;

    z-index: 10;

}

#desc-slide__btn-right {

    right: 0;

}

.desc-slide__item {
    position: relative;
    width: 100%;
    height: 400px;
    display: block;
}

.desc-slide__item-thumbnail {

    position: relative;

    width: 100%;

    display: block;

}

.desc-slide__item-title {

    position: absolute;

    background: rgba(0, 0, 0, .5);

    width: 100%;

    bottom: 0;

    color: white;

    padding: 0.75em;

    /* padding-left: .9em; */

    display: block;

}

.desc__research--btn a {

    margin-left: 1em;

    border: 0.1em solid var(--yellowColor);

    padding: 0.5em 2em;

    /* border-radius: 1em; */

    color: var(--yellowColor);

    font-size: 1em;

    font-weight: 700;

}

.desc__research--btn a:hover {

    box-shadow: 0 0 5px var(--yellowColor);

}

.history-bar {

    margin-top: 2em;

    text-align: right;

}

.history-bar p a {

    font-size: .9em;

    font-weight: 200;

    color: white;

    /* text-transform: lowercase; */

}

.previous-page::after {

    content: ' / ';

}

.present-page {

    font-weight: 700 !important;

}

/* #endregion Header */

/* #region Content box */

.content-box {

    position: relative;

    background-color: var(--greenColor);

    padding: 1.5em 2em;

    border-radius: 1em;

    /* margin-bottom: 2em; */

}

.content-box__title {

    font-size: 1.3em;

    color: var(--yellowColor);

    margin-bottom: 1em;

    margin-left: 0.5em;

}

.content-box__body {

    display: flex;

    justify-content: space-between;

}

.content-box__body>* {

    width: calc(50% - 0.5em);

}

/* #endregion Context Box */

/* #region News */

.content-box__body.event-box__body.tablet {

    display: none;

}

/* #endregion News */

/* #region Event */

.event-box {

    top: -2.5em;

}

.event-box__body__desc {

    color: white;

    letter-spacing: 0.15em;

    font-size: 1em;

    word-spacing: 0.2em;

    font-weight: 200;

    line-height: 1.5em;

}

/* #endregion Event */

/* #region Major */

.majors-box {

    position: relative;

    display: flex;

}

.majors-box__content-wrapper {

    margin: 1rem auto;

    width: 80%;

    display: flex;

    flex-direction: column;

    align-items: center;



}

.majors-box__list {

    width: 50%;

}

.majors-box__content {

    display: flex;

    justify-content: space-between;

    gap: 1rem;

}

.majors-box__list--item {

    color: var(--grayColor);

    font-size: 1em;

    line-height: 1.5em;

    font-weight: 200;

    letter-spacing: 0.1em;

    margin: 12px;

}

.majors-box__title {

    text-transform: uppercase;

    text-align: center;

    /* margin-bottom: 1em; */

    font-size: 1.6em;

    text-shadow: rgba(75, 75, 75, 0.5) -0.5em 0.25em 0.25em;

    color: var(--grayColor);

}

.course-box__thumbnal img {

    height: 200px !important;

    object-fit: cover !important;

}

.majors-box__title span {

    color: var(--blackColor);

    font-size: 2em;

}

.majors-box_thumbnail-1 {

    position: absolute;

    right: -10em;

    top: 5em;

    width: 50%;

    overflow: hidden;

    box-shadow: var(--orangeColor) -.5em .25em 1px;

}

.majors-box_thumbnail-2 {

    position: absolute;

    width: 25%;

    top: 13em;

    right: 10em;

    box-shadow: var(--blackColor) -.25em 1px .5em;

}

/* #endregion Majors */

/* #region Courses */

.courses-box__title {

    color: var(--redColor);

    text-align: center;

    font-weight: 700;

    font-size: 1.5em;

    text-transform: uppercase;

    margin: 2.5em 0;

    /* border-bottom: 1px solid var(--blackColor); */

    border-bottom: 1px solid #bdc3c7;

    padding-bottom: 6px;

}

.courses-box__body {

    display: flex;

    justify-content: space-between;

}

.course-box {

    width: calc(100% / 4 - 1em);

    font-size: .9em;

    line-height: 1.5em;

}

.course-box__title {

    /* color: var(--grayColor); */

    font-weight: 600;

    margin: 6px 0;

    font-size: 1.2em;

}

.course-box__body {

    font-weight: 200;

}

.course-box__footer {

    color: var(--redColor);

}

.course-box__footer::after {

    content: '...';

}

/* #endregion Courses */

/* #region Map */

.map-box {

    width: 100%;

    height: 70vh;

}

/* #endregion Map */

/* #region Footer*/

.main-footer--outter {

    background-image: linear-gradient(rgba(75, 75, 75, 0.5), rgba(75, 75, 75, 0.5)), url('../images/footer.jpeg');

    background-size: cover;

    background-position: center;

    padding-bottom: 2.5em;

}

.contacts-box {

    top: 5em;

    padding-left: 7em;

    padding-right: 4em;

}

.contacts-box__header {

    display: flex;

    justify-content: space-between;

    font-size: 1.2em;

    text-transform: uppercase;

    color: var(--yellowColor);

}

.contacts-box__list {

    display: flex;

}

/* #region News */

.contacts-box__title {

    display: none;

}

/* #endregion News */

.contacts-box__list--item {

    width: 2.5em;

    font-size: 1.5em;

}

.contacts-box__list--item a {

    color: var(--yellowColor);

}

.contact-box {

    display: flex;

    color: white;

    margin: .25em 0;

}

.contact-box--icon {

    padding: .5em;

    border: 1px solid var(--yellowColor);

    border-radius: 50%;

}

.contact-box-desc p {

    margin-left: 1.5em;

    padding-top: .55em;

    font-size: .9em;

}

.contact-box--detail {

    font-size: .7em;

}

.contact-box:last-child {

    width: 75%;

}

.contact-box .contact-box--icon {

    height: 2.25em;

    margin-right: 1.25em;

}

.contact-box .contact-box--desc p {

    margin: .5em 0;

}

.main-footer--inner {

    margin: 7em 8em 0em;

    display: flex;

    flex-direction: row;

    justify-content: space-between;

}

.main-footer__content {

    display: flex;

    flex-direction: row;

    justify-content: space-between;

    align-items: center;

    background-color: black;

    color: white;

    padding: 1em 1.5em;

}

.main-footer__logo {
    width: 15%;
}

.main-footer__logo img {
    width: 100%;
}
.main-footer__track {
    width: 80%;
}
.main-footer__track-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: .9em;
    font-weight: 200;
}
.main-footer__track-item p:first-child:after {
    content: ':';
}
.main-footer__desc {
    align-self: center;
    font-size: .9em;
    font-weight: 200;
    color: white;
    line-height: 1.5em;
}
/* #endregion  */
/* #region News */
.news-container {
    display: flex;
    justify-content: space-between;
    margin: 2em 0;
}

.news-block {
    display: grid;
    grid-template-columns: 1fr;
    width: 65%;
}

.news-block.news-block-by-category {
    display: flex;
    flex-wrap: wrap;
    height: max-content;
}
.news-box {
    /* border-bottom: 1px solid var(--yellowColor); */
    padding: 16px;
    height: max-content;
}
.news-box:first-child {
    padding-top: 0;
}
.news-box:hover {
    /* box-shadow: 0 0 5px #a4b0be; */
}
.news-box.news-box-by-category {
    width: 50%;
    height: 520px;
    padding: 0 8px 16px 8px;
}
.news-box.news-box-by-category:first-child {
    padding-top: 0;
}
.news-box.news-box-by-category .news-box-by-category-wrapper {
    box-shadow: 0 0 5px #a4b0be;
    height: 100%;
    /* overflow-y: scroll; */
}
.news-box.news-box-by-category .news-box__thumbnail-wrapper {
    height: 280px;
    position: relative;
}
.news-box.news-box-by-category .news-box__thumbnail img {
    height: 100%;
    object-fit: contain;
}
.news-box.news-box-by-category .news-box__content-wrapper {
    padding: 12px;
    height: 186px;
    /* overflow-y: scroll; */
}
.news-item__title {
    font-size: 1em;
    color: var(--blackColor);
}
.news-item__child {
    display: grid;
    grid-template-columns: .5fr 1fr;
    grid-gap: 1em;
    margin-top: 1em;
}
.news-item__child > .news-item__thumbail {
    width: 100%;
}
.news-box__thumbnail img {
    width: 100%;
}

.news-box__title {
    color: var(--grayColor);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: .5em 0;
    font-weight: 700;
    font-size: 1.25em;
    line-height: 1.5;
    text-transform: uppercase;
    flex-wrap: wrap;
}
.news-box__views {
    text-align: right;
    font-weight: 200;
    font-size: .9em;
}

.news-box__author {
    text-align: right;
    margin-top: .25em;
    font-style: italic;
    color: var(--grayColor);
    font-size: .9em;
}
.news-box__author--date {
    font-weight: 200;
}
.news-box__desc {

    /* font-weight: 200; */

    /* font-size: .9em; */

    /* font-style: italic; */

    /* color: var(--grayColor); */

    /* line-height: 1.25em; */

    /* word-spacing: .2em; */
    line-height: 1.3;
    margin-top: 14px;
}

.news-box__detail {

    color: var(--redColor);

    margin-top: .2em;

}
/* #endregion News */
/* #region Sidebar */
.sidebar {
    /* position: sticky; */
    align-self: flex-start;
    /* overflow-y: auto; */
    /* top: 0; */
    width: 35%;
    padding: 24px;
    background-color: var(--grayColor);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar__title {
    color: var(--yellowColor);
    margin-bottom: 8px;
    font-size: 20px;
}
.searchbar {

    margin: 1em 0;

    width: 100%;

}

.searchbar-form {

    background-color: white;

    padding: .5em;

    color: var(--grayColor);

    font-size: .9em;

    font-weight: 200;

    border-radius: 1em;

    display: flex;

    justify-content: center;

    align-items: center;

}

.searchbar-form input {

    border: none;

    padding: .5em;

}

.searchbar-form input:focus {
    border: none;
    outline: none;
}
.category {

}

.category-item {

    color: white;

}

.category-item::before {

    content: '\203A';

    margin-right: .25em;

    font-size: 1.5em;

}

.category-item>button {

    cursor: pointer;

    border: none;

    background-color: transparent;

    color: white;

    font-size: .9em;

}

.subcategory-list {

    display: none;

    line-height: 1.5em;

}

.subcategory-item {

    font-size: .9em;

    margin-left: 1.5em;

    font-weight: 200;

}

.subcategory-item::before {

    content: '\2022';

    color: var(--yellowColor);

}

.relate-posts {

}

.relate-post {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
    height: 150px;
}

.relate-post__thumbnail {
    background-color: #fff;
    width: 40%;
}

.relate-post__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.relate-post__detail {

    width: 55%;

    font-size: .8em;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

}

.relate-post__title {
    color: var(--yellowColor);
    font-weight: 200;
    margin-bottom: 16px;
    font-size: 16px;
}

.relate-post__author {

    display: flex;

    justify-content: space-between;

    color: white;

    font-weight: 200;

}

.relate-post__author>* {

    display: block;

}

.tags {

    display: inline-block;

    padding: .5em;

    border: .1em solid var(--blackColor);

    border-radius: 1em;

    font-size: .75em;

    margin: .5em 0;

}

/* #endregion Sidebar */

/* #region News Detail */

.post-detail {

    text-align: right;

    color: white;



    font-size: .9em;

    font-weight: 200;

}

.post-detail p {

    display: inline-table;

    margin: .25em 1em;

}

.post-detail p:last-child {

    margin-right: 0;

}

.post-detail span {

    font-weight: 700;

}

.post-detail span::before {

    content: ': ';

    font-weight: 200;

}

.news-detail__block {

    margin: 1em 0;

    line-height: 1.5em;

}

.news-detail__block p {

    margin-left: 1em;

}

.news-h1 {

    text-transform: uppercase;

    font-size: 1.2em;

}

.news-h1 span {

    text-transform: lowercase;

}

/* #endregion News Detail */

/* #region Register Form */

.form-container {

    display: flex;

    justify-content: space-between;

    margin: 2em 0;

}

.register-modal {

    height: 100vh;

    position: fixed;

    z-index: 99;

    width: 100%;

    top: 0;

    left: 0;

    background-color: rgba(0, 0, 0, .5);

    overflow: scroll;

    display: none;

}

.register-block {

    font-size: .9em;

    font-weight: 200;

    line-height: 1.5em;

    width: 100% !important;

}

.register-title {

    color: var(--redColor);

    text-align: center;

    font-size: 1.2em;

    margin-bottom: .5em;

}

.register-modal--block {

    width: 50% !important;

    margin: 2em auto;

    z-index: 100;

    background-color: white;

    padding: 1.2em;

    position: relative;

}

.base-value {

    display: flex;

    justify-content: space-between;

    /* height: 50px; */

}

.base-value .input-block {

    width: 45%;

    margin: 0 1.2em;

}

.input-block {

    margin: 1.2em;

}

.input-error {

    color: var(--redColor);

    margin-top: .5em;

    display: none;

}

.input-box {

    /* padding: .2em 1em .2em; */

    /* width: 75%; */

    position: relative;

}

.input-box--error {

    border-color: var(--redColor);

    box-shadow: var(--redColor) .5px .5px 5px;

    transition: all .5s;

}

.input-box input,
select,
textarea {

    width: 100%;

    background-color: transparent;

    padding: 8px;

    border: 1px solid #bdc3c7;

    border-radius: 4px;

}

.input-box input,
select,
textarea:focus {

    outline: none;

}



.input-box .error-tag {

    color: red;

    position: absolute;

    right: .75em;

    top: .35em;

    display: none;

}

.input-box .input-tag {

    position: absolute;

    right: .75em;

    top: .35em;

}

.input-block label {

    padding-top: .3em;

}

.register--btn {

    text-align: center;

    margin: auto;

}

.register--btn button {

    padding: .5em 2.5em;

    border-radius: 1em;

    color: white;

    background-color: var(--greenColor);

    border: none;

}

.landing-box {

    position: absolute;

    top: 0;

    left: 0;

    z-index: 10;

}

.landing-box-container {

    position: fixed;

    bottom: 0;

    width: 100%;

    height: 3em;

    background-color: var(--greenColor);

    display: flex;

    justify-content: center;

    align-items: center;

}

.landing-box-container .landing-btn {
    /* margin: 0 1.2em; */
    padding: 0 1.2em;
    height: 100%;
    line-height: 3em;
    position: relative;
}
.landing-btn a {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
}
.landing-btn:hover {
    background-color: green;
}
.landing-btn:hover>.popup-box {
    visibility: visible;
}
.popup-box {

    position: absolute;

    background-color: rgba(75, 75, 75, 0.9);

    font-size: 0.9em;

    bottom: calc(100% + .5em);

    min-width: 120px;

    max-width: 240px;

    text-align: center;

    line-height: 2em;

    padding: 0.7em;

    color: white;

    visibility: hidden;

    left: 50%;

    margin-left: -5em;

    border-radius: 1em;

    /* height: 150px; */

    /* display: none; */
}
.popup-box::after {

    content: '';

    width: 0;

    height: 0;

    border-left: .7em solid transparent;

    border-right: .7em solid transparent;

    border-top: .7em solid rgba(75, 75, 75, 0.9);

    position: absolute;

    bottom: -.5em;

    left: 50%;

    margin-left: -.5em;
}
.desc-slide__item-thumbnail {
    object-fit: fill;
}
/* #endregion Register Form */
@media only screen and (max-width: 992px) {

    .main-header--inner {

        flex-direction: column-reverse;

    }

    .navbar__mobile {

        position: absolute;

        top: 1.8em;

        right: 1.8em;

        display: block;

    }

    .main-header__menubar {

        width: 100%;

        padding-top: 1rem;

        font-size: 14px;

    }

    .main-header__menubar ul.menubar__list {

        display: none;

    }

    .main-header__container {

        display: flex;

        flex-direction: column;

        padding: 1rem;

        width: 100%;

    }

    .desc-slide__list {

        width: 100%;

        position: relative;

    }

    .main-header__desc-left {

        position: relative;

        width: 90%;

        margin: 0 2em;

    }

    .main-header__desc-left .desc__detail {

        font-size: 1em;

        font-weight: 500;

    }

    .desc__research--btn a {

        font-size: 0.9em;

        font-weight: 300;

    }

    .main-header__desc-right {

        position: relative;

        width: 90%;

        margin: 0 2em;

        padding: 2em 0;

    }

    .desc-slide__item {

        position: relative;

        width: 100%;

        height: 300px;

        border-bottom: 5px;

    }

    .desc-slide__item-thumbnail {

        border-bottom: 5px;

    }

    .body-container.container {

        padding: 0 10px;

    }

    .majors-box {

        flex-direction: row;

        flex-wrap: wrap;

    }

    .contacts-box {

        padding: 2rem;

    }



    .main-footer--inner {

        flex-direction: column;

        padding-bottom: 1rem;

    }

    .majors-box__content-wrapper {

        padding-top: 2em;

    }

}
/*max-width: 768px*/
@media only screen and (max-width : 768px) {
    /* home */
    .container.main-header__desc .main-header__logo,
    .main-header__desc .desc__title,
    .nav__pc {
        display: none !important;
    }
    .navbar__mobile {
        display: block;
    }
    .main-header--outter {
        height: 100%;
    }

    .main-header__container {
        height: 100%;
    }

    .header__desc-wrapper {
        padding-bottom: 2em;
    }
    .main-header__desc-right {
        display: none;
    }
    .main-header__desc-left {}

    .main-header--inner {
        padding: 0 2em;
        display: flex;
    }

    .nav__bars-btn {
        display: block;
    }

    .main-header__desc,
    .desc__research--btn a,
    .content {
        margin: 0;
    }
    .main-header__desc {
        padding: 0 5% !important;
    }

    .menubar__list-item {
        position: relative;

    }
    .menubar__list-item input {

        padding: 1em !important;

        margin: 1.5em 0 !important;

        border-radius: .5em !important;

        border: none !important;

        width: 90% !important;

        font-size: 0.95em !important;
    }

    .menubar__list-item .btn {
        position: absolute;

        top: 1.8em;

        right: 0.6em;

        font-size: 1.2em;

        color: var(--blackColor) !important;
    }
    .container {
        padding: 3em 1em 0 1em;
    }

    .main-header__desc .desc__detail,

    .main-header__desc .main-header__logo .logo-text {
        font-size: 1em;
    }

    .content-box__body.event-box__body.pc {

        display: none;

    }

    .content-box__body.event-box__body.tablet {

        display: flex;

    }

    .content-box__body>* {

        width: 100%;

    }

    .body-container.container {

        padding: 0em calc(10% / 2);

    }

    .content-box {

        padding: 2em;

    }

    .content-box__title {

        margin-left: 0;

        font-size: 1.15em;

        order: 1;

    }

    .content-box__video {

        order: 2;

        margin: 0.7em 0em;

    }

    .event-box__body__desc {

        order: 3;

    }

    .content-box__body {

        flex-direction: column;

    }
    .majors-box {
        display: flex;

        flex-direction: column;
    }
    .majors-box .majors-box__content-wrapper {
        padding: 0;
        width: 90%;
        margin: 1rem auto;
    }
    .majors-box__content {
        flex-direction: row;
        gap: 2rem;
    }
    .majors-box__title {
        width: 90%;
        margin: 0 calc(10%/2);
        font-size: 1.5em;
    }
    .majors-box__title span {
        font-size: 1.5em;
    }
    .majors-box__list {
        display: flex;
    }
    .majors-box__list:first-child div {}
    .majors-box__list:last-child div:first-child {}
    .form_wrapper {
        margin: 1rem auto;
    }
    .img-box {
        position: relative;
        width: 30%;
    }
    .majors-box_thumbnail-1 {
        right: 2em;
        top: 0em;
        width: 80%;
    }
    .majors-box_thumbnail-2 {
        display: none;
    }
    .courses-box__body,
    .news-box {
        flex-direction: column;
    }
    .course-box,
    .news-item {
        width: 90%;
        margin-left: calc(10% / 2);
        border-bottom: 1px solid var(--blackColor);
        margin-bottom: 1.7em;
        display: flex;
    }
    .course-box:last-child {
        border-bottom: 0;
    }
    .course-box__thumbnal {
        width: 50%;
        margin-right: 2em;
        margin-bottom: 1em;
    }
    .course-box__thumbnal img {
        object-fit: cover;
    }
    .courses-box__title {
        border-bottom: 0;
        margin-bottom: 1em;
    }
    .course-box__footer {
        margin-bottom: 0.3em;
    }
    .map-box {
        height: auto;
    }
    .contacts-box {
        top: -2em;
    }
    .contacts-box__header {
        flex-direction: column;
        text-align: center;
    }
    .contacts-box__list {
        margin-bottom: 0.5em;
    }
    .contact-box:last-child {
        width: 100%;
    }
    .contact-box--icon {
        margin-right: 1em !important;
    }
    .contact-box-desc p {
        margin: 0 auto;
    }
    .contact-box--detail {
        font-size: 0.9em;
    }
    .main-footer--outter {
        height: 480px;
    }
    .main-footer__content {
        display: none;
    }
    .main-footer--inner {
        margin: 0em 1em;
        text-align: center;
        justify-content: center;
        position: relative;
        bottom: 3em;
    }
    .main-footer--inner p:last-child {
        padding: 0 3em;
    }
    /* about */
    .searchbar-form input {
        width: 90%;
    }
    .sidebar {
        width: 100%;
    }
    .news-container {
        flex-direction: column;
        margin: 0;
    }
    .news-box {
        display: flex;
        width: 100% !important;
    }
    .no-flex {
        display: unset;
    }
    .news-block {
        width: 100%;
        text-align: justify;
    }
    .news-box__thumbnail {
        display: none;
    }
    .not-hident {
        display: block !important;
        width: 60%;
        margin: 7% 1em 7% 0;
    }
    .relate-posts__container {
        display: flex;
        margin-bottom: 2em;
        justify-content: space-between;
    }
    .relate-posts__container a {
        width: 100%;
    }
    .relate-post {
        /* flex-direction: column; */
        /* flex-basis: 30%; */
        /* justify-content: unset; */
    }
    .relate-post__thumbnail {
        /* width: 100%; */
    }
    .relate-post__detail {
        /* width: 100%; */
        /* font-size: 1em; */
        /* height: 4em; */
    }
    .inside-box {
        height: 550px;
    }
    .inside-box__content {
        top: 2em !important;
        background-color: rgba(121, 134, 150, 0.7);
    }
    .inside-box__main {
        margin-top: 5em;
    }
    .form-container {
        flex-direction: column;
    }
    .register-block {
        margin-bottom: 2em;
    }
    .register-modal--block {
        width: 90% !important;
    }
    .news-box__thumbnail-wrapper .news-box__thumbnail {
        width: 100% !important;
        height: 100% !important;
    }
}
/* max-width: 480px */
@media only screen and (max-width: 480px) {
    .main-header__container {
        height: 100%;
    }
    .header__desc-wrapper {
        padding-bottom: 2em;
    }

    .main-header__desc-right {

        display: none;

    }

    .main-header__desc-left .desc__detail {

        font-size: 1em;

        width: 75%;

    }

    .event-box__body__desc {

        display: none;

    }

    .body-container.container {

        padding: 0em;

    }

    .content-box {

        padding: 1.5em 1em;

    }

    .majors-box__content {

        padding: 0;

        gap: 1rem;

    }

    .majors-box__list {

        display: unset;

    }

    .majors-box__list:last-child div:first-child {

        width: 100%;

    }

    .majors-box__list .majors-box__list--item {

        font-size: 0.9em;

        line-height: 1.5em;

    }
    .img-box {

        display: none;

    }

    .course-box {

        display: unset;

    }
    .course-box__thumbnal {

        width: 100%;

        margin-right: 2em;

        margin-bottom: 0em;

    }
    .contacts-box__list,

    .contact-box {

        justify-content: center;

    }

    .contacts-box.content-box {

        background: rgba(121, 134, 150, 0.7);

        text-align: center;

    }
    .contacts-box {
        top: 4em;
    }
    .main-footer--outter {
        height: unset;
    }
    .main-footer__content,
    .contact-box--icon {
        display: none;
    }
    .main-footer--inner {
        position: unset;
        margin-top: 3em;
    }
    .relate-post__detail {
        font-size: 0.8em;
    }
    .relate-posts__container {
        display: unset;
    }
    .relate-post {
        flex-direction: row;
        justify-content: space-between;
    }
    .relate-post__thumbnail {
        width: 40%;
    }
    .relate-post__thumbnail img {
        object-fit: contain !important;
    }
    .relate-post__detail {
        width: 55%;
        height: 6em;
    }
    .news-box {
        width: 100% !important;
        flex-direction: column;
        overflow-x: scroll;
    }
    .not-hident {
        width: 100%;
        margin: 0;
    }
    .news-box__title {
        flex-direction: column;
    }
    .news-box__desc {
        margin-top: 0.7em;
    }
    .input-block {
        flex-direction: column;
        width: 95%;
    }
    .input-box {
        width: 100%;
    }
    .base-info {
        box-sizing: border-box;
    }
    .base-value {
        flex-direction: column;
        box-sizing: border-box;
    }
    .base-value .input-block {
        width: 95%;
        margin: 0 1.2em;
    }
    .base-value .input-block:first-child {
        margin-bottom: 1.2em;
    }
    .main-footer__desc {
        margin-top: 2rem;
    }
    .courses-box {
        padding-right: 25px;
        padding-left: 25px;
    }
    .news-container {
        margin-top: 0 !important;
    }
    .main-header--outter {
        height: 86px !important;
    }
    .main-header__desc-no-home {
        padding: 8px !important;
    }
    .news-box__thumbnail-wrapper .news-box__thumbnail {
        width: 100% !important;
        height: 100% !important;
    }
    .relate-post__author {
        flex-direction: column;
        gap: 8px;
    }
    .desc__research--btn {
        display: none !important;
    }
}