@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gallery-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 8vw;
}
.gallery-wrapper #gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.gallery-wrapper h2 {
  font-size: 4vw;
  padding: 6vw;
}
.gallery-wrapper a {
  margin: 3vw;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-wrapper h3 {
  padding: 1vw;
}
.gallery-wrapper p {
  display: none;
  padding: 1vw;
}
.gallery-wrapper .image {
  width: 20vw;
  height: 20vw;
  background-color: rgb(255, 255, 255);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
  margin: 0%;
  width: 100%;
  width: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}

.logo {
  display: inline-block;
  float: left;
  -o-object-fit: contain;
     object-fit: contain;
  width: 5vw;
  height: 1vw;
  background-image: url(../img/MinimalTakeShapeLogoWhite.png);
}

.accent {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  z-index: 1;
  position: relative;
  top: -5vw;
  left: 120vw;
  overflow: hidden;
  height: 40vw;
  margin-left: -65vw;
}

nav {
  z-index: 5;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6156862745);
  color: aliceblue;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  justify-content: space-between;
}
nav img {
  float: left;
  height: 5vw;
  padding: 1vw;
}
nav a {
  color: #FFF;
  text-decoration: none;
  margin-right: 1vw;
  font-size: 1.2vw;
  transition-duration: 0.25s;
}

ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  float: right;
}

li {
  align-content: flex-end;
  float: right;
}

a:hover {
  color: #9e9e9e;
}

.navbutton {
  background-color: #58d936;
  border-radius: 45px;
  padding: 10px 1.5vw;
  font-size: 1.2vw;
  transition-duration: 0.25s;
}

.navbutton:hover {
  background-color: #FFF;
  color: black;
}

.navbutton {
  background-color: #58d936;
  height: 3vw;
  border-radius: 45px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.4vw;
  font-weight: 400;
  padding: 1vw 2vw;
  width: 15vw;
  height: 3.5vw;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 45px;
  transition-duration: 0.25s;
}
.button:hover {
  opacity: 60%;
}

#button-green {
  background-color: #58d936;
  border-color: #58d936;
}
#button-green:hover {
  background-color: #fff;
  border-color: #fff;
  color: #000;
  opacity: 100%;
}

#button-dark {
  color: #000;
  border-color: #000;
}

.hero-content {
  width: 60%;
  margin-left: 15vw;
  margin-top: 3vw;
}
.hero-content .heading-wrapper {
  font-size: 2vw;
  letter-spacing: 0.1vw;
  padding-bottom: 1vw;
  margin-top: 1vw;
  width: 70%;
}
.hero-content a {
  margin-top: 2.5vw;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  background-image: url(../img/TakeShapeCut.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 40vw;
  overflow: hidden;
}
.hero-wrapper p {
  width: 40%;
  font-size: 1.5vw;
  font-weight: 200;
  letter-spacing: 0.05vw;
}

.buttons-wrapper a {
  margin: 1vw;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70vw;
}

.shop-cap-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  margin-bottom: 5vw;
}
.shop-cap-wrapper h1 {
  padding: 5vw;
  font-size: 3vw;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.cards-wrapper .card {
  background-color: #000;
  margin: 3vw;
  width: 25vw;
  height: 35vw;
  overflow: hidden;
  border-style: solid;
  border-radius: 1vw;
  border-width: 1px;
  border-color: #5e5e5e;
}
.cards-wrapper .card .title {
  margin-left: 1.2vw;
}
.cards-wrapper .card .description {
  margin: 1.2vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 1vw;
}
.cards-wrapper .card .description div {
  margin-bottom: 1.2vw;
}
.cards-wrapper .card .description div h3 {
  padding-bottom: 0.25vw;
  font-weight: 500;
}
.cards-wrapper .card .description div p {
  font-weight: 300;
}
.cards-wrapper .card h2 {
  font-size: 2.5vw;
  font-weight: 500;
  margin-top: 0.5vw;
}
.cards-wrapper .card .title {
  display: flex;
  flex-direction: row;
  width: 20vw;
  flex-wrap: wrap;
  margin-bottom: 4vw;
}
.cards-wrapper .card .type {
  font-size: 1vw;
}
.cards-wrapper .card .subheading {
  margin-top: 9%;
  padding-left: 6px;
  font-size: 1vw;
  font-weight: 300;
}
.cards-wrapper .card .image {
  height: 50%;
  background-image: url(../img/vf42.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#bg1 {
  background-image: url(../img/vf4.jpeg);
}

#bg2 {
  background-image: url(../img/vf42.jpeg);
}

#bg3 {
  background-image: url(../img/dt1.jpeg);
}

#bg4 {
  background-image: url(../img/router.jpeg);
}

#bg5 {
  background-image: url(../img/sl20.jpeg);
}

#minustop {
  margin-top: -3vw;
}

#w100 {
  width: 100%;
}

.multi-block-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8vw;
}
.multi-block-wrapper .img {
  background-image: url(../gallery-images/part3.jpg);
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  background-size: cover;
  width: 30vw;
  height: 25vw;
  margin-right: 8vw;
}
.multi-block-wrapper .block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 20vw;
}
.multi-block-wrapper .block .more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3vw;
}
.multi-block-wrapper .block .more-wrapper h2 {
  font-size: 3vw;
  padding-bottom: 2vw;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  border: 10px #fff;
  margin: 5vw;
  width: 80%;
}
footer .icons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  width: 50%;
}
footer .icons-wrapper i {
  font-size: 2.5vw;
  padding-bottom: 2vw;
  transition-duration: 0.25s;
}
footer .icons-wrapper i:hover {
  color: #58d936;
}
footer p {
  font-weight: 300;
  letter-spacing: 0.2vw;
  padding: 1vw;
}
footer p a {
  color: #58d936;
}
footer .copyright {
  font-size: 1vw;
}

