html, body, :root {
  background: white;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1, h2, h3, h4, .nav a {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

h1 {
  font-weight: bold;
}

h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 36px;
}

main h2 {
  text-transform: none;
}

h3 {
  font-size: 31px;
}

h4 {
  font-size: 25px;
} 


:root {
  --pink-color: #FF457E;
  --pink-dark-color: #EB0046;
  --yellow-color: #FFD800;
  --orange-color: #F7663B;
  --orange-dark-color: #DC3A09;
  --green-light-color: #5EC601;
  --green-color: #408801;
  --blue-color: #2696D2;
  --blue-dark-color: #207EB1;
  --grey-color: #5F798C;
  --dark-blue-color: #3F4EB5;

  --pink-hvr-color: #ca043f;
  --yellow-hvr-color: #FFE869;
  --orange-hvr-color: #bb3208;
  --green-hvr-light-color: #67dc00;
  --green-hvr-color: #326b01;
  --blue-hvr-color: #1b6994;
  --grey-hvr-color: #4d6373;
  --dark-blue-hvr-color: #344198;
}

.lc-btn {
  padding: 10px 40px !important;
  text-transform: uppercase;
  border-radius: 14px;
  border: none;
}

.lc-btn-small {
  padding: 5px 20px !important;
  border-radius: 50px;
  text-decoration: none !important;
  text-transform: none;
}

.item-page[data-color="pink"] .in-article .nav li a,
.item-page[data-color="pink"] .lc-btn-inherit {
  background-color: var(--pink-color);
  color: white;
}
.item-page[data-color="yellow"] .in-article .nav li a,
.item-page[data-color="yellow"] .lc-btn-inherit {
  background-color: var(--yellow-color);
}
.item-page[data-color="orange"] .in-article .nav li a,
.item-page[data-color="orange"] .lc-btn-inherit {
  background-color: var(--orange-color);
  color: white;
}
.item-page[data-color="green"] .in-article .nav li a,
.item-page[data-color="green"] .lc-btn-inherit {
  background-color: var(--green-light-color);
  color: black;
}
.item-page[data-color="blue"] .in-article .nav li a,
.item-page[data-color="blue"] .lc-btn-inherit {
  background-color: var(--blue-color);
  color: white;
}

.item-page[data-color="pink"] .in-article .nav li a:hover,
.item-page[data-color="pink"] .lc-btn-inherit:hover {
  background-color: var(--pink-hvr-color);
}
.item-page[data-color="yellow"] .in-article .nav li a:hover,
.item-page[data-color="yellow"] .lc-btn-inherit:hover {
  background-color: var(--yellow-hvr-color);
}
.item-page[data-color="orange"] .in-article .nav li a:hover,
.item-page[data-color="orange"] .lc-btn-inherit:hover {
  background-color: var(--orange-hvr-color);
}
.item-page[data-color="green"] .in-article .nav li a:hover,
.item-page[data-color="green"] .lc-btn-inherit:hover {
  background-color: var(--green-hvr-light-color);
}
.item-page[data-color="blue"] .in-article .nav li a:hover,
.item-page[data-color="blue"] .lc-btn-inherit:hover {
  background-color: var(--blue-hvr-color);
}

.lc-btn:hover {
  text-decoration: none;
}

.text-black {
  color: black !important;
}

.text-white {
  color: white !important;
}

.text-pink {
  color: var(--pink-color);
}
.text-yellow {
  color: var(--yellow-color);
}
.text-orange {
  color: var(--orange-color);
}
.text-green {
  color: var(--green-color);
}
.text-blue {
  color: var(--blue-color);
}
.text-grey {
  color: var(--grey-color);
}
.text-dark-blue {
  color: var(--dark-blue-color);
}

.text-hvr-pink:hover {
  text-decoration: none;
  color: var(--pink-hvr-color);
}
.text-hvr-yellow:hover {
  color: var(--yellow-hvr-color);
}
.text-hvr-orange:hover {
  color: var(--orange-hvr-color);
}
.text-hvr-green:hover {
  color: var(--green-hvr-color);
}
.text-hvr-blue:hover {
  color: var(--blue-hvr-color);
}
.text-hvr-grey:hover {
  color: var(--grey-hvr-color);
}
.text-hvr-dark-blue:hover {
  color: var(--dark-blue-hvr-color);
}

.bg-pink {
  color: white !important;
  background-color: var(--pink-color);
}
.bg-yellow {
  color: black !important;
  background-color: var(--yellow-color);
}
.bg-orange {
  color: white !important;
  background-color: var(--orange-color);
}
.bg-light-green {
  color: black !important;
  background-color: var(--green-light-color);
}
.bg-green {
  color: white !important;
  background-color: var(--green-color);
}
.bg-blue {
  color: white !important;
  background-color: var(--blue-color);
}
.bg-grey {
  color: black !important;
  background-color: var(--grey-color);
}
.bg-dark-blue {
  color: white !important;
  background-color: var(--dark-blue-color);
}

.bg-hvr-pink.active,
.bg-hvr-pink:hover {
  text-decoration: none !important;
  background-color: var(--pink-hvr-color);
}
.bg-hvr-yellow.active,
.bg-hvr-yellow:hover {
  text-decoration: none !important;
  background-color: var(--yellow-hvr-color);
}
.bg-hvr-orange.active,
.bg-hvr-orange:hover {
  text-decoration: none !important;
  background-color: var(--orange-hvr-color);
}
.bg-hvr-green.active,
.bg-hvr-green:hover {
  text-decoration: none !important;
  background-color: var(--green-hvr-color);
}
.bg-hvr-light-green.active,
.bg-hvr-light-green:hover {
  text-decoration: none !important;
  background-color: var(--green-hvr-light-color);
}
.bg-hvr-blue.active,
.bg-hvr-blue:hover {
  text-decoration: none !important;
  background-color: var(--blue-hvr-color);
}
.bg-hvr-grey.active,
.bg-hvr-grey:hover {
  text-decoration: none !important;
  background-color: var(--grey-hvr-color);
}
.bg-hvr-dark-blue.active,
.bg-hvr-dark-blue:hover {
  text-decoration: none !important;
  background-color: var(--dark-blue-hvr-color);
}

.slider {
  position: relative;
}

.slider .slider-text {
  position: absolute;
  bottom: 9%;
  left: 7%;
  font-size: 63px;
  font-weight: bold;
  line-height: 73px;
  color: white;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  padding: 20px;
}

.slider img {
  max-width: 100vw;
  width: 100vw;
}

#quick .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

#quick .main {
  display: grid;
  width: calc(100% - 300px);
  grid-template-columns: repeat(3, 1fr);
  padding: 0 70px;
  column-gap: 50px;
  row-gap: 30px;
}

