@font-face {
  font-family: "Montserratarm-Regular";
  src: url(/fonts/Montserratarm-Regular.otf?5691450002b4287d010a4489ea6ef59b);
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url(/fonts/Montserrat-Regular.ttf?3cd786652b8a2e9d41f210cb1a527ff6);
}
* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-size: 14px;
  position: relative;
  background: #F2F6FD;
  color: #424C6E;
  font-family: Arial, Verdana, SansSerif;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #424C6E;
  margin: 0;
  padding: 0;
}

form {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

.section-title.center {
  text-align: center;
}
.section-title.white {
  color: #FFFFFF;
}
.section-title h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.coming-soon {
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 5px rgba(66, 76, 110, 0.1098039216);
  background: #fff;
  margin: auto;
  max-width: 700px;
  text-align: center;
  line-height: 1.5rem;
  margin-top: 4rem;
}

.block {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 2rem;
}
@media (max-width: 1024px) {
  .block {
    padding: 1.5rem;
  }
}

.boxed {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
}
@media (max-width: 1024px) {
  #sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    bottom: auto;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
#sidebar .sidebar-desktop {
  width: 100%;
  height: 100%;
  background-color: #424C6E;
}
@media (max-width: 1024px) {
  #sidebar .sidebar-desktop {
    display: none;
  }
}
#sidebar .sidebar-desktop .logo {
  background-color: #d8e0e9;
  padding: 1rem;
}
#sidebar .sidebar-desktop .logo svg {
  max-width: 200px;
  display: block;
  margin: auto;
}
@media (max-width: 1200px) {
  #sidebar .sidebar-desktop .logo {
    height: 130px;
  }
}
#sidebar .sidebar-desktop .navigation {
  padding: 3rem 2rem 0 2rem;
  text-align: right;
}
#sidebar .sidebar-desktop .navigation li {
  margin-bottom: 1rem;
}
#sidebar .sidebar-desktop .navigation li a {
  font-size: 1rem;
  color: #ffffff;
}
#sidebar .sidebar-desktop .navigation li a.active {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
}
#sidebar .sidebar-desktop .lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2rem;
}
#sidebar .sidebar-desktop .lang span {
  display: block;
  color: #FFFFFF;
}
#sidebar .sidebar-desktop .lang span:not(:last-child) {
  margin-right: 0.5rem;
}
#sidebar .sidebar-desktop .lang span a {
  color: #FFFFFF;
}
#sidebar .sidebar-desktop .possible {
  position: absolute;
  bottom: 0;
  font-size: 12px;
  opacity: 0.5;
  color: #FFFFFF;
  padding: 2rem 2rem 2rem 1.5rem;
}
#sidebar .sidebar-mobile {
  display: none;
}
@media (max-width: 1024px) {
  #sidebar .sidebar-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d8e0e9;
    width: 100%;
    padding: 0.5rem 2rem;
  }
}
#sidebar .sidebar-mobile .toggle-mobile-sidebar-open {
  width: 25px;
  height: 20px;
  margin-left: 20px;
  position: relative;
}
#sidebar .sidebar-mobile .toggle-mobile-sidebar-open span {
  display: block;
  height: 2px;
  background: #424C6E;
}
#sidebar .sidebar-mobile .toggle-mobile-sidebar-open span:not(:last-child) {
  margin-bottom: 8px;
}
#sidebar .sidebar-mobile .logo img {
  width: auto;
  height: 50px;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}
