@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap);* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  color: #2B2626;
  font-family: "Inter", sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.2;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: rgba(43, 38, 38, 0.1);
  box-shadow: 0 16px 37px rgba(210, 166, 33, 0.2);
}
body::-webkit-scrollbar-thumb {
  background: #2B2626;
}
body.menu-open {
  overflow: hidden;
}
body.scroll-dark::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.8);
}
body.scroll-dark::-webkit-scrollbar-thumb {
  background: #fff;
}

h1 {
  font-size: 70px;
  font-weight: 400;
  line-height: 80px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
}

.list-reset {
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 1199px) {
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 1537px) {
  .custom-container {
    max-width: 100%;
    padding: 0 50px;
  }
  .container:not(.custom-container) {
    max-width: 90%;
  }
}
.d-none {
  display: none;
}

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media (min-width: 1199px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media (min-width: 991px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media (min-width: 767px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media (max-width: 567px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media (min-width: 567px) {
  .hidden-xs-up {
    display: none !important;
  }
}
.hamburger-wrap {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger-wrap span.text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  will-change: color;
  transition: color 0.5s ease-in-out;
}
.hamburger-wrap .hamburger {
  width: 26px;
  height: 10px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  margin-left: 14px;
}
.hamburger-wrap .hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  will-change: backround, rotate;
}
.hamburger-wrap .hamburger span:nth-child(1) {
  top: 0;
}
.hamburger-wrap .hamburger span:nth-child(2), .hamburger-wrap .hamburger span:nth-child(3) {
  top: 9px;
}
.hamburger-wrap .hamburger span:nth-child(4) {
  top: 17px;
}
.hamburger-wrap.dark span.text, .hamburger-wrap.scroll-dark span.text {
  color: #2B2626;
}
.hamburger-wrap.dark .hamburger span, .hamburger-wrap.scroll-dark .hamburger span {
  background: #2B2626;
}
.hamburger-wrap.open span.text {
  color: #fff;
}
.hamburger-wrap.open .hamburger span {
  background: #fff;
}
.hamburger-wrap.open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(0, 5px);
}
.hamburger-wrap.open .hamburger span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -6px);
}

