* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

html {
  background: white;
  scroll-behavior: smooth;
}

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

body {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
}

.scrolled {
  opacity: 0.95;
  -webkit-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}

.title {
  font-size: 3.5rem;
  padding: 3rem 0 0 3rem;
}

@media (max-width: 1200px) {
  .title {
    text-align: center;
    padding-left: 0;
  }
}

.title-div {
  height: 20vh;
  width: 100%;
}

.button-class {
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: #6937ff;
  color: white;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 0.3rem;
  text-align: center;
}

.button-class:hover {
  background-color: #23d997;
  color: black;
}

nav {
  min-height: 10vh;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 1rem 6rem;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

nav h1 {
  font-family: Montserrat;
  color: #6937ff;
  font-style: normal;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.3rem;
}

@media (max-width: 1200px) {
  nav {
    padding: 1rem 1rem;
  }
}

#page-one {
  height: 80vh;
}

@media (max-width: 1200px) {
  #page-one {
    height: 70vh;
  }
}

#page-one .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80%;
  width: 100%;
}

#page-one .action .call {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1200px) {
  #page-one .action .call {
    width: 100%;
  }
}

#page-one .action .call .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 50%;
}

#page-one .action .call .container h2 {
  font-weight: 500;
  padding: 0.5rem;
}

#page-one .action .call .container .tag {
  font-weight: 400;
  color: #7f55ff;
  font-size: 2.7rem;
  font-family: "Pacifico", cursive;
}

#page-one .action .call .container .end {
  text-align: end;
}

#page-one .action .call .btns {
  min-width: 40%;
  padding-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1200px) {
  #page-one .action .call .btns {
    width: 70%;
  }
  #page-one .action .call .btns a {
    padding: 1.3rem;
  }
}

#page-one .action .call .btns a {
  min-width: 40%;
}

#page-one .action .call .btns a:last-child {
  background-color: white;
  color: black;
  -webkit-box-shadow: inset 0px 0px 0px 3px black;
          box-shadow: inset 0px 0px 0px 3px black;
}

#page-one .action .call .btns a:last-child:hover {
  background-color: #23d997;
  color: black;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

#page-one .home-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page-one .home-image img {
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: -12px 12px 0px #6937ff;
          box-shadow: -12px 12px 0px #6937ff;
}

@media (max-width: 1200px) {
  #page-one .home-image {
    display: none;
  }
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20%;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.7rem;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  text-align: center;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .info .container {
    width: 90%;
  }
}

.info .container .bold {
  font-weight: 600;
}

#page-two {
  min-height: 75vh;
  background: #6937ff;
  color: white;
}

#page-two .what-we-do {
  display: block;
  width: 100%;
  margin: 0 auto 0 auto;
  font-size: 2.2rem;
  text-align: center;
}

#page-two .what-we-do .line {
  background: #ffffff;
  margin: auto;
  height: 0.3rem;
  width: 40%;
}

@media (max-width: 1200px) {
  #page-two .what-we-do .line {
    width: 100%;
  }
}

#page-two summary {
  padding: 1.5rem;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
}

#page-two summary::-webkit-details-marker {
  display: none;
}

#page-two details div {
  font-size: 1.3rem;
  padding: 1rem 0 2.5rem 0;
  width: 50%;
  margin: auto;
  line-height: 2rem;
}

@media (max-width: 1200px) {
  #page-two details div {
    width: 90%;
  }
}

#page-two details div:last-child {
  padding-bottom: 3rem;
}

#page-three {
  min-height: 60vh;
}

#page-three .content {
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin: auto;
  padding-bottom: 5rem;
}

@media (max-width: 1200px) {
  #page-three .content {
    width: 90%;
  }
}

#page-three .content img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 90%;
}

footer {
  min-height: 15vh;
  background: #7f55ff;
  color: #ffffff;
}

footer .foot {
  height: 15vh;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

footer .foot p {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
/*# sourceMappingURL=style.css.map */