#sidebar .sidebar-mobile .mobile-menu {
  position: fixed;
  width: 100%;
  top: 0;
  right: -100%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  transition: all 0.3s;
  padding: 30px;
  transform: scale(1.5);
  visibility: hidden;
}
#sidebar .sidebar-mobile .mobile-menu.open {
  visibility: visible;
  right: 0;
  transform: scale(1);
  opacity: 1;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  padding: 1.5rem 2rem;
  background-color: #424C6E;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .toggle-mobile-sidebar-close {
  width: 25px;
  height: 20px;
  margin-left: 20px;
  position: relative;
  float: right;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .toggle-mobile-sidebar-close span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #FFFFFF;
  height: 2px;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .toggle-mobile-sidebar-close span:last-child {
  display: none;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .toggle-mobile-sidebar-close span:nth-child(1) {
  transform: rotate(45deg);
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .toggle-mobile-sidebar-close span:nth-child(2) {
  transform: rotate(-45deg);
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation ul {
  margin-top: 2rem;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation ul li {
  margin-bottom: 1rem;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation ul li a {
  font-size: 1rem;
  color: #FFFFFF;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .lang {
  display: flex;
  align-items: center;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .lang span {
  display: block;
  color: #FFFFFF;
  margin-right: 0.5rem;
}
#sidebar .sidebar-mobile .mobile-menu .mobile-navigation .lang span a {
  color: #FFFFFF;
}

.container {
  padding-left: 300px;
}
@media (max-width: 1024px) {
  .container {
    padding-left: 0;
  }
}
.container .content {
  padding: 2rem 2rem 0 2rem;
}
@media (max-width: 1024px) {
  .container .content {
    padding: 1rem;
  }
}
.container .content > section {
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .container .content > section {
    margin-bottom: 1.5rem;
  }
}
.container .content > section.fluid {
  margin-left: -2rem;
  margin-right: -2rem;
}
@media (max-width: 1024px) {
  .container .content > section.fluid {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

#footer .possible {
  background-color: #fffcf4;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.715rem;
  line-height: 1rem;
  display: none;
  margin-right: 1rem;
  margin-left: 1rem;
}
@media (max-width: 1024px) {
  #footer .possible {
    display: block;
  }
}
#footer .copyright-owner {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  background-color: #fff;
}
@media (max-width: 1024px) {
  #footer .copyright-owner {
    padding: 2rem 1rem;
  }
}
@media (max-width: 370px) {
  #footer .copyright-owner {
    font-size: 14px;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: -2rem;
}
@media (max-width: 1200px) {
  .banner {
    height: 350px;
  }
}
@media (max-width: 1024px) {
  .banner {
    margin-top: -1rem;
  }
}
@media (max-width: 900px) {
  .banner {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .banner {
    height: 250px;
  }
}
.banner .image {
  height: 100%;
}
.banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
.banner .title {
  position: absolute;
  min-width: 30%;
  bottom: 2rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0px 30px 30px 0px;
  color: #424C6E;
}
@media (max-width: 600px) {
  .banner .title {
    margin-right: 1.25rem;
  }
}
.banner .title h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .banner .title h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.banner .title span {
  font-size: 1rem;
}
@media (max-width: 900px) {
  .banner .title span {
    font-size: 0.75rem;
  }
}

.reports {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 5px rgba(66, 76, 110, 0.1098039216);
  border-radius: 10px;
}
.reports .report:nth-child(even) {
  background: rgba(242, 246, 253, 0.6509803922);
}
.reports .report .heading {
  display: flex;
  padding: 2rem 2rem;
}
@media (max-width: 1024px) {
  .reports .report .heading {
    padding: 1.5rem;
  }
}
@media (max-width: 1410px) {
  .reports .report .heading {
    align-items: center;
  }
}
@media (max-width: 640px) {
  .reports .report .heading {
    justify-content: center;
    flex-flow: row wrap;
  }
}
.reports .report .heading .year {
  flex: 0 0 150px;
  padding: 0.75rem 2rem;
  text-align: center;
  background-color: #E9F4FF;
  color: #424C6E;
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 0 5px rgba(66, 76, 110, 0.1215686275);
  border: 1px solid rgba(66, 76, 110, 0.1215686275);
}
@media (max-width: 1450px) {
  .reports .report .heading .year {
    margin-right: 1rem;
  }
}
@media (max-width: 1410px) {
  .reports .report .heading .year {
    height: 45px;
  }
}
@media (max-width: 650px) {
  .reports .report .heading .year {
    margin-bottom: 1rem;
  }
}
.reports .report .heading .year img {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  vertical-align: top;
}
.reports .report .heading .quarters {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1410px) {
  .reports .report .heading .quarters {
    flex-flow: row wrap;
  }
}
@media (max-width: 650px) {
  .reports .report .heading .quarters {
    justify-content: center;
  }
}
.reports .report .heading .quarters .quarter {
  flex: 0 0 25%;
  text-align: center;
  justify-content: space-between;
  padding: 0 2rem;
}
@media (max-width: 1650px) {
  .reports .report .heading .quarters .quarter {
    padding: 0 1rem;
  }
}
@media (max-width: 1410px) {
  .reports .report .heading .quarters .quarter {
    flex: 0 0 50%;
  }
}
@media (max-width: 640px) {
  .reports .report .heading .quarters .quarter {
    padding: 0 0;
  }
}
@media (max-width: 400px) {
  .reports .report .heading .quarters .quarter {
    flex: 0 0 100%;
  }
}
.reports .report .heading .quarters .quarter span {
  display: block;
  cursor: pointer;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  transition: all 0.2s;
}
@media (max-width: 1650px) {
  .reports .report .heading .quarters .quarter span {
    padding: 0.75rem 1rem;
  }
}
.reports .report .heading .quarters .quarter.active span {
  background-color: #424C6E;
  color: #fff;
}
.reports .report .reports-list .quarter-files {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2rem;
}
@media (max-width: 1024px) {
  .reports .report .reports-list .quarter-files {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.reports .report .reports-list .quarter-files:not(.active) {
  display: none;
}
.reports .report .reports-list .quarter-files.active .report-item {
  padding-left: 0;
}
.reports .report .reports-list .quarter-files .report-item {
  padding-left: 3rem;
}
.reports .report .reports-list .quarter-files .report-item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.reports .report .reports-list .quarter-files .report-item a {
  display: flex;
  align-items: center;
}
.reports .report .reports-list .quarter-files .report-item a img {
  width: 25px;
  margin-right: 1rem;
  vertical-align: top;
}

.managers-staff .structure {
  margin-bottom: 2rem;
  text-align: center;
}
.managers-staff .structure img {
  max-width: 100%;
}
.managers-staff .notes {
  margin-top: 2rem;
}
.managers-staff .notes a {
  text-decoration: underline;
  font-weight: bold;
}
.managers-staff .significant-members {
  margin-bottom: 2rem;
}
.managers-staff .significant-members h3 {
  margin-bottom: 1rem;
}
.managers-staff .managers-staff-row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.managers-staff .managers-staff-row:not(:last-child) {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e6e7;
}
@media (max-width: 1024px) {
  .managers-staff .managers-staff-row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}
.managers-staff .managers-staff-row .managers-staff-col {
  max-width: 25%;
  flex-basis: 25%;
  padding: 0.75rem;
}
@media (max-width: 1310px) {
  .managers-staff .managers-staff-row .managers-staff-col {
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
}
@media (max-width: 1100px) {
  .managers-staff .managers-staff-row .managers-staff-col {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 1024px) {
  .managers-staff .managers-staff-row .managers-staff-col {
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
}
@media (max-width: 700px) {
  .managers-staff .managers-staff-row .managers-staff-col {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 470px) {
  .managers-staff .managers-staff-row .managers-staff-col {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.managers-staff .managers-staff-row .managers-staff-col .item {
  background-color: #91b8c4;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  height: 100%;
}
.managers-staff .managers-staff-row .managers-staff-col .item.has-popup {
  cursor: pointer;
}
.managers-staff .managers-staff-row .managers-staff-col .item .item-image {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.managers-staff .managers-staff-row .managers-staff-col .item .item-image img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  justify-content: center;
}
.managers-staff .managers-staff-row .managers-staff-col .item .item-title {
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 470px) {
  .managers-staff .managers-staff-row .managers-staff-col .item .item-title {
    padding-left: 1rem;
    padding-right: 1rem;
    height: auto;
  }
}
.managers-staff .managers-staff-row .managers-staff-col .item .item-profession {
  font-size: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 470px) {
  .managers-staff .managers-staff-row .managers-staff-col .item .item-profession {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.managers-staff .managers-staff-row .managers-staff-col .item .hidden-data {
  display: none;
}

.administrative-structure .image {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .administrative-structure .image {
    width: 80%;
  }
}
@media (max-width: 900px) {
  .administrative-structure .image {
    width: 100%;
  }
}
.administrative-structure .image img {
  width: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}

.regulation-nav {
  padding: 4rem;
  margin-top: -2rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 5px rgba(66, 76, 110, 0.1098039216);
  display: flex;
  justify-content: center;
}
@media (max-width: 650px) {
  .regulation-nav {
    margin-top: -1.5rem;
  }
}
@media (max-width: 650px) {
  .regulation-nav {
    padding: 2rem;
  }
}
@media (max-width: 500px) {
  .regulation-nav {
    flex-flow: row wrap;
  }
}
.regulation-nav .button {
  background-color: #E9F4FF;
  padding: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  min-width: 200px;
  cursor: pointer;
}
@media (max-width: 650px) {
  .regulation-nav .button {
    padding: 1rem;
  }
}
@media (max-width: 500px) {
  .regulation-nav .button {
    min-width: 250px;
  }
}
.regulation-nav .button:first-child {
  margin-right: 4rem;
}
@media (max-width: 650px) {
  .regulation-nav .button:first-child {
    margin-right: 2rem;
  }
}
@media (max-width: 500px) {
  .regulation-nav .button:first-child {
    margin-bottom: 2rem;
    margin-right: 0;
  }
}
.regulation-nav .button .image {
  margin-left: auto;
  margin-right: auto;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}
@media (max-width: 650px) {
  .regulation-nav .button .image {
    width: 60px;
    height: 60px;
  }
}
.regulation-nav .button .image img {
  width: 100%;
  vertical-align: top;
}
.regulation-nav .button .title {
  font-size: 1rem;
  text-align: center;
}

.lews ol {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .lews ol {
    font-size: 1rem;
  }
}
.lews ol li {
  margin-bottom: 1rem;
  margin-left: 2rem;
}
@media (max-width: 1024px) {
  .lews ol li {
    margin-left: 1rem;
  }
}
.lews ol li a {
  font-size: 14px;
}

.regulations .items .item {
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .regulations .items .item {
    margin-bottom: 1.5rem;
  }
}
.regulations .items .item .item-title {
  margin-bottom: 1rem;
}
.regulations .items .item .item-title a {
  font-size: 1rem;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .regulations .items .item .item-title a {
    font-size: 1rem;
  }
}
.regulations .items .item .item-description {
  font-size: 14px;
}

.customer-rights {
  line-height: 1.5rem;
}

.customer-rights-pdf .items {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}
.customer-rights-pdf .customer-rights-pdf-col {
  padding: 1rem 0;
}
.customer-rights-pdf .customer-rights-pdf-col:nth-child(even) {
  background: rgba(242, 246, 253, 0.6509803922);
}
.customer-rights-pdf .customer-rights-pdf-col .item {
  padding: 0.5rem;
  padding-left: 2rem;
}
.customer-rights-pdf .customer-rights-pdf-col .item a {
  display: flex;
  align-items: center;
}
.customer-rights-pdf .customer-rights-pdf-col .item img {
  width: 25px;
  vertical-align: top;
  margin-right: 1rem;
}

.useful-links .useful-links-row {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 610px) {
  .useful-links .useful-links-row {
    justify-content: center;
  }
}
.useful-links .useful-links-row .useful-links-col {
  max-width: 25%;
  flex-basis: 25%;
  padding: 1rem;
}
@media (max-width: 1610px) {
  .useful-links .useful-links-row .useful-links-col {
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
}
@media (max-width: 1400px) {
  .useful-links .useful-links-row .useful-links-col {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 610px) {
  .useful-links .useful-links-row .useful-links-col {
    max-width: 80%;
    flex-basis: 80%;
  }
}
@media (max-width: 500px) {
  .useful-links .useful-links-row .useful-links-col {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 420px) {
  .useful-links .useful-links-row .useful-links-col {
    padding: 0;
  }
  .useful-links .useful-links-row .useful-links-col:not(:first-child) {
    margin-top: 1.5rem;
  }
}
.useful-links .useful-links-row .useful-links-col .item {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  text-align: center;
}
@media (max-width: 420px) {
  .useful-links .useful-links-row .useful-links-col .item {
    padding: 2rem 1rem;
  }
}
.useful-links .useful-links-row .useful-links-col .item .item-image {
  border-radius: 10px;
  width: 80%;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
.useful-links .useful-links-row .useful-links-col .item .item-image img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  justify-content: center;
}
.useful-links .useful-links-row .useful-links-col .item .item-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 400px) {
  .useful-links .useful-links-row .useful-links-col .item .item-title {
    font-size: 1rem;
  }
}

.contact-us .description {
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  .contact-us .description {
    line-height: normal;
  }
}
.contact-us .map {
  margin-left: -2rem;
  margin-right: -2rem;
}
.contact-us .map iframe {
  width: 100%;
  height: 400px;
}

.staff-popup {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  padding: 1rem;
}
.staff-popup .item {
  position: relative;
  max-width: 900px;
  background-color: #FFFFFF;
  margin: auto;
  border-radius: 20px;
  margin-top: 100px;
  padding: 2rem;
}
@media (max-width: 700px) {
  .staff-popup .item {
    padding: 1rem;
  }
}
.staff-popup .item .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
.staff-popup .item .close img {
  width: 30px;
  height: 30px;
}
.staff-popup .item .headline {
  display: flex;
  margin-bottom: 2rem;
}
.staff-popup .item .item-image {
  width: 200px;
  margin-right: 3rem;
}
.staff-popup .item .item-image img {
  width: 100%;
  border-radius: 20px;
}
.staff-popup .item .item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.staff-popup .item .item-position {
  font-size: 1rem;
}
.staff-popup .item .item-description {
  line-height: 1.5rem;
}

.news-section .news-item {
  display: flex;
}
@media (max-width: 700px) {
  .news-section .news-item {
    flex-flow: row wrap;
  }
}
.news-section .news-item .item-image {
  flex: 0 0 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-right: 2rem;
}
@media (max-width: 1400px) {
  .news-section .news-item .item-image {
    flex: 0 0 350px;
  }
}
@media (max-width: 1200px) {
  .news-section .news-item .item-image {
    flex: 0 0 300px;
  }
}
@media (max-width: 700px) {
  .news-section .news-item .item-image {
    flex: 0 0 100%;
  }
}
.news-section .news-item .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
.news-section .news-item .item-info {
  flex: 1 1 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.news-section .news-item .item-crated_at {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
@media (max-width: 700px) {
  .news-section .news-item .item-crated_at {
    margin-bottom: 0.5rem;
  }
}
.news-section .news-item .item-title {
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  .news-section .news-item .item-title {
    margin-bottom: 0.5rem;
  }
}
.news-section .news-item .item-title h2 {
  font-weight: 600;
}
.news-section .news-item .item-excerpt {
  line-height: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .news-section .news-item .item-excerpt {
    margin-bottom: 1rem;
  }
}
.news-section .news-item .see-more {
  width: 200px;
  padding: 3px;
  color: #424C6E;
  border-bottom: 2px solid #424C6E;
}

.news-single {
  min-height: 70vh;
}
.news-single .title h1 {
  font-size: 2rem;
  color: #424C6E;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .news-single .title h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 700px) {
  .news-single .title h1 {
    margin-bottom: 1rem;
  }
}
.news-single .created-at {
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  .news-single .created-at {
    margin-bottom: 0.5rem;
  }
}
.news-single .description {
  line-height: 1.5rem;
}

.content-block .description {
  line-height: 1.5rem;
}
@media (max-width: 700px) {
  .content-block .description {
    line-height: normal;
  }
}
.content-block .description a {
  text-decoration: underline;
  font-weight: bold;
}

.section-1, .section-2, .section-3, .section-4 {
  display: none;
}
.section-1.active, .section-2.active, .section-3.active, .section-4.active {
  display: block;
}

.about-us-blocks .about-us-blocks-row {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 610px) {
  .about-us-blocks .about-us-blocks-row {
    justify-content: center;
  }
}
.about-us-blocks .about-us-blocks-row .about-us-blocks-col {
  max-width: 25%;
  flex-basis: 25%;
  padding: 1rem;
  cursor: pointer;
}
.about-us-blocks .about-us-blocks-row .about-us-blocks-col.active .item {
  box-shadow: 0px 0px 10px -3px rgb(189, 189, 189);
}
@media (max-width: 1610px) {
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col {
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
}
@media (max-width: 1400px) {
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 610px) {
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col {
    max-width: 80%;
    flex-basis: 80%;
  }
}
@media (max-width: 500px) {
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 420px) {
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col {
    padding: 0;
  }
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col:not(:first-child) {
    margin-top: 1.5rem;
  }
}
.about-us-blocks .about-us-blocks-row .about-us-blocks-col .item {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  text-align: center;
}
@media (max-width: 420px) {
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col .item {
    padding: 2rem 1rem;
  }
}
.about-us-blocks .about-us-blocks-row .about-us-blocks-col .item .item-image {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
.about-us-blocks .about-us-blocks-row .about-us-blocks-col .item .item-image img {
  width: 100%;
  vertical-align: top;
  justify-content: center;
}
.about-us-blocks .about-us-blocks-row .about-us-blocks-col .item .item-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 420px) {
  .about-us-blocks .about-us-blocks-row .about-us-blocks-col .item .item-title {
    font-size: 1rem;
  }
}