header.main-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 25px 0;
}
header.main-header .container {
  transition: max-width 0.5s ease-in-out;
  will-change: max-width;
}
header.main-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.main-header .socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
header.main-header .socials a {
  text-decoration: none;
}
header.main-header .socials svg path {
  will-change: fill;
  transition: fill 0.5s ease-in-out;
}
header.main-header .right {
  display: flex;
  align-content: center;
  gap: 30px;
}
header.main-header .logo svg {
  width: 5.8125em;
}
header.main-header .logo svg,
header.main-header .logo svg path {
  transition: 0.5s ease-in-out;
}
header.main-header.dark svg path {
  fill: #000;
}
header.main-header.dark.menu-open svg path {
  fill: #fff;
}
header.main-header.scroll-dark {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header.main-header.scroll-dark .logo svg path {
  fill: #000;
}
header.main-header.scroll-dark.menu-open .hamburger-wrap.open span.text {
  color: #2B2626;
}
header.main-header.scroll-dark.menu-open .hamburger-wrap.open .hamburger span {
  background-color: #2B2626;
}
header.main-header.scroll-dark .socials a svg path {
  fill: #000;
}
@media (max-width: 567px) {
  header.main-header .right {
    gap: 15px;
  }
}
@media (max-width: 380px) {
  header.main-header .right .socials {
    display: none;
  }
}

.main-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background: #1D1A1A;
  z-index: 99;
}
.main-menu .menu-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  margin-left: 8.333333%;
}
.main-menu ul.main-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 39px;
}
.main-menu ul.main-list li {
  margin-bottom: 22px;
}
.main-menu ul.main-list li:last-child {
  margin-bottom: 0;
}
.main-menu ul.main-list a {
  color: #fff;
  font-size: 70px;
  font-weight: 400;
  line-height: 64px;
}
.main-menu ul.secondary-list {
  display: flex;
  align-items: center;
}
.main-menu ul.secondary-list li {
  margin-right: 38px;
}
.main-menu ul.secondary-list li:last-child {
  margin-right: 0;
}
.main-menu ul.secondary-list a {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.main-menu ul a {
  text-decoration: none;
  transition: 0.5s ease-in-out;
}
.main-menu ul a:hover, .main-menu ul a:focus {
  color: #1D1A1A;
  text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
.main-menu .social-icons {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 51px;
}

.slider {
  position: relative;
  margin-bottom: 40px;
}
.slider .slide {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
.slider .slide:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50.91%), linear-gradient(0deg, rgba(44, 44, 44, 0.34), rgba(44, 44, 44, 0.34));
  z-index: 5;
}
.slider .slide .text-wrap {
  color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
}
.slider .slide .text-wrap .text {
  padding-left: 20px;
}
.slider .slide .text-wrap h1,
.slider .slide .text-wrap h2,
.slider .slide .text-wrap h3 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 14px;
}
.slider .slide .text-wrap p {
  max-width: 90%;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 39px;
}
.slider .slide .text-wrap a {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
}
.slider .slide .text-wrap a:hover {
  text-decoration: underline;
}
.slider .actions {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
}
.slider .actions .flex-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.slider .actions .slider-pagination .slick-dots {
  width: 392px;
  box-shadow: 0 16px 37px rgba(210, 166, 33, 0.2);
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.slider .actions .slider-pagination .slick-dots li {
  background: rgba(255, 255, 255, 0.25);
  height: 2px;
  cursor: pointer;
}
.slider .actions .slider-pagination .slick-dots li.slick-active {
  background: rgb(255, 255, 255);
}
.slider .arrows {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
.slider .arrows svg circle {
  transition: stroke-opacity 0.3s ease-in;
}
.slider .arrows:hover svg circle, .slider .arrows:focus svg circle {
  stroke-opacity: 1;
}
.slider.alt {
  margin: 40px 0;
}
.slider.alt .actions .flex-wrap {
  justify-content: center;
}
.slider.alt .actions .slider-pagination .slick-dots li {
  background: rgba(0, 0, 0, 0.25);
}
.slider.alt .actions .slider-pagination .slick-dots li.slick-active {
  background: #000;
}
.slider.alt .slide:after {
  display: none;
}
.slider.alt .arrows .slick-arrow circle {
  stroke-opacity: 1;
  stroke: rgba(0, 0, 0, 0.25);
  transition: stroke 0.3s ease-in;
}
.slider.alt .arrows .slick-arrow path {
  stroke: rgba(0, 0, 0, 0.25);
  transition: stroke 0.3s ease-in;
}
.slider.alt .arrows .slick-arrow:hover circle, .slider.alt .arrows .slick-arrow:focus circle {
  stroke: #000;
}
.slider.alt .arrows .slick-arrow:hover path, .slider.alt .arrows .slick-arrow:focus path {
  stroke: #000;
}

form.primary label.label {
  color: #2B2626;
  background: #EBEBEB;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: absolute;
  left: 12px;
  top: 15%;
  transform: translateY(-50%);
  text-transform: uppercase;
  z-index: 2;
}
form.primary label.label:after {
  content: "";
  background-color: #EBEBEB;
  position: absolute;
  left: -6px;
  top: 0;
  width: calc(100% + 10px);
  height: 100%;
  z-index: -1;
}
form.primary label.label.textarea {
  top: 6%;
}
form.primary input,
form.primary textarea {
  color: #2B2626;
  width: 100%;
  font-size: 16px;
  background-color: transparent;
  height: 68px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
  resize: none;
  will-change: border-color;
  transition: border-color 0.3s ease-in-out;
}
form.primary input:focus, form.primary input.filled,
form.primary textarea:focus,
form.primary textarea.filled {
  border-color: #2B2626;
}
form.primary input::-moz-placeholder, form.primary textarea::-moz-placeholder {
  color: #9CA3AF;
  letter-spacing: 0.02em;
}
form.primary input::placeholder,
form.primary textarea::placeholder {
  color: #9CA3AF;
  letter-spacing: 0.02em;
}
@media (max-width: 567px) {
  form.primary input,
form.primary textarea {
    font-size: 14px;
  }
}
form.primary textarea {
  height: 174px;
  padding-top: 22px;
}
form.primary textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
}
form.primary textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
}
form.primary small.error {
  color: #F64F4F;
  display: flex;
  align-items: center;
  font-size: 16px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
}
form.primary small.error img, form.primary small.error svg {
  margin-left: 5px;
}
@media (max-width: 567px) {
  form.primary small.error {
    font-size: 14px;
    top: 70%;
    right: 10px;
  }
}
form.primary .input-wrap {
  position: relative;
  padding: 13px 0;
}
form.primary .input-wrap.invalid input, form.primary .input-wrap.invalid textarea {
  border-color: #F64F4F;
}

