/* === all === */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/* === links === */
a {
  text-decoration: none;
  color: inherit;
}

.no-scroll {
  overflow: hidden;
}

/* === colors === */
/* === font === */
/* === body === */
body {
  font-family: "Montserrat", sans-serif;
}

/* === button === */
.btn {
  position: relative;
  transition: 0.3s ease-out;
  padding: 10px 40px 10px 40px;
  font-size: 18px;
  font-weight: 600;
}
.btn:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0px;
  opacity: 1;
  transition: 0.4s ease-out;
  width: 0%;
  height: 2px;
}
.btn:hover:after {
  width: 100%;
}

/* === general text styles === */
h1 {
  font-size: 44px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
}

article h1 {
  font-size: 70px;
  font-family: reklame-script, sans-serif;
  font-weight: 400;
}
article h2 {
  font-size: 40px;
}
article h3 {
  font-size: 28px;
}
article h4 {
  font-size: 22px;
}
article p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 30px;
}
article p:last-of-type {
  margin-bottom: 0px;
}
article p a {
  text-decoration: underline;
}

/* === header === */
.home header {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  z-index: 22;
  transition: 0.2s ease;
  max-width: 1640px;
  width: 100%;
  margin-bottom: -120px;
}
.home header .logo-dark {
  opacity: 0;
}
.home header .logo-light {
  opacity: 1;
}
.home header nav .menu .menu-item a {
  color: #FFFFFF;
}
.home header nav .menu .menu-item .sub-menu .menu-item a {
  color: #000000;
}
.home #menu-toggle span {
  background: #FFFFFF;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 26px;
  padding-bottom: 26px;
  min-height: 120px;
  transition: 0.4s ease;
  transition-delay: 0.2s;
  max-width: 1640px;
  width: 100%;
  margin: auto auto;
  z-index: 9;
}
header .logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  height: 80px;
  transition: 0.2s ease;
}
header .logo-dark {
  opacity: 1;
}
header .logo-light {
  opacity: 0;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.2s ease;
  font-weight: 600;
  margin-right: 10px;
}
header nav .menu {
  list-style: none;
  font-size: 20px;
}
header nav .menu .menu-item {
  display: inline-block;
  margin-left: 50px;
}
header nav .menu .menu-item:hover {
  overflow: inherit;
}
header nav .menu .menu-item a {
  text-decoration: none;
  color: #000000;
}
header nav .menu .menu-item-has-children {
  position: relative;
}
header nav .menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  min-width: 0px;
  opacity: 0;
  width: max-content;
  min-width: 150px;
  height: 0px;
  transition: 0.2s ease;
  background-color: #FFFFFF;
}
header nav .menu .menu-item-has-children .sub-menu .menu-item {
  display: block;
  margin-left: 0px;
  width: 100%;
  font-size: 18px;
  border-bottom: 1px solid #000000;
  font-weight: 200;
  padding: 20px;
}
header nav .menu .menu-item-has-children .sub-menu .menu-item:last-of-type {
  border-bottom: none;
}
header nav .menu .menu-item-has-children .sub-menu .menu-item .sub-menu {
  display: none;
  position: absolute;
  top: 0px;
  transform: translateX(100%);
  left: inherit;
  right: 0px;
  opacity: 0;
  width: max-content;
  min-width: 150px;
  height: 0px;
  border-left: 1px solid #000000;
}
header nav .menu .menu-item-has-children .sub-menu .menu-item:hover .sub-menu {
  opacity: 1;
  height: auto;
  display: block;
}
header nav .menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  height: auto;
  display: block;
}
header nav .searchicon {
  margin-left: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
header nav .menu ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  list-style: none;
  font-size: 20px;
}
header nav .menu ul li {
  margin-left: 50px;
}
header nav .menu ul li a {
  text-decoration: none;
  color: #000000;
}
header #menu-toggle {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 4;
  display: none;
  margin-right: 10px;
}
header #menu-toggle span {
  display: block;
  background: #FFFFFF;
  border-radius: 3px;
  transition: 0.2s ease;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.96);
}
header #menu-toggle #hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  height: 100%;
  width: 100%;
}
header #menu-toggle #hamburger span {
  width: 30px;
  height: 2px;
  position: relative;
  margin-bottom: 7px;
}
header #menu-toggle #hamburger span:nth-child(1) {
  transition-delay: 0.5s;
}
header #menu-toggle #hamburger span:nth-child(2) {
  transition-delay: 0.625s;
}
header #menu-toggle #hamburger span:nth-child(3) {
  transition-delay: 0.75s;
  margin-bottom: 0px;
}
header #menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}
header #menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 2px;
  position: absolute;
  top: 0%;
  left: 14px;
  transition-delay: 0s;
}
header #menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 2px;
  position: absolute;
  left: 0%;
  top: 14px;
  transition-delay: 0.25s;
}
header #menu-toggle.open #hamburger span {
  width: 0%;
}
header #menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
header #menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
header #menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}
header #menu-toggle.open #cross span:nth-child(1) {
  height: 30px;
  transition-delay: 0.625s;
}
header #menu-toggle.open #cross span:nth-child(2) {
  width: 30px;
  transition-delay: 0.375s;
}

.home .header-scroll {
  min-height: inherit;
  background-color: white;
}
.home .header-scroll .logo {
  height: 50px;
}
.home .header-scroll .logo-dark {
  opacity: 1;
}
.home .header-scroll .logo-light {
  opacity: 0;
}
.home .header-scroll nav .menu .menu-item a {
  color: #000000;
}

/* === search === */
.search-wrapper {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #00AEFF;
  z-index: 4;
}
.search-wrapper form {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
}
.search-wrapper form input {
  padding: 10px 0px 10px 0px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #FFFFFF;
  border-left: none;
  width: 100%;
  background-color: #00AEFF;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.search-wrapper form input::-webkit-search-decoration {
  display: none;
}
.search-wrapper form input::-webkit-search-cancel-button {
  display: none;
}
.search-wrapper form input::-webkit-search-results-button {
  display: none;
}
.search-wrapper form input::-webkit-search-results-decoration {
  display: none;
}
.search-wrapper form input::placeholder {
  color: #FFFFFF;
}
.search-wrapper form #submit {
  display: none;
}
.search-wrapper form #searchsubmit {
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #FFFFFF;
  border-left: none;
  width: 40px;
  background-image: url("../../assets/images/searchicon-white.svg");
  background-size: 26px 26px;
  background-position: right center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.search-wrapper #close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

/* === search results === */
.search-results-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 70vh;
}
.search-results-wrapper .results-title {
  margin-bottom: 50px;
}
.search-results-wrapper .results-title h1 {
  font-size: 60px;
  font-weight: 800;
}
.search-results-wrapper .results-title #breadcrumbs .breadcrumb_last {
  font-weight: 400;
}
.search-results-wrapper .results-title h2 {
  color: #00AEFF;
}
.search-results-wrapper .results-title p {
  margin-bottom: 20px;
}
.search-results-wrapper .result {
  padding-top: 20px;
  padding-bottom: 20px;
  transition: 0.2s ease;
  border-bottom: 1px solid #626262;
}
.search-results-wrapper .result h2 {
  color: #00AEFF;
}
.search-results-wrapper .result p {
  color: #626262;
}
.search-results-wrapper .result span {
  color: #626262;
  font-size: 20px;
  font-weight: 200;
  transition: 0.2s ease;
}
.search-results-wrapper .result:hover {
  border-bottom: 1px solid #000000;
}
.search-results-wrapper .result:hover span {
  color: #000000;
}
.search-results-wrapper .no-results form {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
}
.search-results-wrapper .no-results form input {
  padding: 10px 0px 10px 0px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #000000;
  border-left: none;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.search-results-wrapper .no-results form input::-webkit-search-decoration {
  display: none;
}
.search-results-wrapper .no-results form input::-webkit-search-cancel-button {
  display: none;
}
.search-results-wrapper .no-results form input::-webkit-search-results-button {
  display: none;
}
.search-results-wrapper .no-results form input::-webkit-search-results-decoration {
  display: none;
}
.search-results-wrapper .no-results form input::placeholder {
  color: #000000;
}
.search-results-wrapper .no-results form #submit {
  display: none;
}
.search-results-wrapper .no-results form #searchsubmit {
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #000000;
  border-left: none;
  width: 40px;
  background-image: url("../../assets/images/searchicon.svg");
  background-size: 26px 26px;
  background-position: right center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* === 404 === */
.error-404 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 80vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.error-404 .error-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.error-404 .error-inner h2 {
  color: #FFFFFF;
}
.error-404 .error-inner h3 {
  color: #FFFFFF;
}
.error-404 .error-inner .btn {
  margin-top: 30px;
  background-color: #00AEFF;
  color: #FFFFFF;
}

/* === home banner === */
.banner-large {
  min-height: 100%;
}
.banner-large .banner-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-large .banner-slide .banner-inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  padding: 10px;
  height: 100%;
}
.banner-large .banner-slide .banner-inner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  max-width: 500px;
}
.banner-large .banner-slide .banner-inner .banner-content h2 {
  font-size: 90px;
  line-height: 92px;
  font-weight: 300;
  color: #FFFFFF;
  font-family: reklame-script, sans-serif;
}
.banner-large .banner-slide .banner-inner .banner-content p {
  margin-top: 30px;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #FFFFFF;
}
.banner-large .banner-slide .banner-inner .banner-content .btn {
  background-color: #FFFFFF;
  color: #00AEFF;
}
.banner-large .banner-slide .banner-inner .banner-content .btn:after {
  background-color: #000000;
}
.banner-large .banner-slide .banner-inner .banner-content .btn:hover {
  color: #000000;
}
.banner-large .swiper-button-next {
  color: #FFFFFF;
}
.banner-large .swiper-button-next:after {
  font-size: 22px;
}
.banner-large .swiper-button-prev {
  color: #FFFFFF;
}
.banner-large .swiper-button-prev:after {
  font-size: 22px;
}

