@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
  --base-color: #231F20;
}

::-moz-selection {
  background-color: #d1f1fa;
}

::selection {
  background-color: #d1f1fa;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html {
  background-color: #fff;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

body {
  background-image: radial-gradient(circle, #F5F5F5, #FFFFFF);
  color: var(--base-color);
  font-family: "Marcellus", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

a {
  color: #23527c;
  cursor: pointer;
  text-decoration: none;
}

a strong {
  color: currentColor;
}

ol, ul {
  padding-left: 15px;
}

hr {
  background-color: #fafafa;
  border: none;
  display: block;
  height: 2px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

img {
  height: auto;
  max-width: 100%;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: .875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  font-weight: 600;
}

fieldset {
  border: none;
}

table td,
table th {
  text-align: left;
  vertical-align: top;
}

table th {
  color: #363636;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: #747474;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=file] {
  width: 100%;
  min-height: 56px;
  padding: 3px 20px;
  color: #748494;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
  outline: none;
  background-color: #F5F5F5;
}

input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus {
  border-color: #1292EE;
  background-color: #FFFFFF;
}

textarea {
  width: 100%;
  min-height: 180px;
  padding: 10px 20px;
  color: #748494;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
  outline: none;
  background-color: #F5F5F5;
}

textarea:focus {
  border-color: #1292EE;
  background-color: #FFFFFF;
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-5px {
  margin-bottom: 5px !important;
}

.mb-10px {
  margin-bottom: 10px !important;
}

.mb-20px {
  margin-bottom: 20px !important;
}

.mb-30px {
  margin-bottom: 30px !important;
}

.side-navigation {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(10, 10, 10, .5);
  z-index: 50;
  transition: all .5s;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.side-navigation.active {
  opacity: 1;
  visibility: visible;
}

.side-navigation.active .side-navigation-container {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.side-navigation-languages {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.side-navigation-languages a {
  font-size: 18px;
  color: #353535;
  text-transform: uppercase;
}

.side-navigation-languages a.active {
  font-weight: 800;
}

.side-navigation-languages span {
  color: #353535;
  padding: 0 5px;
}

.side-navigation-container {
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
  width: 300px;
  height: 100%;
  transition: all .75s;
  overflow: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.side-navigation-container>ul {
  margin-top: 15px;
  margin-bottom: 0px;
  padding-left: 0px;
  border-top: 1px solid rgba(10, 10, 10, .15);
}

.side-navigation-container>ul>li {
  list-style-type: none;
  border-bottom: 1px solid rgba(10, 10, 10, .15);
}

.side-navigation-container>ul>li:hover>a {
  text-decoration: none;
  background-color: #353535;
  color: #fff;
}

.side-navigation-container>ul>li:hover ul {
  display: block;
}

.side-navigation-container>ul>li>a {
  display: flex;
  align-items: center;
  color: #353535;
  font-size: 15px;
  font-weight: 600;
  transition: all .35s;
  padding: 10px 20px;
}

.side-navigation-container>ul>li>a:hover {
  text-decoration: none;
  background-color: #353535;
  color: #fff;
}

.side-navigation-container>ul>li>a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.side-navigation-container>ul>li ul {
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 15px;
  display: none;
}

.side-navigation-container>ul>li ul li {
  list-stype-type: none;
}

.side-navigation-container>ul>li ul li a {
  display: block;
  padding: 5px 20px;
  font-size: 15px;
  color: #353535;
}

.side-navigation-container>ul>li ul li a:hover {
  text-decoration: none;
}

.side-navigation-logo {
  display: block;
  text-align: center;
}

.side-navigation-logo img {
  height: 85px;
}

.page-loading {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
}

.page-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loading-container {
  width: 180px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loading img {
  width: 150px;
  opacity: 0;
  -webkit-transform: scale(.5);
  transform: scale(.5);
  -webkit-animation: img-zoom 2s;
  animation: img-zoom 2s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes img-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(.5);
    transform: scale(.5);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes img-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(.5);
    transform: scale(.5);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.page-loading span {
  display: block;
  background-color: #800000;
  position: absolute;
}

.page-loading span.top-border {
  height: 5px;
  width: 0;
  top: 0;
  left: 0;
  -webkit-animation: top-border 1s;
  animation: top-border 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes top-border {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes top-border {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.page-loading span.bottom-border {
  height: 5px;
  width: 0;
  bottom: 0;
  right: 0;
  -webkit-animation: bottom-border 1s;
  animation: bottom-border 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bottom-border {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes bottom-border {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.page-loading span.left-border {
  height: 100%;
  width: 5px;
  left: 0;
  bottom: 0;
  -webkit-animation: left-border 1s;
  animation: left-border 1s;
}

@-webkit-keyframes left-border {
  0% {
    height: 0;
  }

  to {
    height: 100%;
  }
}

@keyframes left-border {
  0% {
    height: 0;
  }

  to {
    height: 100%;
  }
}

.page-loading span.right-border {
  height: 100%;
  width: 5px;
  top: 0;
  right: 0;
  -webkit-animation: right-border 1s;
  animation: right-border 1s;
}

@-webkit-keyframes right-border {
  0% {
    height: 0;
  }

  to {
    height: 100%;
  }
}

@keyframes right-border {
  0% {
    height: 0;
  }

  to {
    height: 100%;
  }
}

.main-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.main-navbar-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.main-navbar-end {
  display: flex;
  align-items: center;
}

.main-navbar-end button {
  display: none;
  background-color: #800000;
  border-width: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 10px;
  outline-width: 0;
  transition: all .5s;
}

.main-navbar-end button:hover {
  background-color: #353535;
}

.main-navbar-end button span {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #FFFFFF;
  margin-bottom: 3px;
}

.main-navbar-end button span:last-child {
  margin-bottom: 0px;
}

.main-navbar-end>ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.main-navbar-end>ul>li {
  list-style-type: none;
  position: relative;
}

.main-navbar-end>ul>li:hover>a {
  background-color: hsla(0, 0%, 100%, .1);
}

.main-navbar-end>ul>li:hover>ul {
  display: block;
}

.main-navbar-end>ul>li>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--base-color);
  letter-spacing: 0;
  min-height: 60px;
  padding: 0px 25px 0px 25px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.main-navbar-end>ul>li>a:hover {
  color: #800000;
}

.main-navbar-end>ul>li ul {
  margin-bottom: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: hsla(0, 0%, 100%, .7);
  border-top: 2px solid #800000;
  min-width: 100%;
  padding: 0 10px;
  display: none;
}

.main-navbar-end>ul>li ul li {
  list-style-type: none;
  border-bottom: 1px solid rgba(61, 156, 184, .4);
}

.main-navbar-end>ul>li ul li:last-child {
  border-bottom-width: 0;
}

.main-navbar-end>ul>li ul li a {
  display: block;
  color: #000000;
  font-size: 15px;
  text-align: center;
  padding: 10px 0;
}

.main-navbar-end>ul>li ul li a:hover {
  color: #800000;
}

.main-navbar-logo {
  display: block;
  height: 142px;
  margin-top: 4px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .main-navbar-logo {
    margin-left: 12px;
  }
}

.main-navbar-logo img {
  height: 100%;
}

.main-navbar-languages {
  margin-top: -20px;
}

.main-navbar-languages span {
  margin: 0 5px;
}

.main-navbar-languages a {
  font-size: 15px;
  color: #353535;
  display: inline-block;
  text-transform: uppercase;
}

.main-navbar-languages a:hover {
  text-decoration: none;
}

.main-navbar-languages a.active {
  font-weight: 800;
}

.main-footer {
  position: relative;
  z-index: 3;
  padding: 0px 15px 15px 15px;
}

.main-footer p {
  margin: 0px;
  font-size: 14px;
  color: var(--base-color);
}

.main-footer a {
  margin: 0px;
  font-size: 14px;
  color: #878787;
  float: right;
}

.page-cover {
  height: 430px;
  background-color: #ddd;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.page-cover.full {
  position: fixed;
  height: 100vh;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.page-cover-p {
  font-size: 22px;
  margin: 30px 0;
  text-align: center;
}

.page-cover-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 335px;
  padding: 0 60px;
  text-align: center;
}

.page-cover-container h1 {
  font-size: 38px;
}
@media screen and (max-width: 767px) {
  .page-cover-container h1 {
    font-size: 25px;
  }
}

.page-cover-container h1,
.page-cover-container h4 {
  font-weight: 700;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .48);
  color: #fff;
}

.page-cover-container h4 {
  font-size: 22px;
}

.main-content {
  position: relative;
  z-index: 4;
  margin: 87px 15px 15px;
  padding-top: 30px;
  border: 4px solid #800000;
}

.homepage-content {
  height: calc(100vh - 138px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 30px 0px 30px;
}

.homepage-paragraphs {
  width: 390px;
  max-width: 100%;
  font-size: 16px;
}

.homepage-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.homepage-slider {
  background-color: hsla(0, 0%, 89.8%, .9);
  border-bottom: 8px solid #800000;
  width: 300px;
  max-width: 100%;
  padding: 15px 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.homepage-slider h4 {
  font-size: 15px;
  font-weight: 700;
  color: #800000;
  padding: 0 15px;
}

.homepage-slider-wrapper .owl-nav {
  position: absolute;
  top: -34px;
  left: 77px;
}

.homepage-slider-wrapper .owl-nav button {
  line-height: 1 !important;
  outline-width: 0;
  margin-right: 10px;
  opacity: .75;
  transition: all .5s;
}

.homepage-slider-wrapper .owl-nav button:hover {
  opacity: 1;
}

.homepage-slider-wrapper .owl-nav button span {
  color: #800000;
  font-size: 28px;
}

.homepage-slider-item {
  font-size: 15px;
  color: #353535;
  padding: 0 15px 15px;
}

.homepage-slider-item p {
  margin-bottom: 0;
}

.page-content {
  margin-top: 30px;
  margin-bottom: 100px;
}

.page-content .page-content-text {
  margin-bottom: 15px;
  font-size: 15px;
  color: #353535;
  line-height: 25px;
  text-align: justify;
}
.page-content-text h2 {
  margin: 0px 0px 30px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}

.teampage-member {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.teampage-member:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.teampage-member img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all .5s;
}

.teampage-member figcaption {
  width: 100%;
  height: 100%;
  padding: 40px 40px 40px 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  opacity: 0;
  bottom: 0;
  background: rgba(29, 28, 33, 0.6);
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transition-property: opacity, transform, filter;
  text-align: center;
  line-height: 1.25;
}

.teampage-member:hover figcaption {
  opacity: 1;
}

.teampage-member figcaption .title {
  display: block;
  font-size: 22px;
  color: #FFFFFF;
}

.teampage-member figcaption .sub-title {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.teampage-member figcaption .description {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-page {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: #DBDBDB 1px solid;
}

.contact-page:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: transparent 1px solid;
}

.contact-page-information {
  margin-bottom: 30px;
}

.contact-page-information p {
  font-size: 16px;
  color: #353535;
  margin-bottom: 10px;
}

.contact-page-information p:last-child {
  margin-bottom: 0;
}

.contact-page-information p.title, .contact-form p.title {
  font-weight: bold;
  text-decoration: underline;
}

.contact-page-social {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.contact-page-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background-color: #800000;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  margin-right: 5px;
}

.contact-page-social a:last-child {
  margin-right: 0;
}

.contact-page-social a:hover {
  text-decoration: none;
}

.contact-page-transport-map {
  margin-top: 30px;
}

.contact-page-transport-map h6 {
  color: #353535;
  font-weight: 600;
}

.contact-page-transport-map a,
.contact-page-transport-map h6 {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-page-transport-map a {
  color: #878787;
  text-decoration: underline;
}

.contact-page-transport-map a:last-child {
  margin-bottom: 0;
}

.contact-page-map .map {
  width: 100%;
  height: 400px;
  position: relative;
  display: block;
  border: none;
}

.contact-page-map iframe {
  width: 100%;
  height: 400px;
  bordeR: 0px;
}

/* Responsive */
@media screen and (max-width: 1144px) {
  .main-navbar-end button {
    display: inline-flex;
    order: 2;
  }

  .main-navbar-end>ul {
    display: none;
  }

  .main-navbar-languages {
    margin-top: 7px;
    margin-right: 15px;
    order: 1;
  }
}

@media screen and (max-width: 991px) {
  .d-flex {
    display: block !important;
  }
  .contact-page-transport-map {
    margin-bottom: 60px;
  }
  .main-footer {
    text-align: center;
  }
  .main-footer a {
    float: none;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  blockquote {
    font-size: 15px;
  }
  .homepage-end {
    flex-direction: column;
  }
}
