nav {
  clear:both;
  display:block;
  line-height:80px;
  height:80px;
  position:relative;
}

.menu-container {
  padding-left:30px;
  padding-right:30px;
}

.grt-menu-row {
  display:flex;
  flex-direction:row;
  justify-content:space-between;
}

a.grt-logo {
  display:inline-block;
}

a.grt-logo img {
  max-height:80px;
  width:auto;
}

.grt-mobile-button {
  display:none;
}

.grt-mobile-button:focus {
  border:0;
  outline:0;
}

.body-overflow {
  overflow:hidden;
}

ul.grt-menu {
  display:flex;
  justify-content: space-between;
  margin:0;
  padding:0;
  list-style-type: none;
}

ul.grt-menu:after {
  content:"";
  clear:both;
  display:block;
}

ul.grt-menu li {
  color:#fff;
  display: inline-block;
  margin:0;
  padding:0;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

ul.grt-menu li a {
  padding:28px 12px;
  font-size:21px;
  display:inline-block;
  color:#fff;
  line-height:1.1em;
  box-shadow:inset 0 0 0 0 #fff;
  -webkit-transition:all ease 0.8s;
  -moz-transition:all ease 0.8s;
  transition:all ease 0.8s;
  position:relative;
  text-decoration:none;
}

ul.grt-menu li.active a:after  {
  position:absolute;
  bottom:1px;
  content:"";
  left:12px;
  right:12px;
  border-bottom:2px solid #292f79;
}

@keyframes fadeIn {
  from { opacity:0; }
    to { opacity:1; }
}

ul.grt-menu li.grt-dropdown:hover {
  cursor:pointer;
}

ul.grt-menu li.grt-dropdown:hover a {
  box-shadow:none;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
  display:none;
  position:absolute;
  background:#292f79;
  margin:17px 0 0 0;
  padding:0;
  min-width:150px;
  animation:fadeIn 0.8s;
  z-index:999;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
  display:block;
  font-size:18px;
  color: #FFF;
  -webkit-transition:all ease 0.8s;
  -moz-transition:all ease 0.8s;
  transition:all ease 0.8s;
  padding:9px 12px;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a:hover {
  background:#6a6cb9;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li:last-child a {
  padding-bottom:15px;
}

ul.grt-menu li.grt-dropdown.active-dropdown {
  background:#292f79;
}

ul.grt-menu li.grt-dropdown.active-dropdown ul.grt-dropdown-list {
  display:block !important;
}

ul.grt-menu li.grt-dropdown.active-dropdown a {
  color:#FFF;
}


/* Desktop only style */
@media (min-width:992px) {

  ul.grt-menu li.grt-dropdown:hover > a + ul.grt-dropdown-list {
    display:block;
    top:calc(100% - 17px);
  }

  ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li {
    display:block;
  }

  ul.grt-menu li.grt-dropdown:hover > a {
    color:#FFF;
    box-shadow: inset 195px 0 0 0 #292f79;
  }

  ul.grt-menu li a:hover {
    color:#FFF;
    box-shadow:inset 195px 0 0 0 #292f79;
  }
}

/* Mobile only style */
@media (max-width:991px) {

  .menu-container {
    padding-left:15px;
    padding-right:15px;
  }

  .grt-mobile-button {
    display:inline-block;
    position:absolute;
    right:15px;
    top:-120px;
    background: none;
    color:#3d3d3d;
    margin:0;
    padding:0;
    cursor:pointer;
    border:0;
    width:35px;
  }

  .grt-mobile-button .line1, .grt-mobile-button .line2, .grt-mobile-button .line3 {
    width:35px;
    height:4px;
    background-color:#333;
    margin:6px 0;
    transition:0.4s;
    display:block;
  }

  ul.grt-menu {
    display:none;
    margin:0;
    height:0;
  }  

  ul.open-grt-menu {
    position:fixed;
    background:#FFF;
    width:100%;
    left:0;
    right:0;
    top:0;
    height:100%;
    float:none;
    display:flex;
    justify-content:center;
    flex-direction:column;
    text-align:center;
  }

  .grt-mobile-button-open {
    position:fixed;
    z-index:99999;
    right:58px;
    top:38px;
  }

  .grt-mobile-button-open .line1 {
    -webkit-transform:rotate(-45deg) translate(-8px, 5px);
    transform:rotate(-45deg) translate(-8px, 5px);
  }

  .grt-mobile-button-open .line2 {
    opacity:0;
  }
  
  .grt-mobile-button-open .line3 {
    -webkit-transform:rotate(45deg) translate(-8px, -7px);
    transform:rotate(45deg) translate(-8px, -7px);
  }

  ul.grt-menu li {
    color:#292f78;
    display:block;
    line-height:2.5em;
  }

  ul.grt-menu li a {
    color:#292f78;
    padding:6px 10px;
    font-size:30px;
  }

  ul.grt-menu li a:hover {
    color:#000;
  }

  ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
    width:100%;
    position:relative;
    display:none;
  }

  ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
    display:block;
    font-size:17px;
  }
}