/* === default banner === */
.banner-default {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-default .banner-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.banner-default .banner-inner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  max-width: 50%;
}
.banner-default .banner-inner .banner-content h2 {
  font-size: 60px;
  line-height: 62px;
  font-weight: 900;
  color: #FFFFFF;
}
.banner-default .banner-inner .banner-content .btn {
  background-color: #FFFFFF;
  color: #00AEFF;
}
.banner-default .banner-inner .banner-content .btn:after {
  background-color: #000000;
}
.banner-default .banner-inner .banner-content .btn:hover {
  color: #000000;
}

#breadcrumbs {
  position: absolute;
  z-index: 2;
  font-size: 20px;
  font-weight: 400;
  max-width: 1000px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}
#breadcrumbs .breadcrumb_last {
  font-weight: 700;
}

/* === contact === */
.contact-form {
  padding-top: 90px;
  padding-bottom: 50px;
  position: relative;
  color: #FFFFFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-form:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: #8E7052;
}
.contact-form .contact-form-inner {
  display: grid;
  grid-template-columns: 4fr 2fr;
  grid-gap: 100px;
  position: relative;
  z-index: 2;
}
.contact-form .contact-form-inner h2 {
  margin-bottom: 20px;
  font-family: reklame-script, sans-serif;
  font-size: 70px;
  font-weight: 400;
}
.contact-form .contact-form-inner form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 20px;
  margin-top: 40px;
}
.contact-form .contact-form-inner form p:nth-child(2) {
  grid-column: span 2;
}
.contact-form .contact-form-inner form p:nth-child(3) {
  grid-column: span 2;
}
.contact-form .contact-form-inner form p:nth-child(4) {
  grid-column: span 2;
}
.contact-form .contact-form-inner form p:nth-child(6) {
  display: flex;
  justify-content: flex-end;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap input {
  transition: 0.3s ease;
  padding: 20px 40px 20px 40px;
  border: none;
  width: 100%;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  background-color: #EFEFEF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap input:focus {
  background-color: #EFEFEF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap input::placeholder {
  color: #000000;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap textarea {
  padding: 20px 40px 20px 40px;
  border: none;
  width: 100%;
  background-color: #EFEFEF;
  resize: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap textarea:focus {
  background-color: #EFEFEF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap textarea::placeholder {
  color: #000000;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper {
  padding: 10px;
  border: 2px dashed #00AEFF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler {
  position: relative;
  margin: 0px;
  border: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner h3 {
  font-size: 18px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner span {
  display: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner .codedropz-btn-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner .codedropz-btn-wrap .cd-upload-btn {
  position: absolute;
  left: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .dnd-upload-counter {
  display: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status {
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  font-weight: 200;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-image {
  display: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px;
  width: 100%;
  text-align: center;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0px;
  width: 50%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name span {
  color: #00AEFF;
  line-height: 16px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name em {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .remove-file {
  top: 50%;
  transform: translateY(-50%);
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .dnd-progress-bar {
  width: 50%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .dnd-progress-bar .complete {
  background-color: #00AEFF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .has-error-msg {
  width: 100%;
  font-size: 16px;
  text-align: center;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input {
  position: relative;
  padding: 0px;
  margin-right: 20px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border-radius: 20px;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #EFEFEF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: 0.2s ease;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-image: url("../../assets/images/check.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000000;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:checked:after {
  opacity: 1;
}
.contact-form .contact-form-inner form p .btn {
  border: none;
  background-color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form .contact-form-inner form p .ajax-loader {
  display: none;
}
.contact-form .contact-form-inner form .wpcf7-response-output {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

.gallery-section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
}
.gallery-section .gallery-section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
.gallery-section .gallery-section-inner a .image {
  height: 300px;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.gallery-section:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 200px;
  left: 0px;
  z-index: -1;
  background-color: #000000;
}

/* === icons block === */
.icons-block {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.icons-block .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.icons-block .icon-wrapper img {
  margin-bottom: 20px;
  max-width: 110px;
  max-height: 110px;
}
.icons-block .icon-wrapper span {
  font-size: 20px;
  font-weight: 700;
}

/* === image === */
.image-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.image-block img {
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 1000px;
  height: auto;
}

/* === maps and info === */
.map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.map-info .acf-map {
  height: 400px;
  width: 50%;
}
.map-info .info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 70px;
  height: 400px;
  width: 50%;
}
.map-info .info p {
  margin-bottom: 20px;
}

/* === newsletter block === */
.newsletter-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #00AEFF;
}
.newsletter-block h2 {
  margin-bottom: 40px;
  font-weight: 200;
  color: #FFFFFF;
}
.newsletter-block form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
}
.newsletter-block form input {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.newsletter-block form input::placeholder {
  color: #FFFFFF;
}
.newsletter-block form #mail {
  margin-right: 10px;
  padding: 10px 20px 10px 20px;
  width: 70%;
  background-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.newsletter-block form .btn {
  padding: 10px 20px 10px 20px;
  font-weight: 400;
  background-color: #FFFFFF;
  color: #00AEFF;
}
.newsletter-block form .btn:after {
  background-color: #000000;
}

/* === pages block === */
.pages-section {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 20px;
  grid-auto-rows: 400px;
  grid-auto-flow: dense;
  margin-top: -200px;
}
.pages-section .page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pages-section .page a {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.pages-section .page h2 {
  position: relative;
  font-size: 38px;
  color: #FFFFFF;
  text-transform: uppercase;
  z-index: 2;
  transition: 0.2s ease;
  transition-delay: 0.1s;
  opacity: 0;
}
.pages-section .page:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8E7052;
  opacity: 0;
  transition: 0.2s ease;
}
.pages-section .page:hover:after {
  opacity: 0.8;
}
.pages-section .page:hover h2 {
  opacity: 1;
}
.pages-section .page:nth-child(1) {
  grid-column: span 3;
}
.pages-section .page:nth-child(2) {
  grid-column: span 4;
}
.pages-section .page:nth-child(3) {
  grid-column: span 3;
}
.pages-section .page:nth-child(4) {
  grid-column: span 5;
}
.pages-section .page:nth-child(5) {
  grid-column: span 5;
}

/* === parallax block === */
.parallax-block {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 400px;
}
.parallax-block:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: #000000;
}
.parallax-block #parallax-background {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.parallax-block .parallax-inner {
  position: relative;
  max-width: 700px;
  z-index: 2;
}
.parallax-block .parallax-inner h2 {
  margin-bottom: 40px;
  font-size: 47px;
  font-weight: 800;
  color: #8E7052;
}
.parallax-block .parallax-inner p {
  color: #FFFFFF;
}
.parallax-block .parallax-inner .btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #8E7052;
  color: #FFFFFF;
}
.parallax-block .parallax-inner .btn:hover {
  background-color: #FFFFFF;
  color: #8E7052;
}
.parallax-block .parallax-inner #side-text {
  position: absolute;
  left: 100%;
  top: 100%;
  width: 100%;
  max-width: 300px;
  text-align: center;
  font-family: reklame-script, sans-serif;
  color: #FFFFFF;
  font-size: 60px;
  line-height: 60px;
  transform: rotate(-5deg) translate(-50%, -50%);
}

/* === posts block === */
.archive .posts-block {
  padding-top: 80px;
  margin-top: 0px;
}
.archive .posts-block .text-wrapper h2 {
  color: #000000;
}
.archive .posts-block:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #8E7052;
  opacity: 0.8;
  display: none;
}
.archive .pagination {
  margin-top: 80px;
}
.archive .pagination .current {
  font-weight: 700;
}
.archive .pagination .page-numbers {
  margin-right: 20px;
}

.posts-block {
  position: relative;
  padding-top: 300px;
  padding-bottom: 90px;
  margin-top: -100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.posts-block:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #8E7052;
  opacity: 0.8;
}
.posts-block .text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
}
.posts-block .text-wrapper h2 {
  color: #FFFFFF;
}
.posts-block .text-wrapper a {
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: underline;
}
.posts-block .posts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  position: relative;
  z-index: 2;
}
.posts-block .posts-wrapper .post {
  transition: 0.2s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.posts-block .posts-wrapper .post .post-thumbnail {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  padding-top: 66.66%;
  /* 3:2 Aspect Ratio */
}
.posts-block .posts-wrapper .post .post-info {
  padding: 50px 20px 20px 20px;
  background-color: #FFFFFF;
  text-align: left;
}
.posts-block .posts-wrapper .post .post-info span {
  line-height: 32px;
  font-size: 18px;
  font-weight: 700;
}
.posts-block .posts-wrapper .post .post-info h3 {
  margin-bottom: 20px;
  font-weight: 400;
}
.posts-block .posts-wrapper .post:hover {
  transform: scale(0.99);
}

/* === q and a === */
.q-a-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
}
.q-a-block .questions-wrapper {
  margin-right: 50px;
  width: 50%;
  max-width: 600px;
}
.q-a-block .questions-wrapper h2 {
  margin-bottom: 40px;
}
.q-a-block .questions-wrapper .q-a {
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.q-a-block .questions-wrapper .q-a h4 {
  position: relative;
  transition: 0.3s ease;
  width: 100%;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
}
.q-a-block .questions-wrapper .q-a h4:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transform-origin: center;
  transition: 0.4s ease;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../assets/images/arrow-blue.svg");
}
.q-a-block .questions-wrapper .q-a p {
  overflow: hidden;
  transition: 0.3s ease;
  max-height: 0px;
  font-size: 18px;
  font-weight: 200;
}
.q-a-block .questions-wrapper .open h4 {
  margin-bottom: 20px;
}
.q-a-block .questions-wrapper .open h4:after {
  transform: rotate(180deg) translateY(50%);
}
.q-a-block .questions-wrapper .open p {
  max-height: 400px;
}
.q-a-block .q-a-image {
  width: 50%;
}

/* === slider === */
.slider-image {
  position: relative;
  padding-top: 70px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
.slider-image h2 {
  margin-bottom: 50px;
  font-family: reklame-script, sans-serif;
  color: #000000;
  font-weight: 400;
  text-align: center;
  font-size: 90px;
}
.slider-image .standard-slider {
  position: relative;
  padding-top: 66.66%;
  /* 3:2 Aspect Ratio (divide 2 by 3 = 0.6666)  */
}
.slider-image .standard-slider .swiper-wrapper {
  position: absolute;
  top: 0px;
}
.slider-image .standard-slider .swiper-wrapper .swiper-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-image .swiper-button-prev {
  top: 62%;
  color: #000000;
  font-weight: 700;
  left: -49px;
}
.slider-image .swiper-button-next {
  top: 62%;
  color: #000000;
  font-weight: 700;
  right: -49px;
}
.slider-image .pagination-wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -68px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
}
.slider-image .pagination-wrapper .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  height: 68px;
  background-color: #000000;
}
.slider-image .pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  border-radius: 30px;
  width: 12px;
  height: 12px;
  background-color: #000000;
  border: 1px solid #FFFFFF;
  opacity: 1;
}
.slider-image .pagination-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}
.slider-image .pagination-wrapper .more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 68px;
  color: #000000;
  background-color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  transition: 0.2s ease;
}
.slider-image .pagination-wrapper .more-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page .slider-image {
  margin-bottom: 140px;
}
.page .slider-image h2 {
  display: none;
}
.page .slider-image .pagination-wrapper .more-link {
  background-color: #8E7052;
  color: #000000;
}
.page .slider-image .pagination-wrapper .more-link:hover {
  background-color: #FFFFFF;
  color: #8E7052;
}

.home .slider-image {
  margin-bottom: 0px;
}
.home .slider-image h2 {
  display: block;
}
.home .slider-image .pagination-wrapper .more-link {
  background-color: #FFFFFF;
  color: #000000;
}
.home .slider-image .pagination-wrapper .more-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* === slider image text === */
.slider-image-text {
  padding-left: 0px;
  padding-right: 0px;
}
.slider-image-text .swiper-wrapper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  min-height: 520px;
}
.slider-image-text .swiper-wrapper .swiper-slide .image {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-image-text .swiper-wrapper .swiper-slide .text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px 80px 40px;
  width: 50%;
  max-width: 700px;
}
.slider-image-text .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: 40px;
  width: auto;
}
.slider-image-text .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  border-radius: 30px;
  width: 15px;
  height: 15px;
  background-color: #FFFFFF;
}
.slider-image-text .swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  border-radius: 10px;
  width: 5px;
  height: 5px;
  background-color: #626262;
}
.slider-image-text .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #E3F3FA;
}