#quick .main .item {
  text-align: center;
  font-size: 14px;
}

#quick .main .item a {
  text-decoration: none !important;
}

#quick .main .item .img-wrapper {
  border-radius: 60px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#quick .main .item.pink a .img-wrapper {
  background-color: var(--pink-dark-color);
}
#quick .main .item.pink a .text-wrapper {
  color: var(--pink-dark-color);
}
#quick .main .item.pink a:hover .img-wrapper {
  background-color: var(--pink-hvr-color);
}
#quick .main .item.pink a:hover .text-wrapper {
  color: var(--pink-hvr-color);
}

#quick .main .item.yellow a .img-wrapper {
  background-color: var(--yellow-color);
}
#quick .main .item.yellow a .text-wrapper {
  color: var(--yellow-color);
}
#quick .main .item.yellow a:hover .img-wrapper {
  background-color: var(--yellow-hvr-color);
}
#quick .main .item.yellow a:hover .text-wrapper {
  color: var(--yellow-hvr-color);
}

#quick .main .item.orange a .img-wrapper {
  background-color: var(--orange-dark-color);
}
#quick .main .item.orange a .text-wrapper {
  color: var(--orange-dark-color);
}
#quick .main .item.orange a:hover .img-wrapper {
  background-color: var(--orange-hvr-color);
}
#quick .main .item.orange a:hover .text-wrapper {
  color: var(--orange-hvr-color);
}

