.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;
}

header .container .site-branding a svg path {
  fill: #efece8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span {
  color: #efece8;
}

.box.img {
  border-radius: 10px;
  overflow: hidden;
}

.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 .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: 2rem;
  }
}
@media (min-width: 1400px) {
  .hero.textOnly .container .titleWithDesc .desc {
    padding-right: 3rem;
  }
}
.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;
  }
}

.aboutOne {
  padding: 1.5rem 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .aboutOne {
    margin-bottom: -10vh;
  }
}
.aboutOne .container {
  position: relative;
}
.aboutOne .container .border {
  position: absolute;
  transform-origin: left;
  top: -1.5rem;
  left: 1rem;
  width: 100%;
  height: 1px;
  background-color: #efece8;
  max-width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .aboutOne .container .border {
    left: 1.5rem;
    max-width: calc(100% - 3rem);
  }
}
@media (min-width: 1400px) {
  .aboutOne .container .border {
    left: 2rem;
    max-width: calc(100% - 4rem);
  }
}
.aboutOne .container .sectionInner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #21372f;
}
@media (min-width: 768px) {
  .aboutOne .container .sectionInner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding-bottom: none;
    border-bottom: none;
  }
}
.aboutOne .container .sectionInner .box {
  position: relative;
}
.aboutOne .container .sectionInner .box:nth-of-type(1) {
  order: 1;
}
.aboutOne .container .sectionInner .box:nth-of-type(2) {
  order: 2;
}
.aboutOne .container .sectionInner .box.txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .aboutOne .container .sectionInner .box.txt {
    border-bottom: 1px solid #efece8;
  }
}
.aboutOne .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .aboutOne .container .sectionInner .box.txt h2 {
    margin-bottom: 3.5rem;
  }
}
.aboutOne .container .sectionInner .box.txt .lower {
  max-width: 590px;
}
.aboutOne .container .sectionInner .box.txt .link a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.965909 10L0 9.03409L7.67045 1.36364H0.909091V0H10V9.09091H8.63636V2.32955L0.965909 10Z' fill='%2321372F'/%3e%3c/svg%3e ");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 1rem;
}
.aboutOne .container .sectionInner .box.txt .link a:hover::after {
  transform: rotate(45deg);
}
.aboutOne .container .sectionInner .box.img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.aboutOne .container .sectionInner .box.img .standard {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.aboutOne .container .sectionInner .box.img .standard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.timeline .image {
  flex: 1;
}
.timeline .text {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .timeline .text {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .timeline .text:after {
    content: "";
    background-color: #efece8;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0.25rem;
    left: 1rem;
  }
}
.timeline .text .timeline-nav {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 25 24' xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none'%3E%3Cpath fill='%23f3f3f3' d='M.49 13.273v-2.47H20.1l-8.642-8.642L13.2.418l11.62 11.62-11.62 11.62-1.743-1.742 8.642-8.643H.49Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  width: 18px;
  border: none;
  background-color: transparent;
}
.timeline .text .timeline-nav.timeline-prev {
  transform: rotate(-180deg);
  right: 56px;
}
@media (min-width: 768px) {
  .timeline .text .timeline-nav.timeline-prev {
    transform: rotate(0deg);
    right: 0;
    bottom: 3.5rem;
  }
}
.timeline .text .timeline-nav.timeline-next {
  right: 0;
}
@media (min-width: 768px) {
  .timeline .text .timeline-nav.timeline-next {
    transform: rotate(0deg);
    bottom: 0;
  }
}

.timeline-nav {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #efece8;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  z-index: 10;
}
.timeline-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.timeline-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

#timelineContainer {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-height: 500px; /* Adjust this based on your design */
  scroll-behavior: smooth;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  #timelineContainer {
    padding-left: 1rem;
    padding-top: 0;
    padding-right: 3rem;
    max-height: 100% !important;
    aspect-ratio: 1/1;
  }
}
#timelineContainer:after {
  content: "";
  top: 2rem;
  left: 0;
  width: 10000px;
  height: 1px;
  background-color: #efece8;
  position: absolute;
}
@media (min-width: 768px) {
  #timelineContainer:after {
    display: none;
  }
}
#timelineContainer .year {
  opacity: 1 !important;
  transition: all 0.5s ease;
  padding: 1.5rem 1rem 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
  border: none !important;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  #timelineContainer .year {
    padding: 0 1.5rem 3.5rem !important;
  }
}
#timelineContainer .year:after {
  content: "";
  top: -11px;
  height: 22px;
  width: 22px;
  z-index: 2;
  background-color: #a7c7ee;
  border-radius: 100vw;
  position: absolute;
  left: 1rem;
  transition: 0.75s ease;
  transform: scale(0.5);
}
@media (min-width: 768px) {
  #timelineContainer .year:after {
    top: 0.25rem;
    left: -11px;
    transition: 0.5s ease !important;
  }
}
#timelineContainer .year.active h5 {
  color: #a7c7ee;
}
#timelineContainer .year.active h5 svg {
  transform: rotate(45deg);
}
#timelineContainer .year.active h5,
#timelineContainer .year.active p {
  opacity: 1;
}
#timelineContainer .year.active:after {
  transform: scale(1);
  transition-delay: 0.75s;
}
#timelineContainer .year h5 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem !important;
  opacity: 0.3;
  transition: 0.75s ease;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  #timelineContainer .year h5 {
    font-size: 26px;
  }
}
@media (min-width: 1100px) {
  #timelineContainer .year h5 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  #timelineContainer .year h5 {
    font-size: 29px;
  }
}
@media (min-width: 1400px) {
  #timelineContainer .year h5 {
    font-size: 32px;
  }
}
#timelineContainer .year h5 svg {
  transform: rotate(0deg);
  transition: 0.3s ease;
  transition-delay: 0.5s;
}
#timelineContainer .year p {
  opacity: 0.3;
  transition: 0.75s ease;
  line-height: 1.6;
  max-width: 400px;
}
@media (min-width: 1100px) {
  #timelineContainer .year p {
    font-size: 18px;
  }
}
#timelineContainer .year p:last-of-type {
  margin-bottom: 0;
}

