* {
  box-sizing: border-box;
}

*, html {
  scroll-behavior: smooth !important;
}

body {
  margin: 0px;
  padding: 0px;
  background: #FFFFFF;
  min-width: 320px;
  background-color: #FFFFFF;
  color: #000000;
  background-repeat: no-repeat;
  min-height: 100vh;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}
body.no-scroll {
  overflow: hidden;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .btn {
  color: #000000;
  font-family: "Oswald", sans-serif;
}

input {
  font-family: "Rubik", sans-serif;
}

body {
  font-family: "Rubik", sans-serif;
}

h1 {
  font-size: 116px;
  font-weight: 700;
}
@media screen and (max-width: 1660px) {
  h1 {
    font-size: 100px;
  }
}
@media screen and (max-width: 1266px) {
  h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.1em;
}
@media screen and (max-width: 1040px) {
  h2 {
    font-size: 52px;
  }
}

h3 {
  font-size: 45px;
  font-weight: 700;
  color: #938341;
  line-height: 1.1em;
}
@media screen and (max-width: 1040px) {
  h3 {
    font-size: 32px;
  }
}

h4 {
  font-size: 21px;
  font-weight: 600;
}

p, .text {
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 600px) {
  p, .text {
    font-size: 16px;
  }
}

.base-list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  font-weight: 300;
}
.base-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.5em;
  font-size: 18px;
}
.base-list li:not(:last-child) {
  margin-bottom: 6px;
}
.base-list li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50rem;
  border: 2px solid #938341;
  left: 0;
  top: 8px;
}
@media screen and (max-width: 600px) {
  .base-list li {
    font-size: 16px;
  }
}

.text-white {
  color: #FFFFFF;
}

.text-gold {
  color: #938341;
}

.text-gold-outline {
  color: rgba(255, 255, 255, 0);
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 0.025em #938341;
}