#quick .main .item.green a .img-wrapper {
  background-color: var(--green-color);
}
#quick .main .item.green a .text-wrapper {
  color: var(--green-color);
}
#quick .main .item.green a:hover .img-wrapper {
  background-color: var(--green-hvr-color);
}
#quick .main .item.green a:hover .text-wrapper {
  color: var(--green-hvr-color);
}

#quick .main .item.blue a .img-wrapper {
  background-color: var(--blue-dark-color);
}
#quick .main .item.blue a .text-wrapper {
  color: var(--blue-dark-color);
}
#quick .main .item.blue a:hover .img-wrapper {
  background-color: var(--blue-hvr-color);
}
#quick .main .item.blue a:hover .text-wrapper {
  color: var(--blue-hvr-color);
}

#quick .main .item.grey a .img-wrapper {
  background-color: var(--grey-color);
}
#quick .main .item.grey a .text-wrapper {
  color: var(--grey-color);
}
#quick .main .item.grey a:hover .img-wrapper {
  background-color: var(--grey-hvr-color);
}
#quick .main .item.grey a:hover .text-wrapper {
  color: var(--grey-hvr-color);
}

#quick .main .item.dark-blue a .img-wrapper {
  background-color: var(--dark-blue-color);
}
#quick .main .item.dark-blue a .text-wrapper {
  color: var(--dark-blue-color);
}
#quick .main .item.dark-blue a:hover .img-wrapper {
  background-color: var(--dark-blue-hvr-color);
}
#quick .main .item.dark-blue a:hover .text-wrapper {
  color: var(--dark-blue-hvr-color);
}


#quick .side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 300px;
  justify-content: flex-end;
}

#quick .info,
aside .info {
  padding: 30px 20px;
  border-radius: 40px;
}

#quick .info ul,
aside .info ul {
  padding: 0;
  margin: 0;
}

#quick .info ul a,
aside .info ul a {
  color: black !important;
}

aside .info h3 {
  font-size: 23px;
}
aside .info {
  font-size: 13px;
  padding: 20px;
}

aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

aside .aside-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

aside .aside-nav .item {
  display: flex;
  flex-direction: row;
  padding: 13px 25px !important;
  align-items: center;
  gap: 10px;
}

aside .aside-nav .item h4 {
  font-size: 20px;
  margin: 0;
  color: white !important;
}

aside .aside-nav .item .ico {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
}

aside .aside-nav .item img {
  max-width: 100%;
  max-height: 100%;
}

table.styled-table,
table.styled-left-table {
  width: 100%;
}

table.styled-table td,
table.styled-left-table td {
  padding: 10px 20px;
}

table.styled-table tr:first-child td,
table.styled-left-table tr td:first-child {
  font-weight: bold;
}

.item-page[data-color="pink"] table.styled-table tr:first-child td,
.item-page[data-color="pink"] table.styled-left-table tr td:first-child {
  background-color: var(--pink-color);
  color: white;
}
.item-page[data-color="yellow"] table.styled-table tr:first-child td,
.item-page[data-color="yellow"] table.styled-left-table tr td:first-child {
  background-color: var(--yellow-color);
}
.item-page[data-color="orange"] table.styled-table tr:first-child td,
.item-page[data-color="orange"] table.styled-left-table tr td:first-child {
  background-color: var(--orange-color);
  color: white;
}
.item-page[data-color="green"] table.styled-table tr:first-child td,
.item-page[data-color="green"] table.styled-left-table tr td:first-child {
  background-color: var(--green-light-color);
  color: white;
}
.item-page[data-color="blue"] table.styled-table tr:first-child td,
.item-page[data-color="blue"] table.styled-left-table tr td:first-child {
  background-color: var(--blue-color);
  color: white;
}

