@charset "utf-8";



/*******************************/
/********** Container **********/
/*******************************/

#container {
  position: relative;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow: clip;
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#header header {
  margin: 0 auto;
  padding: 20px 40px;
  width: 100%;
  color: #205ED4;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 40px;
}
#header h1 {
  margin: auto auto auto 0;
  padding: 0 40px 0 0;
  color: #205ED4;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 160%;
  white-space: nowrap;
}
#header h1 a {
  display: inline-block;
  text-decoration: none;
  color: #205ED4;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 160%;
}
#header #modal {
  margin: auto 0 10px auto;
}
#header .header-icons {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
#header .header-icons ul.lang {
  margin: 0;
  padding: 5px 0;
  list-style-type: none;
  display: flex;
  background: linear-gradient(90deg, #3B80F9 0, #B7E49F 100%);
}
#header .header-icons ul.lang li {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 100%;
}
#header .header-icons ul.lang li a {
  margin: 0;
  padding: 5px 30px;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 100%;
  text-decoration: none;
  display: inline-block;
}
#header .header-icons ul.lang li+li {
  border-left: 1px solid #DDDDDD;
}
#header .header-icons ul.lang li a:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media screen and ( max-width: 1024px ) {
  #header header {
    padding: 20px;
  }
}
@media screen and ( max-width: 768px ) {
  #header h1,
  #header h1 a {
   font-size: 1.7rem;
  }
}
@media screen and ( max-width: 480px ) {
  #header h1,
  #header h1 a {
   font-size: 1.5rem;
  }
}
@media screen and ( max-width: 320px ) {
  #header h1,
  #header h1 a {
   font-size: 1.3rem;
  }
}



/********************************/
/********** Global Nav **********/
/********************************/

@media screen and ( min-width: 1025px ) {
  #modal #trigger {
    display: none;
  }
  #global-nav {
    margin: auto;
    padding: 0;
  }
  #global-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 40px;
  }
  #global-nav ul li {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 100%;
    color: #000000;
  }
  #global-nav ul li a {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 100%;
    text-decoration: none;
    color: #205ED4;
    position: relative;
  }
  #global-nav ul li.current a {
    font-style: italic;
    font-weight: 700;
    color: #3B80F9;
  }
  #global-nav ul li a:hover {
    font-style: italic;
    color: #3B80F9;
  }
  #global-nav ul li > ul {
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 7777;
    color: #000000;
    display: flex;
    flex-direction: column;
    width: 220px;
  }
  #global-nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 10px 0 0 0;
    gap: 5px 0;
    transition: all 0.3s ease;
  }
  #global-nav ul li > ul li {
    margin: 0;
    padding: 5px 0;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: left;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #DCEDEA;
  }
  #global-nav ul li > ul li a {
    display: block;
    margin: 0;
    padding: 10px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    width: 100%;
    height: 100%;
    color: #205ED4;
    text-decoration: none;
  }
}
@media print, screen and ( max-width: 1024px ) {
  #modal {
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 9999;
    top: 15px;
    right: 20px;
  }
  #modal input {
    display: none;
  }
  #modal label:hover {
    cursor: pointer;
  }
  #modal label:after {
    font-family: "Font Awesome 7 Free";
    content: "\f0c9";
    font-size: 2.0rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    color: #3B80F9;
    transition: transform 0.3s ease;
  }
  #modal input:checked ~ #modal-window {
    visibility: visible;
    animation-name: modal-window;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
  }
  @keyframes modal-window {
    from {
      opacity: 0;
      transform: translateX(-120px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  #modal input:checked ~ label:after {
    font-family: "Font Awesome 7 Free";
    content: "\f00d";
    color: #3B80F9;
    transform: rotate(180deg);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  #modal-window {
    visibility: hidden;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: #DCEDEA;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #modal-window::-webkit-scrollbar {
    display: none;
  }
  #global-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1px 0;
    background-color: #DCEDEA;
    border-top: 1px solid #DCEDEA;
    border-bottom: 1px solid #DCEDEA;
  }
  #global-nav ul li {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 100%;
    color: #000000;
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    cursor: pointer;
  }
  #global-nav ul li a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 20px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 100%;
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: #FFFFFF;
    position: relative;
  }
  #global-nav ul li > ul {
    display: none;
    border: none;
    margin: 0 0 20px 0;
  }
  #global-nav ul li.current > ul {
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
  }
  #global-nav ul li.accordion > a {
    width: calc(100vw - 60px);
    display: inline-block;
  }
  #global-nav ul li.accordion > a:after,
  #global-nav ul li.accordion.current.active > a:after {
    pointer-events: none;
    content: "+";
    font-size: 2.6rem;
    font-weight: 300;
    color: #000000;
    position: absolute;
    z-index: 5555;
    top: 0;
    left: calc(100vw - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  #global-nav ul li.accordion.active > a:after,
  #global-nav ul li.accordion.current > a:after {
    pointer-events: none;
    content: "-";
    font-size: 2.6rem;
    font-weight: 300;
    color: #000000;
    transform: rotate(360deg);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  #global-nav ul li > ul li {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1rem;
    text-align: left;
    color: #000000;
    background-color: #FFFFFF;
    position: relative;
  }
  #global-nav ul li > ul li a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 40px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1rem;
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: #FFFFFF;
    position: relative;
  }
  #global-nav ul li > ul li:not(.current) a {
    color: #000000;
    background-color: #FFFFFF;
  }
  #global-nav ul li.current a {
    color: #3B80F9;
  }
  #modal-window .header-icons {
    position: relative;
  }
  #modal-window .header-icons ul.lang {
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media screen and ( max-width: 768px ) {
  #modal {
    right: 10px;
  }
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: auto auto 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  color: #FFFFFF;
  background: linear-gradient(90deg, #3B80F9 0, #B7E49F 100%);
}
#footer footer {
  margin: auto;
  padding: 50px 20px 10px 20px;
  max-width: 1064px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
#footer .content {
  margin: auto;
  padding: 0;
  width: 100%;
  display: flex;
  gap: 0 40px;
}
#footer h3 {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 160%;
  white-space: nowrap;
}
#footer #pagetop a:before {
  content: '';
  position: fixed;
  bottom: 10px;
  right: 40px;
  z-index: 1111;
  display: block;
  width: 26px;
  height: 26px;
  border-top: 1px solid #3B80F9;
  border-left: 1px solid #3B80F9;
  transform: rotate(45deg);
}
#footer #pagetop a:hover:before {
  opacity: 0.5;
  transition: all 0.3s ease;
}
#footer #copyright {
  margin: auto;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
}
@media screen and ( max-width: 768px ) {
  #footer footer {
    padding: 40px 20px 10px 20px;
  }
  #footer h3 {
    font-size: 1.8rem;
  }
  #footer #pagetop a:before {
    right: 20px;
  }
}
@media screen and ( max-width: 480px ) {
  #footer h3 {
    font-size: 1.6rem;
  }
}
@media screen and ( max-width: 320px ) {
  #footer footer {
    padding: 30px 20px 10px 20px;
  }
  #footer h3 {
    font-size: 1.4rem;
  }
}



/**************************/
/********** Main **********/
/**************************/

main {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  min-height: 100%;
  min-height: 100vh;
}