.text-semi {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-extra-bold {
  font-weight: 800;
}

.text-oswald {
  font-family: "Oswald", sans-serif;
}

.text-rubik {
  font-family: "Rubik", sans-serif;
}

.text-underline {
  text-decoration: underline;
}

.container {
  width: 1680px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media screen and (max-width: 1660px) {
  .container {
    width: 1240px;
  }
}
@media screen and (max-width: 600px) {
  .container {
    max-width: 80%;
  }
}

.flex-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.col-50 {
  flex: 50%;
  max-width: 50%;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding-top: 42px;
  padding-bottom: 42px;
  transition: 0.3s background-color, 0.3s padding;
  background-color: rgba(255, 255, 255, 0);
}
header .logo {
  width: 258px;
  transition: 0.3s width;
}
header .logo svg {
  display: block;
  width: 100%;
  height: auto;
}
header .nav-wrapper {
  margin-left: auto;
  width: auto;
}
header .nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
  width: auto;
  align-items: center;
}
header .nav-menu ul li:not(:last-child) {
  margin-right: 60px;
}
header .nav-menu ul li:nth-last-child(2) {
  margin-right: 38px;
}
header .nav-menu ul li .link {
  color: #FFFFFF;
  font-size: 18px;
  position: relative;
}
header .nav-menu ul li .link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #938341;
  bottom: 0px;
  left: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.3s opacity, 0.3s transform;
}
header .nav-menu ul li .link:hover:before {
  opacity: 1;
  transform: translateY(10px);
}
header .nav-menu .btn {
  font-size: 24px;
  padding-top: 7px;
  padding-bottom: 7px;
  transition: 0.3s padding, 0.3s font-size, 0.3s background-color, 0.3s color, 0.3s border-color;
}
header.active {
  background-color: #FFFFFF;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
}
header.active .logo {
  width: 130px;
}
header.active .nav-menu ul li .link {
  color: #000000;
}
header.active .nav-menu .btn {
  font-size: 18px;
}
header.active .nav-btn svg rect {
  fill: #000000;
}
header .nav-btn {
  display: none;
}
header .nav-btn svg rect {
  fill: #FFFFFF;
}
@media screen and (max-width: 1700px) {
  header .logo {
    width: 200px;
  }
  header .nav-menu ul li:not(:last-child) {
    margin-right: 36px;
  }
  header .nav-menu ul li:nth-last-child(2) {
    margin-right: 24px;
  }
}
@media screen and (max-width: 1440px) {
  header .nav-menu ul li:not(:last-child) {
    display: none;
  }
  header .nav-btn {
    display: initial;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    outline: none;
    margin-left: 20px;
  }
  header .nav-btn svg {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  header.active {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  header .logo {
    width: 160px;
  }
  header .container {
    align-items: center;
  }
}

.mobile-nav-bg {
  position: fixed;
  z-index: 99998;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
}
.mobile-nav-bg.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: 0.5s;
  background-color: #FFFFFF;
  padding: 20px 28px;
  height: 100%;
}
@media screen and (max-width: 1300px) {
  .mobile-nav {
    display: inline-block;
  }
}
.mobile-nav.active {
  transform: translateX(0%);
}
.mobile-nav .nav-menu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .nav-menu li {
  margin-bottom: 18px;
}
.mobile-nav .nav-menu li a:not(.btn) {
  color: #000000;
}
.mobile-nav .nav-menu li:last-child {
  margin-top: 38px;
}
.mobile-nav .nav-close-btn {
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  outline: none;
  margin-left: auto;
  margin-right: 0;
  display: block;
  margin-bottom: 20px;
}
.mobile-nav .nav-close-btn svg {
  display: block;
}

footer {
  padding-top: 16px;
  padding-bottom: 16px;
}
footer .flex-box {
  justify-content: space-between;
}
footer a {
  font-weight: 700;
  color: #000000;
}
@media screen and (max-width: 1040px) {
  footer .copyright {
    flex: 0 0 100%;
    margin-bottom: 16px;
  }
}

button {
  cursor: pointer;
}

.btn {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  margin-left: 18px;
  margin-right: 18px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #938341;
  border: 3px solid #938341;
  color: #FFFFFF;
  position: relative;
  transition: 0.3s background-color, 0.3s color, 0.3s border-color;
  min-width: 162px;
  text-align: center;
  max-width: calc(100% - 36px);
}
.btn:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2.5px;
  transform: translateX(-100%);
  width: 18px;
  height: calc(100% + 6px);
  background-color: #938341;
  transition: 0.3s background-color;
  clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
}
.btn:after {
  content: "";
  position: absolute;
  top: -3px;
  right: -2.5px;
  transform: translateX(100%);
  width: 18px;
  height: calc(100% + 6px);
  background-color: #938341;
  transition: 0.3s background-color;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
}
.btn:hover {
  background-color: #FFFFFF;
  color: #938341;
  border-color: #FFFFFF;
}
.btn:hover:before {
  background-color: #FFFFFF;
}
.btn:hover:after {
  background-color: #FFFFFF;
}
.btn.btn-outline {
  background-color: rgba(255, 255, 255, 0);
  border-left: none;
  border-right: none;
  color: #938341;
}
.btn.btn-outline-white {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn.btn-outline-white:before {
  background-color: #FFFFFF;
}
.btn.btn-outline-white:after {
  background-color: #FFFFFF;
}
.btn.btn-outline:before {
  left: 0px;
  clip-path: polygon(100% 5.5%, 100% 0%, 86% 0%, 0% 50%, 86% 100%, 100% 100%, 100% 94.5%, 23% 50%);
}
.btn.btn-outline:after {
  right: 0px;
  clip-path: polygon(0% 5.5%, 0% 0%, 14% 0%, 100% 50%, 14% 100%, 0% 100%, 0% 94.5%, 77% 50%);
}
.btn.btn-outline:hover {
  color: #000000;
  border-color: #000000;
}
.btn.btn-outline:hover:before {
  background-color: #000000;
}
.btn.btn-outline:hover:after {
  background-color: #000000;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 200000;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  align-items: center;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal .modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal .modal-gallery-btn {
  outline: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50rem;
  background-color: #FFFFFF;
  z-index: 5;
  position: absolute;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
  top: 50%;
  transition: 0.3s transform;
}
.modal .modal-gallery-btn svg {
  display: block;
  position: relative;
}
.modal .modal-gallery-btn.left {
  left: 0px;
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.modal .modal-gallery-btn.left svg {
  left: -2px;
}
.modal .modal-gallery-btn.left:hover {
  transform: translateY(-50%) translateX(-50%) scale(1.2);
}
.modal .modal-gallery-btn.right {
  right: 0px;
  transform: translateY(-50%) translateX(50%) scale(1);
}
.modal .modal-gallery-btn.right svg {
  left: 2px;
}
.modal .modal-gallery-btn.right:hover {
  transform: translateY(-50%) translateX(50%) scale(1.2);
}
.modal .modal-inner {
  position: relative;
  z-index: 2;
  max-width: 90%;
  max-height: 90%;
}
.modal .modal-inner .close-btn {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50rem;
  background-color: #FFFFFF;
  right: 0;
  top: 0;
  padding: 8px;
  border: none;
  outline: none;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
  transform: translate(50%, -50%);
}
.modal .modal-inner .close-btn svg {
  display: block;
  width: 100%;
  height: auto;
}
.modal .modal-inner img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.check-box {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
  padding-left: 0px;
  width: 100%;
  margin-top: 0px;
  font-size: 14px;
  margin-bottom: 30px;
}
.check-box input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  display: none;
}
.check-box input:checked ~ .checkmark:before {
  display: inline-block;
}
.check-box input[type=radio] ~ .checkmark {
  border-radius: 100%;
}
.check-box .check-box-text {
  margin-left: 8px;
  font-size: 18px;
  display: inline-block;
  font-weight: 300;
  position: relative;
  top: 0px;
  vertical-align: top;
  max-width: calc(100% - 50px);
}
.check-box .check-box-text a {
  text-decoration: underline;
  font-weight: 600;
  color: inherit;
}
.check-box .checkmark {
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #FFFFFF;
  background: #212121;
  border-radius: 0px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.check-box .checkmark:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 4px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg);
  top: 5px;
  left: 4px;
  display: none;
}
.check-box-white input:checked ~ .checkmark:before {
  border-left: 2px solid #938341;
  border-bottom: 2px solid #938341;
}
.check-box-white .check-box-text {
  color: #FFFFFF;
}
.check-box-white .checkmark {
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
}
.check-box-white .checkmark:before {
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
}