/* === tabs === */
.tabs-block {
  border: none;
  padding-top: 50px;
  padding-bottom: 50px;
}
.tabs-block ul {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  list-style: none;
  background-color: #FFFFFF;
}
.tabs-block ul li {
  transition: 0.2s;
  padding: 15px 30px 15px 30px;
  outline: none;
  background-color: #FFFFFF;
}
.tabs-block ul li a {
  outline: none;
}
.tabs-block ul .ui-state-active {
  background-color: #00AEFF;
  color: #FFFFFF;
}
.tabs-block .tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  position: relative;
  height: auto;
  min-height: 340px;
  max-height: 400px;
}
.tabs-block .tab-content .tab-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tabs-block .tab-content article p {
  display: inline-block;
}
.tabs-block .tab-content article .btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #00AEFF;
  color: #FFFFFF;
}

/* === team === */
.team-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 70px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.team-block .team-member {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.team-block .team-member .member-picture {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 30px;
  height: 300px;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.team-block .team-member .member-picture a[href=""] {
  display: none;
}
.team-block .team-member .member-picture img {
  position: relative;
  margin: 0px 5px 20px 5px;
  transition: 0.2s;
  z-index: 2;
  opacity: 0;
}
.team-block .team-member .member-picture:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.2s;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #00AEFF;
}
.team-block .team-member .member-picture:hover img {
  opacity: 1;
}
.team-block .team-member .member-picture:hover:after {
  opacity: 0.8;
}
.team-block .team-member .name {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}
.team-block .team-member .function {
  font-size: 18px;
  font-weight: 200;
  text-align: center;
}

/* === text blocks === */
.text-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
}
.text-intro article {
  max-width: 1000px;
}
.text-intro article p {
  margin-bottom: 20px;
  font-size: 22px;
}
.text-intro article p:last-of-type {
  margin-bottom: 0px;
}

