@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/* Italic styles (if needed) */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfairdisplay/PlayfairDisplay-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
html,
body {
  color: #242745;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}

* {
  box-sizing: border-box;
}

h1 {
  font-family: "Playfair Display", sans-serif;
  margin: 0;
}
h1.mobile {
  display: none;
}

a {
  text-decoration: none;
  color: #242745;
}

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

.pink-color {
  color: #e5b099;
  font-weight: normal;
}

.btn {
  width: 180px;
  height: 50px;
  display: flex;
  border: 0;
  padding: 5px 10px;
  background-color: #242745;
  color: #FFF;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1900px;
  margin: auto;
  overflow: hidden;
}

.banner {
  position: relative;
  width: 100%;
}
.banner video {
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .page-title {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(229, 176, 153, 0.6117647059);
  display: flex;
  align-items: center;
}
.banner .page-title h1 {
  font-size: 80px;
  color: #FFF;
  text-indent: 80px;
  font-style: italic;
}

.item {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.item.intro {
  padding: 40px 10px;
  justify-content: center;
  align-items: end;
  gap: 70px;
}
.item.intro h1 {
  font-size: 60px;
}
.item.intro .image-area {
  position: relative;
  padding-top: 35px;
  padding-right: 35px;
}
.item.intro .image-area img {
  width: 400px;
}
.item.intro .image-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 360px;
  background-color: #e5b099;
  z-index: -1;
}
.item.intro .image-area.mobile {
  display: none;
  text-align: center;
  width: fit-content;
  margin: auto;
}
.item.intro .text-area {
  font-size: 16px;
  width: 45%;
}
.item.intro .text-area p {
  text-align: justify;
}

.promo-div {
  padding: 50px 0;
  background-color: #242745;
}
.promo-div div {
  text-align: center;
  color: #e5b099;
  font-size: 16px;
  margin: auto;
}
.promo-div div h1 {
  font-size: 60px;
  margin: 10px 0;
}
.promo-div div:last-of-type {
  width: 50%;
}

.left-template {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
}
.left-template.mobile {
  display: none;
}
.left-template.home {
  flex-direction: row;
}
.left-template.home h1 {
  color: #242745;
}
.left-template img {
  width: 360px;
}
.left-template h1 {
  font-style: italic;
  font-size: 35px;
  color: #e5b099;
}
.left-template .text-template {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.left-template .text-template .top {
  background-color: #e5b099;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 80px;
  margin-left: -45px;
  width: 97%;
  z-index: 10;
  margin-top: 50px;
}
.left-template .text-template .top h1 {
  font-style: italic;
  font-size: 35px;
  margin: 20px 0;
}
.left-template .text-template .bottom {
  width: 75%;
  margin: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}
.left-template .text-template .bottom span {
  display: block;
  width: 100%;
}
.left-template .text-template .bottom span:first-of-type {
  text-align: justify;
  font-size: 20px;
}

.right-template {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
}
.right-template.mobile {
  display: none;
}
.right-template.home {
  flex-direction: row;
}
.right-template.home h1 {
  color: #242745;
}
.right-template img {
  width: 360px;
}
.right-template h1 {
  font-style: italic;
  font-size: 35px;
  color: #e5b099;
}
.right-template .text-template {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.right-template .text-template .top {
  background-color: #e5b099;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 80px;
  margin-right: -45px;
  width: 97%;
  z-index: 10;
  margin-left: auto;
  margin-top: 50px;
}
.right-template .text-template .top h1 {
  font-style: italic;
  font-size: 35px;
  margin: 20px 0;
}
.right-template .text-template .bottom {
  width: 75%;
  margin: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}
.right-template .text-template .bottom span {
  display: block;
  width: 100%;
}
.right-template .text-template .bottom span:first-of-type {
  text-align: justify;
  font-size: 20px;
}

.latest-creations {
  margin: 40px 0px;
  background: linear-gradient(to top, #242745 70%, #ffffff 0%);
  display: flex;
  flex-direction: column;
  padding: 40px 40px;
}
.latest-creations h1 {
  font-size: 35px;
  width: 100%;
  text-align: center;
  margin: 20px 0;
}
.latest-creations .top {
  width: 50%;
  margin: auto;
}
.latest-creations .top img {
  width: 100%;
}
.latest-creations .bottom {
  color: #e5b099;
  width: 100%;
  text-align: center;
}
.latest-creations .bottom p {
  font-size: 20px;
  line-height: 24px;
  margin-top: 30px;
}
.latest-creations .bottom .bold {
  font-weight: 700;
}
.latest-creations .bottom a {
  color: #FFF;
}
.latest-creations .bottom a:hover {
  color: #e5b099;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  margin: 40px 80px;
}
.form-wrapper .form-area {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.form-wrapper .form-area .contactpage {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.form-wrapper .form-area .contactpage input,
.form-wrapper .form-area .contactpage textarea {
  width: 100%;
  height: 60px;
  padding: 15px;
  border: 1px solid #e5b099;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  font-size: 20px;
}
.form-wrapper .form-area .contactpage input::placeholder,
.form-wrapper .form-area .contactpage textarea::placeholder {
  color: #242745;
}
.form-wrapper .form-area .contactpage textarea {
  height: 190px;
}
.form-wrapper .left {
  width: 100%;
}
.form-wrapper img {
  width: 430px;
}
.form-wrapper .button-area {
  width: 100%;
}
.form-wrapper .button-area button {
  margin-left: auto;
}
.form-wrapper .info-area {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  margin-top: 20px;
}
.form-wrapper .info-area span {
  margin-bottom: 20px;
}

.whatwedoWrapper {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  margin: 40px 80px;
}
.whatwedoWrapper.desktop {
  display: flex;
}
.whatwedoWrapper.mobile {
  display: none;
}
.whatwedoWrapper .left,
.whatwedoWrapper .right {
  width: 50%;
}
.whatwedoWrapper .left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.whatwedoWrapper .left h1 {
  color: #e5b099;
  font-size: 60px;
}
.whatwedoWrapper .left .text-area {
  font-size: 20px;
  text-align: justify;
}
.whatwedoWrapper .left p {
  line-height: 26px;
}
.whatwedoWrapper .right {
  margin: auto;
}
.whatwedoWrapper .right img {
  width: 100%;
}

.ourProjects {
  display: flex;
  margin: 40px 80px;
  padding-bottom: 40px;
  flex-direction: column;
  border-bottom: 1px solid #242745;
}
.ourProjects h1 {
  color: #e5b099;
  font-size: 60px;
}
.ourProjects p {
  font-size: 16px;
  text-align: justify;
}

.right-template .image-template {
  background-image: url(../images/right-item-bg.png);
  background-repeat: no-repeat;
  background-position: right;
  padding-right: 114px;
  padding-bottom: 102px;
  background-size: contain;
}

.left-template .image-template {
  background-image: url(../images/left-item-bg.png);
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 114px;
  padding-bottom: 95px;
  background-size: contain;
}

.imageTemp-Text-temp {
  display: flex;
  flex-direction: row;
  align-items: end;
}

.form-wrapper h1 {
  color: #e5b099;
  font-size: 52px;
  margin-bottom: 10px;
}

/**
    Carousel
**/
.carousel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  max-width: 1500px;
  margin: auto;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 calc(25% - 8px);
  height: 200px;
  margin-right: 10px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.carousel-btn {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 52px;
  height: 52px;
}

.carousel-btn.next {
  position: absolute;
  right: 20px;
  top: calc(50% - 21px);
  background-image: url(../images/next-white-icon.png);
}

.carousel-btn.next.less {
  background-image: url(../images/next-icon.png);
}

.carousel-btn.prev {
  position: absolute;
  left: 20px;
  top: calc(50% - 21px);
  background-image: url(../images/prev-white-icon.png);
}

.carousel-row h1 {
  font-weight: 700;
  font-size: 32px;
  font-style: italic;
  color: #e5b099;
  width: 100%;
  max-width: 1500px;
}

.goBack {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  text-align: right;
  max-width: 1500px;
  margin: auto;
}
.goBack img {
  width: 50px;
  height: 50px;
}

.thumbnail-viewer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1500px;
  gap: 10px;
  margin: auto;
  padding: 0 40px;
}
.thumbnail-viewer .image-item {
  width: calc(20% - 8px);
  height: 250px;
  cursor: pointer;
}
.thumbnail-viewer .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#imagePopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#imagePopup.show {
  display: flex;
}
#imagePopup #popupImg {
  max-width: 90%;
  max-height: 80%;
}
#imagePopup #nextImage {
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0;
}
#imagePopup #nextImage img {
  height: 50px;
  width: 50px;
}
#imagePopup #closePopup {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #242745;
  font-weight: 700;
  font-size: 24px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
}
header.desktop {
  display: flex;
}
header.mobile {
  display: none;
}
header #header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header #header-wrapper .logo {
  display: flex;
  padding: 30px;
}
header #header-wrapper .logo img {
  width: 300px;
}
header #header-wrapper nav {
  display: flex;
  padding: 30px;
  flex-direction: column;
}
header #header-wrapper nav ul,
header #header-wrapper nav li {
  display: flex;
  list-style: none;
  gap: 20px;
  font-size: 28px;
}
header #header-wrapper nav ul {
  border-bottom: 2px solid #d99a88;
  padding-left: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