.cookie-bar {
  z-index: 99999999999;
  position: fixed;
  padding: 24px 44px;
  background-color: #FFFFFF;
  right: 24px;
  bottom: 24px;
  width: 100%;
  max-width: 1032px;
  max-height: 100%;
  overflow: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.cookie-bar h4 {
  margin-bottom: 8px;
}
.cookie-bar .btn-row {
  display: flex;
  gap: 24px;
}
.cookie-bar .checkbox-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 40px;
}
.cookie-bar .checkbox-row .check-box {
  width: auto;
  margin-top: 0;
}
.cookie-bar .checkbox-row .check-box .check-box-text {
  max-width: none;
}
.cookie-bar button {
  padding: 16px 28px;
  border: none;
  outline: none;
  color: #000000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #000000;
}
.cookie-bar button.btn-black {
  background-color: #000000;
  border: 1px solid #000000;
  color: #FFFFFF;
}
@media screen and (max-width: 1040px) {
  .cookie-bar {
    right: 0px;
    bottom: 0px;
    padding: 24px 24px;
  }
  .cookie-bar .btn-row {
    flex-direction: column;
  }
  .cookie-bar .btn-row button:nth-child(1) {
    order: 3;
  }
  .cookie-bar .btn-row button:nth-child(2) {
    order: 2;
  }
  .cookie-bar .btn-row button:nth-child(3) {
    order: 1;
  }
  .cookie-bar .checkbox-row {
    flex-direction: column;
    gap: 24px;
  }
}

.hero {
  min-height: 100vh;
  width: 100%;
  background-image: url("../img/main-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 380px;
  padding-bottom: 140px;
}
.hero .container {
  width: 90%;
}
.hero:before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero .container h1 {
  margin: 0;
  line-height: 1.1em;
  text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
}
.hero .container p {
  display: block;
  margin-top: 36px;
  margin-bottom: 36px;
  max-width: 784px;
  font-weight: 700;
  text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 600px) {
  .hero {
    min-height: auto;
    background-position: 63% 0%;
    padding-top: 140px;
    align-items: center;
  }
  .hero:before {
    background-color: rgba(0, 0, 0, 0.4);
  }
}

.about-us {
  padding-top: 112px;
}
.about-us .about-us-inner {
  align-items: center;
}
.about-us .col {
  flex: 0 0 50%;
}
.about-us .col:nth-child(2) {
  padding-left: 102px;
}
.about-us h2 {
  margin: 0;
}
.about-us p {
  display: block;
  margin-top: 38px;
  margin-bottom: 20px;
}
.about-us .btn-row {
  display: flex;
  margin-top: 42px;
}
.about-us .btn-row .btn {
  margin-right: 44px;
}
.about-us .tri-image {
  width: 100%;
  position: relative;
}
.about-us .tri-image img {
  filter: drop-shadow(0px 4px 100px rgba(0, 0, 0, 0.25));
  display: block;
}
.about-us .tri-image .img1 {
  width: 48%;
}
.about-us .tri-image .img2 {
  position: absolute;
  right: 0;
  width: 51%;
  top: -34%;
}
.about-us .tri-image .img3 {
  position: absolute;
  right: 12%;
  width: 39%;
  top: 53%;
}
@media screen and (max-width: 1440px) {
  .about-us .col:nth-child(2) {
    padding-left: 48px;
  }
}
@media screen and (max-width: 1040px) {
  .about-us h2 br {
    display: none;
  }
  .about-us .col {
    flex: 0 0 100%;
  }
  .about-us .col:nth-child(2) {
    padding-top: 40px;
    padding-left: 0px;
  }
  .about-us .about-us-inner {
    align-items: start;
  }
  .about-us .tri-image {
    text-align: center;
  }
  .about-us .tri-image img {
    display: inline-block;
    vertical-align: top;
  }
  .about-us .tri-image img:not(:last-child) {
    margin-right: 2%;
  }
  .about-us .tri-image .img1 {
    width: 31%;
  }
  .about-us .tri-image .img2 {
    position: relative;
    right: 0;
    width: 31%;
    top: 0;
  }
  .about-us .tri-image .img3 {
    position: relative;
    right: 0;
    width: 31%;
    top: 0;
  }
}
@media screen and (max-width: 600px) {
  .about-us {
    padding-top: 80px;
  }
  .about-us .tri-image img:not(:last-child) {
    margin-right: 0%;
    margin-bottom: 32px;
  }
  .about-us .tri-image .img1 {
    width: 100%;
  }
  .about-us .tri-image .img2 {
    position: relative;
    right: 0;
    width: 100%;
    top: 0;
  }
  .about-us .tri-image .img3 {
    position: relative;
    right: 0;
    width: 100%;
    top: 0;
  }
  .about-us .btn-row {
    display: block;
    margin-top: 22px;
  }
  .about-us .btn-row .btn {
    margin-top: 20px;
    margin-right: 0px;
    display: block;
  }
}

.our-services {
  padding-top: 158px;
}
.our-services h2 {
  margin: 0;
}
.our-services .grid {
  margin-top: 62px;
  margin-left: -18px;
  width: calc(100% + 36px);
  justify-content: center;
}
.our-services .grid .item {
  flex: 0 0 20%;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 72px;
  padding-bottom: 16px;
  position: relative;
  transition: 0.5s box-shadow;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
}
.our-services .grid .item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.our-services .grid .item:not(:nth-of-type(5n+5)) {
  border-right: 1px solid #C8C0C0;
}
.our-services .grid .item:nth-of-type(1) {
  order: 1;
}
.our-services .grid .item:nth-of-type(2) {
  order: 2;
}
.our-services .grid .item:nth-of-type(3) {
  order: 3;
}
.our-services .grid .item:nth-of-type(4) {
  order: 4;
}
.our-services .grid .item:nth-of-type(5) {
  order: 5;
}
.our-services .grid .item:nth-of-type(6) {
  order: 7;
}
.our-services .grid .item:nth-of-type(7) {
  order: 8;
}
.our-services .grid .item:nth-of-type(8) {
  order: 9;
}
.our-services .grid .item:nth-of-type(9) {
  order: 10;
}
.our-services .grid .item:nth-of-type(10) {
  order: 11;
}
.our-services .grid .item svg {
  display: block;
  width: auto;
  position: absolute;
  top: 0;
}
.our-services .grid .item .link {
  font-size: 18px;
  font-weight: 700;
  color: #938341;
  text-transform: uppercase;
  margin-top: 8px;
  display: inline-block;
}
.our-services .grid .item p {
  display: block;
  margin-top: 16px;
  margin-bottom: 0;
}
.our-services .grid .item h4 {
  margin: 0;
}
.our-services .grid .divider {
  flex: 0 0 calc(100% - 36px);
  height: 1px;
  background-color: #C8C0C0;
  margin-top: 60px;
  margin-bottom: 60px;
}
.our-services .grid .divider:nth-of-type(1) {
  order: 6;
}
.our-services .grid .divider:nth-of-type(2) {
  order: 12;
  display: none;
}
.our-services .grid .divider:nth-of-type(3) {
  order: 13;
  display: none;
}
.our-services .grid .divider:nth-of-type(4) {
  order: 14;
  display: none;
}
@media screen and (max-width: 1040px) {
  .our-services .grid .item {
    flex: 0 0 33.33%;
  }
  .our-services .grid .item:nth-of-type(1) {
    order: 1;
  }
  .our-services .grid .item:nth-of-type(2) {
    order: 2;
  }
  .our-services .grid .item:nth-of-type(3) {
    order: 3;
  }
  .our-services .grid .item:nth-of-type(4) {
    order: 5;
  }
  .our-services .grid .item:nth-of-type(5) {
    order: 6;
  }
  .our-services .grid .item:nth-of-type(6) {
    order: 7;
  }
  .our-services .grid .item:nth-of-type(7) {
    order: 9;
  }
  .our-services .grid .item:nth-of-type(8) {
    order: 10;
  }
  .our-services .grid .item:nth-of-type(9) {
    order: 11;
  }
  .our-services .grid .item:nth-of-type(10) {
    order: 13;
  }
  .our-services .grid .item:not(:nth-of-type(5n+5)) {
    border-right: initial;
  }
  .our-services .grid .item:not(:nth-of-type(3n+3)) {
    border-right: 1px solid #C8C0C0;
  }
  .our-services .grid .item:last-of-type {
    border-right: none;
  }
  .our-services .grid .divider:nth-of-type(1) {
    order: 4;
  }
  .our-services .grid .divider:nth-of-type(2) {
    order: 8;
    display: block;
  }
  .our-services .grid .divider:nth-of-type(3) {
    order: 12;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .our-services .grid .item {
    flex: 0 0 50%;
  }
  .our-services .grid .item:nth-of-type(1) {
    order: 1;
  }
  .our-services .grid .item:nth-of-type(2) {
    order: 2;
  }
  .our-services .grid .item:nth-of-type(3) {
    order: 4;
  }
  .our-services .grid .item:nth-of-type(4) {
    order: 5;
  }
  .our-services .grid .item:nth-of-type(5) {
    order: 7;
  }
  .our-services .grid .item:nth-of-type(6) {
    order: 8;
  }
  .our-services .grid .item:nth-of-type(7) {
    order: 10;
  }
  .our-services .grid .item:nth-of-type(8) {
    order: 11;
  }
  .our-services .grid .item:nth-of-type(9) {
    order: 13;
  }
  .our-services .grid .item:nth-of-type(10) {
    order: 14;
  }
  .our-services .grid .item:not(:nth-of-type(5n+5)) {
    border-right: initial;
  }
  .our-services .grid .item:not(:nth-of-type(3n+3)) {
    border-right: initial;
  }
  .our-services .grid .item:last-of-type {
    border-right: initial;
  }
  .our-services .grid .item:nth-of-type(odd) {
    border-right: 1px solid #C8C0C0;
  }
  .our-services .grid .divider:nth-of-type(1) {
    order: 3;
  }
  .our-services .grid .divider:nth-of-type(2) {
    order: 6;
    display: block;
  }
  .our-services .grid .divider:nth-of-type(3) {
    order: 9;
    display: block;
  }
  .our-services .grid .divider:nth-of-type(4) {
    order: 12;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .our-services {
    padding-top: 80px;
  }
}
@media screen and (max-width: 420px) {
  .our-services .grid {
    display: block;
    margin-top: 40px;
    margin-left: 0px;
    width: 100%;
  }
  .our-services .grid .item {
    display: block;
    width: 100%;
    border-right: none;
    padding-left: 0px;
    padding-right: 0px;
  }
  .our-services .grid .item:nth-of-type(odd) {
    border-right: initial;
  }
  .our-services .grid .item:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #C8C0C0;
  }
  .our-services .grid .divider {
    display: none !important;
  }
}

.gallery {
  padding-top: 116px;
}
.gallery h2 {
  margin: 0;
}
.gallery .swiper {
  width: 100%;
  margin-top: 32px;
}
.gallery .swiper .swiper-slide {
  height: 18.6vw;
}
.gallery .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.gallery .swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #B3B3B3;
  outline: 3px solid rgba(255, 255, 255, 0);
  margin: 0 12px !important;
  opacity: 1;
}
.gallery .swiper .swiper-pagination-bullet-active {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0);
  outline: 4px solid #938341;
}
.gallery .swiper .swiper-pagination {
  margin-top: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gallery .swiper .swiper-slide {
    height: 24.6vw;
  }
}
@media screen and (max-width: 600px) {
  .gallery {
    padding-top: 80px;
  }
  .gallery .swiper .swiper-slide {
    height: 37vw;
  }
  .gallery .swiper .swiper-pagination-bullet {
    margin: 0 8px !important;
  }
}
@media screen and (max-width: 400px) {
  .gallery .swiper .swiper-slide {
    height: 75vw;
  }
}