/* Global */
body {
  background: #fff;
  color: #464752;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  overflow-x: hidden;
}
::-moz-selection {
  background: #1e2e6b;
  color: #fff;
}
::selection {
  background: #1e2e6b;
  color: #fff;
}
a {
  color: #1e2e6b;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #252432;
}
h1 {
  color: #292f78;
  margin: 30px 0;
}
h2 {
  color: #292f78;
}
/* Header */
header {
  background: #dadaea;
  background: linear-gradient(180deg, #dadaea 0%, #f8f7f7 100%);
  height: 172px;
  padding-top: 45px;
}
header .site-title {
  display: block;
  color: #292f78;
  font-family: "Abril Fatface", cursive;
  font-size: 60px;
  margin-top: -20px;
}
header .site-subtitle {
  display: block;
  font-size: 1.17em;
  font-weight: 300;
  margin-top: -15px;
}
header .search {
  display: block;
  transition: 0.3s;
}
header .search:hover {
  -webkit-box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.3);
}
header .search-mini {
  display: none;
}
/* Navigation */
.navigation {
  background: #1e2e6b;
}
/* Body */
main {
  padding: 30px 0;
}
main h1 {
  font-family: "Abril Fatface", cursive;
}
main .button {
  background: #5f64b3;
  border: 0;
  border-radius: 4px;
  color: #fff;
  padding: 20px 80px;
  transition: 0.3s;
}
main .button:hover {
  background: #4f53a4;
  color: #fff;
}
main .img-border {
  border: 7px solid #bfc0d2;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
main .img-cube {
  aspect-ratio: 1;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
main .news-list > div {
  margin-bottom: 25px;
}
main .news-list .news {
  background: #f8f8f8;
  height: 100%;
  padding: 20px;
}
main .news-list .news h2 {
  font-family: "Abril Fatface", cursive;
  font-size: 24px;
  margin-bottom: 15px;
}
main .news-list .news h2 a {
  color: #292f78;
}
main .news-list .news .date {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
main .news-list .news .image {
  aspect-ratio: 1.333;
  overflow: hidden;
}
main .news-list .news .more {
  border-bottom: 1px solid #f8f8f8;
  color: #1e2e6b;
  display: inline-block;
  margin-top: 4px;
  padding-bottom: 2px;
  transition: 0.3s;
}
main .news-list .news .more:hover {
  border-color: #1e2e6b;
}
main .magazine {
  background: #f8f8f8;
  margin: 20px 0;
  padding: 20px 20px 5px 20px;
}
main .text-body {
  text-align: justify !important;
}
/* Pagination */
.pagination {
  display: flex;
  list-style-type: none;
  justify-content: center;
}
.pagination li {
  margin: 0 8px;
}
.pagination li a {
  background: #1e2e6b;
  color: #fff;
  padding: 7px 10px;
  transition: 0.3s;
}
.pagination li a:hover {
  background: #474a6c;
}
/* Form */
.form {
  margin: 30px auto 0 auto;
  max-width: 600px;
}
/* Footer */
footer {
  background: #252432;
  margin-top: 20px;
  padding-top: 30px;
}
footer a, footer a:hover {
  color: #fff;
  display: block;
  transition: 0.3s;
}
footer .subline {
  background: #474a6c;
  margin-top: 30px;
  padding: 20px;
}
footer .subline a {
  border-bottom: 1px solid #474a6c;
  display: inline;
  margin: 0 10px;
  padding-bottom: 2px;
}
footer .subline a:hover {
  border-color: #fff;
}
/* Responsive */
@media (max-width: 991px) {
  header {
    height: 155px;
  }
  header .site-title {
    font-size: 45px;
  }
  header .site-subtitle {
    font-size: 17px;
    line-height: 21px;
    margin-top: 0;
  }
  header .search {
    display: none;
  }
  header .search-mini {
    display: block;
  }
  .navigation {
    height: 0;
  }
  h1 {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .mobile-center {
    margin: auto;
  }
  header .site-title {
    font-size: 35px;
  }
  main .text-body {
    text-align: left !important;
  }
  footer .news > div {
    display: block !important;
  }
  footer .box-nka {
    margin-top: 90px;
  }
}
@media (max-width: 575px) {
  footer .news {
    margin-top: 30px;
  }
}
@media (max-width: 419px) {
  header .site-title {
    font-size: 29px;
  }
  header .site-subtitle {
    font-size: 16px;
  }
}
/* Tables */
.oc-cell-thick-border {
  border: 1px solid #aaa;
}
.oc-cell-highlighted {
  border: 1px solid #333;
}
/* Accordion */
.custom-accordion {
  background: #eeeef6;
  color: #fff;
  padding-bottom: 2rem;
  margin-top: 40px;
}
.custom-accordion .item {
  padding: 1rem 2rem;
  margin: 0 auto;
  max-width: 30rem;
}
.custom-accordion .item:last-of-type {
  background: #eeeef6;
}
.custom-accordion .item:last-of-type .icon {
  color: #fff;
}
.custom-accordion .item:nth-of-type(6) {
  padding-bottom: 2rem;
}
.custom-accordion .item .icon {
  color: #eeeef6;
  display: none;
  font-size: 2rem;
}
.custom-accordion .item .title {
  font-size: 1.5rem;
}
.custom-accordion .item .title a {
  color: #fff;
}
@media screen and (min-width: 800px) and (min-height: 270px) {
  .custom-accordion {
    display: table;
    width: 100%;
    min-height: 650px;
    margin-left: 110px;
    overflow: hidden;
    padding-bottom: 0;
  }
  .custom-accordion .item {
    display: table-cell;
    position: relative;
    height: 100%;
    padding: 2rem 1rem;
    transform-origin: 0 50%;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  .custom-accordion .item:nth-child(1) {
    background: #7880ca;
  }
  .custom-accordion .item:nth-child(2) {
    background: #646dc4;
  }
  .custom-accordion .item:nth-child(3) {
    background: #4e56c2;
  }
  .custom-accordion .item:nth-child(4) {
    background: #363d9d;
  }
  .custom-accordion .item:nth-child(5) {
    background: #1f2463;
  }
  .custom-accordion .item:hover:not(:last-of-type) {
    transform: scaleX(2) translateX(-1px);
    box-shadow: 0 0 2rem #301916;
    background: #eeeef6;
    border-color: transparent;
    z-index: 9;
  }
  .custom-accordion .item:hover + .item {
    opacity: 0.1;
  }
  .custom-accordion .item:hover + .item:last-of-type {
    opacity: 0.1;
    background: #474a6c;
  }
  .custom-accordion .item:not(:last-of-type) {
    border-right: 1px solid #fff;
  }
  .custom-accordion .item:last-of-type {
    background: #fff;
    width: 16.3%;
    border-radius: 0;
  }
  .custom-accordion .item:hover:not(:last-of-type) > .icon {
    transform: scaleX(0.5);
  }
  .custom-accordion .item:hover:not(:last-of-type) > .title {
    transform: scaleX(0.5) translateX(-50%);
    background: #252432;
    font-size: 25px;
    text-align: center;
    padding: 0;
  }
  .custom-accordion .item:hover:not(:last-of-type) > .title .text {
    transform: translateX(-50%);
    left: 50%;
  }
  .custom-accordion .item:hover:not(:last-of-type) > .content {
    opacity: 1;
  }
  .custom-accordion .item .icon {
    font-weight: 700;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    color: #fff;
    text-align: center;
  }
  .custom-accordion .item .title {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2.5rem;
    width: 200%;
    transform-origin: 0 50%;
    transform: rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    font-size: 30px;
  }
  .custom-accordion .item .title .text {
    position: absolute;
    left: 2rem;
    bottom: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
  }
  .custom-accordion .item .content {
    position: absolute;
    top: 47%;
    left: 50%;
    width: 200%;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scaleX(0.5);
    transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    opacity: 0;
    padding: 1rem;
  }
  .custom-accordion .item .content .news {
    color: #464752;
    position: relative;
  }
  .custom-accordion .item .content .news h2 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
  }
  .custom-accordion .item .content .news img {
    margin: 0 10px 10px 0;
    max-width: 80px;
  }
  .custom-accordion .item .content .news .image {
    float: left;
    max-height: 90px;
    overflow: hidden;
  }
}
@media screen and (max-width: 991px) {
  .custom-accordion {
    margin-left: 0;
  }
  .custom-accordion .title {
    color: #c3c5ea;
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 10px;
  }
  .custom-accordion .title .text a {
    background: #1e2e6b;
    color: #fff;
    display: block;
    font-size: 1.3rem;
    padding: 10px;
    text-align: center;
    width: 100%;
  }
  .custom-accordion .content .news {
    color: #1e2e6b;
  }
  .custom-accordion .content .news h2 {
    font-size: 20px;
    margin-top: 20px;
  }
  .custom-accordion .content .news img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 359px) {
  .site-title {
    line-height: 28px;
    margin-bottom: 5px;
    position: relative;
    top: -5px;
  }
  .site-subtitle {
    font-size: 15px !important;
  }
}