.input-file {
  width: 100%;
  height: 84px;
  cursor: pointer;
  position: relative;
  background: rgba(0, 0, 0, 0.07);
  border: 1px dashed rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.input-file .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
  pointer-events: none;
}
.input-file .text p {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
.input-file .text span {
  display: block;
  font-size: 14px;
  line-height: 22px;
}
.input-file .dz-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.input-file .dz-preview .dz-progress,
.input-file .dz-preview .dz-error-message {
  display: none;
}
.input-file .dz-preview .dz-details .dz-size {
  font-size: 12px;
}
.input-file .dz-preview .dz-details .dz-filename {
  font-size: 14px;
}
.input-file .dz-preview img {
  width: 30px;
  margin-right: 10px;
}
.input-file .dz-preview .dz-remove {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.input-file .dz-preview .dz-remove img {
  position: static;
  width: 20px;
  transform: none;
  padding: 0;
}

/* Vue Multiselect Input */
.checkbox {
  position: relative;
  padding: 8px 0;
}
.checkbox.hidden {
  display: none;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
}
.checkbox label {
  display: inline-flex !important;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  text-transform: none;
}
.checkbox label span.check {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.4);
  line-height: 1;
  flex-shrink: 0;
  margin-right: 8px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.05));
}
.checkbox label span.check i, .checkbox label span.check svg, .checkbox label span.check img {
  opacity: 0;
}
.checkbox label span.label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.checkbox label span.label a {
  text-decoration: underline;
}
.checkbox label input[type=checkbox]:checked + span.check,
.checkbox label input[type=radio]:checked + span.check {
  background: #2B2626;
  border-color: #2B2626;
}
.checkbox label input[type=checkbox]:checked + span.check i, .checkbox label input[type=checkbox]:checked + span.check svg, .checkbox label input[type=checkbox]:checked + span.check img,
.checkbox label input[type=radio]:checked + span.check i,
.checkbox label input[type=radio]:checked + span.check svg,
.checkbox label input[type=radio]:checked + span.check img {
  opacity: 1;
}
.checkbox.invalid {
  display: flex;
  flex-direction: column;
}
.checkbox.invalid small.error {
  display: flex;
  align-items: center;
  margin-top: 8px;
  position: static;
  transform: none;
}

.background-loader {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.background-loader.active {
  display: block;
}

.lds-roller {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.flash-message {
  position: fixed;
  right: 30px;
  bottom: 30px;
  padding: 20px 16px;
  border-style: solid;
  border-width: 1px;
  border-radius: 6px;
}
.flash-message.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.flash-message.warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.flash-message.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.flash-message.info {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

@-webkit-keyframes fill-line-1 {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100px;
  }
}

@keyframes fill-line-1 {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100px;
  }
}
@-webkit-keyframes fill-line-2 {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
  }
}
@keyframes fill-line-2 {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
  }
}
h1,
h2,
h3 {
  font-weight: 400;
}

.social-icons {
  position: relative;
  z-index: 10;
}
.social-icons a {
  display: inline-block;
  margin-right: 18px;
  text-decoration: none;
  will-change: transform;
  transition: 0.5s ease-in-out;
}
.social-icons a:last-child {
  margin-right: 0;
}
.social-icons a:hover, .social-icons a:focus {
  transform: scale(1.1);
}
.social-icons a svg path {
  transition: fill 0.5s ease-in-out;
}

section.page-header {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
section.page-header:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50.91%), linear-gradient(0deg, rgba(44, 44, 44, 0.34), rgba(44, 44, 44, 0.34));
  z-index: 5;
}
section.page-header .text-wrap {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
section.page-header .text-wrap .text {
  padding-left: 20px;
}
section.page-header .text-wrap h1 {
  font-size: 60px;
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.2;
}
section.page-header .text-wrap p {
  font-size: 16px;
  line-height: 27px;
  margin: 0;
}
section.page-header .actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 51px;
  z-index: 10;
}
section.page-header .actions .container {
  transition: max-width 0.5s ease-in-out;
  will-change: max-width;
}
section.page-header .actions.dark svg path {
  fill: #2B2626;
}
section.page-header .button-wrap {
  margin-top: 20px;
}
section.page-header .button-wrap a.button {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 75px;
  line-height: 75px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.29);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  text-decoration: none;
  padding: 0 57px;
}

