@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --primary-color: #ef4723;
  --bg-color: #ff7d6e;
  overflow-x: hidden; /* Hide horizontal scrollbar */
  overflow-y: scroll; /* Add vertical scrollbar */
}

a {
  color: black;
}

body {
  background: #f2f2f2;
  margin: 0;
  font-family: "Poppins";
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section {
  padding: 5em 2em;
}

.navbar {
  padding: 1em 1em;
}

.navbar h1 {
  font-size: 1.5em;
}

.navbar .logo {
  width: 150px;
}

.navbar nav {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .mobile-menu {
  cursor: pointer;
  display: none;
}

.navbar .contact-button {
  font-size: 0.8em;
  border-radius: 5em;
  text-decoration: none;
  padding: 0.3em 1em;
  color: var(--primary-color);
  border: var(--primary-color) solid 2px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.navbar .contact-button:hover {
  background: var(--primary-color);
  color: white;
  font-weight: 800;
}

.hero {
  text-align: center;
  padding-bottom: 0;
  padding-top: 0;
}

.hero-heading h1 {
  color: var(--primary-color);
  font-size: 2.8em;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 1em;
  margin-top: 2em;
  text-align: left;
}

.hero-heading .hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-heading .hero-cta .buying-cta {
  color: var(--primary-color);
  background: transparent;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.5em;
  padding: 0.3em 0.5em;
  outline: 3px;
  border-style: solid;
  margin-right: 0.5em;
  display: inline-block;
  font-weight: 500;
}

.hero-heading .hero-cta .buying-cta:hover {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  border: 3px;
  border-style: solid;
  border-color: var(--primary-color);
}

.hero-heading .hero-cta .selling-cta {
  color: var(--primary-color);
  background: transparent;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.5em;
  padding: 0.3em 0.5em;
  border: 3px;
  border-style: solid;
  margin-left: 0.5em;
  display: inline-block;
  font-weight: 500;
}

.hero-heading .hero-cta .selling-cta:hover {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  border: 3px;
  border-style: solid;
}

.hero-street-art {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 20em;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: 6% bottom;
     object-position: 6% bottom;
}

.about-us {
  background-color: var(--bg-color);
  color: white;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.3);
}

.about-us p {
  padding: 0.5em 0;
}

.about-us h2 {
  text-transform: uppercase;
  -webkit-text-decoration: underline 1.5px;
          text-decoration: underline 1.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.3em;
  padding: 0;
  margin: 0;
}

.about-us .heading-who {
  text-transform: uppercase;
  text-shadow: -6px -6px rgba(255, 255, 255, 0.185);
  padding: 0;
  padding-bottom: 0.3em;
  padding-top: 0.3em;
  margin: 0;
  line-height: 1;
}

.about-us .heading-who h3 {
  font-weight: 100;
  font-size: 5em;
  margin: 0;
  padding-top: 0.5em;
  padding-bottom: 0;
}

.about-us .heading-who span {
  font-weight: 800;
}

.about-us .subheading-who {
  font-size: 1.2em;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.about-us .description-who {
  font-size: 0.9em;
  padding-bottom: 3em;
}

.about-us .heading-what {
  text-transform: uppercase;
  text-shadow: -6px -6px rgba(255, 255, 255, 0.185);
  padding: 0;
  padding-bottom: 0.3em;
  margin: 0;
  line-height: 1;
}

.about-us .heading-what h3 {
  font-size: 5em;
  font-weight: 100;
  margin: 0;
  padding-top: 0.5em;
  padding-bottom: 0;
}

.about-us .heading-what span {
  font-weight: 800;
}

.about-us .subheading-what {
  font-size: 1.2em;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.about-us .description-what {
  font-size: 0.9em;
}

.why-us {
  color: #262626;
  /*ul.ul-values {
    display: flex;
    flex-wrap: wrap;

    max-width: 750px;
    h4 {
      margin: 0.5em;
      font-weight: 600;
      font-size: 1.2em;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-align: center;
    }
    li {
      margin: 0.5em;
      padding: 0;
      background-color: #ededed;
      width: fit-content;
    }
    p {
      font-size: 0.8em;
    }
    .value-text {
      margin: 0.7em;
      padding: 0.7em;
      text-align: center;
      p {
        margin: 0;
      }
    }
  }
  */
}

.why-us h2 {
  text-transform: uppercase;
  -webkit-text-decoration: underline 1.5px;
          text-decoration: underline 1.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.3em;
  margin: 0;
  padding: 0;
}

.why-us .heading-values {
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.why-us .heading-values h3 {
  font-weight: 100;
  margin: 0;
  padding-top: 32.76px;
  font-size: 5em;
}

.why-us .heading-values h3 span {
  font-weight: 800;
}

.why-us .carousel-item {
  height: 47em;
  background-color: #ededed;
  margin-top: 2em;
  padding: 0;
  position: relative;
}

.why-us .carousel-item .caro {
  width: 100%;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 1em 1em;
  text-align: center;
  position: absolute;
}

.why-us .carousel-item .caro h4 {
  font-size: 1.5em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

.why-us .carousel-item .caro P {
  font-size: 1em;
  font-weight: 300;
}

.why-us .data {
  overflow: hidden;
}

.why-us .data h3 {
  font-weight: 100;
  font-size: 5em;
  line-height: 1;
  text-transform: uppercase;
  margin: 50px 0px;
}

.why-us .data h3 span {
  font-weight: 800;
}

.why-us .data li {
  padding: 2em 1em;
  background-color: #ededed;
  text-align: center;
  margin: 0.5em;
}

.why-us .data li h4 {
  font-weight: 800;
  font-size: 2.3em;
  text-align: center;
}

.why-us .data li p {
  font-weight: 500;
  font-size: 1.4em;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 80px 0 0 0;
  margin: 0;
}

.why-us ul.ul-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  padding: 0;
  margin: 0;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
}

.testimonials {
  color: white;
  background-color: var(--bg-color);
  margin: 0;
  padding-top: 4em;
  padding-bottom: 4em;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.3);
}

.testimonials .glider {
  margin: 2em;
}

.testimonials .glider .test {
  margin: 0.5em 0.5em;
  padding: 0em;
  text-align: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials h2 {
  text-transform: uppercase;
  -webkit-text-decoration: underline 1.5px;
          text-decoration: underline 1.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.3em;
  margin: 0;
  margin-bottom: 3em;
  padding: 0;
}

.testimonials li {
  background-color: white;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  -webkit-box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.116);
          box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.116);
  text-align: center;
  padding: 2em 2em;
  margin: 3em auto 3em auto;
  border-radius: 2rem;
  width: 80%;
  font-size: 0.9em;
  overflow: hidden;
  /*img {
      width: 100px;
      height: 100px;
      border: 5px solid #e97163;
      border-radius: 50%;
      object-fit: cover;
      margin-top: -100px;
    }
    .alice {
      object-position: 50% 25%;
    }
    */
}

.testimonials li blockquote {
  margin: 0;
  margin-bottom: 1em;
}

.cta-end {
  padding-top: 4em;
  padding-bottom: 2em;
}

.cta-end h3 {
  margin: 0.5em 0em;
  color: #262626;
  text-align: left;
  text-transform: uppercase;
  font-size: 4.3em;
  line-height: 1.2em;
  font-weight: 900;
  text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.288);
}

.cta-end .contactend {
  text-align: center;
}

.cta-end .contactend a {
  text-decoration: none;
  font-size: 2em;
  border: 3px solid var(--primary-color);
  padding: 0.3em 0.7em;
  border-radius: 2em;
}

.hero-street-art-two {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 11em;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: 6% bottom;
     object-position: 6% bottom;
}

.footer {
  background: #262626;
  padding: 2em 1em 4em 1em;
}

.footer img {
  float: right;
  height: 60px;
  width: 60px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

nav.mobile-menu {
  display: none;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: #262626;
  height: 100vh;
  padding: 1em;
}

nav ul.primary {
  margin-top: 5em;
}

nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  font-size: 1.3em;
  text-align: right;
}

nav li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: 0.5em;
  cursor: pointer;
}

@media only screen and (max-width: 386px) {
  .why-us .data li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .why-us .data li h4 {
    font-size: 1.8em;
  }
  .why-us .data li p {
    font-size: 1.3em;
  }
  .why-us ul.ul-data {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(11rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  }
  .hero h1 {
    font-size: 2.5em;
    text-align: left;
  }
  .hero .hero-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero .hero-cta .buying-cta {
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.3em;
    padding: 0.3em 0.7em;
    border: 2px;
    border-style: solid;
    margin-right: 0.5em;
    display: inline-block;
    font-weight: 500;
  }
  .hero .hero-cta .buying-cta:hover {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
  }
  .hero .hero-cta .selling-cta {
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.3em;
    padding: 0.3em 0.7em;
    border: 2px;
    border-style: solid;
    margin-left: 0.5em;
    display: inline-block;
    font-weight: 500;
  }
  .hero .hero-cta .selling-cta:hover {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
  }
  .why-us .carousel-item {
    height: 45em;
  }
  .why-us .carousel-item .caro {
    padding: 2em;
  }
  .why-us .carousel-item .caro p {
    font-size: 0.9em;
  }
  .cta-end h3 {
    font-size: 3em;
    text-align: left;
  }
  .glider {
    width: 90%;
  }
}

@media only screen and (min-width: 600px) {
  .navbar .logo {
    width: 170px;
  }
  .hero-heading .hero-cta .buying-cta {
    font-size: 2em;
  }
  .hero-heading .hero-cta .selling-cta {
    font-size: 2em;
  }
  .data br {
    display: none;
  }
  .data ul.ul-data {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(22rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  }
  .why-us .data ul li {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .why-us .carousel-item {
    height: 38em;
  }
  .why-us .carousel-item .caro {
    padding: 2em;
  }
  .why-us .carousel-item .caro p {
    font-size: 1.15em;
  }
  .cta-end h3 {
    text-align: center;
  }
}

@media only screen and (min-width: 750px) {
  .navbar .logo {
    width: 200px;
  }
  .why-us ul.ul-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .why-us ul.ul-data li {
    -ms-flex-preferred-size: 250px;
        flex-basis: 250px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .why-us .carousel-item .caro {
    padding: 2em;
  }
  .why-us .carousel-item .caro p {
    font-size: 1.2em;
  }
  .testimonials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .testimonials ul li {
    margin: 2em;
    padding: 1em;
  }
  .cta-two .cta-two-buttons {
    text-align: center;
  }
  .cta-two h3 {
    text-align: center;
  }
}

@media only screen and (min-width: 992px) {
  .navbar .logo {
    width: 200px;
  }
  .hero-heading h1 {
    font-size: 4em;
  }
  .why-us .data ul li {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .why-us .carousel-item {
    height: 25em;
  }
  .why-us .carousel-item .caro {
    padding: 2em;
  }
  .why-us .carousel-item .caro p {
    font-size: 1.15em;
  }
}

@media only screen and (min-width: 1080px) {
  .container {
    width: 80%;
    margin: 0 auto;
  }
  section {
    padding: 10em 4em;
  }
  .hero h1 {
    font-size: 4em;
    text-align: left;
  }
  .hero .hero-cta {
    font-size: 1.2em;
    text-align: left;
  }
  .about-us h3 {
    font-size: 2em;
  }
  .about-us .subheading-who {
    font-size: 1.5em;
  }
  .about-us .description-who {
    font-size: 1em;
  }
  .about-us .subheading-what {
    font-size: 1.5em;
  }
  .about-us .description-what {
    font-size: 1em;
  }
  .why-us .data ul li {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .why-us .carousel-item {
    height: 25em;
  }
  .why-us .carousel-item .caro p {
    font-size: 1.2em;
  }
  .why-us h3 {
    font-size: 1.9em;
  }
}

@media only screen and (min-width: 1280px) {
  .why-us .data ul li {
    padding-top: 5em;
    padding-bottom: 5em;
  }
  .why-us .carousel-item {
    height: 20em;
  }
  .why-us .carousel-item .caro p {
    font-size: 1.09em;
  }
}
/*# sourceMappingURL=main.css.map */
