* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

@font-face {
  font-family: MontBold;
  src: url(../fonts/shirft/Montserrat-Bold.otf);
}

@font-face {
  font-family: Kaushan;
  src: url(../fonts/shirft/KaushanScript-Regular.otf);
}

header.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.header .contents {
  background-image: url(../img/header-bg-img.jpg);
  background-size: cover;
  width: 100%;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

header.header .contents h1 {
  font: 40px MontBold;
  width: 70%;
  text-align: center;
}

header.header .contents p {
  width: 40%;
  text-align: center;
}

header.header .contents .blocks {
  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: 55%;
}

header.header .contents .blocks .block {
  border: 2px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
  height: 100px;
}

header.header .contents .blocks .block h6 {
  font-size: 12px;
}

header.header nav.nav-bar {
  height: 80px;
  width: 100%;
  border-bottom: 5px solid #adadad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 1s all;
  transition: 1s all;
}

header.header nav.nav-bar ul {
  margin-top: 20px;
  margin-left: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 50%;
}

header.header nav.nav-bar ul li {
  list-style-type: none;
}

header.header nav.nav-bar ul li a {
  color: black;
  font: 20px MontBold;
  text-decoration: none;
}

header.header nav.nav-bar ul li a:hover {
  color: #f6ae48;
}

header.header nav.nav-bar.show-navbar {
  background-color: #15023e;
  position: fixed;
  top: 0;
  left: 0;
  border: none;
  -webkit-animation: Aller 1s ease;
          animation: Aller 1s ease;
}

header.header nav.nav-bar.show-navbar ul li a {
  color: white;
}

header.header nav.nav-bar.show-navbar ul li a:hover {
  color: #f6ae48;
}

main.main {
  width: 100%;
  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;
}

main.main section.we-about {
  width: 100%;
  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;
}

main.main section.we-about .studio {
  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: 70%;
  height: 250px;
  position: relative;
}

main.main section.we-about .studio h1 {
  font-family: MontBold;
  font-size: 50px;
}

main.main section.we-about .studio p {
  width: 50%;
  text-align: justify;
}

main.main section.we-about .studio .last-h1 {
  position: absolute;
  font-size: 140px;
  letter-spacing: 3px;
  top: 14%;
  left: 35%;
  opacity: .1;
}

main.main section.we-about .three-contents {
  width: 80%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main.main section.we-about .three-contents .block {
  position: relative;
  width: 30%;
  padding: 30px;
  cursor: pointer;
  -webkit-transition: .5s all;
  transition: .5s all;
}

main.main section.we-about .three-contents .block p {
  text-align: justify;
  margin-bottom: 30px;
}

main.main section.we-about .three-contents .block:hover {
  background-color: #f6ae48;
  color: white;
}

main.main section.we-about .three-contents .block a {
  color: white;
  text-decoration: none;
  padding: 10px;
  letter-spacing: .2rem;
  border: 1px solid white;
}

main.main section.we-about .three-contents .block i {
  float: right;
  font-size: 30px;
  color: white;
}

main.main section.developer {
  width: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

main.main section.developer .title {
  width: 100%;
  position: relative;
  height: 500px;
}

main.main section.developer .title img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

main.main section.developer .title .content {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

main.main section.developer .title .content h1 {
  font: 60px MontBold;
  text-align: center;
  width: 100%;
}

main.main section.developer .title .content p {
  width: 70%;
  text-align: center;
  font-size: 25px;
}

main.main section.developer .developing {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.main section.developer .developing img {
  position: absolute;
  width: 30%;
  top: -50px;
}

main.main section.developer .developing .cards {
  width: 75%;
  height: 200px;
  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;
  position: absolute;
  top: 10rem;
  left: 12.5%;
}

main.main section.developer .developing .cards .cardss {
  width: 30%;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

main.main section.developer .developing .cards .cardss a {
  position: absolute;
  left: 20px;
  bottom: 10px;
  padding: 6px 10px;
  color: #00b9e7;
  background-color: transparent;
  border: 1px solid #00b9e7;
  text-decoration: none;
  font-size: 18px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

main.main section.developer .developing .cards .cardss h1 {
  color: white;
  text-transform: uppercase;
}

main.main section.developer .developing .cards .cardss hr {
  width: 87%;
  height: 1px;
  background-color: #888585;
  position: absolute;
  top: 55%;
}

main.main section.developer .developing .cards .cardss .link-more {
  position: absolute;
  bottom: 1px;
  left: 75%;
}

main.main section.developer .developing .cards .cardss:nth-child(1) {
  background-image: url(../img/card-img-1.jpg);
  background-size: cover;
}

main.main section.developer .developing .cards .cardss:nth-child(1) a:hover {
  background-color: #00b9e7;
  color: white;
}

main.main section.developer .developing .cards .cardss:nth-child(2) {
  background-image: url(../img/card-img-2.jpg);
  background-size: cover;
}

main.main section.developer .developing .cards .cardss:nth-child(2) a {
  border-color: #ffcb00;
  color: #ffcb00;
}

main.main section.developer .developing .cards .cardss:nth-child(2) a:hover {
  background-color: #ffcb00;
  color: white;
}

main.main section.developer .developing .cards .cardss:nth-child(3) {
  background-image: url(../img/card-img-3.jpg);
  background-size: cover;
}

main.main section.developer .developing .cards .cardss:nth-child(3) a {
  border-color: #66bf0d;
  color: #66bf0d;
}

main.main section.developer .developing .cards .cardss:nth-child(3) a:hover {
  background-color: #66bf0d;
  color: white;
}

main.main section.developer .search-info {
  width: 100%;
  position: absolute;
  top: 150vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.main section.developer .search-info .content {
  width: 40%;
  padding: 20px;
  position: relative;
}

main.main section.developer .search-info .content p {
  width: 70%;
  text-align: justify;
  margin-top: 30px;
  letter-spacing: 1px;
}

main.main section.developer .search-info .content h2 {
  text-transform: uppercase;
  font: 40px MontBold;
}

main.main section.developer .search-info .content h1 {
  position: absolute;
  left: -7px;
  top: 4px;
  font-size: 60px;
  width: 200%;
  opacity: .1;
  letter-spacing: 1rem;
  text-transform: uppercase;
}

main.main section.developer .search-info .imgs {
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main.main section.developer .search-info .imgs img {
  margin: 10px;
  position: relative;
  right: 120px;
}

main.main section.portfolio {
  min-height: 100vh;
  width: 100%;
  position: relative;
  top: 150vh;
}

main.main section.portfolio .title {
  width: 100%;
  background-color: #303263;
  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;
  position: relative;
  padding: 16px;
}

main.main section.portfolio .title h1 {
  color: white;
  text-transform: uppercase;
  font-size: 30px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  letter-spacing: .3rem;
}

main.main section.portfolio .title p {
  position: absolute;
  font: 60px MontBold;
  color: white;
  opacity: .1;
  letter-spacing: 1.5rem;
  text-transform: uppercase;
  top: 1px;
}

main.main section.portfolio .images_1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main.main section.portfolio .images_1 img {
  width: 50%;
}

main.main section.portfolio .images_2 {
  width: 100%;
  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;
}

main.main section.portfolio .images_2 img {
  width: 25%;
  height: 310px;
}

main.main section.adaptate {
  width: 100%;
  height: 80vh;
  position: relative;
  top: 151vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.main section.adaptate .title {
  width: 50%;
  padding-left: 40px;
  position: relative;
}

main.main section.adaptate .title h1 {
  text-transform: uppercase;
  position: absolute;
  top: -20px;
  opacity: .1;
  font-size: 60px;
  letter-spacing: 1rem;
  left: -1px;
}

main.main section.adaptate .title p {
  text-transform: uppercase;
  font: 30px MontBold;
}

main.main section.adaptate .title h4 {
  font-size: 20px;
  text-align: justify;
  width: 80%;
  margin-top: 20px;
}

main.main section.adaptate .images {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 50%;
  height: 500px;
}

main.main section.adaptate .images img:nth-child(1) {
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
}

main.main section.adaptate .images img:nth-child(2) {
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 200px;
}

main.main section.adaptate .images img:nth-child(3) {
  position: absolute;
  right: 0;
  bottom: 0;
}

main.main section.trade-in {
  height: 80vh;
  width: 100%;
  position: relative;
  top: 160vh;
  background-image: url(../img/trade-bg-img.jpg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.main section.trade-in .cardss {
  width: 27%;
  height: 70%;
  background-color: transparent;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main.main section.trade-in .cardss .title {
  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;
  color: white;
}

main.main section.trade-in .cardss .title h3 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-right: 32%;
}

main.main section.trade-in .cardss p {
  color: white;
  margin-top: 30px;
  text-align: justify;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

main.main section.trade-in .cardss:nth-child(2) .title h3 {
  margin-right: 50px;
}

main.main section.trade-in .cardss:nth-child(3) .title h3 {
  margin-right: 45%;
}

main.main section.trade-in a.visit-site {
  position: absolute;
  top: 90%;
  color: #f6ae48;
  border: 1px solid #f6ae48;
  padding: 10px 17px;
  font: 20px MontBold;
  text-decoration: none;
  border-radius: 16px;
  background-color: transparent;
  -webkit-transition: .4s all;
  transition: .4s all;
}

main.main section.trade-in a.visit-site:hover {
  color: white;
  background-color: #f6ae48;
}

main.main section.main-end {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 160vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.main section.main-end .title {
  width: 50%;
  padding-left: 40px;
  position: relative;
}

main.main section.main-end .title h1 {
  position: absolute;
  opacity: .1;
  width: 100%;
  font: 60px MontBold;
  letter-spacing: .8rem;
  text-transform: uppercase;
  left: -10px;
  top: -15px;
}

main.main section.main-end .title h2 {
  text-transform: uppercase;
  font: 36px MontBold;
  letter-spacing: 2px;
}

main.main section.main-end .title p {
  margin-top: 5rem;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
}

footer.footer {
  height: 100vh;
  width: 100%;
  position: relative;
  top: 150vh;
  background-color: #f6ae48;
}

footer.footer section.contact {
  width: 100%;
  background-image: url(../img/footer-bg-img.jpg);
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
  height: 90%;
  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;
}

footer.footer section.contact .title {
  width: 40%;
  height: 60%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer.footer section.contact .title h1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

footer.footer section.contact .title p {
  font-size: 20px;
  text-align: justify;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

footer.footer section.contact form {
  width: 40%;
  height: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer.footer section.contact form .name {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer.footer section.contact form .name input {
  width: 50%;
  outline: none;
  border: 1px solid white;
  color: white;
  background-color: transparent;
  padding: 5px;
}

footer.footer section.contact form .email {
  width: 100%;
}

footer.footer section.contact form .email input {
  width: 100%;
  padding: 5px;
  color: white;
  background-color: transparent;
  outline: none;
  border: 1px solid white;
}

footer.footer section.contact form .message {
  width: 100%;
}

footer.footer section.contact form .message textarea {
  width: 100%;
  border: 1px solid white;
  outline: none;
  background-color: transparent;
  color: white;
  padding: 5px;
}

footer.footer section.contact form .form-end {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer.footer section.contact form .form-end p {
  padding-left: 5px;
  color: white;
  font-size: 12px;
}

footer.footer section.contact form .form-end input {
  padding: 15px;
  background-color: #f6ae48;
  font-size: 7px 15px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

footer.footer section.contact::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2f3262;
  opacity: 0.7;
  z-index: -1;
}

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

@keyframes Aller {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */