header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 2;
}

.nav-bar {
  padding-top: 5vh;
  margin-left: 10vw;
  margin-right: 10vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav-bar__buttons-container {
  width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.nav-bar__buttons-container button {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: none;
  background-color: #CAA892;
  color: #FFF;
  padding: 5px 20px;
  cursor: pointer;
}
.nav-bar__link {
  cursor: pointer;
  border: 3px solid transparent;
  padding: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav-bar__link:hover {
  border-radius: 20px;
  border: 3px solid #37806B;
  color: #37806B;
}

.progress-bar {
  margin-top: 5px;
  height: 5px;
  background-color: #37806B;
  width: 0;
  -webkit-transition: width 0.9s;
  transition: width 0.9s;
}

.services-block {
  padding-left: 10vw;
  padding-right: 5vw;
  margin-top: 15vh;
  background: url("../images/Services/services_decorator.png");
  background-position: 100% 110%;
  padding-bottom: 20vh;
  background-repeat: no-repeat;
}
.services-block__button {
  border-radius: 20px;
  border: 3px solid #37806B;
  color: #37806B;
  background-color: #37806B;
  color: #FFF;
  width: 200px;
  height: 45px;
  cursor: pointer;
  margin-right: 75px;
}
.services-block__button.selected {
  background-color: #FFF;
  color: #37806B;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.services-container {
  display: grid;
  margin-top: 8vh;
  grid-row-gap: 50px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr;
}

.services-container .services-element:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.services-container .services-element:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
}

.services-container .services-element:nth-child(3) {
  grid-column-start: 5;
  grid-column-end: 7;
}

.services-container .services-element:nth-child(4) {
  grid-column-start: 2;
  grid-column-end: 4;
}

.services-container .services-element:nth-child(5) {
  grid-column-start: 4;
  grid-column-end: 6;
}

.services-element {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border: none;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
          box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
  height: 0;
  width: 20vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
  background-color: #FFF;
  padding: 0 40px 10px 20px;
}
.services-element__picture {
  width: 42px;
  height: 33px;
  padding-top: 20px;
  padding-right: 5px;
}
.services-element__name {
  font-size: 1.5em;
}

.services-element.architecture {
  background-color: #CAA892;
  color: #FFF;
}

.services-element.visible {
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes moveCircle {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
@keyframes moveCircle {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}
.loading-animation {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  z-index: 3;
}
.loading-animation__container {
  text-align: center;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loading-animation__circle {
  width: 50px;
  height: 50px;
  background-color: #37806B;
  border-radius: 50%;
  position: absolute;
  -webkit-animation: moveCircle 1s linear infinite alternate;
          animation: moveCircle 1s linear infinite alternate;
}
.loading-animation__circle:nth-child(1) {
  left: 20px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loading-animation__circle:nth-child(2) {
  left: 80px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.loading-animation__circle:nth-child(3) {
  left: 140px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.loading-animation__circle:nth-child(4) {
  left: 200px;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.loading-animation__circle:nth-child(5) {
  left: 260px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.loading-animation__circle:nth-child(6) {
  right: 20px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.loading-animation__circle:nth-child(7) {
  right: 80px;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.loading-animation__circle:nth-child(8) {
  right: 140px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.loading-animation__circle:nth-child(9) {
  right: 200px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.loading-animation__circle:nth-child(10) {
  right: 260px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.subscribe-block {
  background-image: url("../images/About/about_decoration_2.svg");
  background-repeat: no-repeat;
  background-position: 100% 0%;
  padding-top: 15vh;
  padding-left: 10vw;
  padding-right: 5vw;
  margin-top: 15vh;
  margin-top: 0;
}
.subscribe-block h2 {
  text-align: center;
}
.subscribe-block p {
  text-align: center;
  color: #646464;
}
.subscribe-block__vertical-line {
  width: 20vw;
  border: 1px solid #646464;
  margin: auto;
}

.subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subscribe-form__small-input {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: none;
  background: #EEE;
  color: #646464;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px;
  margin-right: 50px;
  margin-bottom: 30px;
  width: 20vw;
}
.subscribe-form__big-input {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: none;
  background: #EEE;
  color: #646464;
  width: calc(40vw + 80px);
  margin-left: -50px;
  padding: 10px;
}
.subscribe-form__submit-input {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: none;
  background: #37806B;
  color: #FFF;
  padding: 10px 20px;
  cursor: pointer;
}

.error-input {
  background: #fa5454;
}

.error-input:-webkit-autofill,
.error-input:-webkit-autofill:hover,
.error-input:-webkit-autofill:focus,
.error-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #fa5454 inset;
}

.sigma-hello {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  z-index: 3;
}
.sigma-hello__congratulation {
  font-size: 100px;
  color: #37806B;
}
.sigma-hello__congratulation b {
  font-size: 130px;
  color: #646464;
}
.sigma-hello__congratulation span {
  font-size: 150px;
  color: #fa5454;
}

.hidden {
  display: none;
}

.modern-interior-block {
  padding-left: 10vw;
  padding-right: 5vw;
  margin-top: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-image: url("../images/Modern_Interior/modern_inerior_decoration.svg");
  background-repeat: no-repeat;
  background-position: 0% 100%;
  padding-bottom: 10vh;
}
.modern-interior-block__left-text {
  padding-top: 50px;
}
.modern-interior-block__contact-button {
  margin-top: 50px;
}
.modern-interior-block p {
  width: 500px;
  color: #646464;
}

h1 {
  color: #212121;
  font-size: 72px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
}

.image-with-bechind-border {
  position: relative;
}
.image-with-bechind-border img {
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  border: none;
  height: 600px;
  width: 700px;
}
.image-with-bechind-border::after {
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  border: none;
  z-index: -1;
  content: "";
  top: 50px;
  right: -50px;
  width: 700px;
  height: 600px;
  position: absolute;
  border: 2px solid #CAA892;
}

footer {
  background-color: #f8f8f8;
  margin-top: 10vh;
  padding-top: 10vh;
  background-image: url("../images/Modern Interior/modern_inerior_decoration.svg");
  background-repeat: no-repeat;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-bottom: 5vh;
}
.footer-container__social-text {
  text-align: center;
}
.footer-container__link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 20px;
}
.footer-container__link-container a {
  cursor: pointer;
  color: #646464;
}
.footer-container__link-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-container__link-section #weather {
  margin: auto;
  text-align: center;
}
.footer-container__social-in-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-container__social-image-container {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  background-color: #646464;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-container__social-image-container:hover {
  background-color: #37806B;
}
.footer-container p {
  color: #646464;
}

.footer-bottom-block {
  border-top: 1px solid gray;
}
.footer-bottom-block__text {
  text-align: center;
  margin: 0;
  padding: 10px;
  color: #646464;
}
.footer-bottom-block__text a {
  color: #37806B;
}

.blog-block {
  padding-left: 10vw;
  padding-right: 5vw;
  margin-top: 15vh;
  padding-bottom: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8f8f8;
}
.blog-block h3 {
  text-align: center;
}
.blog-block__blog-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-element {
  width: 40vw;
}
.blog-element__name {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  font-size: 1.5em;
}
.blog-element__description {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  color: #646464;
  margin-bottom: 40px;
  width: 500px;
}
.blog-element button {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}
.blog-element .image-with-bechind-border img {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  position: relative;
  z-index: 1;
  width: 550px;
  height: 400px;
}
.blog-element .image-with-bechind-border::after {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  width: 550px;
  height: 400px;
  z-index: 0;
  top: 25px;
  right: 190px;
}
.blog-element.show-image img {
  opacity: 1;
}
.blog-element.show-image .image-with-bechind-border::after {
  opacity: 1;
}
.blog-element.show-content img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.blog-element.show-content .blog-element__name {
  opacity: 1;
}
.blog-element.show-content .blog-element__description {
  opacity: 1;
}
.blog-element.show-content button {
  opacity: 1;
}

.about-block {
  background-image: url("../images/About/about_decoration_1.svg"), url("../images/About/about_decoration_2.svg"), url("../images/About/about_decoration_3.svg");
  background-repeat: no-repeat;
  background-position: 8% 25%, 100% 40%, 0% 85%;
}
.about-block__mextreo {
  padding-left: 10vw;
  padding-right: 5vw;
  margin-top: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15vh;
}
.about-block__mextreo .image-with-bechind-border::after {
  top: -50px;
  right: 50px;
}
.about-block__successful_working {
  padding-left: 10vw;
  padding-right: 5vw;
  margin-top: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15vh;
}

.mextreo__text-block {
  margin-left: 5vw;
  padding-right: 10vw;
}
.mextreo__text-block h2 {
  margin-top: 50px;
  margin-bottom: 10px;
}
.mextreo__text-block p {
  color: #646464;
  margin-bottom: 50px;
}

.successful_working__left-side {
  padding: 5vw;
}
.successful_working__left-side h2 {
  max-width: 500px;
}
.successful_working__years {
  margin-bottom: -2rem;
  margin-top: 0;
  font-weight: 900;
  font-size: 200px;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: contain;
  background-image: url("../images/About/20-texture.jpg");
}

.completed-work-block {
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.completed-work-block h2 {
  text-align: center;
}
.completed-work-block__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 450px;
}
.completed-work-block__element {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border: none;
  background: #fff;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
          box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
  width: 200px;
  height: 200px;
}
.completed-work-block__element p {
  color: #646464;
  text-align: center;
}
.completed-work-block__element:nth-child(4) {
  position: relative;
  top: 150px;
}
.completed-work-block__element:nth-child(10) {
  position: relative;
  top: 150px;
}
.completed-work-block__step-up-line {
  position: absolute;
  border-bottom: 1px solid #646464;
  border-right: 1px solid #646464;
  height: 150px;
  top: 100px;
}
.completed-work-block__step-down-line {
  position: absolute;
  border-top: 1px solid #646464;
  border-right: 1px solid #646464;
  height: 150px;
  top: 100px;
}
.completed-work-block__vertical-line {
  position: absolute;
  border-bottom: 1px solid #646464;
}

.testimonials-block {
  padding-left: 10vw;
  padding-right: 5vw;
  margin-top: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20vh;
}
.testimonials-block h2 {
  text-align: center;
  margin-top: 0;
}
.testimonials-block h3 {
  text-align: center;
}
.testimonials-block__nav-buttons {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 6vw;
  margin-bottom: 5vh;
}
.testimonials-block__nav-buttons button {
  border-radius: 50%;
  margin-right: 3vw;
  width: 50px;
  height: 50px;
  background-color: #FFF;
  color: #646464;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
          box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.testimonials-block__nav-buttons button:hover {
  color: #FFF;
  background-color: #37806B;
}
.testimonials-block__comments-container {
  display: -webkit-box;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding-left: 50px;
  padding-bottom: 20px;
  overflow: hidden;
}
.testimonials-block .comment {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border: none;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
          box-shadow: 5px 5px 10px 0px rgba(33, 33, 33, 0.4509803922);
  position: relative;
  width: 25vw;
  height: 15vh;
  margin-right: 17vw;
  padding: 35px 0 20px 80px;
}
.testimonials-block .comment img {
  position: absolute;
}
.testimonials-block .comment__image {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: none;
  width: 110px;
  height: 110px;
  left: -55px;
  top: calc(50% - 55px);
}
.testimonials-block .comment__quotes {
  right: 10%;
}
.testimonials-block .comment p {
  color: #646464;
  font-size: 0.8em;
  margin-right: 50px;
}
.testimonials-block .comment p b {
  color: #212121;
  font-size: 1.2em;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  scroll-behavior: smooth;
}

.overflow-hidden {
  overflow: hidden;
}

h3 {
  color: #646464;
}

h2 {
  font-size: 3em;
  color: #212121;
}

button {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: none;
  background: #37806B;
  color: #FFF;
  padding: 10px 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */