@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background: #fff;
  font-size: 10px;
  position: relative;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6, p, a {
  color: #676767;
}

#highlighted-font {
  font-family: "Cormorant Garamond", sans-serif;
}

.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}
.main .bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main .subpage-content {
  padding: 8rem 1.5rem 3rem;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
.main .subpage-content .blured-under-layer {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.85;
  width: 100%;
  height: 100%;
  filter: blur(30px);
}

.my-button {
  background: #005B8E;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #005B8E;
  padding: 0.5rem 0;
}
.my-button a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 0.5rem;
  font-weight: 400;
}
.my-button:hover {
  background: #fff;
}
.my-button:hover a {
  color: #005B8E;
}
.my-button--popup-btn {
  background: #F2C061;
  border: 1px solid transparent;
}
.my-button--popup-btn a {
  font-size: 16px;
}
.my-button--popup-btn a::after {
  content: "➜";
  margin-left: 0.2rem;
}
.my-button--popup-btn a {
  color: #005B8E;
}
.my-button--popup-btn:hover {
  border: 1px solid #F2C061;
  background: #005B8E;
}
.my-button--popup-btn:hover a {
  color: #F2C061;
}
.my-button--contact {
  background: #F2C061;
  border: 1px solid transparent;
}
.my-button--contact a {
  color: #005B8E;
}
.my-button--contact:hover {
  border: 1px solid #F2C061;
  background: #005B8E;
}
.my-button--contact:hover a {
  color: #F2C061;
}

.nav-btn--home {
  display: none;
}

.home .nav-btn--home {
  display: initial;
}

.home .subpage-top-bar {
  display: none;
}
.home .footer {
  display: none;
}

.subpage-top-bar {
  background: transparent;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 2rem;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.4s ease;
}
@media (max-width: 960px) {
  .subpage-top-bar {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
  }
}
.subpage-top-bar .nav-layer {
  display: none;
}
.subpage-top-bar.active .nav-layer {
  display: initial;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.subpage-top-bar.active.not-top-page .nav-layer {
  background: rgba(27, 42, 73, 0.8);
}
.subpage-top-bar__title .title {
  font-size: 4em;
  color: #005B8E;
}
@media (max-width: 960px) {
  .subpage-top-bar__title {
    flex: 0 0 100%;
  }
  .subpage-top-bar__title .title {
    text-align: center;
  }
}
.subpage-top-bar__logo-wrapper {
  height: 4rem;
  width: auto;
}
.subpage-top-bar__logo-wrapper a {
  width: 100%;
  height: 100%;
}
.subpage-top-bar__logo-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .subpage-top-bar__logo-wrapper {
    flex: 0 0 100%;
  }
  .subpage-top-bar__logo-wrapper a {
    display: flex;
    justify-content: center;
  }
  .subpage-top-bar__logo-wrapper a img {
    height: 4rem;
    width: auto;
  }
}
.subpage-top-bar .nav-btn-container {
  z-index: 2;
}
.subpage-top-bar .nav-btn-container .nav-btn {
  position: relative;
  top: initial;
  right: initial;
}
@media (max-width: 960px) {
  .subpage-top-bar .nav-btn-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}
.subpage-top-bar.not-top-page {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: #fff;
  padding: 2rem 0;
  position: relative;
  z-index: 3;
}
.footer .footer-menu ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 600px) {
  .footer .footer-menu ul {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer-menu ul .menu-item a {
  text-decoration: none;
  color: #005B8E;
  font-size: 1.8em;
}
@media (max-width: 600px) {
  .footer .footer-menu ul .menu-item a {
    text-align: center;
  }
}
.footer .footer-menu ul .menu-item a:hover {
  color: #F2C061;
}
.footer .footer-menu ul .menu-item.current_page_item a {
  color: #F2C061;
}
.footer .footer-logo-wrapper {
  height: 8rem;
  width: auto;
}
.footer .footer-logo-wrapper a {
  width: 100%;
  height: 100%;
}
.footer .footer-logo-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .copyrights {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer .copyrights p, .footer .copyrights a {
  font-size: 2em;
  color: #005B8E;
}
.footer .copyrights a {
  text-decoration: none;
}

.nav-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 2.4rem;
  transition: all 0.4s linear;
  cursor: pointer;
  pointer-events: auto;
  z-index: 101;
}
@media (max-width: 960px) {
  .nav-btn {
    right: 0.5rem;
    top: 1rem;
  }
}
.nav-btn span {
  position: absolute;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: 3px;
  background: #005B8E;
  transition: all 0.4s linear;
  transform-origin: center;
}
.nav-btn span:first-child {
  top: 0.5rem;
}
.nav-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav-btn span:last-child {
  bottom: 0.5rem;
}
.nav-btn.active {
  background: transparent;
}
.nav-btn.active span {
  background: #fff;
}
.nav-btn.active span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.nav-btn.active span:nth-child(2) {
  opacity: 0;
}
.nav-btn.active span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

.nav {
  background: rgba(27, 42, 73, 0.8);
  position: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: all 0.4s ease;
}
.nav.active {
  opacity: 1;
  display: flex;
  pointer-events: initial;
}
.nav .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav .wrapper .nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}
.nav .wrapper .nav-list .menu-item {
  text-align: center;
}
.nav .wrapper .nav-list .menu-item a {
  text-decoration: none;
  color: #fff;
  font-size: 2.6em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
}
.nav .wrapper .nav-list .menu-item.current-menu-item a {
  color: #F2C061;
}
.nav .wrapper .nav-list .menu-item:hover a {
  color: #F2C061;
}
@media (max-width: 960px) {
  .nav .wrapper .nav-list .menu-item:hover {
    font-weight: normal;
  }
}
.nav .wrapper .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.nav .wrapper .socials .social-icon img {
  height: 2.5rem;
  width: 2.5rem;
}

.main--home {
  position: relative;
}
.main--home .slogan {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 2rem;
  z-index: 2;
}
.main--home .slogan div {
  display: flex;
  justify-content: center;
}
.main--home .slogan div a {
  color: #005B8E;
  font-size: 5em;
  text-decoration: none;
  text-align: center;
}

.home .home-logo-wrapper {
  display: initial;
}

.home-logo-wrapper {
  height: auto;
  position: absolute;
  display: none;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  padding: 3rem;
}
@media (max-width: 960px) {
  .home-logo-wrapper {
    width: calc(100% - 10rem);
    padding: 1rem;
    top: 2rem;
    left: 4rem;
    transform: translateX(0) translateY(0);
  }
}
.home-logo-wrapper .logo-under-layer {
  background: #fff;
  top: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
  filter: blur(30px);
}
.home-logo-wrapper a {
  width: 100%;
  height: 100%;
}
.home-logo-wrapper a .logo {
  width: 100%;
  height: 100%;
  max-height: 30vh;
  object-fit: contain;
}

.bg-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.bg-img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.bg-img-container .main-layer {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tns-outer {
  height: 100%;
}
.tns-outer .tns-inner {
  height: 100%;
}
.tns-outer .tns-inner .my-slider {
  height: 100%;
}
.tns-outer .tns-inner .my-slider .tns-item {
  height: 100%;
}

.tns-ovh {
  height: 100%;
}

.main--contact {
  background: #fff;
  display: flex;
}
.main--contact .contact-content {
  margin: 6rem 0;
  display: flex;
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  gap: 5rem;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 960px) {
  .main--contact .contact-content {
    flex-direction: column;
  }
}
.main--contact .contact-content .photo-and-contact {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  flex: 0 0 50%;
}
.main--contact .contact-content .photo-and-contact .form-img {
  width: 100%;
  margin-bottom: 1rem;
}
.main--contact .contact-content .photo-and-contact h4, .main--contact .contact-content .photo-and-contact a {
  font-size: 20px;
  text-decoration: none;
  font-weight: 300;
}
.main--contact .contact-content .form .form-title {
  font-size: 3em;
  font-weight: 300;
}
.main--contact .contact-content .form .kb-radio-check-item {
  gap: 0.3rem;
}
.main--contact .contact-content .form .kb-radio-check-item .kb-checkbox-style {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
}
.main--contact .contact-content .form .kb-adv-form-message {
  margin-top: 0.5rem;
}
.main--contact .contact-content .form .kb-form-basic-style textarea {
  width: auto;
}

.main--about-us {
  background: #fff;
}
.main--about-us .about-us-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.main--about-us .about-us-content .main-img-wrapper {
  height: 15rem;
  width: auto;
}
@media (max-width: 960px) {
  .main--about-us .about-us-content .main-img-wrapper {
    width: 100%;
    height: auto;
  }
}
.main--about-us .about-us-content .main-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main--about-us .about-us-content .main-text {
  padding: 0 1.5rem;
}
.main--about-us .about-us-content .main-text p {
  font-size: 1.6em;
  line-height: 1.2;
}
.main--about-us .about-us-content .about-us-contact-btn {
  align-self: flex-start;
}
.main--about-us .about-us-content .mini-gallery {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 960px) {
  .main--about-us .about-us-content .mini-gallery {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.main--about-us .about-us-content .mini-gallery .img-wrapper {
  height: 20rem;
}
.main--about-us .about-us-content .mini-gallery .img-wrapper--first, .main--about-us .about-us-content .mini-gallery .img-wrapper--third {
  flex: 0 0 30%;
}
.main--about-us .about-us-content .mini-gallery .img-wrapper--second {
  flex: 0 0 35%;
}
@media (max-width: 960px) {
  .main--about-us .about-us-content .mini-gallery .img-wrapper--first, .main--about-us .about-us-content .mini-gallery .img-wrapper--second, .main--about-us .about-us-content .mini-gallery .img-wrapper--third {
    flex: 0 0 100%;
  }
}
.main--about-us .about-us-content .mini-gallery .img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main {
  box-sizing: border-box;
}
.main--offer {
  background: #fff;
}
.main--offer .offer-content .offer-desc {
  text-align: center;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
}
.main--offer .offer-content .offer-desc strong {
  font-weight: 500;
}
.main--offer .offer-content .offer-desc .mini-gallery {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 960px) {
  .main--offer .offer-content .offer-desc .mini-gallery {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.main--offer .offer-content .offer-desc .mini-gallery .img-wrapper {
  height: 20rem;
}
.main--offer .offer-content .offer-desc .mini-gallery .img-wrapper--first, .main--offer .offer-content .offer-desc .mini-gallery .img-wrapper--third {
  flex: 0 0 30%;
}
.main--offer .offer-content .offer-desc .mini-gallery .img-wrapper--second {
  flex: 0 0 35%;
}
@media (max-width: 960px) {
  .main--offer .offer-content .offer-desc .mini-gallery .img-wrapper--first, .main--offer .offer-content .offer-desc .mini-gallery .img-wrapper--second, .main--offer .offer-content .offer-desc .mini-gallery .img-wrapper--third {
    flex: 0 0 100%;
  }
}
.main--offer .offer-content .offer-desc .mini-gallery .img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .main--offer .offer-content .offer-desc {
    flex-direction: column;
    gap: 3rem;
    padding: 0;
  }
}
.main--offer .offer-content .offer-desc .photo-with-contact-button .photo-and-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.main--offer .offer-content .offer-desc .photo-with-contact-button .photo-and-btn-wrapper img {
  max-width: 90vw;
  height: 10rem;
}
.main--offer .offer-content .offer-desc .offer-text p {
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1rem;
}
.main--offer .offer-content .offer-desc .offer-text h2 {
  margin-bottom: 2rem;
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 40px;
}
.main--offer .offer-content .offer-desc .offer-text h4 {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 3.4em;
}
.main--offer .offer-content .offer-desc .offer-text h5 {
  margin-top: 1rem;
  font-size: 2.4em;
}
.main--offer .offer-content .offer-desc .offer-text em {
  font-style: italic;
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 300;
}
.main--offer .offer-content .offer-desc .offer-slogan {
  font-style: italic;
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 300;
  font-size: 2.4em;
}

.offer-popup {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(27, 42, 73, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 1rem;
}
@media (max-width: 960px) {
  .offer-popup {
    padding: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.offer-popup.active {
  opacity: 1;
  pointer-events: initial;
}
.offer-popup .popup-content {
  max-height: 90vh;
  overflow-y: scroll;
  background: #fff;
  position: relative;
  padding: 2rem;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .offer-popup .popup-content {
    width: 100%;
    height: 100%;
    max-height: initial;
  }
}
.offer-popup .popup-content .cross-icon {
  height: 2rem;
  width: 2rem;
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
}
.offer-popup .popup-content .cross-icon img {
  height: 100%;
  width: 100%;
}
@media (max-width: 960px) {
  .offer-popup .popup-content .cross-icon {
    top: 0.5rem;
    right: 0.5rem;
    position: fixed;
  }
}
.offer-popup .popup-content p {
  line-height: 1.2;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 960px) {
  .offer-popup .popup-content p {
    font-size: 16px;
  }
}

.main--portfolio {
  background: #fff;
}

.portfolio-content {
  background: #fff;
  width: 100%;
  padding-top: 8rem;
}
.portfolio-content .portfolio-gallery {
  overflow: hidden;
}
.portfolio-content .portfolio-gallery .kb-gallery-image-contain {
  position: relative;
}
.portfolio-content .portfolio-gallery .kb-gallery-image-contain img {
  overflow: hidden;
  transition: all 1s linear;
}
.portfolio-content .portfolio-gallery .kb-gallery-image-contain::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
  background: #005B8E;
  opacity: 0;
  transition: all 0.4s ease;
}
.portfolio-content .portfolio-gallery .kb-gallery-image-contain:hover::before {
  opacity: 0.7;
}
.portfolio-content .portfolio-gallery .kb-gallery-image-contain:hover img {
  scale: 1.1;
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}