section.team {
  padding-top: 114px;
  padding-bottom: 18px;
  background: #E5E5E5;
}
section.team .item {
  height: 100%;
  margin-bottom: 76px;
}
section.team .item figure {
  display: block;
  height: 304px;
  width: 100%;
  margin: 0 0 28px 0;
  overflow: hidden;
  position: relative;
}
section.team .item span.honor {
  color: #A5A5A5;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}
section.team .item h6 {
  color: #2B2626;
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 0;
  margin-bottom: 17px;
}
section.team .item p.desc {
  color: #2B2626;
  font-size: 14px;
  line-height: 23px;
  margin: 0;
  opacity: 0.6;
}
section.team p {
  color: #374151;
  font-size: 18px;
  line-height: 30px;
  margin: 20px 0 0;
}

section.full-screen-bg {
  overflow: hidden;
}
section.full-screen-bg a {
  display: block;
  height: 370px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  text-decoration: none;
}
section.full-screen-bg a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.86), rgba(44, 44, 44, 0.86));
}
section.full-screen-bg .content {
  color: #fff;
  display: flex;
  align-items: center;
  width: 70%;
  position: absolute;
  left: 30%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
section.full-screen-bg .content .title span {
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 5px;
  letter-spacing: 0.2em;
  display: block;
  text-transform: uppercase;
}
section.full-screen-bg .content .title p {
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  margin: 0;
}
section.full-screen-bg .content .action {
  width: 55%;
  margin-left: auto;
  position: relative;
}
section.full-screen-bg .content .action::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  z-index: 1;
}
section.full-screen-bg .content .action:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -190px;
  left: 190px;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  z-index: 1;
}
@media (min-width: 991px) {
  section.full-screen-bg .content .action:hover:before, section.full-screen-bg .content .action:focus:before {
    -webkit-animation: fill-line-1 500ms linear forwards;
            animation: fill-line-1 500ms linear forwards;
  }
  section.full-screen-bg .content .action:hover:after, section.full-screen-bg .content .action:focus:after {
    -webkit-animation: fill-line-2 1.5s linear 500ms forwards;
            animation: fill-line-2 1.5s linear 500ms forwards;
  }
}
section.full-screen-bg .content .action p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.11em;
  margin: 0;
  text-transform: uppercase;
  padding: 0 12px;
  position: relative;
  z-index: 5;
}
section.full-screen-bg .content .action p:before {
  content: "";
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 37px rgba(210, 166, 33, 0.2);
  z-index: 1;
}
section.full-screen-bg .content .action p:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -190px;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 37px rgba(210, 166, 33, 0.2);
  z-index: 1;
}
section.full-screen-bg.alt {
  margin-top: 40px;
  margin-bottom: 40px;
}
section.full-screen-bg.alt a:after {
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.4));
}
section.full-screen-bg.alt .content {
  width: 100%;
  left: 8%;
}
section.full-screen-bg.alt .content .title {
  max-width: 40%;
  margin-left: 0;
  margin-right: auto;
}
section.full-screen-bg.alt .content .title span {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
section.full-screen-bg.alt .content .title p {
  font-size: 32px;
  font-weight: 400;
  line-height: 35px;
}
section.full-screen-bg.alt .content .action {
  width: 40%;
}
section.full-screen-bg.alt .content .action p:after {
  right: -165px;
}
section.full-screen-bg.alt .content .action:after {
  left: 165px;
}

section.contact {
  background: #EBEBEB;
  color: #2B2626;
  padding-top: 173px;
  padding-bottom: 127px;
}
section.contact .title {
  margin-bottom: 45px;
}
section.contact .title h1 {
  font-size: 36px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 15px;
}
section.contact .title p {
  line-height: 26px;
  margin: 0;
}
section.contact .item {
  margin-bottom: 41px;
}
section.contact .item h6 {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 13px;
  margin-bottom: 14px;
}
section.contact .item p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
section.contact .item p a {
  text-decoration: none;
}
section.contact .item p a:hover {
  text-decoration: underline;
}
section.contact .item a.special {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  margin-top: 25px;
  padding-bottom: 15px;
}
section.contact .item a.special:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 37px rgba(210, 166, 33, 0.2);
}
section.contact .item a.special img, section.contact .item a.special svg {
  margin-right: 8px;
}
section.contact .cta {
  text-align: center;
  margin-top: 69px;
}
section.contact button[type=submit] {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-bottom: 23px;
  position: relative;
}
section.contact button[type=submit]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 37px rgba(210, 166, 33, 0.2);
}

section.map {
  display: flex;
  width: 100%;
  overflow: hidden;
}
section.map a {
  flex-basis: 50%;
  display: block;
}
section.map img {
  display: block;
  width: 100%;
  height: 100%;
}