.calculator {
  padding-top: 112px;
}
.calculator .col {
  flex: 0 0 50%;
}
.calculator .col:nth-child(1) {
  padding-right: 100px;
}
.calculator h3 {
  margin: 0;
}
.calculator p {
  display: block;
  margin-top: 48px;
  margin-bottom: 40px;
}
.calculator .calculator-form {
  box-shadow: 0px 4px 150px 0px rgba(0, 0, 0, 0.18);
  width: 100%;
  background-color: #FFFFFF;
}
.calculator .calculator-form .body {
  padding: 45px 40px 28px 40px;
}
.calculator .calculator-form .footer {
  border-top: 1px solid #C8C0C0;
  padding: 16px 40px 22px 40px;
  justify-content: space-between;
  align-items: center;
}
.calculator .calculator-form .footer strong {
  font-weight: 700;
}
.calculator .calculator-form .footer #finalPrice {
  color: #938341;
  font-size: 35px;
}
.calculator .calculator-form .input-group {
  align-items: center;
}
.calculator .calculator-form .input-group:not(:last-child) {
  margin-bottom: 16px;
}
.calculator .calculator-form .input-group .input-col:nth-child(1) {
  flex: 0 0 70%;
  padding-right: 24px;
}
.calculator .calculator-form .input-group .input-col:nth-child(2) {
  flex: 0 0 30%;
}
.calculator .calculator-form .input-group input {
  font-size: 18px;
  font-weight: 300;
  text-align: right;
  outline: none;
  background-color: #FFFFFF;
  border-radius: 0;
  border: 1px solid #C8C0C0;
  padding: 15px 16px;
  width: 100%;
}
@media screen and (max-width: 1366px) {
  .calculator .col:nth-child(1) {
    padding-right: 64px;
  }
  .calculator .calculator-form .body {
    padding: 40px 32px 28px 32px;
  }
  .calculator .calculator-form .footer {
    padding: 16px 32px 22px 32px;
  }
  .calculator .calculator-form .input-group .input-col:nth-child(1) {
    flex: 0 0 70%;
    padding-right: 16px;
  }
}
@media screen and (max-width: 1156px) {
  .calculator .col {
    flex: 0 0 100%;
  }
  .calculator .col:nth-child(1) {
    padding-right: 0px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .calculator .calculator-form {
    margin-left: -12%;
    margin-right: -12%;
    width: auto;
  }
  .calculator .calculator-form .body {
    padding: 40px 32px 28px 32px;
  }
  .calculator .calculator-form .footer {
    padding: 16px 32px 22px 32px;
  }
  .calculator .calculator-form .input-group .input-col:nth-child(1) {
    flex: 0 0 100%;
    padding-right: 0px;
  }
  .calculator .calculator-form .input-group .input-col:nth-child(2) {
    flex: 0 0 100%;
  }
  .calculator .calculator-form .input-group input {
    text-align: left;
  }
  .calculator .calculator-form .footer #finalPrice {
    flex: 0 0 100%;
    margin-top: 0px;
  }
}

