.below-hd {
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .below-hd {
    margin-top: 30px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .below-hd {
    margin-top: 30px;
  }
}

.padding-top-bottom {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .padding-top-bottom {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .padding-top-bottom {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .padding-top-bottom {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.padding-top {
  padding-top: 90px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .padding-top {
    padding-top: 60px;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .padding-top {
    padding-top: 60px;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .padding-top {
    padding-top: 45px;
  }
}

.padding-bottom {
  padding-bottom: 90px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .padding-bottom {
    padding-bottom: 60px;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .padding-bottom {
    padding-bottom: 60px;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .padding-bottom {
    padding-bottom: 45px;
  }
}

.pd-xl-5 {
  padding-left: 7rem;
}
@media (min-width: 568px) and (max-width: 991px) {
  .pd-xl-5 {
    padding: 0;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .pd-xl-5 {
    padding: 0 2rem;
  }
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  padding: 0px;
  margin: 0px;
  position: relative;
  font-size: 20px;
  background-color: #fff;
  color: #2F343f;
}
@media (min-width: 320px) and (max-width: 991px) {
  body {
    font-size: 18px;
  }
}

.page-content-box {
  padding: 2rem 0;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

a {
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

a:focus,
a:active,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  color: #000;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

button,
a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.clear {
  clear: both;
}

.sm-container {
  max-width: 900px;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .sm-container {
    padding: 0 6rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-container {
    padding: 0;
    width: 600px;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .sm-container {
    padding: 0 2rem;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .sm-container {
    padding: 0 1rem;
  }
}

.md-container {
  max-width: 1050px;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .md-container {
    padding: 0 6rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .md-container {
    padding: 0;
    width: 600px;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .md-container {
    padding: 0 4rem;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .md-container {
    padding: 0 1rem;
  }
}

.container {
  max-width: 1300px;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .container {
    padding: 0 6rem;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .container {
    padding: 0 4rem;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .container {
    padding: 0 1rem;
  }
}

.full-container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .full-container {
    padding: 0 1rem;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .full-container {
    padding: 0 1rem;
  }
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
}

.hide-mobile {
  display: block;
}
@media (min-width: 320px) and (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
}

.hide-desktop {
  display: none;
}
@media (min-width: 320px) and (max-width: 991px) {
  .hide-desktop {
    display: block;
  }
}

.primary-bg {
  background: #2F343f;
  color: #fff;
}
.primary-bg .heading {
  color: #fff;
}
.primary-bg .primary-btn {
  background: #ECE6E1;
  color: #2F343f;
}

.secondary-bg {
  background: #a28c87;
}

.light-bg {
  background: #ECE6E1;
}

.white-bg {
  background: #fff;
  color: #2F343f;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.desc--box p {
  margin: 10px 0px;
}
.desc--box p:first-child {
  margin-top: 0px;
}
.desc--box p:last-child {
  margin: 0px;
}
.desc--box ul {
  margin: 30px 0 0px;
  padding: 0px;
  list-style: none;
}
.desc--box ul li {
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0 0 0 1.5rem;
}
.desc--box ul li::before {
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0px;
  top: calc(50% - 6px);
  border: 1px solid #fff;
  background: #fff;
  content: "";
  border-radius: 50px;
}

.parallax-section {
  padding-bottom: 1rem;
}

.parallax-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}

.work-row {
  display: flex;
  flex-wrap: wrap;
}
.work-row .work-row-item {
  width: 50%;
  display: block;
  padding: 0 8px;
  margin: 0px;
}
@media (min-width: 320px) and (max-width: 567px) {
  .work-row .work-row-item {
    width: 100%;
    padding: 0px;
  }
}
.work-row .work-row-item .grid-item {
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 320px) and (max-width: 567px) {
  .work-row .work-row-item .grid-item {
    margin-bottom: 8px;
  }
}
.work-row .work-row-item .grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.my-work-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 991px) {
  .my-work-hd {
    display: block;
  }
}
.my-work-hd ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .my-work-hd ul {
    margin-top: 20px;
  }
}
.my-work-hd ul li {
  margin-right: 16px;
}
.my-work-hd ul li:last-child {
  margin-right: 0px;
}
.my-work-hd ul li a {
  display: block;
  padding: 8px 16px;
  border: 1px solid #2F343f;
  color: #2F343f;
  background: transparent;
  text-transform: capitalize;
  cursor: pointer;
}
.my-work-hd ul li a:hover, .my-work-hd ul li a.active {
  border: 1px solid #a28c87;
  color: #a28c87;
}

.fancybox__slide.has-image > .fancybox__content {
  margin-top: 40px;
  background-color: #fff !important;
  padding: 2px;
}

.fancybox-image {
  object-fit: cover !important;
}

.fancybox__slide {
  padding: 4px 60px !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  .fancybox__slide {
    padding: 4px 43px !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
    left: 0px !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
    right: 0px !important;
  }
}

.f-button:hover:not([disabled]) {
  color: var(--f-button-hover-color);
  background-color: transparent !important;
}

.fancybox__content .fancyboxy-project-caption {
  position: absolute !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.fancybox__content .fancyboxy-project-caption {
  background-color: #000000cf !important;
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 5px;
  color: #fff;
  width: 100%;
  text-align: center;
}

.fancybox__backdrop {
  background: #3f4653f2;
}

.fancybox__footer {
  opacity: 0;
}

.is-close-btn {
  right: 0 !important;
  top: -36px !important;
  background: transparent;
  padding: 0;
  background-size: 100%;
  width: 23px;
}
.is-close-btn:hover {
  background: transparent !important;
}
.is-close-btn svg {
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

h1 {
  font-size: 50px;
  line-height: 60px;
}
@media (min-width: 992px) and (max-width: 1150px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 38px;
    line-height: 44px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

h2 {
  font-size: 37px;
  line-height: 42px;
}
@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

h3 {
  font-size: 30px;
  line-height: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}
@media (min-width: 320px) and (max-width: 991px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 15px;
}

.heading {
  position: relative;
  margin: 0px;
  padding: 0 0 20px 0;
  text-transform: capitalize;
  color: #2F343f;
  text-transform: uppercase;
}
@media (min-width: 320px) and (max-width: 567px) {
  .heading {
    padding-left: 2rem;
  }
}
.heading::after {
  content: "";
  width: 176vh;
  height: 2px;
  background: #a28c87;
  position: absolute;
  bottom: 0;
  left: -150vh;
}
@media (min-width: 568px) and (max-width: 767px) {
  .heading::after {
    width: 183vh;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .heading::after {
    width: 173vh;
  }
}

.aos-animate .heading::after {
  animation: 1s slide-right;
}

@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
.btn-set-left {
  display: flex;
  justify-content: flex-start;
}

.btn-set-center {
  display: flex;
  justify-content: center;
}

.btn-set-right {
  display: flex;
  justify-content: flex-end;
}

.primary-btn {
  background: transparent;
  border: 1px #2F343f solid;
  color: #2F343f;
  padding: 11px 40px;
  border-radius: 0px;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  min-width: 150px;
  font-family: "Jost", sans-serif;
  cursor: pointer;
}
@media (min-width: 320px) and (max-width: 767px) {
  .primary-btn {
    font-size: 20px;
  }
}
.primary-btn:hover {
  background: transparent;
  border: 1px #a28c87 solid;
  color: #a28c87;
}

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  height: auto;
  left: 0px;
  padding: 2rem 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
@media (min-width: 320px) and (max-width: 991px) {
  .site-header {
    padding: 10px 0;
  }
}
.site-header .custom-row {
  flex-direction: column;
  position: relative;
}
@media (min-width: 320px) and (max-width: 991px) {
  .site-header .custom-row {
    align-items: center;
  }
}
.site-header .site-header-logo {
  width: 255px;
  margin: auto;
  transition: all 0.4s ease;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .site-header .site-header-logo {
    width: 156px;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .site-header .site-header-logo {
    width: 100px;
  }
}
.site-header .site-header-logo a {
  width: 100%;
  display: block;
}
.site-header .site-header-logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.site-header .site-header-nav {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .site-header .site-header-nav {
    display: none;
    padding: 0px;
  }
}
.site-header .site-header-nav ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
.site-header .site-header-nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #2F343f;
  font-size: 22px;
  font-weight: 300;
  transition: 0.3s;
  padding-bottom: 4px;
  display: block;
}
.site-header .site-header-nav ul li a:hover {
  color: #a28c87;
}
.site-header .site-header-nav ul li.current_page_item {
  border-bottom: 1px #a28c87 solid;
}
.site-header .site-header-nav ul li.current_page_item a {
  color: #a28c87;
  font-weight: 400;
}

.nav-icon {
  border: 0px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  display: none;
}
@media (min-width: 320px) and (max-width: 991px) {
  .nav-icon {
    display: flex;
  }
}
.nav-icon span {
  width: 70%;
  height: 1px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .nav-icon span {
    height: 1px;
  }
}
.nav-icon span::before, .nav-icon span::after {
  width: 100%;
  height: 1px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .nav-icon span::before, .nav-icon span::after {
    height: 1px;
  }
}
.nav-icon span {
  background-color: #2F343f;
  position: relative;
  display: block;
}
.nav-icon span::before, .nav-icon span::after {
  content: "";
  background-color: #2F343f;
  position: absolute;
  left: 0;
}
.nav-icon span::before {
  top: 12px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .nav-icon span::before {
    top: 9px;
  }
}
.nav-icon span::after {
  bottom: 12px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .nav-icon span::after {
    bottom: 9px;
  }
}

.nav-icon {
  width: 50px;
  height: 26px;
  transition: 0.3s;
  margin-left: auto;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer-section {
  padding: 4rem 0;
  position: relative;
  background-color: #fff;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .footer-section {
    padding: 3rem 0;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-section {
    padding: 2rem 0;
  }
}
.footer-section .custom-row {
  align-items: flex-end;
}
.footer-section .footer-left {
  width: 25%;
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-section .footer-left {
    width: 100%;
    margin-bottom: 25px;
    margin-top: 25px;
    text-align: center;
  }
}
.footer-section .footer-left a {
  font-size: 18px;
  color: #2F343f;
}
.footer-section .footer-left a:hover {
  color: #a28c87;
}
.footer-section .footer-mid {
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-section .footer-mid {
    width: 100%;
    margin-bottom: 15px;
  }
}
.footer-section .footer-mid .footer-logo {
  width: 250px;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .footer-section .footer-mid .footer-logo {
    width: 156px;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-section .footer-mid .footer-logo {
    width: 150px;
    margin: 0 auto;
  }
}
.footer-section .footer-mid .footer-logo img {
  width: 100%;
  display: block;
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-section .footer-mid {
    margin: 0 auto;
  }
}
.footer-section .footer-mid img {
  width: 100%;
  display: block;
}

.footer-right {
  width: 25%;
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-right {
    margin-left: 0px;
    margin-top: 0px;
    text-align: center;
    width: 100%;
  }
}
.footer-right ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.footer-right ul li {
  margin: 0px;
  padding: 0px;
  text-align: right;
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-right ul li {
    text-align: center;
  }
}
.footer-right ul li a {
  display: block;
  font-size: 18px;
  color: #2F343f;
}
.footer-right ul li a:hover {
  color: #a28c87;
}
.footer-right p {
  font-size: 18px;
  color: #2F343f;
  text-align: right;
  display: block;
  margin: 6px 0 0 0px;
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-right p {
    text-align: center;
  }
}
.footer-right p a {
  font-size: 18px;
  color: #2F343f;
  font-weight: 300;
}
.footer-right p a:hover {
  color: #a28c87;
}

.hide-on-desktop {
  display: none;
}
@media (min-width: 320px) and (max-width: 991px) {
  .hide-on-desktop {
    display: block;
  }
}

.hide-on-mobile {
  display: block;
}
@media (min-width: 320px) and (max-width: 991px) {
  .hide-on-mobile {
    display: none;
  }
}

.footer-social-icons {
  margin-bottom: 10px;
}
.footer-social-icons ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
}
@media (min-width: 320px) and (max-width: 991px) {
  .footer-social-icons ul {
    justify-content: center;
  }
}
.footer-social-icons ul li {
  margin: 0px 20px 0 0;
  padding: 0px;
}
.footer-social-icons ul li:last-child {
  margin-right: 0px;
}
.footer-social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0px;
  padding-left: 40px;
  height: 32px;
}
.footer-social-icons ul li a img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-social-icons ul li a:hover {
  opacity: 0.8;
}

.instagram-icon {
  background: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 283.5 283.5' style='enable-background:new 0 0 283.5 283.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%232F3440;%7D .st1%7Bfill:none;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M142.6,187.7c-25.2,0-45.6-20.5-45.6-45.6s20.5-45.6,45.6-45.6s45.6,20.5,45.6,45.6S167.8,187.7,142.6,187.7 M142.6,77.9c-35.4,0-64.2,28.8-64.2,64.2s28.8,64.2,64.2,64.2s64.2-28.8,64.2-64.2S178,77.9,142.6,77.9'/%3E%3Cpath class='st0' d='M226.4,74.1c0,8.5-6.9,15.4-15.5,15.4s-15.4-6.9-15.4-15.4s6.9-15.5,15.4-15.5S226.4,65.6,226.4,74.1'/%3E%3Cg%3E%3Cpath class='st1' d='M192.8,30.8c0-0.1-100.4-0.1-100.4-0.1c-33.7,0-61.1,27.4-61.1,61.1v100.4c0,33.7,27.4,61.1,61.1,61.1h100.4 c33.7,0,61.1-27.4,61.1-61.1V91.9C253.9,58.2,226.5,30.8,192.8,30.8z'/%3E%3Cpath class='st0' d='M192.8,15H92.4C50,15,15.5,49.5,15.5,91.9v100.4c0,42.4,34.5,76.9,76.9,76.9h100.4 c42.4,0,76.9-34.5,76.9-76.9V91.9C269.7,49.5,235.2,15,192.8,15z M253.9,192.2c0,33.7-27.4,61.1-61.1,61.1H92.4 c-33.7,0-61.1-27.4-61.1-61.1V91.8c0-33.7,27.4-61.1,61.1-61.1c0,0,100.4,0,100.4,0.1c33.7,0,61.1,27.4,61.1,61.1V192.2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat left center;
  background-size: 30px;
}
.instagram-icon:hover {
  background: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 283.5 283.5' style='enable-background:new 0 0 283.5 283.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23A28C86;%7D .st1%7Bfill:none;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M142.6,187.7c-25.2,0-45.6-20.5-45.6-45.6s20.5-45.6,45.6-45.6s45.6,20.5,45.6,45.6S167.8,187.7,142.6,187.7 M142.6,77.9c-35.4,0-64.2,28.8-64.2,64.2s28.8,64.2,64.2,64.2s64.2-28.8,64.2-64.2S178,77.9,142.6,77.9'/%3E%3Cpath class='st0' d='M226.4,74.1c0,8.5-6.9,15.4-15.5,15.4s-15.4-6.9-15.4-15.4s6.9-15.5,15.4-15.5S226.4,65.6,226.4,74.1'/%3E%3Cg%3E%3Cpath class='st1' d='M192.8,30.8c0-0.1-100.4-0.1-100.4-0.1c-33.7,0-61.1,27.4-61.1,61.1v100.4c0,33.7,27.4,61.1,61.1,61.1h100.4 c33.7,0,61.1-27.4,61.1-61.1V91.9C253.9,58.2,226.5,30.8,192.8,30.8z'/%3E%3Cpath class='st0' d='M192.8,15H92.4C50,15,15.5,49.5,15.5,91.9v100.4c0,42.4,34.5,76.9,76.9,76.9h100.4 c42.4,0,76.9-34.5,76.9-76.9V91.9C269.7,49.5,235.2,15,192.8,15z M253.9,192.2c0,33.7-27.4,61.1-61.1,61.1H92.4 c-33.7,0-61.1-27.4-61.1-61.1V91.8c0-33.7,27.4-61.1,61.1-61.1c0,0,100.4,0,100.4,0.1c33.7,0,61.1,27.4,61.1,61.1V192.2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat left center;
}

.header-show .site-header .site-header-logo {
  width: 159px;
  margin: auto;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .header-show .site-header .site-header-logo {
    width: 156px;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .header-show .site-header .site-header-logo {
    width: 100px;
  }
}

@media (min-width: 320px) and (max-width: 991px) {
  .menu-slide .nav-icon span {
    background-color: #fff;
  }
  .menu-slide .nav-icon span::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
  }
  .menu-slide .nav-icon span::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 0;
  }
  .menu-slide .site-header-nav {
    display: flex;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: calc(100% - 67px);
    background: #2F343f;
    padding: 20px;
    overflow: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .menu-slide .site-header .site-header-nav nav ul {
    display: block;
  }
  .menu-slide .site-header .site-header-nav nav ul li {
    margin: 0px;
    padding: 10px 10px;
    text-align: center;
  }
  .menu-slide .site-header .site-header-nav nav ul li a {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    padding: 0px;
    display: inline-block;
  }
  .menu-slide .site-header .site-header-nav nav ul li.menu-item-has-children .link-has-childern {
    padding-right: 25px;
    background: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0287814 11.9271L1.09233 12.9846L6.8574 7.19369C6.95033 7.10089 7.024 6.99064 7.07415 6.86927C7.12431 6.7479 7.14997 6.61781 7.14965 6.48648C7.14934 6.35516 7.12305 6.22519 7.07231 6.10406C7.02157 5.98293 6.94738 5.87303 6.854 5.78069L1.0611 0.0146228L0.00365606 1.07717L5.4407 6.4891L0.0287814 11.9271Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat right center;
  }
  .menu-slide .site-header .site-header-nav nav ul li.menu-item-has-children.drop-down-show .link-has-childern {
    background: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.05996 0.13742L0.0122812 1.21058L5.8556 6.92252C5.94924 7.0146 6.06016 7.08725 6.18198 7.1363C6.30381 7.18534 6.43413 7.20981 6.56545 7.20829C6.69676 7.20678 6.82648 7.17931 6.94714 7.12746C7.0678 7.07562 7.17702 7.00042 7.26851 6.90621L12.9814 1.06088L11.9093 0.013183L6.54722 5.49944L1.05996 0.13742Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat right center;
  }
  .menu-slide .site-header .site-header-nav nav ul li.menu-item-has-children ul {
    position: relative;
    width: 100%;
    background: transparent;
  }
  .menu-slide .site-header .site-header-nav nav ul li.menu-item-has-children ul li a {
    color: #fff;
    padding: 0;
  }
  .menu-slide .site-header .site-header-nav nav ul li.menu-item-has-children:hover .link-has-childern {
    color: #fff;
  }
  .menu-slide .site-header .site-header-nav .header-social-icons ul {
    justify-content: center;
    margin-top: 20px;
  }
  .menu-slide .site-header .site-header-nav .header-social-icons ul li {
    margin: 0 10px;
    padding: 0px;
  }
  .menu-slide .site-header .site-header-nav .header-social-icons ul li a {
    background-color: #3f4653;
  }
  .menu-slide .site-header .site-header-nav nav ul li.current_page_item a,
.menu-slide .site-header .site-header-nav nav ul li.current-menu-parent a,
.menu-slide .site-header .site-header-nav nav ul li.menu-item-has-children ul li.current-menu-item a {
    color: #ECE6E1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-slide .site-header .site-header-nav nav ul li a {
    font-size: 28px;
  }
}
.home-hero-section .hero-slder-item {
  position: relative;
}
.home-hero-section .hero-slder-item .hero-slder-item-full-img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-top {
  position: relative;
  height: 950px;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-top {
    height: 728px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-top {
    height: 587px;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-top {
    height: 500px;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-top {
    height: 435px;
  }
}
.home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-top img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-bottom {
  width: 100%;
  height: 138px;
  background: #fff;
}
@media (min-width: 320px) and (max-width: 567px) {
  .home-hero-section .hero-slder-item .hero-slder-item-full-img .hero-slder-item-full-img-bottom {
    height: 81px;
  }
}
.home-hero-section .hero-slder-item .hero-slder-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  color: #ECE6E1;
  text-align: center;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding-top: 7rem;
}
@media (min-width: 320px) and (max-width: 1100px) {
  .home-hero-section .hero-slder-item .hero-slder-item-overlay {
    padding-top: 4rem;
  }
}
.home-hero-section .hero-slder-item .hero-slder-item-overlay h1 {
  margin: 0px;
  font-weight: 300;
  padding: 0 6%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-hero-section .hero-slder-item .hero-slder-item-overlay h1 {
    padding: 0rem;
  }
}
.home-hero-section .hero-slder-item .hero-slder-item-overlay .hero-slder-item-small-img {
  width: 100%;
  margin-top: 7rem;
}
@media (min-width: 320px) and (max-width: 1100px) {
  .home-hero-section .hero-slder-item .hero-slder-item-overlay .hero-slder-item-small-img {
    margin-top: 4rem;
  }
}
.home-hero-section .hero-slder-item .hero-slder-item-overlay .hero-slder-item-small-img img {
  width: 100%;
  height: auto;
  display: block;
}

.image-row-section {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.image-row-section .image-row-item {
  width: 50%;
  padding: 0 8px 16px;
}
@media (min-width: 320px) and (max-width: 567px) {
  .image-row-section .image-row-item {
    width: 100%;
  }
}
.image-row-section .image-row-item .image-row-item-box {
  height: 100%;
}
.image-row-section .image-row-item .image-row-item-box picture {
  display: block;
  width: 100%;
  height: 100%;
}
.image-row-section .image-row-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-section {
  position: relative;
}
.contact-section .contact-section-full-img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.contact-section .contact-section-full-img .contact-section-full-img-top {
  position: relative;
  height: 1056px;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .contact-section .contact-section-full-img .contact-section-full-img-top {
    height: 888px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-section-full-img .contact-section-full-img-top {
    height: 709px;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .contact-section .contact-section-full-img .contact-section-full-img-top {
    height: 653px;
  }
}
@media (min-width: 320px) and (max-width: 567px) {
  .contact-section .contact-section-full-img .contact-section-full-img-top {
    height: 554px;
  }
}
.contact-section .contact-section-full-img .contact-section-full-img-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.contact-section .contact-section-full-img .contact-section-full-img-top img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.contact-section .contact-section-full-img .contact-section-full-img-bottom {
  width: 100%;
  height: 138px;
  background: #fff;
}
.contact-section .contact-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  color: #ECE6E1;
  color: #fff;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding-top: 7rem;
}
@media (min-width: 320px) and (max-width: 1100px) {
  .contact-section .contact-section-overlay {
    padding-top: 4rem;
  }
}
.contact-section .contact-section-overlay .heading {
  color: #fff;
}
.contact-section .contact-section-overlay .contact-content-row {
  margin: 5rem 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991px) {
  .contact-section .contact-section-overlay .contact-content-row {
    margin: 2rem 0;
  }
}
.contact-section .contact-section-overlay .contact-content-row .contact-content {
  width: 40%;
}
@media (min-width: 320px) and (max-width: 991px) {
  .contact-section .contact-section-overlay .contact-content-row .contact-content {
    width: 100%;
  }
}
.contact-section .contact-section-overlay .contact-content-row .contact-content p {
  margin: 0px;
}
.contact-section .contact-section-overlay .contact-content-row .contact-info {
  width: 50%;
  margin-left: auto;
}
@media (min-width: 320px) and (max-width: 991px) {
  .contact-section .contact-section-overlay .contact-content-row .contact-info {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.contact-section .contact-section-overlay .contact-content-row .contact-info ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.contact-section .contact-section-overlay .contact-content-row .contact-info ul li {
  margin: 0px;
  padding: 0;
}
.contact-section .contact-section-overlay .contact-content-row .contact-info ul li a {
  font-size: 28px;
  color: #fff;
  display: block;
}
@media (min-width: 320px) and (max-width: 567px) {
  .contact-section .contact-section-overlay .contact-content-row .contact-info ul li a {
    font-size: 20px;
  }
}
.contact-section .contact-section-overlay .contact-content-row .contact-info ul li a:hover {
  color: #a28c87;
}
.contact-section .contact-section-overlay .contact-section-small-img {
  width: 100%;
}
.contact-section .contact-section-overlay .contact-section-small-img img {
  width: 100%;
  height: auto;
  display: block;
}

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