@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

:root {
  --blue: #1c5891;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --border: .1rem solid rgba(0, 0, 0, .3);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--blue);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--blue);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background: var(--blue);
  color: var(--white);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: .1rem 10%;
  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;
  z-index: 1000;
  background: var(--white);
}

.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .logo img {
  justify-content: center;
  align-items: center;
  width: 27rem;
  padding-top: .9rem;
}

.header .logo span {
  color: var(--blue);
}

.header .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}

.header .navbar a:hover {
  color: var(--blue);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: .3rem;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn .2s linear;
  animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--blue);
}

.header .language-form {
  position: absolute;
  top: 100%;
  left: 87%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 13rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: .5rem;
  text-align: right;
  text-decoration: none;
  -webkit-animation: fadeIn .2s linear;
  animation: fadeIn .2s linear;
  display: none;
}

.header .language-form a {
  color: var(--black);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
}

.header .language-form a:hover {
  color: var(--blue);
  font-size: 1.7rem;
}

.header .language-form a img {
  width: 2.5rem;
}

.header .language-form.active {
  display: block;
}

.header .language-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .language-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .language-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .language-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .language-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .language-form .flex a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.header .language-form .btn {
  width: 100%;
}

.header .language-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .language-form p a {
  color: var(--blue);
}

.header .language-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
  padding: 0;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

.main-parallax {
  display: block;
  background: var(--white);
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 auto;
}

.module {
  margin-bottom: 40px;
}

.module:last-child {
  margin-bottom: 0;
}

.module h2 {
  margin-bottom: 40px;
  font-size: 30px;
}

.module.content {
  padding: 40px 0;
  background: #ece7d5;
}

.module.parallax {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 96.7vh !important;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.module.parallax:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 40%, #000 100%);
}

.module.parallax h3 {
  font-size: 6rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0.1em 0.1em 0.2em black
}

.module.parallax h4 {
  font-size: 5rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0.1em 0.1em 0.2em black
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: justify;
}

.about .row .video {
  width: 10rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
}

.about .row .upper-text p {
  font-size: 1.5rem;
  color: var(--light-color);
}

