<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* You can add global styles to this file, and also import other style files */
html {
  position: relative;
  height: 100%;
}

body {
  font-family: Roboto, serif;
  height: 100%;
  padding: 0;
  margin: 0;
  color: var(--blue-color);
}

.wrapper {
  position: relative;
  max-width: 1032px;
  margin: auto;
}

a {
  color: var(--white-color);
  text-decoration: none;
}

:root {
  --blue-color: #14213d;
  --pale-blue-color: rgba(20, 33, 61, 0.5);
  --red-color: #e63946;
  --orange-color: #fca311;
  --gray-color: #e5e5e5;
  --white-color: #fff;
}

@font-face {
  font-family: Righteous;
  src: url(assets/fonts/righteous/Righteous-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Roboto;
  src: url(assets/fonts/roboto/Roboto-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: RobotoCondensed;
  src: url(assets/fonts/roboto_condensed/RobotoCondensed-Light.ttf);
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: RobotoCondensed;
  src: url(assets/fonts/roboto_condensed/RobotoCondensed-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: RobotoCondensed;
  src: url(assets/fonts/roboto_condensed/RobotoCondensed-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.page section#header {
  position: sticky;
  top: 0;
  z-index: 1;
}

.page section#header .header {
  color: var(--white-color);
  letter-spacing: 0.02em;
}

.page section#header .header .contact-line {
  position: sticky;
  top: 0;
  font-family: RobotoCondensed, serif;
  background: linear-gradient(121deg, var(--orange-color) 50%, var(--blue-color) 0%);
  z-index: 1;
}

.page section#header .header .contact-line .wrapper {
  background: linear-gradient(121deg, var(--orange-color) 633px, var(--blue-color) 0%);
  padding: 15px;
}

@media only screen and (max-width: 1033px) {
  .page section#header .header .contact-line .wrapper {
    background: linear-gradient(121deg, var(--orange-color) 60%, var(--blue-color) 0%);
  }
}

@media only screen and (max-width: 576px) {
  .page section#header .header .contact-line .wrapper {
    background: linear-gradient(121deg, var(--orange-color) 50%, var(--blue-color) 0%);
  }
}

.page section#header .header .contact-line .columns {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

@media only screen and (max-width: 576px) {
  .page section#header .header .contact-line .columns {
    font-size: 13px;
  }
}

.page section#header .header .contact-line .columns .left {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 35px;
}

@media only screen and (max-width: 576px) {
  .page section#header .header .contact-line .columns .left {
    gap: 20px;
  }
}

.page section#header .header .contact-line .columns .left .icon-with-text {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  align-items: center;
}

.page section#header .header .contact-line .columns .left .icon-with-text i {
  font-size: 25px;
}

@media only screen and (max-width: 1033px) {
  .page section#header .header .contact-line .columns .left .icon-with-text div {
    display: none;
  }
}

@media only screen and (max-width: 576px) {
  .page section#header .header .contact-line .columns .right {
    text-align: right;
  }
}

.page section#hero .hero {
  position: relative;
  aspect-ratio: 3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white-color);
  background-image: url(assets/images/hero.webp);
}

@media only screen and (max-width: 1033px) {
  .page section#hero .hero {
    aspect-ratio: 2.1176470588;
  }
}

@media only screen and (max-width: 576px) {
  .page section#hero .hero {
    aspect-ratio: 1.6363636364;
  }
}

.page section#hero .hero img {
  position: absolute;
  bottom: 40px;
  left: 0;
}

@media only screen and (min-width: 1441px) {
  .page section#hero .hero img {
    left: calc(((100vw - 1032px) / 2) - 209px);
    border-left: 5px solid var(--orange-color);
  }
}

@media only screen and (max-width: 1251px) {
  .page section#hero .hero img {
    height: 63px;
  }
}

@media only screen and (max-width: 1033px) {
  .page section#hero .hero img {
    height: 43px;
    bottom: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#hero .hero img {
    height: 23px;
  }
}

.page section#hero .hero .text-box {
  position: absolute;
  top: 40%;
  left: calc(50% + 260px);
  transform: translateX(-50%);
  background: var(--pale-blue-color);
  padding: 18px 80px 11px 10px;
  border-left: 5px solid var(--orange-color);
}