#contact {
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  width: 90vw;
}
#contact h1 {
  font-size: 3vw;
  padding: 1vw;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
}
form .file {
  margin: 2vw 0;
  font-size: 0.8vw;
}
form .file::-webkit-file-upload-button {
  transition-duration: 0.25s;
  background-color: #fff;
  padding: 1vw;
  border: none;
  border-radius: 15px;
  width: 10vw;
}
form .file::file-selector-button {
  transition-duration: 0.25s;
  background-color: #fff;
  padding: 1vw;
  border: none;
  border-radius: 15px;
  width: 10vw;
}
form .file::-webkit-file-upload-button:hover {
  background-color: #5e5e5e;
  color: #FFF;
}
form .file::file-selector-button:hover {
  background-color: #5e5e5e;
  color: #FFF;
}
form #submit {
  transition-duration: 0.25s;
  margin: 2vw 0;
  padding: 1vw;
  background-color: #58d936;
  width: 90%;
  border-radius: 15px;
  border: none;
  color: #FFF;
  font-size: 1.5vw;
  margin-bottom: 8vw;
}
form #submit:hover {
  background-color: #fff;
  color: #000;
}
form textarea {
  width: 90%;
  height: 10vw;
  border-radius: 10px;
  border: none;
  padding: 1vw;
  margin: 2vw 0;
}
form .formgroup1 {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
form .formgroup1 input {
  margin: 2vw 0;
  padding: 1vw 1vw;
  float: left;
  border-radius: 10px;
  border: none;
  width: 80%;
}

.message-wrapper {
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #58d936;
  color: #FFF;
  width: 100%;
  height: 5vh;
}

@media screen and (max-width: 1000px) {
  body {
    margin-top: 5vh;
  }
  footer p {
    font-weight: 700;
    font-size: 2vw;
  }
  .cards-wrapper {
    grid-template-columns: 1fr 1fr !important;
  }
  .cards-wrapper .card {
    background-color: #000;
    margin: 3vw;
    width: 40vw;
    height: 80vw;
    padding-bottom: 0.5vh;
    overflow: hidden;
    border-style: solid;
    border-radius: 1vw;
    border-width: 1px;
    border-color: #5e5e5e;
  }
  .cards-wrapper .card .title {
    margin-left: 3vw;
  }
  .cards-wrapper .card .description {
    margin: 3vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 2.5vw;
  }
  .cards-wrapper .card .description div {
    margin-bottom: 1.2vw;
  }
  .cards-wrapper .card .description div h3 {
    padding-bottom: 0.25vw;
    font-weight: 500;
  }
  .cards-wrapper .card .description div p {
    font-weight: 300;
  }
  .cards-wrapper .card h2 {
    font-size: 5vw;
    font-weight: 500;
    margin-top: 0.5vw;
  }
  .cards-wrapper .card .title {
    display: flex;
    flex-direction: row;
    width: 35vw;
    flex-wrap: wrap;
    margin-bottom: 4vw;
  }
  .cards-wrapper .card .type {
    font-size: 2vw;
  }
  .cards-wrapper .card .subheading {
    margin-top: 9%;
    padding-left: 6px;
    font-size: 2vw;
    font-weight: 300;
  }
  .cards-wrapper .card .image {
    height: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  nav img {
    float: left;
    height: 5vh;
    padding: 1vw;
  }
  nav a {
    margin-right: 2vw;
    font-size: 2vh;
  }
  nav .navbutton {
    padding: 0.5vh 2.5vw;
    font-size: 1.75vh;
  }
  nav .navbutton {
    background-color: #58d936;
    height: 3vw;
    border-radius: 45px;
  }
  .hero-content {
    width: 100%;
    margin-left: 15vw;
  }
  .hero-content .heading-wrapper {
    display: flex;
    flex-direction: row;
    font-size: 4vw;
    letter-spacing: 0.1vw;
    padding-bottom: 1vw;
    width: 70%;
  }
  .hero-content .heading-wrapper :nth-child(2) {
    z-index: 2;
  }
  .hero-content .heading-wrapper h1 {
    padding-right: 1vw;
  }
  .hero-content p {
    z-index: 5;
  }
  .hero-content a {
    margin-top: 2.5vw;
  }
  .hero-wrapper {
    display: flex;
    align-items: center;
    background-image: url(../img/TakeShapeCut.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 40vw;
    overflow: hidden;
  }
  .hero-wrapper p {
    display: none;
    width: 50%;
    font-size: 2.5vw;
    font-weight: 200;
    letter-spacing: 0.05vw;
  }
  .buttons-wrapper a {
    margin: 1vw;
  }
  .button {
    font-size: 3vw;
    font-weight: 400;
    padding: 3vw 3vw;
    width: 30vw;
    height: 3.5vw;
  }
  #contact {
    margin-bottom: 40vh;
  }
  form {
    width: 80%;
  }
}/*# sourceMappingURL=main.css.map */