.text-image {
  display: flex;
  flex-wrap: wrap;
}
.text-image .image {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text-image .text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 40px 120px 40px;
  width: 50%;
}
.text-image .text-wrapper article {
  max-width: 700px;
  width: 100%;
}

.text-one-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 30px;
}
.text-one-column article {
  max-width: 1000px;
  width: 100%;
}
.text-one-column article p {
  margin-bottom: 20px;
}
.text-one-column article p:last-of-type {
  margin-bottom: 0px;
}

.text-two-columns {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.text-two-columns .text-column-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  grid-gap: 50px;
  max-width: 1000px;
}
.text-two-columns .text-column-wrapper article p {
  margin-bottom: 20px;
}
.text-two-columns .text-column-wrapper article p:last-of-type {
  margin-bottom: 0px;
}

/* === video === */
.video-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.video-block iframe {
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 1000px;
  height: 500px;
}

/* === footer === */
footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #F7F7F7;
}
footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 150px;
  border-bottom: 1px solid #000000;
}
footer .footer-inner .footer-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .footer-inner .footer-column h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}
footer .footer-inner .footer-column p {
  line-height: 32px;
  font-weight: 200;
  margin-bottom: 30px;
}
footer .footer-inner .footer-column p:last-of-type {
  margin-bottom: 0px;
}
footer .footer-inner .footer-column img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
footer .underfooter {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-bottom: 50px;
}
footer .underfooter p {
  display: inline-block;
  text-align: left;
  font-size: 18px;
  font-weight: 200;
}
footer .underfooter .logos {
  display: inline-block;
}
footer .underfooter .logos img {
  height: 90px;
  width: auto;
}