.partners {
  padding-top: 208px;
  padding-bottom: 114px;
}
.partners h2 {
  margin: 0;
}
.partners .main-partner-box {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  margin-top: 32px;
}
.partners .main-partner-box .logo {
  flex: 0 0 503px;
}
.partners .main-partner-box .logo img {
  display: block;
  width: 100%;
}
.partners .main-partner-box .about-partner {
  display: flex;
  flex-direction: column;
}
.partners .main-partner-box .about-partner p {
  margin: 0;
}
.partners .main-partner-box .about-partner .partner-customers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 32px;
}
.partners .secondary-partners {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
}
.partners .secondary-partners .item {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 74px;
}
.partners .secondary-partners .item .text {
  flex: 1;
  max-width: 430px;
}
@media screen and (max-width: 1660px) {
  .partners .main-partner-box {
    align-items: start;
  }
  .partners .main-partner-box .logo {
    flex: 0 0 370px;
  }
  .partners .main-partner-box .about-partner .partner-customers {
    flex-direction: initial;
    flex-wrap: wrap;
  }
  .partners .main-partner-box .about-partner .partner-customers .list {
    flex: 0 0 50%;
  }
  .partners .main-partner-box .about-partner .partner-customers .list:not(:last-child) {
    margin-bottom: 32px;
  }
  .partners .secondary-partners {
    gap: 32px;
  }
  .partners .secondary-partners .item {
    gap: 50px;
  }
}
@media screen and (max-width: 1366px) {
  .partners {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1266px) {
  .partners .secondary-partners {
    flex-direction: initial;
    flex-wrap: wrap;
  }
  .partners .secondary-partners .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1156px) {
  .partners {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1040px) {
  .partners .main-partner-box .about-partner .partner-customers .list {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 700px) {
  .partners .main-partner-box {
    flex-direction: column;
  }
  .partners .main-partner-box .logo {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 32px;
  }
  .partners .main-partner-box .about-partner {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 600px) {
  .partners {
    padding-top: 80px;
  }
  .partners .secondary-partners {
    flex-direction: column;
  }
  .partners .secondary-partners .item {
    gap: 16px;
    flex-direction: column;
    display: flex;
    align-items: start;
  }
  .partners .secondary-partners .item .logo {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .partners .secondary-partners .item .logo img {
    max-width: 100%;
  }
}

.contact .row {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 150px 0px rgba(0, 0, 0, 0.18);
}
.contact h2 {
  margin-top: 0;
  margin-bottom: 40px;
}
.contact .col {
  flex: 0 0 50%;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact .contact-info .info-wrap {
  max-width: 90%;
}
.contact .contact-info h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact .contact-info p {
  margin-top: 0;
}
.contact .contact-info p:not(:last-of-type) {
  margin-bottom: 25px;
}
.contact .contact-form {
  background-color: #938341;
}
.contact .contact-form .form {
  width: 90%;
  max-width: 470px;
}
.contact .contact-form .form .input-group {
  margin-bottom: 26px;
  text-align: left;
}
.contact .contact-form .form .input-group label {
  color: #FFFFFF;
  font-weight: 300;
  display: block;
  margin-bottom: 8px;
}
.contact .contact-form .form .input-group input, .contact .contact-form .form .input-group textarea {
  border-radius: 0px;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 18px 24px;
  width: 100%;
}
.contact .contact-form .form .input-group textarea {
  height: 178px;
  resize: vertical;
  font-family: "Montserrat", sans-serif;
}
.contact .contact-form .form .form-msg {
  font-size: 14px;
  display: block;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 16px;
  background-color: #FFFFFF;
  padding: 16px 24px;
}
.contact .contact-form .form .form-msg.error {
  color: #e74c3c;
  display: none;
}
.contact .contact-form .form .form-msg.success {
  color: #938341;
  display: none;
}
.contact .contact-form .form .form-msg.show {
  display: block !important;
}
.contact .contact-form .form .submit-btn.hide {
  display: none;
}
@media screen and (max-width: 840px) {
  .contact .col {
    flex: 0 0 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.privacy-policy {
  padding-bottom: 80px;
}
.privacy-policy .go-back {
  display: block;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
}

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