.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container {
    padding: 0 2rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  color: #21372f;
  background-color: #f3f3f3;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  color: #21372f;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 700;
}

p,
li,
a,
span {
  line-height: 150%;
}

p {
  font-family: "Manrope", sans-serif;
  color: #21372f;
  font-size: 16px;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

h1 {
  font-weight: 400;
}

h2,
h3 {
  font-weight: 300;
}

h4 {
  font-weight: 600;
}

h1 {
  font-size: clamp(26px, 4.5vw, 50px);
}

p {
  margin-bottom: 1rem;
}
p strong {
  font-weight: 700;
}

input[type=submit] {
  transition: 0.3s ease;
}

a {
  color: #21372f;
  text-decoration: none;
  transition: 0.3s ease;
}

.scrollTo {
  position: relative;
  top: 4rem;
}

.central {
  text-align: center;
}

.pink {
  color: #c4729e;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: all 0.3s ease;
}
a::after {
  transition: all 0.3s ease;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.borderBottom {
  border-radius: 0% 0% 50% 50%/0% 0% 15px 15px;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .borderBottom {
    border-radius: 0% 0% 50% 50%/0% 0% 20px 20px;
    padding-bottom: 6rem;
  }
}

.ctaSec {
  background: linear-gradient(#32522c 0%, #142212 100%);
  padding: 6rem 0 10rem;
  margin: -3rem 0 -6rem;
  position: relative;
}
@media (min-width: 768px) {
  .ctaSec {
    padding: 7rem 0 11rem;
  }
}
@media (min-width: 1100px) {
  .ctaSec {
    padding: 8rem 0 12rem;
  }
}
.ctaSec .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 1100px) {
  .ctaSec .container {
    opacity: 0;
    transition: 0.3s ease;
    transform: translateY(50px);
  }
  .ctaSec .container.active {
    transform: translateY(0);
    opacity: 1;
  }
}
.ctaSec .container .titleWrapper h2 {
  margin-bottom: 2rem;
}
.ctaSec .container p {
  margin-bottom: 2.5rem;
  font-size: clamp(1.2rem, 2vw, 2rem);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .ctaSec .container p {
    max-width: 550px;
  }
}
@media (min-width: 1400px) {
  .ctaSec .container p {
    max-width: 650px;
  }
}
.white {
  color: #f3f3f3;
}

.svgArrow {
  display: inline-block;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}
.svgArrow svg {
  display: block;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  word-spacing: normal;
  border-radius: 100vw;
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 768px) {
  .btn,
  .button {
    font-size: 17px;
  }
}
@media (min-width: 1100px) {
  .btn,
  .button {
    font-size: 18px;
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  .btn,
  .button {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .btn,
  .button {
    font-size: 22px;
  }
}
.btn.readButton,
.button.readButton {
  background-color: #21372f;
  color: #f3f3f3;
  border-radius: 100vw;
}
.btn.darkGreen,
.button.darkGreen {
  background-color: #102210;
  color: #f3f3f3;
}
.btn.darkGreen svg,
.button.darkGreen svg {
  margin-left: 1rem;
}
.btn.black,
.button.black {
  color: #f3f3f3;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  background-color: #21372f;
}
@media (min-width: 1100px) {
  .btn.black,
  .button.black {
    background-color: transparent;
  }
}
.btn.black span,
.button.black span {
  position: relative;
  z-index: 2;
}
.btn.black span:before, .btn.black span:after,
.button.black span:before,
.button.black span:after {
  display: none;
}
@media (min-width: 1100px) {
  .btn.black:before,
  .button.black:before {
    content: "";
    background-color: #21372f;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: 0;
    border-radius: 100vw;
  }
}
@media (min-width: 1100px) {
  .btn.black:after,
  .button.black:after {
    z-index: 1;
    content: "";
    background-color: #f3f3f3;
    border-radius: 100vw;
    height: 6px;
    width: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s ease;
  }
}
@media (min-width: 1100px) {
  .btn.black:hover,
  .button.black:hover {
    color: #21372f;
  }
  .btn.black:hover:after,
  .button.black:hover:after {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
}
.btn span,
.button span {
  display: inline-block;
}
.btn span:before, .btn span:after,
.button span:before,
.button span:after {
  content: " ";
  white-space: pre;
}

@media (min-width: 640px) {
  .textImage.reverse .container {
    flex-direction: row-reverse;
  }
}
.textImage .container {
  padding-top: 2rem;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 640px) {
  .textImage .container {
    padding-top: 3rem;
    gap: 0;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .textImage .container {
    align-items: flex-start;
  }
}
@media (min-width: 1100px) {
  .textImage .container {
    align-items: center;
  }
}
@media (min-width: 640px) {
  .textImage .container .image {
    width: 35%;
  }
}
@media (min-width: 768px) {
  .textImage .container .image {
    width: 40%;
    margin-top: 3rem;
  }
}
@media (min-width: 1100px) {
  .textImage .container .image {
    margin-top: 0;
    width: calc(50% - 2rem);
    padding: 0;
  }
}
.textImage .container .image img {
  border-radius: 30px;
}
.textImage .container .text {
  color: #21372f;
}
@media (min-width: 640px) {
  .textImage .container .text {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .textImage .container .text {
    width: 60%;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text {
    width: 50%;
  }
}
@media (min-width: 640px) {
  .textImage .container .text .inner {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .textImage .container .text .inner {
    padding: 2rem 3rem;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text .inner {
    max-width: 600px;
    padding: 3rem 2.5rem;
  }
}
@media (min-width: 1400px) {
  .textImage .container .text .inner {
    max-width: 650px;
  }
}
.textImage .container .text .inner h4 {
  color: #c4729e;
}
.textImage .container .text .inner p {
  margin-bottom: 2rem;
  font-size: 16px;
}
@media (min-width: 768px) {
  .textImage .container .text .inner p {
    font-size: 18px;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text .inner p {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .textImage .container .text .inner p {
    margin-bottom: 2.5rem;
    font-size: 22px;
  }
}
@media (min-width: 1500px) {
  .textImage .container .text .inner p {
    font-size: 24px;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text .inner p {
    max-width: 470px;
  }
}

.fullImage {
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .fullImage {
    padding: 3rem 0;
  }
}
.fullImage .container img {
  border-radius: 30px;
}

.relatedBlogs .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.relatedBlogs .container .titleWrapper {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .relatedBlogs .container .postsWrapper .posts-grid .card:nth-of-type(3) {
    display: none;
  }
}

.postsWrapper {
  padding-bottom: 3rem;
}
.postsWrapper .posts-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .postsWrapper .posts-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .postsWrapper .posts-grid {
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.postsWrapper .posts-grid .card {
  display: grid;
  grid-template-rows: auto 1fr;
}
.postsWrapper .posts-grid .card .post-thumbnail {
  overflow: hidden;
  aspect-ratio: 415/230;
}
.postsWrapper .posts-grid .card .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.postsWrapper .posts-grid .card .post-content {
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .postsWrapper .posts-grid .card .post-content {
    grid-template-rows: 1fr 1fr auto auto 1fr;
  }
}
.postsWrapper .posts-grid .card .post-content h2 {
  font-size: 1.3rem;
}
.postsWrapper .posts-grid .card .post-content h2,
.postsWrapper .posts-grid .card .post-content p {
  margin-bottom: 0;
}
.postsWrapper .posts-grid .card .post-content .button {
  height: -moz-fit-content;
  height: fit-content;
}

.formWrapper form .submitWrapper {
  margin-top: 1rem;
}
.formWrapper form .submitWrapper p {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.formWrapper form .submitWrapper p input {
  border: 1px solid #21372f;
  cursor: pointer;
  padding: 1rem 2rem;
  border-radius: 100vw;
  font-size: 1rem;
  background-color: #c4729e;
  color: #f3f3f3;
}
@media (min-width: 1100px) {
  .formWrapper form .submitWrapper p input:hover {
    background-color: #404e40;
  }
}
.formWrapper form .formItem p {
  margin: 0;
}
.formWrapper form .formItem input[type=text],
.formWrapper form .formItem input[type=email],
.formWrapper form .formItem input[type=tel],
.formWrapper form .formItem textarea {
  width: 100%;
  padding: 1rem 0;
  font-family: inherit;
  background-color: transparent;
  font-size: 1rem;
}
.formWrapper form .formItem textarea {
  resize: none;
  border-top: none;
}

.backTo {
  display: inline-flex;
  align-items: center;
}
.backTo svg {
  transform: rotate(180deg);
  margin-right: 0.5rem;
}

.hero .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero .container .text {
  width: 100%;
}
.hero .container .down {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .hero .container .down {
    margin-top: 0;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1100px) {
  .hero .container .down {
    width: 60px;
    height: 60px;
    margin-top: -5rem;
  }
}
@media (min-width: 1400px) {
  .hero .container .down {
    margin-left: 3rem;
  }
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container {
    padding: 0 2rem;
  }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  z-index: 999999;
  padding: 8px 16px;
  color: #f3f3f3;
  text-decoration: none;
}
.skip-link:focus {
  left: 6px;
}

body {
  background-color: #efece8;
}

.footer-contact {
  display: none;
}

.hero.textOnly .container .titleWithDesc {
  display: grid;
  grid-template-rows: auto auto;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero.textOnly .container .titleWithDesc {
    padding: 4rem 0 0;
  }
}
.hero.textOnly .container .titleWithDesc .titleWrapper h1 {
  font-weight: 600;
  font-size: clamp(30px, 4vw, 64px);
}
@media (min-width: 768px) {
  .hero.textOnly .container .titleWithDesc .titleWrapper h1 {
    max-width: 615px;
  }
}
@media (min-width: 768px) {
  .hero.textOnly .container .titleWithDesc .desc {
    padding-left: calc(50% + 0.75rem);
  }
}
@media (min-width: 1100px) {
  .hero.textOnly .container .titleWithDesc .desc {
    padding-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .hero.textOnly .container .titleWithDesc .desc {
    padding-right: 3rem;
  }
}
@media (min-width: 1400px) {
  .hero.textOnly .container .titleWithDesc .desc {
    padding-right: 6rem;
  }
}
.hero.textOnly .container .titleWithDesc .desc p {
  font-size: 1.05rem;
  line-height: 130%;
}
@media (min-width: 768px) {
  .hero.textOnly .container .titleWithDesc .desc p {
    font-size: 1.15rem;
  }
}
@media (min-width: 1100px) {
  .hero.textOnly .container .titleWithDesc .desc p {
    font-size: 1.25rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/-1;
  width: 100%;
  gap: 0.5rem;
  padding: 3rem 0 0;
}
.pagination .page-numbers {
  padding: 0.5rem;
}
.pagination .page-numbers.prev {
  transform: rotate(180deg);
  margin-right: 0.5rem;
}
.pagination .page-numbers.next {
  margin-left: 0.5rem;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.47806 5.42785L0.47806 4.47165H8.07142L4.72472 1.12494L5.39968 0.449977L9.89945 4.94975L5.39968 9.44952L4.72472 8.77455L8.07142 5.42785H0.47806Z' fill='%2321372F'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
  height: 10px;
  width: 10px;
  background-position: center;
}
.pagination .page-numbers.current {
  font-weight: 600;
}

.filter {
  padding: 3rem 0 6em;
}
.filter .title {
  margin-bottom: 0.75rem;
}
.filter .title h5 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .filter .title h5 {
    font-size: 18px;
  }
}
.filter .category-filter {
  list-style: none;
  display: flex;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}
@media (max-width: 767px) {
  .filter .category-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .filter .category-filter::-webkit-scrollbar {
    height: 3px;
  }
  .filter .category-filter::-webkit-scrollbar-track {
    background: transparent;
  }
  .filter .category-filter::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
}
.filter .category-filter li {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .filter .category-filter li {
    flex-shrink: 0;
  }
}
.filter .category-filter li a {
  padding: 0.1rem 0;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .filter .category-filter li a {
    font-size: 18px;
  }
}
@media (min-width: 1100px) {
  .filter .category-filter li a {
    transform: translateY(0);
    transition: 0.3s ease;
  }
  .filter .category-filter li a:hover {
    transform: translateY(-4px);
  }
}
@media (max-width: 767px) {
  .filter .category-filter li a {
    white-space: nowrap;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.filter .category-filter li a.active {
  font-weight: 700;
}
@media (min-width: 1100px) {
  .filter .category-filter li a.active:hover {
    transform: translateY(0);
  }
}

.page-content .container .content-wrapper {
  padding-bottom: 3rem;
}
.page-content .container .content-wrapper .projectsWrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .page-content .container .content-wrapper .projectsWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .page-content .container .content-wrapper .projectsWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-content .container .content-wrapper .projectsWrapper .project {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
  gap: 0;
}
@media (min-width: 768px) {
  .page-content .container .content-wrapper .projectsWrapper .project {
    grid-row: span 1;
  }
}
@media (min-width: 1100px) {
  .page-content .container .content-wrapper .projectsWrapper .project {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .page-content .container .content-wrapper .projectsWrapper .project.active {
    opacity: 1;
    transform: translateY(0);
  }
  .page-content .container .content-wrapper .projectsWrapper .project:nth-child(3n+2) {
    transition-delay: 0.15s;
  }
  .page-content .container .content-wrapper .projectsWrapper .project:nth-child(3n+3) {
    transition-delay: 0.25s;
  }
}
.page-content .container .content-wrapper .projectsWrapper .project a.projectLink {
  border-bottom: 1px solid #21372f;
  transition: all 0.5s ease-in;
}
@media (min-width: 768px) {
  .page-content .container .content-wrapper .projectsWrapper .project a.projectLink:hover .image img {
    transform: scale(1.02);
  }
  .page-content .container .content-wrapper .projectsWrapper .project a.projectLink:hover .upper .svgArrow {
    transform: rotate(45deg);
  }
}
.page-content .container .content-wrapper .projectsWrapper .project a.projectLink .info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}
.page-content .container .content-wrapper .projectsWrapper .project a.projectLink .info span {
  font-size: 1rem;
  display: block;
}
@media (min-width: 1100px) {
  .page-content .container .content-wrapper .projectsWrapper .project a.projectLink .info span {
    font-size: 18px;
  }
}
.page-content .container .content-wrapper .projectsWrapper .project a.projectLink .info span:nth-of-type(2) {
  font-weight: 600;
  text-align: right;
}
.page-content .container .content-wrapper .projectsWrapper .project .image {
  position: relative;
  aspect-ratio: 46/36;
  border-radius: 10px;
  overflow: hidden;
  background: #cecece;
}
.page-content .container .content-wrapper .projectsWrapper .project .image .overlay {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  mix-blend-mode: overlay;
  background-color: #a7c7ee;
  opacity: 0.9;
  z-index: 1;
  transition: all 0.4s ease;
}
@media (min-width: 768px) {
  .page-content .container .content-wrapper .projectsWrapper .project .image .overlay {
    display: block;
  }
}
.page-content .container .content-wrapper .projectsWrapper .project .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
@media (min-width: 1100px) {
  .page-content .container .content-wrapper .projectsWrapper .project .image img {
    transition: all 0.3s ease;
    transform: scale(1);
  }
}
.page-content .container .content-wrapper .projectsWrapper .project .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  gap: 1rem;
}
.page-content .container .content-wrapper .projectsWrapper .project .upper h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.page-content .container .content-wrapper .projectsWrapper .project .upper .svgArrow {
  height: 27px;
  width: 27px;
  transition: all 0.3s ease;
}/*# sourceMappingURL=blog.css.map */