/* === responsive === */
@media only screen and (max-width: 1599px) {
  .pages-section .page h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1399px) {
  header .logo {
    height: 70px;
  }

  /* === text styles === */
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  p {
    font-size: 18px;
    line-height: 32px;
    font-weight: 200;
  }

  article h1 {
    font-size: 40px;
  }
  article h2 {
    font-size: 32px;
  }
  article h3 {
    font-size: 26px;
  }
  article p {
    font-weight: 200;
  }

  /* === search === */
  .search-results-wrapper h1 {
    font-size: 40px;
  }

  /* === banner === */
  .banner-large {
    max-height: 580px;
  }

  /* === parallax === */
  .parallax-block h2 {
    font-size: 40px;
  }

  /* === pages === */
  .pages-section {
    grid-auto-rows: 300px;
  }
  .pages-section .page h2 {
    font-size: 20px;
  }

  /* === q and a === */
  .q-a-block .questions-wrapper .q-a {
    padding: 20px 60px 20px 20px;
  }
  .q-a-block .questions-wrapper .q-a h4:after {
    right: -40px;
  }

  /* === team === */
  .team-block {
    grid-gap: 30px;
  }

  /* === text === */
  .text-intro article p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1299px) {
  .banner-large .banner-slide .banner-inner .banner-content h2 {
    font-size: 70px;
    line-height: 70px;
  }

  .parallax-block .parallax-inner h2 {
    font-size: 50px;
  }

  /* === slider === */
  /* === icons === */
  .icons-block .icon-wrapper img {
    max-width: 90px;
    max-height: 90px;
  }

  /* === newsletter === */
  .newsletter-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* === posts === */
  .posts-block .posts-wrapper {
    grid-gap: 25px;
  }
  .posts-block .posts-wrapper .post .post-thumbnail {
    height: 200px;
  }
  .posts-block .posts-wrapper .post .post-info {
    padding: 40px 10px 40px 10px;
  }

  /* === team === */
  .team-block {
    grid-template-columns: repeat(2, 1fr);
  }

  /* === footer === */
  footer .footer-inner {
    grid-gap: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  header .logo {
    height: 49px;
  }
  header nav .menu {
    font-size: 18px;
  }
  header nav .menu .menu-item {
    margin-left: 20px;
  }

  .contact-form .contact-form-inner {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .contact-form .contact-form-inner form p:nth-child(5) {
    grid-column: span 2;
  }
  .contact-form .contact-form-inner form p:nth-child(6) {
    grid-column: span 2;
    justify-content: flex-start;
  }

  .gallery-section .gallery-section-inner a .image {
    height: 200px;
  }

  /* === maps and info === */
  .map-info .info {
    padding: 0px 20px 0px 20px;
  }

  /* === parallax === */
  .parallax-block #parallax-background {
    height: 130%;
  }
  .parallax-block .parallax-inner #side-text {
    font-size: 30px;
    line-height: 30px;
  }

  /* === q and a === */
  .q-a-block .questions-wrapper {
    width: 60%;
    margin-right: 30px;
  }
  .q-a-block .q-a-image {
    width: 40%;
  }

  /* === tabs === */
  .tabs-block ul {
    margin-bottom: 30px;
  }
  .tabs-block .tab-content {
    display: flex;
    flex-direction: column;
    max-height: inherit;
  }
  .tabs-block .tab-content .tab-image {
    height: 300px;
    margin-bottom: 30px;
  }

  /* === video === */
  .video-block iframe {
    height: 400px;
  }

  /* === footer === */
  footer .footer-inner {
    grid-gap: 20px;
  }
  footer .footer-inner .footer-column {
    padding: 20px;
  }
  footer .underfooter {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1099px) {
  /* === pages === */
  .pages-section {
    grid-auto-rows: 200px;
    margin-top: -120px;
  }

  .slider-image .pagination-wrapper {
    bottom: -48px;
  }
  .slider-image .pagination-wrapper .swiper-pagination {
    height: 48px;
    padding: 10px;
  }
  .slider-image .pagination-wrapper .more-link {
    height: 48px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 999px) {
  /* === header === */
  .page {
    padding-top: 120px;
  }
  .page header {
    margin-top: -120px;
    background-color: #FFFFFF;
  }

  .home {
    padding-top: 0px;
  }
  .home header {
    margin-top: 0px;
    position: fixed;
    background-color: inherit;
  }
  .home header nav {
    background-color: inherit;
  }

  header {
    position: fixed;
    z-index: 19;
  }
  header img {
    position: relative;
    z-index: 7;
  }
  header nav {
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 10px;
    width: 100%;
    height: 100%;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.9);
  }
  header nav .menu {
    position: absolute;
    top: 120px;
    left: 0px;
    padding: 10px;
    margin: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
  }
  header nav .menu .menu-item {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFFFFF;
    margin: 0px;
  }
  header nav .menu .menu-item a {
    color: #FFFFFF;
  }
  header nav .menu .menu-item:last-of-type {
    border-bottom: none;
  }
  header nav .menu .menu-item-has-children {
    padding: 10px;
    background-image: url("../../assets/images/arrow-down.svg");
    background-size: 15px;
    background-position: calc(100% - 0px) calc(100% - 20px);
    background-repeat: no-repeat;
    transition: 0.2s ease;
  }
  header nav .menu .menu-item-has-children .sub-menu {
    position: relative;
    padding: 5px;
    background-color: inherit;
  }
  header nav .menu .menu-item-has-children .sub-menu .menu-item {
    border-bottom: none;
    padding: 10px;
  }
  .home header nav .menu .menu-item-has-children .sub-menu .menu-item a{
	  color:#fff;
  }
  header nav .menu .menu-item-has-children .sub-menu .menu-item .sub-menu {
    position: relative;
    left: 0px;
    transform: inherit;
    height: 0px;
    overflow: hidden;
    border-left: 0px;
  }
  header nav .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item {
    padding: 10px;
  }
  header nav .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item a{
	  color:#fff;
  }
  header nav .menu .menu-item-has-children:hover {
    background-position: calc(100% - 0px) calc(10% - 0px);
  }
  header nav .menu .menu-item-has-children:hover .sub-menu {
    padding: 5px 0px 5px 5px;
  }
  header nav .searchicon {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0px;
  }
  header .mobile-menu-active {
    display: block;
  }
  header #menu-toggle {
    display: block;
  }
  header #menu-toggle span {
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.96);
  }

  /* === banner home === */
  .banner-large {
    max-height: 500px;
  }
  .banner-large .banner-slide .banner-inner {
    align-items: flex-start;
  }
  .banner-large .banner-slide .banner-inner .banner-content h2 {
    font-size: 40px;
    line-height: 42px;
  }
  .banner-large .banner-slide .banner-inner .banner-content p {
    font-size: 20px;
  }

  /* === banner default === */
  .banner-default .banner-inner .banner-content h2 {
    font-size: 40px;
    line-height: 42px;
  }
  .banner-default .banner-inner .banner-content p {
    font-size: 20px;
  }

  /* === icons === */
  .icons-block .icon-wrapper img {
    max-width: 80px;
    max-height: 80px;
  }
  .icons-block .icon-wrapper span {
    font-size: 18px;
  }

  /* === map and info === */
  .map-info {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }
  .map-info .acf-map {
    width: 100%;
  }
  .map-info .info {
    height: auto;
    padding: 40px 0px 40px 0px;
    width: 100%;
  }

  .parallax-block .parallax-inner #side-text {
    left: 0px;
    top: 110%;
    transform: inherit;
    text-align: left;
  }

  .pages-section {
    grid-template-columns: 1fr 1fr;
  }
  .pages-section .page:nth-child(1) {
    grid-column: inherit;
  }
  .pages-section .page:nth-child(2) {
    grid-column: inherit;
  }
  .pages-section .page:nth-child(3) {
    grid-column: inherit;
  }
  .pages-section .page:nth-child(4) {
    grid-column: inherit;
  }
  .pages-section .page:nth-child(5) {
    grid-column: span 2;
  }

  /* === posts === */
  .posts-block .posts-wrapper {
    grid-template-columns: 1fr;
  }
  .posts-block .posts-wrapper .post .post-info {
    padding: 30px 10px 20px 10px;
  }

  /* === q and a === */
  .q-a-block {
    flex-direction: column;
  }
  .q-a-block .questions-wrapper {
    margin-right: 0px;
    margin-bottom: 30px;
    width: 100%;
  }
  .q-a-block .q-a-image {
    width: 100%;
    height: auto;
  }

  /* === slider === */
  .slider-image h2 {
    font-size: 40px;
    line-height: 42px;
  }
  .slider-image .swiper-button-prev {
    top: 68%;
    left: 10px;
    color: #FFFFFF;
  }
  .slider-image .swiper-button-prev:after {
    font-size: 20px;
  }
  .slider-image .swiper-button-next {
    top: 68%;
    right: 10px;
    color: #FFFFFF;
  }
  .slider-image .swiper-button-next:after {
    font-size: 20px;
  }

  /* === slider image text === */
  .slider-image-text .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 300px;
  }
  .slider-image-text .swiper-wrapper .swiper-slide .text-wrapper {
    padding: 40px 0px 80px 0px;
    width: 100%;
    max-width: inherit;
  }
  .slider-image-text .swiper-pagination {
    left: 0px;
    margin-left: 0px;
  }

  /* === text === */
  .text-image .text-wrapper {
    padding: 60px 40px 60px 40px;
  }

  /* === video === */
  .video-block iframe {
    height: 300px;
  }

  /* === footer === */
  footer .footer-inner {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .footer-inner .footer-column {
    padding-left: 0px;
    padding-right: 0px;
  }
  footer .footer-inner .footer-column:nth-child(1):after {
    display: none;
  }
  footer .footer-inner .footer-column:nth-child(3):before {
    display: none;
  }
  footer .underfooter {
    flex-direction: column;
  }
  footer .underfooter p {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 899px) {
  /* === header === */
  header img {
    height: 45px;
    width: auto;
  }

  /* === banner home === */
  .banner-large .banner-slide .banner-inner .banner-content {
    max-width: inherit;
  }

  /* === banner default === */
  .banner-default .banner-inner .banner-content {
    max-width: inherit;
  }

  /* === newsletter === */
  .newsletter-block {
    padding: 30px;
    align-items: flex-start;
  }
  .newsletter-block form {
    width: 100%;
    justify-content: flex-start;
  }

  .posts-block {
    padding-top: 220px;
  }

  /* === text === */
  .text-image .text-wrapper {
    padding: 30px 10px 30px 10px;
    width: 100%;
  }
  .text-image .image {
    width: 100%;
    height: 320px;
  }

  .text-two-columns .text-column-wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 699px) {
  .gallery-section .gallery-section-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 599px) {
  /* === text styles === */
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
    line-height: 28px;
  }

  article h1 {
    font-size: 34px;
  }
  article h2 {
    font-size: 28px;
  }
  article h3 {
    font-size: 22px;
  }
  article h4 {
    font-size: 20px;
  }
  article p {
    font-size: 16px;
    line-height: 28px;
  }

  .banner-large .swiper-button-next {
    top: 90%;
  }
  .banner-large .swiper-button-prev {
    top: 90%;
  }

  /* === icons === */
  .icons-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    padding: 40px;
  }
  .icons-block .icon-wrapper {
    justify-content: flex-start;
    flex-direction: row;
  }
  .icons-block .icon-wrapper img {
    margin-right: 20px;
    margin-bottom: 0px;
    width: 70px;
    height: 70px;
  }
  .icons-block .icon-wrapper span {
    font-size: 18px;
    font-weight: 400;
  }

  .pages-section {
    grid-template-columns: 1fr;
  }
  .pages-section .page:nth-child(5) {
    grid-column: inherit;
  }

  .parallax-block .parallax-inner h2 {
    font-size: 30px;
    line-height: 40px;
  }

  /* === text === */
  .text-intro article p {
    font-size: 18px;
  }

  /* === video === */
  .video-block iframe {
    height: 250px;
  }

  footer .underfooter .logos img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 499px) {
  /* === search === */
  .search-results-wrapper h1 {
    font-size: 34px;
  }

  /* === newsletter === */
  .newsletter-block form {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .newsletter-block form #mail {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 100%;
  }

  /* === parallax === */
  .parallax-block h2 {
    font-size: 30px;
  }

  /* === team === */
  .team-block {
    grid-template-columns: repeat(1, 1fr);
  }
  .team-block .team-member .member-picture {
    height: 250px;
  }
}
@media only screen and (max-width: 399px) {
  .gallery-section .gallery-section-inner {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
