﻿.header {
  flex: 1;
  background: black;
  height: 100%;
  position: relative;
  z-index: 2;
}
.header .logo-container {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-right: 1px solid #3F3F3F;
}
.header .logo-container img {
  width: 80px;
}
.header .logo-container .logo-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 5px;
}
.header .menu-nav {
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3F3F3F;
  text-align: left;
  width: 100%;
  border-left: none;
}
.header .menu-nav ul {
  list-style: none;
  padding: 0;
}
.header .menu-nav ul .item {
  font-size: 16px;
  font-weight: 700;
}
.header .menu-nav ul .item + .item {
  margin-top: 15px;
}
.header .menu-nav ul .item.active {
  position: relative;
}
.header .menu-nav ul .item.active a {
  color: var(--bs-primary);
}
.header .menu-nav ul .item.active:before {
  content: "";
  border-top: 1px solid var(--bs-primary);
  left: -46px;
  top: 12px;
  position: absolute;
  width: 30px;
}
.header .menu-nav ul .item.active:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-primary);
  position: absolute;
  left: -22px;
  top: 10px;
}
.header .menu-nav .footer-menu-container {
  display: none;
}
.header a {
  text-decoration: none;
  color: white;
}
.header .contact-information {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #666666;
  width: 100%;
  border-right: 1px solid #3F3F3F;
  flex-direction: column;
}
.header .contact-information .content {
  text-align: left;
}
.header .contact-information .content > p {
  margin-bottom: 0.5rem;
}
.header .contact-information .text-primary {
  color: var(--bs-primary) !important;
  font-size: 24px;
}
.header .contact-information .text-primary:nth-child(2) {
  font-size: 20px;
}
.header .contact-information .parent-title {
  font-size: 24px;
  font-weight: bold;
  color: black;
}
.header .contact-information a {
  color: #666666;
}
.header.open {
  right: 0;
}