.about .row .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .box-container {
  margin-top: 3rem;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.services {
  background: var(--light-bg);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.services-container .services-box {
  position: relative;
  box-shadow: 0 0 1rem var(--bg-color);
  overflow: hidden;
  display: flex;
  border: 5px solid var(--light-color);
}

.services-container .services-box:hover {
  border: 5px solid var(--blue);
}

.services-box img {
  width: 40rem;
  height: 100%;
  transition: .5s ease;
}

.services-box:hover img {
  transform: scale(1.1);
}

.services-box .services-layer {
  position: absolute;
  padding: .7rem;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, .1), var(--main-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.services-layer h4 {
  font-size: 2.3rem;
  color: white;
  display: flex;
  position: absolute;
  transition: .3s ease;
}

.services-layer:hover h4 {
  transform: translateY(-8rem);
}

.services-layer p {
  font-size: 1.4rem;
  color: white;
  transition: .5s ease;
  opacity: 0;
}

.services-layer:hover p {
  opacity: 1;
}

.projects {
  background: var(--black);
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 0rem;
  margin: auto auto;
  line-height: 23px;
  text-align: center;
}

.projects .box-container .box .content .info h4 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.6rem;
  color: var(--light-color);
  font-weight: 600;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.founders .slide p {
  padding: 2rem;
  height: 30rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  align-items: center;
}

.founders .founders-frame {
  display: flex;
  flex-direction: row;
  width: 40vw;
  gap: 1.5rem;
}

.founders .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.founders .slide .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.founders .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.founders .slide p {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: justify;
}

.founders .slide p span {
  font-size: 20rem;
}

textarea:focus,
input:focus {
  box-shadow: 0 0 0 01;
  outline: 0;
}

.contact {
  padding: 8rem 0 8rem 0;
  background: var(--black);
}

.container-cont {
  position: relative;
  max-width: 140rem;
  min-height: 60rem;
  display: flex;
  z-index: 10;
  margin: auto;
}

.container-cont .contactInfo {
  position: absolute;
  top: 3rem;
  width: 37rem;
  height: calc(100% - 6rem);
  background: var(--blue);
  z-index: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.container-cont .contactInfo h2 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 500;
}

.container-cont .contactInfo ul.info {
  position: relative;
  margin: 1.5rem 0;
}

.container-cont .contactInfo ul.info li {
  position: relative;
  list-style: none;
  display: flex;
  margin: 1.5rem 0;
  cursor: pointer;
  align-items: flex-start;
  align-items: center;
  padding-top: 1rem;
}

.container-cont .contactInfo ul.info li i {
  font-size: 3rem;
  filter: invert(1);
}

.container-cont .contactInfo ul.info li span {
  color: var(--white);
  margin-left: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.container-cont .contactForm {
  position: absolute;
  padding: 7rem 4rem;
  padding-left: 25rem;
  margin-left: 15rem;
  width: calc(100% - 15rem);
  height: 100%;
  background-color: var(--light-bg);
  border: 2px solid var(--blue);
  box-shadow: 20px 20px 50px rgba(28, 88, 145, .5);
}

.container-cont .contactForm h2 {
  color: var(--blue);
  font-size: 3rem;
  font-weight: 500;
}

.container-cont .contactForm .formBox form {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 2rem;
}

.container-cont .contactForm .formBox form .inputBox {
  position: relative;
  margin-bottom: 3rem;
}

.formBox form .w50 {
  width: 27rem;
}

.contactForm .formBox form .w100 {
  width: 100%;
}

.container-cont .contactForm .formBox form .inputBox input,
.container-cont .contactForm .formBox form .inputBox textarea {
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  border: none;
  border-bottom: 1px solid #777;
  background: var(--light-bg);
}

.container-cont .contactForm .formBox form .inputBox textarea {
  height: 25rem;
}

.container-cont .contactForm .formBox form .inputBox span {
  position: absolute;
  left: 0;
  pointer-events: none;
  font-size: 1.5rem;
  font-weight: 300;
  transition: 0.3s ease;
  width: 27rem;
}

.container-cont .contactForm .formBox form .inputBox input:focus~span,
.container-cont .contactForm .formBox form .inputBox input:valid~span,
.container-cont .contactForm .formBox form .inputBox textarea:focus~span,
.container-cont .contactForm .formBox form .inputBox textarea:valid~span {
  transform: translateY(-2rem);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--blue);
  font-weight: 500;
}

.container-cont .contactForm .formBox form .inputBox .loading-button {
  background: var(--blue);
  font-size: 1.8rem;
  color: white;
  width: 18rem;
  height: 5rem;
  cursor: pointer;
  border: none;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
}

.loading{
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  width: 3rem;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.blogs {
  background: var(--light-bg);
}

.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.footer {
  padding: 1rem;
  background-color: var(--light-bg);
  border-top: 5px solid var(--blue);
}

.footer-container a img {
  width: 30rem;
  padding-top: 0.8rem;
}

.footer-end {
  display: flex;
  justify-content: space-between;
}

.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding-top: 2rem;
}

.footer .credit span {
  color: var(--blue);
  font-size: 2rem;
}

.social-media {
  padding-top: 1rem;
}

.social-media a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-color);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  margin: 0 .3rem;
}

.social-media a:hover {
  background: var(--blue);
}

.thanks {
  height: 100vh;
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thanks h1 {
  color: var(--white);
  font-size: 5rem;
}

.thanks img {
  width: 20rem;
}

.thanks p {
  text-align: center;
  color: var(--white);
  font-size: 2.5rem;
}

.thanks p a {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 1574px) and (min-width: 1368px) {
  .projects .box-container {
    grid-template-columns: repeat(4, 1.2fr);
  }

  .founders .slide p {
    height: 35rem;
  }

  .projects .box-container .box .content .info h4 {
    font-size: 1.7rem;
  }

  .projects .box-container .box .content .info p {
    font-size: 1.4rem;
  }
}

@media (max-width: 1451px) {
  .founders .slide p {
    height: 35rem;
  }

  .founders .slide .user h3 {
    font-size: 1.6rem;
  }

  .founders .slide p {
    font-size: 1.25rem;
  }

  .container-cont {
    width: 100rem;
  }

  .container-cont .contactForm .formBox form .w50 {
    width: 20rem;
  }

  .services-layer p {
    font-size: 1.6rem;
  }

  .services-layer:hover h4 {
    transform: translateY(-10rem);
  }

}

@media (max-width: 1367px) {
  .projects .box-container {
    grid-template-columns: repeat(2, 1.2fr);
  }

  .container-cont .contactForm .formBox form .w50 {
    width: 17rem;
  }

  .about .row {
    flex-direction: column;
  }

  .about .row .video{
    width: 100%;
    flex: 1 1 1rem;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 3rem 5%;
  }

  .header .language-form {
    left: 93.5%;
  }

  .container-cont {
    width: 90%;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .container-cont .contactInfo {
    top: 0;
    height: 60rem;
    position: relative;
    box-shadow: none;
  }

  .container-cont .contactForm {
    position: relative;
    padding-left: 0;
    margin-left: 0;
    padding: 40px;
    height: 60rem;
    box-shadow: none;
  }

  .container-cont .contactInfo ul.info li span {
    font-size: 1.3rem;
  }

  .container-cont .contactForm .formBox form .w50 {
    width: 17rem;
  }

  .footer .credit {
    padding: 0;
    text-align: center;
  }

  .footer-end {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }

  .header #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }

  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    display: block;
    margin: 2rem;
  }

  .services-container {
    grid-template-columns: repeat(2, 1.2fr);
  }

  .services-container .services-box {
    align-items: center;
    justify-content: center;
  }

  .services-box img {
    width: 49rem;
  }

  .module.parallax h3 {
    font-size: 5rem;
  }

  .module.parallax {
    height: 50vh !important;
    width: 100%;
  }

  .module.parallax:after {
    background: none;
  }

  .module.parallax h4 {
    font-size: 4rem;
  }

  .founders .founders-frame {
    display: flex;
    flex-direction: column;
    width: 91vw;
    justify-content: center;
    align-items: center;
  }

  .founders .slide p {
    height: 30rem;
  }

  .container-cont {
    display: flex;
    flex-direction: column-reverse;
  }

  .container-cont .contactForm {
    width: 100%;
    height: auto;
  }

  .container-cont .contactInfo {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .container-cont .contactForm .formBox form .w50 {
    width: 23rem;
  }

}

@media (max-width: 991px) and (min-width: 863px) {
  .projects .box-container {
    grid-template-columns: repeat(2, 1.2fr);
  }
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }

  .header .language-form {
    width: 90%;
  }

  .header .language-form {
    left: 91.5%;
    width: 12rem;
  }

  .module.parallax h3 {
    font-size: 4rem;
  }

  .module.parallax h4 {
    font-size: 3rem;
  }

  .footer .credit p {
    font-size: 1.5rem;
  }

  .footer .credit span {
    font-size: 1.5rem;
  }

  .active-layer h4,
  .active-layer2 h4,
  .active-layer3 h4,
  .active-layer4 h4 {
    transform: translateY(-10rem);
  }

  .active-layer p,
  .active-layer2 p,
  .active-layer3 p,
  .active-layer4 p {
    opacity: 1;
  }
}

@media (max-width: 600px) {

  .projects .box-container {
    grid-template-columns: repeat(1, 1.2fr);
  }

  .header .language-form {
    left: 89.5%;
  }

  .module.parallax h3 {
    font-size: 3rem;
  }

  .module.parallax h4 {
    font-size: 2.5rem;
  }

  .contact {
    padding: 7rem 2rem 7rem 2rem;
  }

  .container-cont {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .container-cont .contactForm {
    padding: 1.3rem;
  }

  .container-cont .contactInfo {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .container-cont .contactForm .formBox form .w50 {
    width: 100%;
  }

  .footer-end {
    flex-direction: column;
  }

  .footer-end a {
    margin-top: .3rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .header .logo img {
    margin-top: 0.7rem;
    width: 26rem;
  }

  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-container .services-box {
    align-items: center;
    justify-content: center;
  }

  .services-box img {
    width: 50rem;
  }

  .about .box-container .box h3 {
    font-size: 3rem;
  }

  .about .box-container .box p {
    font-size: 1.2rem;
  }

  .about .row .upper-text p {
    font-size: 1.9rem;
    text-align: justify;
  }

  .about .row .content h3 {
    font-size: 2.8rem;
  }

  .about .row .content p {
    font-size: 1.9rem;
    text-align: justify;
  }

  .founders .slide .user h3 {
    font-size: 2rem;
  }

  .founders .slide p {
    height: 100%;
    font-size: 1.7rem;
  }

  .header .language-form {
    left: 85.5%;
  }

  .header .icons div {
    height: 4.5rem;
    width: 4.5rem;
  }

  .container-cont .contactInfo ul.info li span {
    font-size: 1.9rem;
  }

  .footer .credit p {
    font-size: 1.5rem;
  }

  .footer .credit span {
    font-size: 1.5rem;
  }

  .thanks p {
    font-size: 2.2rem;
  }
}

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