@media only screen and (max-width: 1033px) {
  .page section#hero .hero .text-box {
    top: unset;
    left: unset;
    right: 15px;
    bottom: 15px;
    transform: unset;
    padding: 9px 10px 11px 10px;
  }
}

.page section#hero .hero .text-box h1 {
  font-family: RobotoCondensed, serif;
  white-space: nowrap;
  margin: 0;
}

.page section#hero .hero .text-box h1 p {
  margin: 0;
  line-height: 42px;
}

@media only screen and (max-width: 1251px) {
  .page section#hero .hero .text-box h1 p {
    line-height: 30px;
  }
}

@media only screen and (max-width: 1033px) {
  .page section#hero .hero .text-box h1 p {
    line-height: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#hero .hero .text-box h1 p {
    line-height: 18px;
  }
}

.page section#hero .hero .text-box h1 p.line-1 {
  font-size: 48px;
  font-weight: 700;
}

@media only screen and (max-width: 1251px) {
  .page section#hero .hero .text-box h1 p.line-1 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1033px) {
  .page section#hero .hero .text-box h1 p.line-1 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#hero .hero .text-box h1 p.line-1 {
    font-size: 16px;
  }
}

.page section#hero .hero .text-box h1 p.line-2 {
  font-size: 32px;
}

@media only screen and (max-width: 1251px) {
  .page section#hero .hero .text-box h1 p.line-2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1033px) {
  .page section#hero .hero .text-box h1 p.line-2 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#hero .hero .text-box h1 p.line-2 {
    font-size: 13px;
  }
}

.page section#hero .hero .text-box h1 p.line-3 {
  font-size: 32px;
  font-weight: 700;
}

@media only screen and (max-width: 1251px) {
  .page section#hero .hero .text-box h1 p.line-3 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1033px) {
  .page section#hero .hero .text-box h1 p.line-3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#hero .hero .text-box h1 p.line-3 {
    font-size: 13px;
  }
}

.page section#content .content {
  display: grid;
  gap: 80px;
  padding: 80px 15px 129px 15px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content {
    gap: 40px;
    padding: 40px 15px 89px 15px;
  }
}

.page section#content .content .announcement {
  display: grid;
  grid-template-columns: 227px 48px 1fr;
  align-items: center;
}

@media only screen and (max-width: 576px) {
  .page section#content .content .announcement {
    grid-template-columns: 1fr 48px 1fr;
  }
}

.page section#content .content .announcement .block-title {
  background: var(--red-color);
  color: var(--white-color);
  padding: 20px 0 20px 50px;
}

@media only screen and (max-width: 576px) {
  .page section#content .content .announcement .block-title {
    padding: 15px;
  }
}

.page section#content .content .announcement .gradient {
  height: 100%;
  width: 100%;
  background: linear-gradient(121deg, var(--red-color) 50%, var(--gray-color) 0%);
}

.page section#content .content .announcement .text {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: RobotoCondensed, serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  background: var(--gray-color);
  padding-right: 15px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .announcement .text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#content .content .announcement .text {
    font-size: 13px;
  }
}

.page section#content .content .services .boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .services .boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#content .content .services .boxes {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.page section#content .content .services .boxes .box {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  min-height: 210px;
  font-family: RobotoCondensed, serif;
  font-size: 13px;
  font-weight: 300;
  padding: 15px;
  line-height: 16px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .services .boxes .box {
    min-height: unset;
  }
}

.page section#content .content .services .boxes .box.reverse {
  grid-template-rows: 1fr auto auto;
}

@media only screen and (max-width: 576px) {
  .page section#content .content .services .boxes .box.reverse .icon {
    order: 1;
  }
}

.page section#content .content .services .boxes .box:not(.reverse) .icon {
  align-self: end;
}

.page section#content .content .services .boxes .box:after {
  content: '';
  position: absolute;
  height: 5px;
  width: 100%;
  background: var(--orange-color);
}

@media only screen and (max-width: 576px) {
  .page section#content .content .services .boxes .box:after {
    height: 100%;
    width: 5px;
    left: 0;
    right: unset;
    top: 0;
    bottom: 0;
  }
}

.page section#content .content .services .boxes .box.left-border:after {
  height: 100%;
  width: 5px;
  top: 0;
  bottom: 0;
  left: 0;
}