ul {
  list-style-type: none;
}

main ul {
  margin-top: 20px;
}

main ul li {
  position: relative;
  font-weight: 200;
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: normal;
}
main ul li::before {
  content: "";
  display: block;
  position: absolute;
  background-size: 20px;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  left: -30px;
  top: 4px;
}

main .item-page[data-color="pink"] ul li::before {
  background-image: url('../images/li-pink.svg');
}
main .item-page[data-color="yellow"] ul li::before {
  background-image: url('../images/li-yellow.svg');
}
main .item-page[data-color="orange"] ul li::before {
  background-image: url('../images/li-orange.svg');
}
main .item-page[data-color="green"] ul li::before {
  background-image: url('../images/li-green.svg');
}
main .item-page[data-color="blue"] ul li::before {
  background-image: url('../images/li-blue.svg');
}


table.styled-table tr:nth-child(even) td,
table.styled-left-table tr:nth-child(even) td {
  background-color: #D2DBE1;
}

table.styled-table tr:nth-child(odd) td,
table.styled-left-table tr:nth-child(odd) td {
  background-color: #F2F2F2;
}

table.styled-table tr:first-child td:first-child,
table.styled-left-table tr:first-child td:first-child {
  border-top-left-radius: 16px;
}
table.styled-table tr:first-child td:last-child,
table.styled-left-table tr:first-child td:last-child {
  border-top-right-radius: 16px;
}
table.styled-table tr:last-child td:first-child,
table.styled-left-table tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}
table.styled-table tr:last-child td:last-child,
table.styled-left-table tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.teacher {
  border: 2px solid var(--green-light-color);
  padding: 10px 20px;
  border-radius: 20px;
}

.teacher h5 {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  color: black !important;
}

.teacher .name {
  font-size: 24px;
  font-weight: bold;
  padding: 10px 0;
}

.item-page[data-color="pink"] .teacher {
  color: var(--pink-color);
}
.item-page[data-color="yellow"] .teacher {
  color: var(--yellow-color);
}
.item-page[data-color="orange"] .teacher {
  color: var(--orange-color);
}
.item-page[data-color="green"] .teacher {
  color: var(--green-color);
}
.item-page[data-color="blue"] .teacher {
  color: var(--blue-color);
}

.staff-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.staff-list .item {
  background-color: #E9E8E3;
  border-radius: 30px;
  padding: 20px;
  color: #675A30;
  font-weight: bold;
}

.staff-list .item,
.staff-list .item .text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.staff-list .item.non span {
  width: 100px;
}

.staff-list .item span {
  display: inline-flex;
  width: 200px;
}


footer .item-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer .item-list .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
}
footer .item-list .item.d-row {
  flex-direction: row;
  gap: 5px;
}
footer .item-list .item img:not(.frm-img) {
  width: 24px;
}

footer .item-list .item .form-btn .img {
  display: flex;
  justify-content: center;
  gap: 5px;
}

footer .item-list .item .form-btn .link {
  padding: 0 20px;
}

footer .item-list .item p {
  margin: 0;
  line-height: 20px;
}
footer .item-list .item p.title {
  font-weight: bold;
}

footer .item .link {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: bold;
  color: #393939;
  text-transform: uppercase;
}

footer .form-btn {
  padding: 10px 0;
  border-radius: 25px;
  background-color: var(--yellow-color);
}
footer .form-btn {
  text-decoration: none;
}
footer .form-btn:hover {
  background-color: var(--yellow-hvr-color);
}

.copy {
  text-align: center;
  padding: 30px 0;
  font-size: 12px;
}

.copy a {
  color: black !important;
}

.dropdown-menu {
  border-radius: 16px;
}

.breads {
  display: flex;
  align-items: center;
}

.breads > span {
  position: relative;
}

.breads span a {
  color: #5D5D5D !important;
}

.breads span a:hover {
  text-decoration: underline;
}