header #header-wrapper nav .social-icons {
  display: flex;
  gap: 20px;
  justify-content: end;
}
header #header-wrapper nav .social-icons img {
  width: 25px;
  height: 25px;
}
header .menu-opener {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 15;
  background-color: #FFF;
}
header .menu-opener .menu-opener-button {
  width: 30px;
  margin-left: auto;
  padding: 4px;
  margin-right: 4px;
  box-sizing: content-box;
}
header .menu-opener .menu-opener-button img {
  width: 30px;
}

#mainMenuMobile {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #FFF;
  z-index: 20;
}
#mainMenuMobile .menu-close-area {
  width: 100%;
  height: 30px;
}
#mainMenuMobile .menu-close-area .close {
  width: 30px;
  height: 30px;
  padding: 5px;
  margin-left: auto;
}
#mainMenuMobile .menu-close-area .close img {
  width: 100%;
}
#mainMenuMobile nav {
  padding: 30px;
  font-size: 18px;
}
#mainMenuMobile nav ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
#mainMenuMobile nav ul li {
  margin-bottom: 10px;
}
#mainMenuMobile nav ul li a {
  font-weight: 500;
  font-size: 26px;
}
#mainMenuMobile.hide {
  display: none;
}

footer.desktop {
  display: block;
  background-color: #e5b099;
  color: #242745;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top: auto;
}
footer.desktop .footer-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  padding: 20px 40px;
  align-items: center;
  width: 100%;
  max-width: 1500px;
}
footer.desktop .footer-wrapper .footer-top,
footer.desktop .footer-wrapper .footer-middle,
footer.desktop .footer-wrapper .footer-bottom {
  width: 100%;
}
footer.desktop .footer-wrapper .footer-top {
  text-align: center;
}
footer.desktop .footer-wrapper .footer-top img {
  margin: auto;
  width: 150px;
}
footer.desktop .footer-wrapper .footer-middle {
  display: flex;
  align-items: center;
  margin: 15px 0;
  border-bottom: 2px solid #242745;
  padding-bottom: 15px;
}
footer.desktop .footer-wrapper .footer-middle span {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-left: 75px;
  font-size: 26px;
}
footer.desktop .footer-wrapper .social-icons {
  display: flex;
  gap: 20px;
  justify-content: end;
}
footer.desktop .footer-wrapper .social-icons img {
  width: 25px;
  height: 25px;
}
footer.desktop .footer-wrapper .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  column-gap: 10px;
}
footer.desktop .footer-wrapper .footer-bottom span {
  font-size: 16px;
}
footer.desktop .footer-wrapper .footer-credits {
  font-size: 10px;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  margin-top: 10px;
  align-self: center;
}
footer.desktop .footer-wrapper .footer-credits span {
  display: flex;
}
footer.desktop .footer-wrapper .footer-credits span a {
  color: #242745;
}