#currentImage {
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
  .timeline .sectionInner {
    flex-direction: column;
  }
  .timeline .text {
    flex-direction: row;
    align-items: center;
  }
  #timelineContainer {
    order: 2;
    flex-direction: row;
    overflow: hidden;
    max-height: none;
    max-width: 100%;
    width: 100%;
  }
  #timelineContainer .year {
    width: 100%;
    flex-shrink: 0;
  }
}
@media (min-width: 640px) {
  .timeline {
    display: none;
  }
}

.timelineTablet {
  display: none;
}
@media (min-width: 640px) {
  .timelineTablet {
    display: block;
    padding: 1.5rem 0 0;
    padding-bottom: 60vh;
  }
}
.timelineTablet .container .sectionInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  padding-top: 1em;
}
.timelineTablet .container .sectionInner .imageWrapper {
  height: 100vh;
  display: flex;
  align-items: center;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack {
  position: relative;
  max-height: 80vh;
  height: 80vh;
  width: 100%;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="0"] {
  z-index: 13;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="1"] {
  z-index: 12;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="2"] {
  z-index: 11;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="3"] {
  z-index: 10;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="4"] {
  z-index: 9;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="5"] {
  z-index: 8;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="6"] {
  z-index: 7;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="7"] {
  z-index: 6;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="7"] {
  z-index: 5;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="8"] {
  z-index: 4;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="9"] {
  z-index: 3;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="10"] {
  z-index: 2;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard[data-index="11"] {
  z-index: 1;
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard:first-of-type {
  transform: scale(1.01);
}
.timelineTablet .container .sectionInner .imageWrapper .imageStack .imageCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 750px;
  border-radius: 10px;
  overflow: hidden;
}
.timelineTablet .container .sectionInner .textWrapper .year {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .timelineTablet .container .sectionInner .textWrapper .year {
    padding: 2rem 4rem;
  }
}
@media (min-width: 1200px) {
  .timelineTablet .container .sectionInner .textWrapper .year {
    padding: 2rem 5rem;
    max-width: calc(500px + 10rem);
    margin-left: auto;
    margin-right: auto;
  }
}
.timelineTablet .container .sectionInner .textWrapper .year:first-child {
  padding-top: 15vh;
}
.timelineTablet .container .sectionInner .textWrapper .year:last-child {
  min-height: 30vh;
}
.timelineTablet .container .sectionInner .textWrapper .year h5 {
  font-size: clamp(24px, 3.3vw, 36px);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #efece8;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.3;
  transition: 0.5s ease;
  transition-delay: 0.15s;
}
@media (min-width: 768px) {
  .timelineTablet .container .sectionInner .textWrapper .year h5 {
    margin-bottom: 2rem;
  }
}
.timelineTablet .container .sectionInner .textWrapper .year h5 svg {
  transform: rotate(-45deg);
  transition: 0.5s ease;
  transition-delay: 0.15s;
}
.timelineTablet .container .sectionInner .textWrapper .year h5 svg path {
  transition: 0.5s ease;
  transition-delay: 0.15s;
}
.timelineTablet .container .sectionInner .textWrapper .year h5.active {
  color: #a7c7ee;
  opacity: 1;
}
.timelineTablet .container .sectionInner .textWrapper .year h5.active svg {
  transform: rotate(0deg);
}
.timelineTablet .container .sectionInner .textWrapper .year h5.active svg path {
  fill: #a7c7ee;
}
.timelineTablet .container .sectionInner .textWrapper .year p {
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.6;
  max-width: 560px;
  opacity: 0.3;
  transition: 0.5s ease;
  transition-delay: 0.15s;
}
.timelineTablet .container .sectionInner .textWrapper .year p.active {
  opacity: 1;
}

.timeline {
  padding: 1.5rem 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .timeline .container .sectionInner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1.5rem;
    display: grid;
  }
}
.timeline .container .sectionInner .image {
  border-radius: 10px;
  overflow: hidden;
}
.timeline .container .sectionInner .image img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.life {
  padding: 1.5rem 0 1.5rem;
}
.life .container .sectionInner .box {
  position: relative;
}
.life .container .sectionInner .box.txt {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.life .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .life .container .sectionInner .box.txt h2 {
    margin-top: 1rem;
    margin-bottom: 3.5rem;
  }
}
.life .container .sectionInner .box.txt .lower {
  display: grid;
}
@media (min-width: 900px) {
  .life .container .sectionInner .box.txt .lower {
    display: grid;
    max-width: 66.66%;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-left: 33.33%;
  }
}
@media (min-width: 1100px) {
  .life .container .sectionInner .box.txt .lower {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .life .container .sectionInner .box.txt .lower.active {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers .container .sectionInner {
  padding: 1.5rem 0 0;
  border-top: 1px solid #efece8;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid #efece8;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .careers .container .sectionInner {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    border-bottom: none;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding-bottom: none;
    border-bottom: none;
  }
}
.careers .container .sectionInner .box {
  position: relative;
}
.careers .container .sectionInner .box:nth-of-type(1) {
  order: 1;
}
.careers .container .sectionInner .box:nth-of-type(2) {
  order: 2;
}
.careers .container .sectionInner .box.txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .careers .container .sectionInner .box.txt {
    border-bottom: 1px solid #efece8;
  }
}
@media (min-width: 1100px) {
  .careers .container .sectionInner .box.txt {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .careers .container .sectionInner .box.txt.active {
    opacity: 1;
    transform: translateY(0);
  }
}
.careers .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .careers .container .sectionInner .box.txt h2 {
    margin-bottom: 3.5rem;
  }
}
.careers .container .sectionInner .box.txt .lower {
  max-width: 590px;
}
.careers .container .sectionInner .box.img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.careers .container .sectionInner .box.img .standard {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.careers .container .sectionInner .box.img .standard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.aboutFour .container .sectionInner {
  border-bottom: 1px solid #efece8;
}
.aboutFour .container .sectionInner .box {
  position: relative;
}
.aboutFour .container .sectionInner .box.txt {
  padding-bottom: 1rem;
}
@media (min-width: 1100px) {
  .aboutFour .container .sectionInner .box.txt {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .aboutFour .container .sectionInner .box.txt.active {
    opacity: 1;
    transform: translateY(0);
  }
}
.aboutFour .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .aboutFour .container .sectionInner .box.txt h2 {
    margin-top: 1rem;
    margin-bottom: 3.5rem;
  }
}
.aboutFour .container .sectionInner .box.txt .lower {
  display: grid;
}
@media (min-width: 900px) {
  .aboutFour .container .sectionInner .box.txt .lower {
    display: grid;
    max-width: 66.66%;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.aboutThree {
  padding: 1.5rem 0 0;
}
@media (min-width: 768px) {
  .aboutThree {
    margin-top: -28vh;
  }
}
.aboutThree .container .sectionInner {
  border-top: 1px solid #efece8;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .aboutThree .container .sectionInner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding-bottom: none;
    border-bottom: none;
  }
}
.aboutThree .container .sectionInner .box {
  position: relative;
}
.aboutThree .container .sectionInner .box.txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .aboutThree .container .sectionInner .box.txt {
    border-bottom: 1px solid #efece8;
  }
}
@media (min-width: 1100px) {
  .aboutThree .container .sectionInner .box.txt {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .aboutThree .container .sectionInner .box.txt.active {
    opacity: 1;
    transform: translateY(0);
  }
}
.aboutThree .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .aboutThree .container .sectionInner .box.txt h2 {
    margin-top: 1rem;
    margin-bottom: 3.5rem;
  }
}
.aboutThree .container .sectionInner .box.txt .lower {
  max-width: 470px;
}
.aboutThree .container .sectionInner .box.img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutThree .container .sectionInner .box.img .imgLarge {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.featuredProjects {
  padding: 1.5rem 0 0;
}
.featuredProjects .container .sectionInner {
  padding-bottom: 2em;
}
@media (min-width: 768px) {
  .featuredProjects .container .sectionInner {
    border-bottom: 1px solid #efece8;
  }
}
.featuredProjects .container .sectionInner .titleWrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .featuredProjects .container .sectionInner .titleWrapper {
    margin-bottom: 3.5rem;
  }
}
.featuredProjects .container .sectionInner .titleWrapper h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  margin: 0;
}
@media (min-width: 768px) {
  .featuredProjects .container .sectionInner .titleWrapper h2 {
    max-width: unset;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 1rem;
  position: relative;
}
@media (min-width: 640px) {
  .featuredProjects .container .sectionInner .projectsWrapper {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
@media (min-width: 768px) {
  .featuredProjects .container .sectionInner .projectsWrapper {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper.slick-initialized {
  display: block;
}
.featuredProjects .container .sectionInner .projectsWrapper .slick-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none' viewBox='0 0 25 24'%3E%3Cpath fill='%23efece8' d='M.235 13.017v-2.47h19.609L11.2 1.906 12.944.162l11.62 11.62-11.62 11.62-1.743-1.742 8.643-8.643z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 18px;
  width: 18px;
  background-color: transparent;
  transition: all 0.3s ease;
  position: absolute;
  top: auto;
  left: auto;
}
.featuredProjects .container .sectionInner .projectsWrapper .slick-arrow.slick-prev {
  right: 56px;
  transform: rotate(180deg);
  bottom: 9px;
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .slick-arrow.slick-prev {
    right: auto;
    top: -5rem;
    bottom: auto;
    left: 0.75rem;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .slick-arrow.slick-next {
  bottom: 0;
  right: 0;
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .slick-arrow.slick-next {
    right: auto;
    top: -4.5rem;
    bottom: auto;
    left: 56px;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .slick-arrow:before {
  display: none;
}
.featuredProjects .container .sectionInner .projectsWrapper .slick-arrow.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.featuredProjects .container .sectionInner .projectsWrapper ul.slick-dots li button::before {
  font-size: 10px;
  color: #efece8;
  opacity: 0.25;
}
.featuredProjects .container .sectionInner .projectsWrapper ul.slick-dots li.slick-active button::before {
  opacity: 1;
}
.featuredProjects .container .sectionInner .projectsWrapper .project {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
  gap: 0;
  opacity: 0;
  transition: 0.3s ease;
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(1), .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(2), .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(3) {
    opacity: 0 !important;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(1).active, .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(2).active, .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(3).active {
    opacity: 1 !important;
    transform: translateY(0);
  }
  .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(2) {
    transition-delay: 0.15s;
  }
  .featuredProjects .container .sectionInner .projectsWrapper .project:nth-of-type(3) {
    transition-delay: 0.25s;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project.slick-active {
  opacity: 1;
}
@media (min-width: 640px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project {
    padding: 0 0.375rem;
  }
}
@media (min-width: 768px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project {
    padding: 0 0.5rem;
    grid-row: span 3;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .projectLink {
  transition: all 0.5s ease-in;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .projectLink:hover {
  cursor: pointer;
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .projectLink:hover .svgPlus line:last-of-type {
    opacity: 0;
  }
  .featuredProjects .container .sectionInner .projectsWrapper .project .projectLink:hover h3 {
    color: #a7c7ee;
  }
  .featuredProjects .container .sectionInner .projectsWrapper .project .projectLink:hover .image .overlay {
    opacity: 0;
  }
  .featuredProjects .container .sectionInner .projectsWrapper .project .projectLink:hover .image img {
    filter: saturate(1);
    transform: scale(1.02);
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .image {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .image {
    aspect-ratio: 8/10;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .image .overlay {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #a7c7ee;
  opacity: 0.4;
  z-index: 1;
  transition: all 0.4s ease;
}
@media (min-width: 768px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .image .overlay {
    display: block;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .image img {
    filter: saturate(0);
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .upper h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .upper .svgPlus {
  display: none;
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .upper .svgPlus {
    height: 27px;
    width: 27px;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .upper .svgPlus line {
  transition: opacity 0.3s ease;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .upper .svgArrow {
  display: none;
  height: 27px;
  width: 27px;
  opacity: 0;
  transition: all 0.3s ease;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .lower {
  padding: 0;
  min-height: unset;
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .lower {
    min-height: 260px;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner {
  padding: 0;
  margin: 0;
  max-height: auto;
  transition: all 0.5s ease;
  overflow: hidden;
  border-bottom: 1px solid #efece8;
}
@media (min-width: 640px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner {
    border-bottom: 1px solid transparent;
  }
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner {
    border-bottom: 1px solid #efece8;
  }
}
.featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner .contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner .contact a {
  display: inline-block;
  font-weight: 600;
  color: #efece8;
  transition: 0.3s ease;
  padding: 0;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner .contact a:hover {
  color: #a7c7ee;
}
.featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner p {
  font-size: 0.9rem;
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner p {
    font-size: 1rem;
  }
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project .lower .inner {
    max-height: 1px;
  }
}
@media (min-width: 1100px) {
  .featuredProjects .container .sectionInner .projectsWrapper .project:hover .lower .inner {
    max-height: 500px;
  }
}
::-moz-placeholder {
  color: #efece8;
}
::placeholder {
  color: #efece8;
}

.site-footer .container .footer-content .upper .logoWrapper svg path {
  fill: #efece8;
}

.site-footer .container .footer-content .upper .badges .footer-badge {
  filter: brightness(10);
}

.site-footer .container .footer-content {
  border-color: #efece8;
}

.site-footer .container .footer-content .middle .socialWrapper .link a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.965909 10L0 9.03409L7.67045 1.36364H0.909091V0H10V9.09091H8.63636V2.32955L0.965909 10Z' fill='%23EFECE8'/%3e%3c/svg%3e ");
}

.site-footer .container .footer-content .middle {
  border-color: #efece8;
}
.site-footer .container .footer-content .middle .footerDetails .contact .email h5 {
  border-bottom: 1px solid #efece8;
}
.site-footer .container .footer-content .middle .footerDetails .contact .phone h5 {
  border-bottom: 1px solid #efece8;
}
.site-footer .container .footer-content .middle .footerDetails .offices h5 {
  border-bottom: 1px solid #efece8;
}

.footer-contact .container .sctionInner input::-moz-placeholder {
  color: #efece8;
}

.footer-contact .container .sctionInner input::placeholder {
  color: #efece8;
}
.footer-contact .container .sctionInner textarea::-moz-placeholder {
  color: #efece8;
}
.footer-contact .container .sctionInner textarea::placeholder {
  color: #efece8;
}
.footer-contact .container .sctionInner .contactWrapper .formWrapper .wpcf7 .wpcf7-form .formItem p .wpcf7-form-control-wrap input[type=text] {
  color: #efece8;
  border-top: 1px solid #efece8;
}
.footer-contact .container .sctionInner .contactWrapper .formWrapper .wpcf7 .wpcf7-form .formItem p .wpcf7-form-control-wrap input[type=email],
.footer-contact .container .sctionInner .contactWrapper .formWrapper .wpcf7 .wpcf7-form .formItem p .wpcf7-form-control-wrap input[type=tel] {
  color: #efece8;
  border-top: 1px solid #efece8;
  border-bottom: 1px solid #efece8;
}
.footer-contact .container .sctionInner .contactWrapper .formWrapper .wpcf7 .wpcf7-form .formItem p .wpcf7-form-control-wrap textarea {
  color: #efece8;
  border-bottom: 1px solid #efece8;
}
.footer-contact .container .sctionInner .contactWrapper .formWrapper .wpcf7 .wpcf7-form .submitWrapper p .link:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.965909 10L0 9.03409L7.67045 1.36364H0.909091V0H10V9.09091H8.63636V2.32955L0.965909 10Z' fill='%23EFEFE8'/%3e%3c/svg%3e ");
}
.footer-contact .container .sctionInner .contactWrapper .formWrapper .wpcf7 .wpcf7-form .submitWrapper p .wpcf7-form-control.wpcf7-submit {
  color: #efece8;
}/*# sourceMappingURL=about.css.map */