@media (max-width: 1600px) {
  .header .logo-container .logo-title {
    font-size: 18px;
  }
  .header .menu-nav ul .item {
    font-size: 14px;
  }
  .header .menu-nav ul .item.active {
    position: relative;
  }
  .header .menu-nav ul .item.active:before {
    left: -39px;
    top: 11px;
  }
  .header .menu-nav ul .item.active:after {
    left: -15px;
    top: 9px;
  }
  .header .contact-information {
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  .header .menu-nav ul .item.active:before {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header {
    position: fixed;
    z-index: 3;
    right: -100%;
    transition: 0.5s all;
    width: 300px;
    top: 0;
  }
  .header .menu-nav {
    border: none;
    height: 100%;
    display: block;
    padding: 60px 80px 0 0;
    text-align: right;
    overflow: auto;
  }
  .header .menu-nav ul .item.active:before {
    display: block;
    right: -46px;
    top: 12px;
    position: absolute;
    left: auto;
  }
  .header .menu-nav ul .item.active:after {
    right: -22px;
    top: 10px;
    left: auto;
  }
  .header .menu-nav .footer-menu-container {
    display: block;
  }
  .header .logo-container {
    display: none;
  }
  .header .contact-information {
    display: none;
  }
}
footer {
  flex: 1;
  background: black;
  color: white;
  height: 100%;
  position: relative;
  z-index: 2;
}
footer .bars {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
footer .bars .icon .bar {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: #666666;
  transition: all 0.2s ease-in-out;
  margin: 4px auto 0 0;
}
footer .bars .icon .bar.bar.i-1 {
  width: 33px;
}
footer .bars .icon .bar.bar.i-2 {
  width: 33px;
}
footer .bars .icon .bar.bar.i-3 {
  width: 33px;
}
footer .footer-menu {
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3F3F3F;
  text-align: right;
  width: 100%;
  border-right: none;
}
footer .footer-menu .items {
  list-style: none;
  padding: 0;
}
footer .footer-menu .items .item {
  font-size: 16px;
  font-weight: 700;
}
footer .footer-menu .items .item + .item {
  margin-top: 15px;
}
footer .footer-menu .items .item.active {
  position: relative;
}
footer .footer-menu .items .item.active a {
  color: var(--bs-primary) !important;
}
footer .footer-menu .items .item.active:before {
  content: "";
  border-top: 1px solid var(--bs-primary);
  right: -46px;
  top: 12px;
  position: absolute;
  width: 30px;
}
footer .footer-menu .items .item.active:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-primary);
  position: absolute;
  right: -22px;
  top: 10px;
}
footer a {
  text-decoration: none;
  color: white !important;
}
footer .follow-us {
  height: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #666666;
  width: 100%;
  gap: 5px;
}
footer .follow-us .content {
  text-align: center;
}
footer .follow-us .logo {
  width: 42px;
  height: 42px;
  background: #666666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}
footer.open {
  right: 0;
}

@media (max-width: 1600px) {
  footer .footer-menu .items .item {
    font-size: 14px;
  }
  footer .footer-menu .items .item.active {
    position: relative;
  }
  footer .footer-menu .items .item.active:before {
    right: -39px;
    top: 11px;
  }
  footer .footer-menu .items .item.active:after {
    right: -15px;
    top: 9px;
  }
  footer .follow-us {
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  footer .footer-menu .items .item.active:before {
    display: none;
  }
}
@media (max-width: 1200px) {
  footer {
    position: fixed;
    z-index: 3;
    right: -100%;
    transition: 0.5s all;
    width: 300px;
    top: 0;
  }
  footer .footer-menu .items .item.active:before {
    display: block;
  }
}
body {
  display: flex;
  text-align: center;
  height: 100vh;
  overflow: hidden;
  /*.toggle-button-2 { width: 40px; height: 40px; display: none; align-items: center; position: absolute; right: 40px; z-index: 2; cursor: pointer; justify-content: right;
      .icon {
          .bar { width: 25px; display: block; height: 2px; background: white; margin: 4px auto 0 0; }
      }
      &.open { position: fixed; right: 250px !important; top: 10px !important; z-index: 4;
          .icon {
              .bar { margin: 6px auto 0 0;
                  &.i-1 { transform: translate(0, 4px) rotate(-45deg); }
                  &.i-2 { opacity: 0; }
                  &.i-3 { transform: translate(0, -11px) rotate(45deg); }
              }
          }
      }
  }*/
}
body .bg-background-black {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
body .content-wrapper {
  flex: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .mobile-logo {
  display: none;
  background: url("/UserFiles/DefaultPage/Vector.png");
  background-position: center;
  padding: 25px;
}
body .toggle-button {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  cursor: pointer;
}
body .toggle-button .icon .bar {
  width: 25px;
  display: block;
  height: 2px;
  background: white;
  margin: 4px auto 0 0;
}
body .toggle-button.open {
  position: fixed;
  right: 250px !important;
  top: 10px !important;
  z-index: 4;
}
body .toggle-button.open .icon .bar {
  margin: 6px auto 0 0;
}
body .toggle-button.open .icon .bar.i-1 {
  transform: translate(0, 4px) rotate(-45deg);
}
body .toggle-button.open .icon .bar.i-2 {
  opacity: 0;
}
body .toggle-button.open .icon .bar.i-3 {
  transform: translate(0, -11px) rotate(45deg);
}
body.inner-page {
  padding: 20px;
  background: black;
}
body.inner-page .toggle-button .icon .bar {
  background: black;
}
body.inner-page .toggle-button-2 .icon .bar {
  background: black;
}
body.inner-page .header {
  background: #f3f3f3;
}
body.inner-page .header a {
  color: black;
}
body.inner-page footer {
  background: #f3f3f3;
}
body.inner-page footer .bars {
  border-left: 1px solid #3F3F3F;
}
body.inner-page footer .follow-us {
  border-left: 1px solid #3F3F3F;
}
body.inner-page footer .follow-us .logo {
  color: white;
}
body.inner-page footer a {
  color: black !important;
}
body.inner-page .content-wrapper {
  position: relative;
  background: #edecec;
}
body.inner-page .content-wrapper:before {
  content: "";
  position: absolute;
  background: url("/UserFiles/DefaultPage/Vector.png");
  right: 0;
  left: 0;
  height: 20px;
  top: -20px;
}
body.inner-page .content-wrapper:after {
  content: "";
  position: absolute;
  background: url("/UserFiles/DefaultPage/Vector.png");
  right: 0;
  left: 0;
  height: 20px;
  bottom: -20px;
}
body.inner-page .fixed-inner-page-banner {
  margin-top: 20px;
}
body.inner-page .fixed-inner-page-banner .main-title {
  text-align: left;
  margin-top: -27px;
  position: relative;
  animation-name: inner-title;
  animation-duration: 1.3s;
  left: 0;
  pointer-events: none;
}
body.inner-page .fixed-inner-page-banner .main-title .title-txt {
  color: #F3F3F3;
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
  margin: 0;
  filter: drop-shadow(3px 0px 4px rgba(0, 0, 0, 0.25));
}
body.inner-page .fixed-inner-page-banner .main-title .title-txt span {
  display: block;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  background: var(--bs-primary);
  padding: 8.8px 100px;
}
body.inner-page .fixed-inner-page-banner .search-wrap {
  text-align: right;
  margin-bottom: -27px;
  position: relative;
  animation-name: inner-search-wrap;
  animation-duration: 1.3s;
  font-size: 14px;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box {
  display: inline-block;
  position: relative;
  filter: drop-shadow(3px 0px 4px rgba(0, 0, 0, 0.25));
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape {
  display: block;
  padding: 7px 50px;
  position: relative;
  z-index: 4;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #F3F3F3;
  border-radius: 0;
  display: inline-block;
  width: auto;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape .form-control:focus {
  box-shadow: none;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape:before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  color: #D9D9D9;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape .search-item-container {
  text-align: center;
  position: absolute;
  background: var(--bs-primary);
  left: 0;
  right: 0;
  top: 51px;
  overflow: auto;
  scrollbar-width: thin;
  display: none;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape .search-item-container .item {
  max-height: 142px;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape .search-item-container .item a {
  padding: 5px 0;
  color: white;
  border-top: 1px solid white;
  text-decoration: none;
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box .shape .search-item-container .item a:hover {
  background: rgba(0, 0, 0, 0.3);
}
body.inner-page .fixed-inner-page-banner .search-wrap .search-box:after {
  content: "";
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  background: var(--bs-primary);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
body.inner-page .fixed-inner-page-banner .page-banner-container .img {
  width: 100%;
}
body.inner-page .page-content {
  text-align: justify;
  padding: 20px 80px 80px;
  font-size: 14px;
  overflow-y: auto;
  margin-top: 20px;
}
body.inner-page img {
  max-width: 100%;
}
@keyframes inner-title {
  0% {
    opacity: 0;
    left: -100%;
  }
  50% {
    opacity: 0;
    left: -50%;
  }
  75% {
    opacity: 0;
    left: -25%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes inner-search-wrap {
  0% {
    opacity: 0;
    right: -100%;
  }
  50% {
    opacity: 0;
    right: -50%;
  }
  75% {
    opacity: 0;
    right: -25%;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}

@media (max-width: 1600px) {
  body.inner-page .page-content {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body {
    /*        .toggle-button-2 { display: flex; }
    */
  }
  body .mobile-logo {
    display: flex;
    align-items: center;
  }
  body .mobile-logo .toggle-button {
    display: flex;
    flex: 0 0 50%;
    justify-content: right;
  }
  body .mobile-logo .logo-container {
    flex: 0 0 50%;
    text-align: left;
  }
  body .mobile-logo .logo-container .logo {
    text-align: center;
    display: inline-block;
    text-align: center;
  }
  body .mobile-logo .logo-container .logo .content-container {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 5px;
    color: white;
  }
  body.inner-page {
    padding: 20px 0;
  }
  body.inner-page .fixed-inner-page-banner {
    margin-top: 0;
  }
  body.inner-page .fixed-inner-page-banner .search-wrap {
    margin-bottom: 0;
  }
  body.inner-page .fixed-inner-page-banner .main-title {
    margin-top: 0;
  }
  body.inner-page .page-content {
    padding: 20px 40px 80px;
  }
}
@media (max-width: 992px) {
  body {
    display: block;
    overflow: visible;
    height: auto;
  }
  body.inner-page .fixed-inner-page-banner .page-banner-container .img {
    height: 200px;
  }
}
@media (max-width: 576px) {
  /*.toggle-button { display: flex; left: 24px; top: 10px; }
      .toggle-button-2 { display: flex; right: 24px; top: 10px; }*/
  body .mobile-logo {
    display: flex;
    align-items: center;
  }
  body .mobile-logo .logo-container {
    flex: 0 0 50%;
    text-align: left;
  }
  body .mobile-logo .logo-container .logo {
    text-align: center;
    display: inline-block;
    text-align: center;
  }
  body .mobile-logo .logo-container .logo img {
    width: 60px;
  }
  body .mobile-logo .logo-container .logo .content-container {
    font-size: 16px;
  }
  body.inner-page .fixed-inner-page-banner .search-wrap {
    margin-bottom: 0;
    display: none;
  }
  body.inner-page .fixed-inner-page-banner .search-wrap .search-box {
    display: block;
  }
  body.inner-page .fixed-inner-page-banner .search-wrap .search-box:after {
    display: block;
    clip-path: none;
  }
  body.inner-page .fixed-inner-page-banner .search-wrap .search-box input {
    width: 100% !important;
  }
  body.inner-page .fixed-inner-page-banner .main-title {
    margin-top: 0;
  }
  body.inner-page .fixed-inner-page-banner .main-title .title-txt {
    font-size: 18px;
    display: block;
    text-align: center;
  }
  body.inner-page .fixed-inner-page-banner .main-title .title-txt span {
    clip-path: none;
    padding: 15px 0;
  }
  body.inner-page .page-content {
    padding: 4px 24px 24px;
  }
}