.page section#content .content .services .boxes .box.top-border:after {
  right: 0;
  left: 0;
  top: 0;
}

.page section#content .content .services .boxes .box.bottom-border:after {
  right: 0;
  left: 0;
  bottom: 0;
}

.page section#content .content .services .boxes .box.right-border:after {
  height: 100%;
  width: 5px;
  top: 0;
  bottom: 0;
  right: 0;
}

.page section#content .content .services .boxes .box .highlighted {
  font-weight: 700;
}

.page section#content .content .services .boxes .box .highlighted span {
  color: var(--orange-color);
}

.page section#content .content .services .boxes .box .icon {
  justify-self: center;
}

.page section#content .content .services .boxes .box .icon i {
  font-size: 56px;
  color: var(--gray-color);
}

.page section#content .content .neovo {
  display: grid;
  grid-template-columns: 1fr 69px 1fr;
  align-items: center;
}

.page section#content .content .neovo .image {
  background: var(--gray-color);
  padding: 15px 0 15px 85px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .neovo .image {
    padding-left: 15px;
  }
}

.page section#content .content .neovo .image img {
  height: 56px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .neovo .image img {
    height: 50px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#content .content .neovo .image img {
    height: 30px;
  }
}

.page section#content .content .neovo .gradient {
  height: 100%;
  width: 100%;
  background: linear-gradient(55deg, var(--gray-color) 50%, var(--blue-color) 0%);
}

.page section#content .content .neovo .block-title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 25px;
  color: var(--white-color);
  background: var(--blue-color);
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .neovo .block-title {
    text-align: right;
    padding-right: 15px;
  }
}

.page section#content .content .activities {
  display: grid;
  gap: 20px;
  letter-spacing: 0.02em;
}

.page section#content .content .activities .menu {
  display: grid;
  grid-template-columns: 430px 1fr;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .activities .menu {
    grid-template-columns: 2fr 3fr;
  }
}

@media only screen and (max-width: 576px) {
  .page section#content .content .activities .menu {
    display: none;
  }
}

.page section#content .content .activities .menu .tab label {
  position: relative;
  display: block;
  color: var(--blue-color);
  padding: 6.5px 0 6.5px 5px;
  transition: background-color 0.3s linear;
  cursor: pointer;
}

.page section#content .content .activities .menu .tab label.active {
  background: linear-gradient(121deg, var(--blue-color) calc(100% - 16px), transparent 0%);
  color: var(--white-color);
  padding-left: 10px;
  margin: 0px -28px 0 -5px;
  transition: background-color 0.3s linear;
}

.page section#content .content .activities .menu .tab label.active:after {
  content: none;
}

.page section#content .content .activities .menu .tab label:after {
  content: '';
  position: absolute;
  border-bottom: 2px dashed var(--gray-color);
  left: -5px;
  bottom: -1px;
  right: 0;
}

.page section#content .content .activities .menu .tab label:last-child:after {
  content: none;
}

.page section#content .content .activities .menu .tab label.active:after {
  content: none;
}

.page section#content .content .activities .menu .tab label.active:before {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--white-color);
  left: -5px;
  top: -2px;
  right: 28px;
}

.page section#content .content .activities .menu .textbox {
  display: none;
  font-size: 12px;
  background: var(--gray-color);
  padding: 20px 40px;
  line-height: 18px;
}

.page section#content .content .activities .menu .textbox.active {
  display: block;
  font-size: 12px;
  background: var(--gray-color);
  padding: 20px 40px;
  line-height: 18px;
}

@media only screen and (max-width: 576px) {
  .page section#content .content .activities .menu .textbox {
    padding: 15px;
  }
}

.page section#content .content .activities .menu .textbox p {
  padding: 10px 0;
  margin: 0;
}

.page section#content .content .activities .accordion-menu {
  display: none;
  overflow: hidden;
}

@media only screen and (max-width: 576px) {
  .page section#content .content .activities .accordion-menu {
    display: block;
  }
}

.page section#content .content .activities .accordion-menu .tab {
  position: relative;
  width: 100%;
  color: var(--blue-color);
  border-bottom: 2px dashed var(--gray-color);
  overflow: hidden;
}

.page section#content .content .activities .accordion-menu .tab.no-bottom-border {
  border-bottom: none;
  margin-bottom: 2px;
}