section.text {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 0;
}
section.text h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-top: 0;
}
section.text h2 {
  color: #111827;
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
  margin-top: 0;
  margin-bottom: 27px;
}
section.text h3 {
  color: #000;
  font-size: 28px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center;
}
section.text h4 {
  font-weight: 400;
  margin-top: 0;
}
section.text p:not(.circles__item p) {
  color: #6B7280;
  font-size: 16px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 40px;
}
section.text div:not(.row):not(.column):not(.container):not(.circles div) {
  color: #374151;
  font-size: 18px;
  line-height: 30px;
}
section.text div:not(.row):not(.column):not(.container):not(.circles div):not(:has(.breadcrumbs)) {
  margin-bottom: 40px;
}
section.text img {
  width: calc(100% + 200px);
  margin: 89px -100px;
  display: block;
  height: auto;
}
section.text .tour figure {
  width: calc(100% + 200px);
  margin: 89px -100px;
  position: relative;
}
section.text .tour figure:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
section.text .tour figure img {
  width: 100%;
  margin: 0;
}
section.text .tour figure .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
section.text .tour figure .text img {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto 10px;
}
section.text .tour figure .text p {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 27px;
  margin: 0;
}
section.text .breadcrumbs {
  margin-bottom: 0;
}
@media (min-width: 1537px) {
  section.text img {
    width: calc(100% + 600px);
    margin: 89px -300px;
  }
  section.text .tour figure {
    width: calc(100% + 600px);
    margin: 89px -300px;
  }
  section.text .tour figure:after {
    width: 100%;
  }
  section.text .tour figure img {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 1199px) {
  section.text iframe {
    width: 100%;
  }
}

section.author {
  background-color: #fff;
  padding-bottom: 40px;
  padding-top: 40px;
}
section.author .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.author .item {
  max-width: 200px;
  text-align: center;
}
section.author .item figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 142px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin: 0;
}
section.author .item figure img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.author .item span {
  color: #A5A5A5;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  display: block;
  margin-top: 31px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
section.author .item h6 {
  color: #2B2626;
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 5px;
  margin-bottom: 0;
}

section.projects {
  background-color: #1D1A1A;
  padding-top: 80px;
  min-height: 100vh;
}
section.projects .projects-title {
  margin-bottom: 40px;
}
section.projects .projects-title h1 {
  text-align: center;
  margin-top: 0;
}
section.projects .projects-title h1,
section.projects .projects-title p {
  color: #fff;
}
section.projects .projects-title p {
  font-size: 16px;
  line-height: 24px;
}
section.projects .project {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 171px;
}
section.projects .project a {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 10;
}
section.projects .project a:hover figure:after, section.projects .project a:focus figure:after {
  transform: scale(0.95);
}
section.projects .project a:hover img, section.projects .project a:focus img {
  transform: scale(0.95);
}
section.projects .project figure {
  margin: 0;
  position: relative;
  background-color: #1D1A1A;
}
section.projects .project figure figcaption {
  color: #fff;
  font-size: 70px;
  font-weight: 400;
  position: absolute;
  left: 42px;
  bottom: -35px;
  line-height: 1.2;
  z-index: 2;
}
section.projects .project figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.4));
  will-change: transform;
  transition: transform 0.5s ease-in-out;
}
section.projects .project img {
  display: block;
  width: 100%;
  will-change: transform;
  transition: transform 0.5s ease-in-out;
}
section.projects .categories {
  width: 100%;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.projects .categories li {
  margin-bottom: 16px;
}
section.projects .categories li:last-child {
  margin-bottom: 0;
}
section.projects .categories a {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}
section.projects .categories a:hover, section.projects .categories a:focus {
  color: #1D1A1A;
  text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
section.projects .social-icons {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 51px;
}

section.blog {
  background: #EBEBEB;
  padding-top: 173px;
}
section.blog .title {
  margin-bottom: 72px;
}
section.blog .title h1 {
  color: #2B2626;
  font-size: 36px;
  font-weight: 400;
  line-height: 43px;
  margin-top: 0;
  margin-bottom: 15px;
}
section.blog .title p {
  color: #2B2626;
  margin: 0;
}
section.blog .blog-post {
  margin-bottom: 136px;
}
section.blog .blog-post a {
  text-decoration: none;
}
section.blog .blog-post figure {
  margin: 0;
}
section.blog .blog-post figure img {
  width: 100%;
  display: block;
}
section.blog .blog-post time {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  color: #374151;
  opacity: 0.5;
  letter-spacing: 0.2em;
  margin-bottom: 13px;
}
section.blog .blog-post h4 {
  color: #2B2626;
  font-size: 36px;
  font-weight: 400;
  line-height: 43px;
  margin-top: 0;
  margin-bottom: 21px;
}
section.blog .blog-post p {
  color: #2B2626;
  line-height: 26px;
  margin: 0;
}
section.blog .overlay {
  position: fixed;
  width: 100%;
  height: 25%;
  background: linear-gradient(180deg, rgba(235, 235, 235, 0) 0%, #EBEBEB 100%);
  left: 0;
  bottom: 0;
}

section.single-image {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.single-image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

section.image-grid {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.image-grid .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 400px);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
section.image-grid .grid-item {
  position: relative;
}
section.image-grid .grid-item.has-border {
  border: 1px solid #E9E9E9;
}
section.image-grid .grid-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.4));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
section.image-grid .grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
section.image-grid .grid-item:nth-child(1) {
  grid-area: 1/1/2/3;
}
section.image-grid .grid-item:nth-child(2) {
  grid-area: 1/3/2/4;
}
section.image-grid .grid-item:nth-child(3) {
  grid-area: 2/1/3/2;
}
section.image-grid .grid-item:nth-child(4) {
  grid-area: 2/2/3/4;
}
section.image-grid .grid-item:hover:before, section.image-grid .grid-item:focus:before {
  opacity: 1;
}

section.items {
  background-color: #F7F7F7;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
section.items h3 {
  color: #000;
  font-size: 36px;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 0;
}
section.items p:not(a p) {
  color: #6B7280;
  line-height: 26px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 35px;
}
section.items a {
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
}
section.items a picture {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E9E9E9;
  margin: 0 auto 20px;
  height: 392px;
  overflow: hidden;
  position: relative;
}
section.items a picture:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgba(44, 44, 44, 0.2));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
section.items a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.items a picture:hover:before, section.items a picture:focus:before {
  opacity: 1;
}
section.items a .name,
section.items a h4 {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-top: 0;
}
section.items a p {
  color: #6B7280;
  font-size: 14px;
  line-height: 23px;
  margin: 0;
}

section.zig-zag {
  padding: 165px 0 40px 0;
}
section.zig-zag .column:first-child {
  margin-top: -125px;
}
section.zig-zag picture img {
  width: 100%;
}

section.related-items {
  background-color: #F7F7F7;
  padding: 50px 0;
}
section.related-items .title {
  text-align: center;
  max-width: 490px;
  margin: 0 auto 50px;
}
section.related-items .title h2 {
  color: #000;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 0;
}
section.related-items .title p {
  color: #6B7280;
  line-height: 26px;
}
section.related-items a {
  display: block;
  text-decoration: none;
  margin-bottom: 30px;
}
section.related-items a picture {
  width: 100%;
  display: block;
  height: 392px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
section.related-items a picture:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgba(44, 44, 44, 0.2));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
section.related-items a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.related-items a picture:hover:after, section.related-items a picture:focus:after {
  opacity: 1;
}
section.related-items a .name {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}
section.related-items a p {
  color: #6B7280;
  font-size: 14px;
  line-height: 23px;
  margin: 0;
}

.page-header .actions .social-icons {
  top: -15px;
}

#scrollTarget .container .row iframe {
  width: 100%;
}

.fancybox__footer {
  display: none !important;
}

.circles-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 567px) {
  .circles-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 66px;
}
.circles__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 201px;
  height: 201px;
  border: 1px solid #E9E9E9;
  border-radius: 50%;
}
.circles__item p {
  margin: 0;
  line-height: 1;
}
.circles__item p strong {
  color: #000;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
}
.circles__item p small {
  color: #374151;
  font-size: 14px;
  line-height: 17px;
}

