@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/*======================= CSS Reset ===========================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, section, main, footer, header, figure, aside, input, textarea, i, mark, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: top;
  background: transparent;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  overflow: hidden;
}

ol, ul {
  list-style: none;
}

:focus {
  outline: 0;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

table, table td tr {
  border: none;
  border-collapse: collapse;
}

button, a, input, textarea, select {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@font-face {
  font-family: "Petrona-Light";
  src: url("/fonts/Petrona-Light.ttf");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Petrona-Italic";
  src: url("/fonts/Petrona-Italic.ttf");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Petrona-Regular";
  src: url("/fonts/Petrona-Regular.ttf");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Petrona-Medium";
  src: url("/fonts/Petrona-Medium.ttf");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Petrona-Bold";
  src: url("/fonts/Petrona-Bold.ttf");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
/* ========== Typography styles ========== */
a, button {
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button {
  font-size: 16px;
  font-family: "Petrona-Medium";
  background-color: #FFD700;
  color: #000;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.button:hover {
  background-color: #e1be00;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/*======================= Grid ===========================*/
.row {
  width: auto;
  display: block;
  margin: 0 -5px;
  position: relative;
  clear: both;
}
.row:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
@media only screen and (max-width: 767px) {
  .row {
    margin: 0;
  }
}
.row > .column {
  padding: 0 5px;
  float: left;
}
.row > .column.pull-right {
  float: right;
}
@media only screen and (max-width: 1279px) {
  .row > .column.tablet-hide {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .row > .column.sm-tablet-hide {
    display: none;
  }
}
.row > .column.masonry-column {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .row > .column {
    padding: 5px 0;
  }
}
.row > .column.__12 {
  width: 100%;
}
.row > .column.__11 {
  width: 91.666666%;
}
.row > .column.__10 {
  width: 83.333333%;
}
.row > .column.__9 {
  width: 75%;
}
.row > .column.__8 {
  width: 66.666666%;
}
.row > .column.__7 {
  width: 58.333333%;
}
.row > .column.__6 {
  width: 50%;
}
.row > .column.__5 {
  width: 41.666666%;
}
.row > .column.__41 {
  width: 37%;
}
.row > .column.__4 {
  width: 33.333333%;
}
.row > .column.__3 {
  width: 25%;
}
.row > .column.__2 {
  width: 16.666666%;
}
.row > .column.__1 {
  width: 8.333333%;
}
@media only screen and (max-width: 1440px) {
  .row > .column.llt__12 {
    width: 100%;
  }
  .row > .column.llt__8 {
    width: 66.666666%;
  }
  .row > .column.llt__4 {
    width: 33.333333%;
  }
}
@media only screen and (max-width: 1279px) {
  .row > .column.lt__6 {
    width: 100%;
  }
  .row > .column.lt__5 {
    width: 83.333333%;
  }
  .row > .column.lt__4 {
    width: 66.666666%;
  }
  .row > .column.lt__3 {
    width: 50%;
  }
  .row > .column.lt__2 {
    width: 33.333333%;
  }
  .row > .column.lt__1 {
    width: 16.666666%;
  }
}
@media only screen and (max-width: 1023px) {
  .row > .column.st__6 {
    width: 100%;
  }
  .row > .column.st__5 {
    width: 83.333333%;
  }
  .row > .column.st__4 {
    width: 66.666666%;
  }
  .row > .column.st__3 {
    width: 50%;
  }
  .row > .column.st__2 {
    width: 33.333333%;
  }
  .row > .column.st__1 {
    width: 16.666666%;
  }
  .row > .column.st__hide {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .row > .column.m__3, .row > .column.__12, .row > .column.__11, .row > .column.__10, .row > .column.__9, .row > .column.__8, .row > .column.__7, .row > .column.__6, .row > .column.__5, .row > .column.__4, .row > .column.__3, .row > .column.__2, .row > .column.__1, .row > .column.lt__6, .row > .column.lt__5, .row > .column.lt__4, .row > .column.lt__3, .row > .column.lt__2, .row > .column.lt__1, .row > .column.st__6, .row > .column.st__5, .row > .column.st__4, .row > .column.st__3, .row > .column.st__2, .row > .column.st__1 {
    width: 100%;
  }
  .row > .column.m__1 {
    width: 33.333333%;
    padding: 5px;
  }
  .row > .column.m__2 {
    width: 66.333333%;
    padding: 5px;
  }
  .row > .column.no-padding {
    padding: 0 !important;
  }
}
.row.block-row.__1-block > .column {
  width: 100%;
}
.row.block-row.__2-block > .column {
  width: 50%;
}
.row.block-row.__3-block > .column {
  width: 33.3333333%;
}
.row.block-row.__4-block > .column {
  width: 25%;
}
.row.block-row.__5-block > .column {
  width: 20%;
}
.row.block-row.__6-block > .column {
  width: 16.666666666%;
}
.row.block-row.__7-block > .column {
  width: 14.285714%;
}
.row.block-row.__8-block > .column {
  width: 12.5%;
}
@media only screen and (max-width: 1279px) {
  .row.block-row.lt__1-block > .column {
    width: 100%;
  }
  .row.block-row.lt__2-block > .column {
    width: 50%;
  }
  .row.block-row.lt__3-block > .column {
    width: 33.3333333%;
  }
  .row.block-row.lt__4-block > .column {
    width: 25%;
  }
  .row.block-row.lt__5-block > .column {
    width: 20%;
  }
  .row.block-row.lt__6-block > .column {
    width: 16.666666666%;
  }
}
@media only screen and (max-width: 1023px) {
  .row.block-row.st__1-block > .column {
    width: 100%;
  }
  .row.block-row.st__2-block > .column {
    width: 50%;
  }
  .row.block-row.st__3-block > .column {
    width: 33.3333333%;
  }
  .row.block-row.st__4-block > .column {
    width: 25%;
  }
  .row.block-row.st__5-block > .column {
    width: 20%;
  }
  .row.block-row.st__6-block > .column {
    width: 16.666666666%;
  }
  .row.block-row > .column.st__6 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .row.block-row.__1-block > .column, .row.block-row.__2-block > .column, .row.block-row.__3-block > .column, .row.block-row.__4-block > .column, .row.block-row.__5-block > .column, .row.block-row.__6-block > .column, .row.block-row.__7-block > .column, .row.block-row.__8-block > .column {
    width: 100%;
  }
  .row.block-row.m__1-block > .column {
    width: 100%;
  }
  .row.block-row.m__2-block > .column {
    width: 50%;
    padding: 0 10px;
  }
  .row.block-row.m__3-block > .column {
    width: 33.3333333%;
  }
  .row.block-row.m__4-block > .column {
    width: 25%;
  }
}
.row.__0 {
  margin: 0;
}
.row.__0 > .column {
  padding: 0;
}
.row.__5 {
  margin: 0 -5px;
}
.row.__5 > .column {
  padding: 0 5px;
}
.row.__60 {
  margin: 0 -30px;
}
.row.__60 > .column {
  padding: 0 30px;
}
@media only screen and (max-width: 1279px) {
  .row.__60 {
    margin: 0 -10px;
  }
  .row.__60 > .column {
    padding: 0 10px;
  }
}
.row.__30 {
  margin: 0 -15px;
}
.row.__30 > .column {
  padding: 0 15px;
}
@media only screen and (max-width: 1279px) {
  .row.__30 {
    margin: 0 -5px;
  }
  .row.__30 > .column {
    padding: 0 5px;
  }
}
.row.__40 {
  margin: 0 -20px;
}
.row.__40 > .column {
  padding: 0 20px;
}
@media only screen and (max-width: 1279px) {
  .row.__40 {
    margin: 0 -5px;
  }
  .row.__40 > .column {
    padding: 0 5px;
  }
}
.row.__20 {
  margin: 0 -10px;
}
.row.__20 > .column {
  padding: 0 10px;
}
.row.__inline-row {
  text-align: center;
}
.row.__inline-row > .column {
  display: inline-block;
  float: none;
  margin: 0 -2px 10px -2px;
}
.row.__masonry {
  margin: 0 -10px;
}
.row.__masonry > .column {
  margin-bottom: 20px;
  padding: 0 10px;
}
.row.__centered-row {
  text-align: center;
}
.row.__centered-row > .column {
  display: inline-block;
  float: none;
  margin: 0;
}
@media only screen and (max-width: 1279px) {
  .row.__centered-row-small {
    text-align: center;
  }
}
@media only screen and (max-width: 1279px) {
  .row.__centered-row-small > .column {
    display: inline-block;
    float: none;
    margin: 0;
  }
}

.field {
  margin-bottom: 25px;
  position: relative;
}
.field input {
  width: 100%;
  display: block;
  padding: 0 15px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  background-color: #6D7874;
  border: 1px solid #FFD700;
  font-size: 16px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.field input[type=file] {
  display: none;
}
.field input::placeholder {
  color: #fff;
}
.field textarea {
  width: 100%;
  color: #fff;
  height: 250px;
  padding: 15px;
  background-color: #6D7874;
  border: 1px solid #FFD700;
  font-size: 16px;
  resize: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.field textarea:hover {
  background-color: #6D7874;
}
.field textarea:focus {
  background-color: #6D7874;
}
.field textarea::placeholder {
  color: #fff;
}
.field label {
  font-family: "Petrona-Regular";
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 10px;
  padding-left: 20px;
  display: inline-block;
  color: #fff;
}
.field .warning-text {
  position: absolute;
  color: darkred;
  font-size: 12px;
  font-family: "Petrona-Regular";
  font-style: italic;
  bottom: -17px;
  left: 14px;
  display: none;
}
.field .warning-text.warning-text-area {
  bottom: 3px;
}
@media only screen and (max-width: 1279px) {
  .field .warning-text {
    font-size: 9px;
    bottom: -12px;
  }
}
.field .warning {
  border: 1px solid darkred;
}

.filed-file {
  width: 100%;
  display: block;
  padding: 0;
  color: #707070;
  height: 50px;
  line-height: 50px;
  background-color: #EBEBEB;
  border: 1px dashed #707070;
  font-size: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.filed-file label {
  padding: 0 15px;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
.filed-file label span {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
@media only screen and (max-width: 767px) {
  .filed-file {
    background-color: #fff;
    height: 40px;
    line-height: 40px;
  }
  .filed-file label {
    height: 40px;
    line-height: 40px;
    font-size: 9px !important;
    padding: 0 5px 0 15px;
  }
  .filed-file label span {
    height: 40px;
    line-height: 40px;
    font-size: 10px !important;
  }
}
@media only screen and (max-width: 359px) {
  .filed-file label {
    font-size: 9px !important;
  }
  .filed-file label span {
    font-size: 8px !important;
  }
}

.checkbox {
  padding: 0 0 10px 0;
  margin-left: 4px;
  display: inline-block;
}
.checkbox:last-child {
  padding: 0;
}
.checkbox label {
  font-family: "Petrona-Regular";
  font-size: 15px;
  color: #757575;
  display: inline-block;
  padding: 0 0 0 35px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  margin-top: 5px;
  margin-right: 20px;
  line-height: 16px;
}
.checkbox label:before {
  width: 23px;
  height: 23px;
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  border: 1px solid #d8d8d8;
  background: #fff;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
}
.checkbox label:after {
  width: 14px;
  height: 7px;
  content: "";
  position: absolute;
  top: 0px;
  left: 5px;
  border: 3px solid transparent;
  border-top: none;
  border-right: none;
  background: transparent;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.checkbox label:hover:before {
  border: 1px solid #707070;
}
.checkbox label span {
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 12px;
  color: #b8bcca;
  text-align: right;
}
.checkbox input {
  visibility: hidden;
  position: absolute;
}
.checkbox input:checked + label {
  color: #757575 !important;
}
.checkbox input:checked + label:before {
  border: 1px solid #c9a84c;
  background: #c9a84c;
}
.checkbox input:checked + label:after {
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-top: 0 solid transparent;
  border-right: 0 solid transparent;
}
.checkbox.checkbox-right label {
  padding: 0 60px 0 15px;
}
.checkbox.checkbox-right label:before {
  top: -10px;
  left: initial;
  right: 0;
}
.checkbox.checkbox-right label:after {
  top: 1px;
  left: initial;
  right: 10px;
}
.checkbox.checkbox-small label {
  padding: 0 0 0 45px;
}
.checkbox.checkbox-small label:before {
  width: 26px;
  height: 26px;
  margin-top: 5px;
  background: #fff;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
}
.checkbox.checkbox-small label:after {
  width: 16px;
  height: 10px;
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  border: 3px solid transparent;
  background: transparent;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.checkbox-holder {
  margin-top: 30px;
}
.checkbox-holder .checkbox {
  display: inline-block;
}
.checkbox-holder .checkbox:last-child {
  margin-left: 40px;
}
@media only screen and (max-width: 767px) {
  .checkbox-holder .checkbox {
    display: block;
  }
  .checkbox-holder .checkbox:last-child {
    margin-left: 0;
  }
}

.radio-set {
  display: inline-block;
  line-height: inherit;
  margin: 0;
  padding: 0;
  margin-right: 15px;
}
.radio-set label {
  font-family: "Petrona-Regular";
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.radio-set label span {
  margin-left: 30px;
  line-height: 20px;
  display: block;
  text-align: left;
  font-size: 16px;
  color: #000;
}
.radio-set label:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  text-align: center;
  padding: 0;
  margin: 0;
  background-color: transparent;
  margin-left: -3px;
  border: 2px solid #000;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radio-set label:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radio-set input {
  visibility: hidden;
  height: 0;
}
.radio-set input:checked + label:after {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #000;
  border: 2px solid #000;
  color: #000;
}
.radio-set input:checked + label:hover:after {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #000;
  border: 2px solid #000;
  color: #000;
}

.footer-wrap p {
  text-align: center;
  font-family: "Petrona-Medium";
  font-size: 15px;
  line-height: 1.2;
  font-style: italic;
  color: #616161;
}
@media only screen and (max-width: 767px) {
  .footer-wrap p {
    padding: 0 20px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  position: relative;
  font-family: "Petrona-Regular";
  background-color: #fff;
  color: #000;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.dark-body {
  background-color: #111;
  color: #fff;
}

.inner {
  width: 1256px;
  max-width: 94%;
  margin: 0 auto;
  position: relative;
}
.inner:after {
  content: "";
  display: table;
  clear: both;
}

.lang-wrap {
  font-family: "Petrona-Medium";
  font-size: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 100;
}
.lang-wrap a {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.lang-wrap a:hover {
  color: #c9a84c;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: "Petrona-Bold";
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.site-logo em {
  font-family: "Petrona-Italic";
  font-style: italic;
  color: #c9a84c;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__bg {
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero__drone {
  position: absolute;
  bottom: 4%;
  right: 8%;
  width: clamp(220px, 24vw, 420px);
  z-index: 2;
  will-change: transform;
  pointer-events: none;
}
.hero__drone img {
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}
@media only screen and (max-width: 767px) {
  .hero__drone {
    width: 50%;
    right: 2%;
    bottom: 0;
    max-width: 240px;
  }
}
.hero__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50vh;
  will-change: transform;
  z-index: 3;
  pointer-events: none;
}
.hero__mountains svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .hero__mountains {
    height: 40vh;
  }
}
@media only screen and (max-width: 767px) {
  .hero__mountains {
    height: 25vh;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 5;
  padding: 0 7%;
  max-width: 640px;
}
@media only screen and (max-width: 1023px) {
  .hero__content {
    padding: 0 5%;
    margin-top: -15vh;
  }
}
@media only screen and (max-width: 767px) {
  .hero__content {
    padding: 0 5%;
    margin-top: -30vh;
  }
}
.hero__label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  font-family: "Petrona-Bold";
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .hero__label {
    font-size: 9px;
    letter-spacing: 2px;
  }
}
.hero__title {
  font-family: "Petrona-Bold";
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .hero__title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__title em {
  font-family: "Petrona-Bold";
  font-style: italic;
  font-size: 52px;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .hero__title em {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__title em {
    font-size: 30px;
  }
}
.hero__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
  font-family: "Petrona-Bold";
}
.hero__btn {
  display: inline-block;
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  font-family: "Petrona-Medium";
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.hero__btn:hover {
  background: #c9a84c;
  color: #111;
}

.collections {
  background: #111;
  padding: 80px 0 90px;
}
@media only screen and (max-width: 767px) {
  .collections {
    padding: 60px 0;
  }
}
.collections__title {
  font-family: "Petrona-Medium";
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 300;
}
.collections__divider {
  width: 36px;
  height: 2px;
  background: #c9a84c;
  margin: 0 auto 48px;
}
.collections__grid .column {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  .collections__grid .column {
    width: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .collections__grid .column {
    width: 100%;
    max-width: 100%;
  }
}

.col-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 240px;
  text-decoration: none;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  .col-card {
    height: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .col-card {
    height: auto;
    aspect-ratio: 16/10;
  }
}
.col-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  .col-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.col-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
}
.col-card__label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: #fff;
  font-family: "Petrona-Medium";
  font-size: 16px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .col-card__label {
    top: 18px;
    left: 20px;
    bottom: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
}
.col-card__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 767px) {
  .col-card__actions {
    transform: translateY(0);
  }
}
.col-card__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  color: #fff;
  font-family: "Petrona-Medium";
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: 0.22s;
  -moz-transition: 0.22s;
  -ms-transition: 0.22s;
  -o-transition: 0.22s;
  transition: 0.22s;
}
.col-card__btn i {
  font-size: 12px;
}
.col-card__btn:first-child {
  border-right: none;
  border-radius: 3px 0 0 3px;
}
.col-card__btn:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 3px 3px 0;
}
.col-card__btn:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #fff;
}
.col-card__btn:hover i {
  color: #fff;
}
.col-card:hover img {
  transform: scale(1.06);
}
.col-card:hover .col-card__actions {
  transform: translateY(0);
}
.col-card:hover .col-card__label {
  opacity: 0;
  transform: translateY(6px);
}
@media only screen and (max-width: 767px) {
  .col-card:hover .col-card__label {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bcIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.team-section {
  background: #111;
  padding: 80px 0 90px;
}
.team-section__grid .column {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .team-section {
    padding: 40px 0;
  }
}

.team-card {
  text-align: center;
  padding: 10px;
}
.team-card__img-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: visible;
  background: transparent;
  position: relative;
}
.team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  mix-blend-mode: luminosity;
  filter: grayscale(20%);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.team-card__bubble {
  position: absolute;
  top: -60px;
  right: -80px;
  background: #fff;
  color: #111;
  font-family: "Petrona-Italic";
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.3px;
  padding: 10px 16px;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(15px);
  will-change: transform, opacity;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}
.team-card__bubble .bc {
  display: inline-block;
  opacity: 0;
}
.team-card__bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 18px;
  border-width: 10px 8px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.team-card:hover .team-card__img-wrap img {
  mix-blend-mode: normal;
  filter: grayscale(0%);
  transform: scale(1.05);
}
.team-card:hover .team-card__bubble {
  opacity: 1;
  transform: translateY(0);
}
.team-card__name {
  font-family: "Petrona-Medium";
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.team-card__socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.team-card__socials a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.team-card__socials a:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #c9a84c;
}
@media only screen and (max-width: 767px) {
  .team-card {
    margin-bottom: 20px;
  }
}

.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__top {
  padding-bottom: 50px;
}
.site-footer__brand .site-logo {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 14px;
}
.site-footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 200px;
  margin-bottom: 20px;
}
.site-footer__socials {
  display: flex;
  gap: 12px;
}
.site-footer__socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.site-footer__socials a:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}
.site-footer__col h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Petrona-Medium";
  margin-bottom: 18px;
}
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer__col a:hover {
  color: #c9a84c;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}
.site-footer__bottom .fa-heart {
  color: #c9a84c;
}

.hero-logo {
  position: fixed;
  background: #c9a84c;
  top: -40px;
  left: -40px;
  z-index: 8;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  @Include transition(0.3s);
}
.hero-logo a {
  display: block;
  width: 50px;
  height: 60px;
  position: relative;
  top: 50px;
  left: 48px;
  z-index: 10;
}
.hero-logo img {
  width: 100%;
}
.hero-logo:hover {
  background: #b49644;
  @Include transition(0.3s);
}

.single-page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
@media only screen and (max-width: 767px) {
  .single-page-hero {
    height: 30vh;
  }
}

.single-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.single-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.single-page-hero__title {
  position: relative;
  z-index: 2;
  font-family: "Petrona-Bold";
  font-size: clamp(56px, 10vw, 130px);
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  gap: 0;
  user-select: none;
  max-width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .single-page-hero__title {
    font-size: clamp(32px, 10vw, 130px);
  }
}

.single-page-hero__title .ml-word {
  display: inline-flex;
  white-space: nowrap;
}

.single-page-hero__title .ml-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: mlCharIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.single-page-hero__title .ml-space {
  min-width: 0.5em;
}

@keyframes mlCharIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== MALJEN GALLERY ===== */
.single-page-gallery {
  background: #111;
  padding: 72px 0 120px;
}

.single-page-gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-page-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media only screen and (max-width: 767px) {
  .single-page-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .single-page-gallery__grid {
    grid-template-columns: 1fr;
  }
}
.single-page-gallery__item {
  position: relative;
  overflow: hidden;
  display: block;
  background: #1a1a1a;
}
@media only screen and (max-width: 767px) {
  .single-page-gallery__item {
    margin-bottom: 10px;
  }
}

.single-page-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 767px) {
  .single-page-gallery__item img {
    object-fit: contain;
    object-position: center;
  }
}

.single-page-gallery__item:hover img {
  transform: scale(1.07);
}

.single-page-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.single-page-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.18);
}

.single-page-gallery__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.single-page-gallery__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .single-page-gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.single-page-gallery h2 {
  font-family: "Petrona-Medium";
  font-size: 36px;
  margin-bottom: 0;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  padding-left: 50px;
  position: relative;
}
.single-page-gallery h2:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  top: 18px;
  left: 0;
  background: #c9a84c;
  display: inline-block;
  border-radius: 2px;
}

.single-page-gallery__icon {
  color: #111;
}

.single-page-gallery__item:hover .single-page-gallery__icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 50px;
  border: 1px solid #c9a84c;
  background: transparent;
  color: #c9a84c;
  font-family: "Petrona-Medium";
  font-size: 12px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-btn span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-btn::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 17px;
  height: 1px;
  background: #c9a84c;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, opacity 0.2s ease 0s, background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 1px solid #c9a84c;
  border-top: 1px solid #c9a84c;
  opacity: 0;
  transition: opacity 0.2s ease 0s, border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-btn:hover {
  background: #c9a84c;
  color: #111;
}
.hero-btn:hover span {
  transform: translateX(-30px);
}
.hero-btn:hover::before {
  background: #111;
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, opacity 0.2s ease 0.15s, background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-btn:hover::after {
  border-right-color: #111;
  border-top-color: #111;
  opacity: 1;
  transition: opacity 0.2s ease 0s, border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 14px 50px;
  border: 1px solid #c9a84c;
  background: transparent;
  color: #c9a84c;
  font-family: "Petrona-Medium";
  font-size: 12px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-btn i {
  font-size: 14px;
  width: 14px;
  min-width: 14px;
  display: inline-block;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.video-btn span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-btn::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 17px;
  height: 1px;
  background: #c9a84c;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, opacity 0.2s ease 0s, background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 1px solid #c9a84c;
  border-top: 1px solid #c9a84c;
  opacity: 0;
  transition: opacity 0.2s ease 0s, border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-btn:hover {
  background: #c9a84c;
  color: #111;
}
.video-btn:hover i {
  transform: translateX(-30px);
}
.video-btn:hover span {
  transform: translateX(-30px);
}
.video-btn:hover::before {
  background: #111;
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, opacity 0.2s ease 0.15s, background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-btn:hover::after {
  border-right-color: #111;
  border-top-color: #111;
  opacity: 1;
  transition: opacity 0.2s ease 0s, border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dragonfly-section img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .dragonfly-section .dragonfly {
    display: none;
  }
}
.dragonfly-section .dragonfly-mob {
  display: none;
}
@media only screen and (max-width: 767px) {
  .dragonfly-section .dragonfly-mob {
    display: block;
  }
}

.single-page-content-section {
  padding-top: 40px;
}
.single-page-content-section .single-page-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-page-content-section .single-page-content .single-page-content-head {
  width: 100%;
  display: block;
  position: relative;
}
.single-page-content-section .single-page-content .single-page-content-head img {
  width: 90%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .single-page-content-section .single-page-content .single-page-content-head img {
    width: 100%;
  }
}
.single-page-content-section .single-page-content .single-page-content-head::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 90%;
  background: url("/img/line.png") no-repeat center center;
  background-size: 100% 100%;
}
@media only screen and (max-width: 767px) {
  .single-page-content-section .single-page-content .single-page-content-head::after {
    display: none;
  }
}
.single-page-content-section .single-page-content .single-page-content-text {
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .single-page-content-section .single-page-content .single-page-content-text {
    padding-left: 0;
    padding-top: 0;
  }
}
.single-page-content-section .single-page-content .single-page-content-text p {
  font-family: "Petrona-Regular";
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .single-page-content-section .single-page-content .single-page-content-text p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=1-main.css.map */