.page section#content .content .activities .accordion-menu .tab:last-child {
  border: none
}

.page section#content .content .activities .accordion-menu .tab.active-before {
  border-bottom: 2px solid var(--white-color);
}

.page section#content .content .activities .accordion-menu .tab.active {
  border-bottom: 2px solid var(--white-color);
}

.page section#content .content .activities .accordion-menu .tab.active label {
  color: var(--white-color);
  background-color: var(--blue-color);
}

.page section#content .content .activities .accordion-menu .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.page section#content .content .activities .accordion-menu .tab input:checked ~ label {
  color: var(--white-color);
  background-color: var(--blue-color);
}

.page section#content .content .activities .accordion-menu .tab input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}

.page section#content .content .activities .accordion-menu .tab-label {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--blue-color);
  background: transparent;
  padding: 6.5px 5px;
  cursor: pointer;
}

.page section#content .content .activities .accordion-menu .tab-content {
  max-height: 0;
  font-size: 12px;
  color: var(--blue-color);
  background: var(--gray-color);
  padding: 0 15.5px;
}

.page section#content .content .activities .accordion-menu .tab-content p {
  padding: 10px 0;
  margin: 0;
}

.page section#content .content .contact {
  display: grid;
  gap: 20px;
}

.page section#content .content .contact .details {
  display: grid;
  grid-template-columns: 430px auto;
  gap: 42px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .contact .details {
    grid-template-columns: 3fr 2fr;
    gap: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .page section#content .content .contact .details {
    grid-template-columns: 1fr;
  }
}

.page section#content .content .contact .details .left .map-container {
  width: 430px;
  height: 230px;
}

.page section#content .content .contact .details .left .map-container .map {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1.8695652174;
  background-image: url(assets/images/map.webp);
}

.page section#content .content .contact .details .left .map-container img {
  aspect-ratio: 1.8695652174;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page section#content .content .contact .details .right .text-rows {
  display: grid;
  gap: 18px;
  padding: 5px 0 20px 5px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .contact .details .right .text-rows {
    gap: 10px;
  }
}

.page section#content .content .contact .details .right .text-rows .row {
  display: grid;
  gap: 3px;
  letter-spacing: 0.02em;
}

.page section#content .content .contact .details .right .text-rows .row .data {
  position: relative;
  padding-bottom: 5px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .contact .details .right .text-rows .row .data {
    text-align: right;
  }
}

@media only screen and (max-width: 576px) {
  .page section#content .content .contact .details .right .text-rows .row .data {
    text-align: left;
  }
}

.page section#content .content .contact .details .right .text-rows .row .label {
  text-align: right;
  font-size: 12px;
  line-height: 18px;
}

.page section#content .content .contact .details .right .button-row {
  display: grid;
  grid-template-columns: 132px 132px;
  gap: 25px;
}

@media only screen and (max-width: 1033px) {
  .page section#content .content .contact .details .right .button-row {
    justify-content: end;
  }
}

@media only screen and (max-width: 576px) {
  .page section#content .content .contact .details .right .button-row {
    justify-content: start;
    grid-template-columns: 1fr 1fr;
  }
}

.page section#content .content .contact .details .right .button-row a.button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(121deg, var(--orange-color) 45px, var(--blue-color) 0%);
  padding: 5px 10px;
  font-size: 18px;
}

.page section#footer .footer {
  color: var(--white-color);
  background: var(--blue-color);
  text-align: center;
}

.page section#footer .footer .text {
  font-family: RobotoCondensed, serif;
  letter-spacing: 0.02em;
  padding: 15px;
}

@media only screen and (max-width: 576px) {
  .page section#footer .footer .text {
    font-size: 13px;
  }
}

.block-title {
  font-family: Righteous, serif;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 1033px) {
  .block-title {
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .block-title {
    font-size: 13px;
    line-height: 20px;
  }
}

.separator-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  font-family: Righteous, serif;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: 0.02em;
  color: var(--orange-color);
}

.separator-title .line {
  width: 100%;
  height: 5px;
  background: var(--orange-color);
}

.is-dashed-under:after {
  content: "";
  position: absolute;
  border-bottom: 2px dashed var(--gray-color);
  left: -5px;
  bottom: -1px;
  right: 0;
}
</pre></body></html>