.content-navigation {
  padding: 40px 0;
}
.content-navigation nav {
  border-radius: 4px;
  padding: 25px 30px;
}
.content-navigation nav:has(table) {
  padding: 0;
}
.content-navigation nav table {
  width: 100% !important;
  margin: 0;
}
.content-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-navigation li {
  margin-bottom: 16px;
  position: relative;
}
.content-navigation li:last-child {
  margin-bottom: 0;
}
.content-navigation a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.5s ease-in-out;
  display: inline-block;
  line-height: 26px;
}
.content-navigation a:hover {
  color: #6B7280;
}
.content-navigation > nav > ul > li > a {
  font-size: 16px;
  font-weight: 500;
}
.content-navigation ul ul {
  margin-top: 12px;
  padding-left: 20px;
}
.content-navigation ul ul li {
  margin-bottom: 12px;
}
.content-navigation ul ul li:before {
  content: "";
  position: absolute;
  left: -12px;
  top: 12px;
  width: 4px;
  height: 4px;
  background-color: #E9E9E9;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
a:hover + .content-navigation ul ul li:before, a:hover ~ .content-navigation ul ul li:before, .content-navigation ul ul li:hover:before {
  background-color: #6B7280;
  transform: scale(1.2);
}
.content-navigation ul ul a {
  font-size: 15px;
  color: #6B7280;
}
.content-navigation ul ul ul {
  margin-top: 10px;
  padding-left: 15px;
}
.content-navigation ul ul ul li {
  margin-bottom: 10px;
}
.content-navigation ul ul ul li:before {
  left: -10px;
  top: 11px;
  width: 3px;
  height: 3px;
  background-color: #E9E9E9;
}
.content-navigation ul ul ul a {
  font-size: 14px;
}

@media (max-width: 1535px) {
  section.image-grid .grid-wrapper {
    grid-template-rows: repeat(2, 300px);
  }
}
@media (max-width: 1199px) {
  header.main-header.scroll-dark .container {
    max-width: 100%;
  }
  section.page-header .actions.dark .container {
    max-width: 100%;
  }
  section.team .item figure {
    height: auto;
  }
  section.team .item figure img {
    width: 100%;
  }
  section.projects .project figure figcaption {
    font-size: 44px;
    bottom: -25px;
  }
  section.blog .blog-post time {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1;
  }
  section.blog .blog-post h4 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  section.blog .blog-post p {
    font-size: 14px;
  }
  .circles {
    flex-direction: column;
  }
  section.image-grid .grid-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: repeat(2, 200px);
  }
}
@media (max-width: 991px) {
  header.main-header,
section.page-header .actions {
    position: absolute;
  }
  h1 {
    font-size: 55px;
    line-height: 48px;
  }
  .main-menu .menu-wrap {
    margin-left: 0;
  }
  .main-menu ul.main-list {
    margin-bottom: 20px;
  }
  .main-menu ul.main-list a {
    font-size: 50px;
    line-height: 44px;
  }
  .main-menu ul.secondary-list a {
    font-size: 16px;
  }
  .slider .slide .text p {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .slider .arrows {
    display: none;
  }
  section.text img {
    width: 100%;
    margin: 40px 0;
  }
  section.text .tour figure {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  section.text .tour figure .text {
    width: 100%;
    text-align: center;
  }
  section.text .tour figure .text img {
    width: 35px;
  }
  section.text .tour figure .text p {
    font-size: 16px;
    line-height: 1;
  }
  section.team p {
    margin-top: -40px;
    margin-bottom: 40px;
    text-align: center;
  }
  section.team .item {
    text-align: center;
  }
  section.team .item figure img {
    max-width: 60%;
    margin: auto;
  }
  section.full-screen-bg .content {
    left: 15%;
  }
  section.full-screen-bg .action {
    margin-left: auto;
    padding-left: 100px;
  }
  section.full-screen-bg.alt .container {
    max-width: 100%;
    padding: 0;
  }
  section.contact .cta {
    margin-bottom: 60px;
  }
  section.contact .item {
    text-align: center;
  }
  section.contact .item a.special {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  section.projects {
    padding-top: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  section.projects .projects-title {
    order: 1;
  }
  section.projects .social-icons {
    display: none;
  }
  section.projects .categories {
    position: static;
    transform: none;
    margin-bottom: 35px;
    order: 2;
  }
  section.projects .categories ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  section.projects .categories a {
    font-size: 14px;
  }
  section.projects .container {
    order: 3;
  }
  section.blog .blog-post {
    margin-bottom: 50px;
  }
  section.blog .blog-post .row.md-swap .column:first-of-type {
    order: 2;
  }
  section.blog .blog-post .row.md-swap .column:last-of-type {
    order: 1;
  }
  section.blog .blog-post figure {
    margin-top: 25px;
  }
  section.zig-zag {
    padding-top: 40px;
  }
  section.zig-zag .column:first-child {
    margin-top: 0;
    margin-bottom: 15px;
  }
  section.related-items a picture {
    height: auto;
  }
  section.related-items a picture img {
    height: auto;
  }
  section.image-grid .container {
    max-width: 100%;
  }
  section.image-grid .grid-wrapper {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    grid-template-rows: repeat(2, 300px);
  }
}
@media (max-width: 767px) {
  section.page-header .text-wrap .text {
    padding-left: 0;
  }
  .slider .slide .text-wrap .text {
    padding-left: 0;
  }
  .slider .actions .slider-pagination .slick-dots {
    width: 250px;
  }
  section.full-screen-bg a {
    height: 270px;
  }
  section.full-screen-bg.alt .content,
section.full-screen-bg .content {
    max-width: 540px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: initial;
    right: initial;
  }
  section.full-screen-bg.alt .content .title,
section.full-screen-bg .content .title {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  section.full-screen-bg.alt .content .title span,
section.full-screen-bg .content .title span {
    font-size: 12px;
  }
  section.full-screen-bg.alt .content .title p,
section.full-screen-bg .content .title p {
    font-size: 24px;
    line-height: 28px;
  }
  section.full-screen-bg.alt .content .action,
section.full-screen-bg .content .action {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  section.full-screen-bg.alt .content .action:before, section.full-screen-bg.alt .content .action:after,
section.full-screen-bg .content .action:before,
section.full-screen-bg .content .action:after {
    display: none;
  }
  section.full-screen-bg.alt .content .action p:before, section.full-screen-bg.alt .content .action p:after,
section.full-screen-bg .content .action p:before,
section.full-screen-bg .content .action p:after {
    display: none;
  }
  section.text h2 {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 20px;
  }
  section.text p:not(.circles p) {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  section.projects .project {
    height: auto;
    margin-bottom: 80px;
  }
  section.projects .project figure figcaption {
    font-size: 26px;
    bottom: -12.5px;
    left: 0;
  }
  section.map {
    flex-direction: column;
  }
  section.image-grid .grid-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }
  .circles {
    gap: 15px;
  }
  .circles__item {
    width: 160px;
    height: 160px;
    padding: 10px;
  }
  .circles__item p strong {
    font-size: 20px;
    line-height: 1.2;
  }
  section.image-grid .grid-wrapper {
    grid-template-rows: repeat(2, 200px);
  }
}
@media (max-width: 567px) {
  h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  .main-menu ul.main-list a {
    font-size: 26px;
    line-height: 20px;
  }
  .main-menu ul.secondary-list {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-menu ul.secondary-list li {
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .main-menu ul.secondary-list li:last-child {
    margin-bottom: 0;
  }
  .main-menu ul.secondary-list a {
    font-size: 16px;
  }
  .slider {
    margin-bottom: 20px;
  }
  .slider .slide .text p {
    font-size: 14px;
    line-height: 1.2;
  }
  .slider .slide .text-wrap h1,
.slider .slide .text-wrap h2,
.slider .slide .text-wrap h3 {
    font-size: 32px;
  }
  .slider .actions .flex-wrap {
    flex-direction: column;
  }
  .slider .actions .social-icons {
    margin-bottom: 20px;
  }
  .slider.alt {
    margin: 20px 0;
  }
  .slider.alt .slide {
    height: auto;
    padding: 150px 0;
  }
  .slider.alt .actions {
    bottom: 10px;
  }
  .slider.alt .actions .slider-pagination .slick-dots {
    min-width: unset;
    max-width: 100%;
  }
  section.page-header {
    margin-bottom: 20px;
  }
  section.page-header .text h1 {
    font-size: 32px;
    margin-bottom: 14px;
  }
  section.page-header .text p {
    font-size: 14px;
  }
  section.page-header .button-wrap a.button {
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    padding: 0 20px;
  }
  section.team p {
    font-size: 16px;
  }
  section.team .item figure img {
    max-width: 100%;
  }
  section.contact {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  section.contact .title h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  section.blog {
    padding-top: 100px;
  }
  section.blog .title {
    margin-bottom: 40px;
  }
  section.blog .title h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  section.image-grid {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  section.image-grid .grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  section.image-grid .grid-wrapper .item img {
    width: 100%;
    max-width: 100%;
  }
  section.single-image {
    height: 300px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  section.single-image img {
    height: 100%;
  }
  section.text {
    padding-top: 20px;
  }
  section.text h1 {
    font-size: 32px;
  }
  section.items {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  section.items h2,
section.items h3 {
    font-size: 26px;
  }
  section.zig-zag {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  section.author {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  section.related-items {
    padding: 20px 0;
  }
  section.related-items .title h2 {
    font-size: 32px;
  }
}