footer.mobile {
  display: none;
  width: 100%;
  background-color: #e5b099;
}
footer.mobile .footer-wrapper {
  display: flex;
  flex-direction: row;
  padding-bottom: 10px;
  margin: 10px;
  gap: 10px;
  border-bottom: 2px solid #242745;
}
footer.mobile .footer-wrapper .footer-left,
footer.mobile .footer-wrapper .footer-right {
  width: 50%;
}
footer.mobile .footer-wrapper .footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer.mobile .footer-wrapper .footer-left img {
  width: 120px;
  margin-bottom: 10px;
}
footer.mobile .footer-wrapper .footer-left span {
  text-align: center;
}
footer.mobile .footer-wrapper .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer.mobile .footer-wrapper .footer-right span {
  margin: 10px 0;
}
footer.mobile .footer-wrapper .footer-right .social-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
footer.mobile .footer-wrapper .footer-right .social-icons img {
  width: 20px;
}
footer.mobile .footer-credits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 10px;
  padding: 10px;
}
footer.mobile .footer-credits span {
  font-size: 10px;
  white-space: nowrap;
}
footer.mobile .footer-credits a {
  text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
  header {
    width: 100%;
  }
  header #header-wrapper {
    flex-direction: column;
  }
  header #header-wrapper nav {
    padding: 30px 0;
  }
  header #header-wrapper nav ul,
  header #header-wrapper nav li {
    font-size: 24px;
  }
  footer.desktop {
    display: none;
  }
  footer.mobile {
    display: block;
  }
  footer .footer-wrapper {
    padding: 10px;
  }
  .item.intro h1 {
    font-size: 44px;
  }
  .item.intro .text-area {
    font-size: 14px;
  }
  .promo-div div {
    font-size: 14px;
  }
  .promo-div div h1 {
    font-size: 44px;
  }
  .latest-creations .column-wrapper {
    gap: 10px;
  }
  .left-template .text-template .top {
    padding-left: 30px;
  }
  .left-template .text-template .top h1 {
    font-size: 26px;
    margin: 10px 0;
  }
  .right-template .text-template .top h1 {
    font-size: 26px;
    margin: 10px 0;
  }
  .left-template .text-template .bottom span:first-of-type {
    font-size: 16px;
  }
  .right-template .text-template .top {
    padding-left: 30px;
  }
  .right-template .text-template .bottom span:first-of-type {
    font-size: 16px;
  }
  .latest-creations {
    margin: 40px 0;
  }
  .latest-creations .bottom p {
    font-size: 16px;
  }
  .item.intro .image-area {
    position: relative;
    padding-top: 20px;
    padding-right: 20px;
  }
  .item.intro .image-area img {
    width: 300px;
  }
  .item.intro .image-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 270px;
  }
  .left-template .text-template .top,
  .right-template .text-template .top {
    width: 100%;
  }
  .left-template .text-template .bottom,
  .right-template .text-template .bottom {
    width: 100%;
    padding: 10px;
  }
  .whatwedoWrapper.desktop {
    display: none;
  }
  .whatwedoWrapper.mobile {
    display: flex;
    flex-direction: column;
    margin: 40px 10px;
    gap: 0;
  }
  .whatwedoWrapper h1 {
    color: #e5b099;
    font-size: 44px;
  }
  .whatwedoWrapper .first-text-row {
    display: flex;
    flex-direction: row;
  }
  .whatwedoWrapper .left,
  .whatwedoWrapper .right {
    width: 100%;
    font-size: 16px;
  }
  .whatwedoWrapper .left .text-area,
  .whatwedoWrapper .right .text-area {
    font-size: 16px;
  }
  .whatwedoWrapper .right {
    margin-left: 20px;
  }
  .whatwedoWrapper .right img {
    width: 300px;
  }
  .left-template .image-template {
    background-image: none;
    padding-left: 20px;
    padding-bottom: 20px;
    position: relative;
    margin: auto;
  }
  .left-template .image-template img {
    width: 260px;
  }
  .left-template .image-template::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 240px;
    background-color: #e5b099;
    z-index: -1;
  }
  .right-template .image-template {
    background-image: none;
    padding-right: 20px;
    padding-bottom: 20px;
    position: relative;
    margin: auto;
  }
  .right-template .image-template img {
    width: 260px;
  }
  .right-template .image-template::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 240px;
    background-color: #e5b099;
    z-index: -1;
  }
  .form-wrapper {
    margin: 40px 10px;
  }
  .form-wrapper img {
    width: 300px;
  }
  .ourProjects {
    margin: 40px 10px;
  }
  .goBack img {
    width: 32px;
    height: 32px;
  }
  .thumbnail-viewer {
    padding: 0 10px;
  }
  .thumbnail-viewer .image-item {
    width: calc(25% - 8px);
    height: 250px;
  }
}
@media only screen and (max-width: 690px) {
  header #header-wrapper .logo {
    margin: 11px 0px 30px;
  }
  header .menu-opener {
    display: block;
    box-sizing: content-box;
  }
  header #header-wrapper nav {
    display: none;
  }
  header #header-wrapper nav ul,
  header #header-wrapper nav li {
    font-size: 20px;
  }
  .banner .page-title h1 {
    text-indent: 40px;
    font-size: 60px;
  }
  .item.intro .text-area {
    width: 100%;
  }
  .item.intro .image-area.mobile {
    display: block;
  }
  .item.intro .image-area.desktop {
    display: none;
  }
  .left-template .image-template img {
    width: 190px;
  }
  .left-template .image-template::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 200px;
  }
  .right-template .image-template img {
    width: 190px;
  }
  .right-template .image-template::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 200px;
  }
  .left-template .text-template .bottom span:first-of-type {
    text-align: center;
  }
  .right-template .text-template .bottom span:first-of-type {
    text-align: center;
  }
  .left-template .text-template .bottom span.home {
    text-align: center;
  }
  .right-template .text-template .bottom span.home {
    text-align: center;
  }
  .right-template .text-template .top {
    padding-left: 15px;
  }
  .left-template .text-template .top {
    padding-left: 15px;
  }
  .left-template .text-template .top {
    margin-left: -25px;
  }
  .right-template .text-template .top {
    margin-right: -25px;
  }
  .whatwedoWrapper .first-text-row {
    display: flex;
    flex-direction: column;
  }
  .latest-creations {
    background: #242745;
    padding: 0px 10px;
  }
  .latest-creations h1 {
    color: #e5b099;
    font-size: 28px;
  }
  .latest-creations .top {
    width: 65%;
    text-align: center;
  }
  .latest-creations .column-wrapper {
    flex-direction: column;
  }
  .latest-creations .column-wrapper .col {
    display: flex;
    width: 100%;
  }
  .latest-creations .column-wrapper .col .img {
    width: 50%;
    margin: auto;
  }
  .latest-creations .column-wrapper .col .img img {
    width: 100%;
  }
  .latest-creations .column-wrapper .col .text {
    width: 100%;
  }
  .form-wrapper .right {
    display: none;
  }
  .ourProjects h1 {
    font-size: 44px;
  }
  .carousel-item {
    height: 170px;
  }
  .thumbnail-viewer .image-item {
    width: calc(33.33% - 8px);
    height: 200px;
  }
  .promo-div div:last-of-type {
    width: 100%;
  }
  .whatwedoWrapper .right {
    margin-left: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 430px) {
  .promo-div div h1 {
    font-size: 36px;
  }
  h1.mobile {
    display: block;
  }
  h1.desktop {
    display: none;
  }
  .left-template h1.mobile {
    text-align: right;
    padding: 5px;
  }
  .right-template h1.mobile {
    text-align: left;
    padding: 5px;
  }
  .btn {
    width: 100%;
    max-width: 140px;
  }
  .left-template .image-template img {
    width: 145px;
  }
  .right-template .image-template img {
    width: 145px;
  }
  .left-template .image-template::before {
    width: 145px;
    height: 176px;
  }
  .right-template .image-template::before {
    width: 145px;
    height: 176px;
  }
  .carousel-row h1 {
    font-size: 28px;
  }
  .carousel-item {
    height: 133px;
  }
  .thumbnail-viewer .image-item {
    height: 160px;
  }
  .left-template .text-template .bottom h1,
  .right-template .text-template .bottom h1 {
    font-size: 28px;
  }
  .whatwedoWrapper .right img {
    width: 280px;
  }
  .left-template.desktop,
  .right-template.desktop {
    display: none;
  }
  .left-template.mobile,
  .right-template.mobile {
    display: flex;
  }
  .left-template.mobile .image-template,
  .right-template.mobile .image-template {
    margin: unset;
  }
  .left-template.mobile .left-text-image,
  .right-template.mobile .left-text-image {
    display: flex;
    align-items: end;
  }
  .left-template.mobile .right-text-image,
  .right-template.mobile .right-text-image {
    display: flex;
    align-items: end;
  }
  .left-template.mobile .lineone,
  .right-template.mobile .lineone {
    padding: 5px;
  }
  .left-template.mobile .linetwo,
  .right-template.mobile .linetwo {
    padding: 5px;
  }
  .left-template.mobile .bottom,
  .right-template.mobile .bottom {
    padding: 0;
  }
  .left-template.mobile .temp-btn,
  .right-template.mobile .temp-btn {
    width: 180px;
    margin-left: auto;
  }
  .left-template.mobile .temp-btn a,
  .right-template.mobile .temp-btn a {
    max-width: 180px;
  }
  .left-template.mobile.oneliner .bottom,
  .right-template.mobile.oneliner .bottom {
    padding: 5px;
  }
  .right-template.mobile .temp-btn {
    margin-left: unset;
  }
}
@media only screen and (max-width: 350px) {
  header #header-wrapper .logo img {
    width: 220px;
  }
  .latest-creations .top img {
    width: 215px;
  }
  .item.intro .image-area img {
    width: 220px;
  }
  .item.intro .image-area::before {
    content: "";
    width: 216px;
    height: 197px;
  }
  .right-template h1,
  .left-template h1 {
    font-size: 28px;
  }
  .left-template .text-template .top h1,
  .right-template .text-template .top h1 {
    font-size: 20px;
  }
  footer.mobile .footer-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer.mobile .footer-wrapper .footer-left,
  footer.mobile .footer-wrapper .footer-right {
    width: 100%;
  }
  footer.mobile .footer-wrapper .footer-left {
    padding-bottom: 10px;
    border-bottom: 2px solid #242745;
  }
  footer.mobile .footer-wrapper {
    border-bottom: 0;
  }
}

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