.breads > span:first-child {
  padding-right: 5px;
}
.breads > span:not(:first-child) {
  padding-right: 20px;
}

.breads > span:not(:last-child)::after {
  position: absolute;
  display: inline-flex;
  content: ">";
}

.breads > span:not(:first-child)::after {
  right: 5px;
  top: calc(50% - 12px);
}
.breads > span:first-child::after {
  display: none;
}

.blog-item .item {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-radius: 16px;
  border: 2px solid black;
  height: 100%;
  gap: 20px;
}

.blog-item .img figure {
  margin: 0;
}

.blog-item .img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
} 

.blog-item .item h2 {
  font-family: 'Roboto Condensed';
  font-size: 1rem;
  color: black;
  margin: 0;
}

.blog-item .item h2 a {
  color: black !important;
}
.blog-item .item p {
  font-family: 'Roboto Condensed';
  line-height: 120%;
}

.item-page {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.item-page a {
  color: black;
  text-decoration: underline;
}

.item-page[data-color="pink"] .download-item,
.item-page[data-color="pink"] .blog-item .item {
  border-color: var(--pink-color);
}
.item-page[data-color="yellow"] .download-item,
.item-page[data-color="yellow"] .blog-item .item {
  border-color: var(--yellow-color);
}
.item-page[data-color="orange"] .download-item,
.item-page[data-color="orange"] .blog-item .item {
  border-color: var(--orange-color);
}
.item-page[data-color="green"] .download-item,
.item-page[data-color="green"] .blog-item .item {
  border-color: var(--green-light-color);
}
.item-page[data-color="blue"] .download-item,
.item-page[data-color="blue"] .blog-item .item {
  border-color: var(--blue-color);
}

.com-content-category-blog__pagination {
  display: flex;
  justify-content: center;
}
.com-content-category-blog__pagination ul li::before {
  display: none;
}

.pagination .arrow {
  display: none !important;
}

.pagination {
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination li::before {
  display: none;
}

.pagination li a {
  text-decoration: none;
  color: black !important;
}

.pagination li.page {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 223, 33, .1);
}

.pagination li.page:not(.active):hover {
  background-color: rgba(13 151 151, .5);
}

.pagination li.active {
  font-weight: bold;
}

.item-page[data-color="pink"] .download-item .filetype,
.item-page[data-color="pink"] .download-item .download,
.item-page[data-color="pink"] .pagination li.active {
  background-color: var(--pink-color);
}
.item-page[data-color="yellow"] .download-item .filetype,
.item-page[data-color="yellow"] .download-item .download,
.item-page[data-color="yellow"] .pagination li.active {
  background-color: var(--yellow-color);
}
.item-page[data-color="yellow"] .download-item .filetype,
.item-page[data-color="yellow"] .download-item .download,
.item-page[data-color="yellow"] .pagination li.active a {
  color: black !important;
}
.item-page[data-color="orange"] .download-item .filetype,
.item-page[data-color="orange"] .download-item .download,
.item-page[data-color="orange"] .pagination li.active {
  background-color: var(--orange-color);
}
.item-page[data-color="green"] .download-item .filetype,
.item-page[data-color="green"] .download-item .download,
.item-page[data-color="green"] .pagination li.active {
  background-color: var(--green-color);
}
.item-page[data-color="blue"] .download-item .filetype,
.item-page[data-color="blue"] .download-item .download,
.item-page[data-color="blue"] .pagination li.active {
  background-color: var(--blue-color);
}

.pagination li.active a {
  color: white !important;
}

.pagination .page {
  background-color: transparent;
  border: none;
}

.pagination-wrapper {
  grid-column: 1 / 5;
}

.com-content-article ul li a {
  color: black !important;
  text-decoration: underline;
}

.news {
  row-gap: 30px;
}

.news .item {
  background: white;
  border-radius: 30px;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-item .date,
.news .date {
  font-size: 14px;
}

.blog-item .img,
.news .img {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news a {
  display: flex;
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
}

.news > *:nth-child(even) .item {
  background-color: var(--yellow-color);
}

.news .item img {
  border-radius: 20px;
}

.blog-item .title,
.news .item .title {
  font-weight: bold;
}

input.form-control,
textarea.form-control {
  background-color: #E9E8E3;
  border-radius: 20px;
}

.in-article .nav {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.in-article .nav li {
  display: flex;
  margin: 0;
}

.in-article .nav li::before {
  display: none;
}

.in-article .nav li a {
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.download-item .content,
.download-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}
 
.download-item {
  border: 2px solid black;
  border-radius: 30px;
  gap: 15px;
  align-items: center;
}

.download-item .content {
  gap: 15px;
}

.download-item .filetype {
  padding: 10px 20px;
  border: 1px solid white;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  color: white;
}

.download-item .download {
  padding: 10px 20px;
  border: 1px solid white;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  color: white;
}

.download-item .download a {
  color: inherit;
}

.download-item .title a {
  text-transform: uppercase;
  text-decoration: none !important;
}

.download-item .title:hover a {
  text-decoration: underline !important;
}

.gcFilterBlockSelect {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.gcFilterBlockSelect form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.gcgallerySelectAlbum {
  display: flex;
  padding: 10px 15px;
  border-radius: 30px;
  border-width: 2px;
  border-color: var(--blue-color);
}

.photogallery-item-list > .content > .row {
  margin-top: 30px;
  gap: 30px;
}

.photogallery-item-list .item .content {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--blue-color);
  border-radius: 30px;
  padding: 20px 30px;
}

.photogallery-item-list .item .content .images {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.photogallery .img-wrapper a,
.photogallery-item-list .item .content .images a {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--blue-color);
}

.photogallery-item-list .item .content .date {
  display: none;
}

.photogallery-item-list .item .content h3 a {
  color: black;
}

.gcFilterBlockSelect {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.gcFilterBlock span {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.gcFilterBlockSelect select {
  display: flex;
  padding: 10px 15px;
  border-radius: 30px;
  border-width: 2px;
  border-color: var(--blue-color);
}

@media (max-width: 1180px) {
  #quick .container {
    flex-direction: column;
  }
  #quick .main {
    width: 100%;
  }
  #quick .side {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .navbar .lc-btn {
    padding: 10px 25px !important;
  }
}
@media (max-width: 1023px) {
  .teacher {
    margin-bottom: 20px;
  }
  iframe {
    max-width: 100%;
  }
  .main-logo,
  .slider {
      display: none;
  }
  footer .item-list,
  #quick .container {
    flex-direction: column;
  }
  #quick .main {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
  #quick .side {
    margin: auto;
  }
  footer .item-list {
    gap: 20px;
  }
  footer .item-list .item {
    margin: auto;
  }
  footer .item-list .item .link:not(.show) {
    display: none;
  }
  .top {
    display: flex;
    flex-direction: column-reverse;
  }
  .navbar > .container {
    justify-content: flex-end;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: -15px;
    right: -15px;
    background: white;
    z-index: 9999;
    padding: 10px 15px;
  }
  .navbar .navbar-collapse ul {
    gap: 2px;
  }

  .top h1 {
    text-align: center;
    font-size: 2rem;
  }

  .main-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  table {
    width: 100% !important;
    max-width: 100vw !important;
  }
  .photogallery-item-list .item .content .images > *:not(:first-child) {
    display: none;
  }
}
@media (max-width: 760px) {
  #quick .main {
    grid-template-columns: repeat(1, 1fr);
  }
  #quick .side {
    flex-direction: column;
  }
  .unstyled-table,
  .unstyled-table td,
  .unstyled-table th,
  .unstyled-table tr,
  .unstyled-table tbody,
  .unstyled-table thead {
    display: block;
    width: 100%;
  }
  .staff-list .item span {
    width: auto;
    padding-right: 10px;
  }
  .lc-btn-small {
    white-space: nowrap;
  }
}