*, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  font-family: "Roboto", sans-serif;
}

html {
  color: rgb(37, 40, 41);
  font-size: 1.1rem;
  font-weight: 600;
}

.fit-w {
  width: 100%;
}

.fit-h {
  height: 100vh;
}

.main-title {
  font-family: "Work Sans", sans-serif;
}

.max-w {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.max-w-xl {
  max-width: 1600px;
}

.site-container {
  max-width: 1100px;
}

.hide {
  display: none;
}

.landing-bike {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-bike h1 {
  color: #f0eded;
  max-width: 800px;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.9;
  font-size: 3rem;
  text-align: center;
  padding: 3rem;
}

.bike-bg {
  background-image: url(../img/bike-bg.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  filter: contrast(1.4) brightness(0.5);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.bike-presentation-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  color: white;
  min-height: 600px;
}
.bike-presentation-section .bike-side-container {
  grid-row: 1;
  position: relative;
  height: 100%;
  width: 100%;
  grid-column: 1/9;
}
.bike-presentation-section .bike-side-container picture {
  width: 100%;
  height: 100%;
}
.bike-presentation-section .bike-side-container img {
  width: auto;
  height: auto;
  min-width: 250px;
  min-height: 150px;
}
.bike-presentation-section .bike-side-container img, .bike-presentation-section .bike-side-container picture {
  position: absolute;
  bottom: 0;
  max-height: 100%;
  max-width: 100%;
}
.bike-presentation-section .bike-pattern-bg {
  background-color: #192831;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.bike-presentation-section .bike-pattern-bg .bg-pattern {
  background-image: url(../img/pattern.webp);
  height: 100%;
  filter: invert(1) opacity(0.2);
  background-repeat: repeat;
}
.bike-presentation-section .main-text {
  grid-column: 9/12;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: right;
}
.bike-presentation-section .main-text h2 {
  font-size: 6rem;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.9;
  width: 100%;
}
.bike-presentation-section .main-text p {
  font-family: "Bebas Neue", sans-serif;
  width: 100%;
}
.bike-presentation-section .extra-text {
  grid-column: 7/9;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: right;
  line-height: 1.5;
  font-weight: 300;
}
.bike-presentation-section .extra-text .first-paragraph {
  margin-bottom: 1rem;
  text-align: right;
}
.bike-presentation-section .plus {
  position: absolute;
  display: block;
  color: #bbb;
  font-weight: 500;
  font-size: 30px;
}
.bike-presentation-section .plus.plus1 {
  top: 15vh;
  left: 3vw;
  color: red;
  z-index: 1;
}
.bike-presentation-section .plus.plus2 {
  top: 55vh;
  left: 50vw;
  z-index: 1;
}
.bike-presentation-section .plus.plus3 {
  top: 0vh;
  right: 25vw;
  z-index: 1;
}

@media (max-width: 900px) {
  .bike-presentation-section {
    grid-template-columns: 1rem 1fr 1fr 1fr 1fr 1rem;
    grid-template-rows: min(400px, 60vh) 1fr;
    padding: 2rem 0;
  }
  .bike-presentation-section .main-text, .bike-presentation-section .extra-text {
    grid-row: 1/2;
    align-items: initial;
    max-height: fit-content;
  }
  .bike-presentation-section .main-text {
    grid-column: 2/5;
    justify-content: initial;
    text-align: left;
    margin-left: 10vw;
  }
  .bike-presentation-section .main-text br {
    display: none;
  }
  .bike-presentation-section .extra-text {
    grid-column: 3/6;
    align-items: initial;
    justify-content: flex-end;
    margin-right: 10vw;
  }
  .bike-presentation-section.fit-h {
    height: auto;
    min-height: 100vh;
  }
  .bike-presentation-section .cta-button-main {
    margin-left: 0;
    width: fit-content;
  }
  .bike-presentation-section .bike-side-container {
    grid-column: 2/6;
    grid-row: 2/3;
  }
  .bike-presentation-section .bike-side-container picture {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bike-presentation-section .bike-side-container img, .bike-presentation-section .bike-side-container picture {
    position: relative;
  }
}
@media (max-width: 600px) {
  .bike-presentation-section {
    grid-template-rows: 300px minmax(20vh, 200px) 1fr;
  }
  .bike-presentation-section .extra-text {
    grid-row: 2/3;
  }
  .bike-presentation-section .bike-side-container {
    grid-row: 3/4;
  }
}
.cta-button-main {
  background-color: white;
  padding: 0.3rem 1.7rem;
  color: #0f1f29;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "bebas neue", sans-serif;
  letter-spacing: 2px;
  font-style: italic;
  margin-left: auto;
}
.cta-button-main::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 4px solid white;
  position: absolute;
  top: 8px;
  left: 8px;
}

.ani {
  animation: slide 1s ease-out;
}

.rueda-logo {
  visibility: hidden;
}

@keyframes slide {
  0% {
    left: -30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 0;
  }
}
nav.main-nav {
  position: fixed;
  top: 0;
  z-index: 1;
}
nav.main-nav div.nav-inside {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.main-nav div.nav-inside img {
  max-height: 35px;
  margin-left: 5px;
  transform-origin: center;
  transition: 0.5s ease-out;
}
nav.main-nav div.nav-inside div.relleno {
  height: 35px;
  width: 35px;
  padding-right: 5px;
}
nav.main-nav div.nav-inside h1 {
  color: white;
}

.half {
  /*height: 50%;
  */
  /*en horizontal width 50%*/
}

main.landing {
  background-color: white;
}
main.landing div.landing-inside {
  height: 100%;
  display: flex;
  flex-direction: column;
}
main.landing div.landing-inside div.landing-pic {
  flex-grow: 2;
  position: relative;
  /*
  transition: 1s ease;
  left: -200px;*/
}
main.landing div.landing-inside div.landing-pic img {
  max-width: 100%;
  max-height: 400px;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}
main.landing div.landing-inside div.cta {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.landing div.landing-inside div.cta h2.cta-text {
  color: black;
}
main.landing div.landing-inside div.cta button.button-cta {
  padding: 0.7rem;
  border: none;
  background-color: #4e7e64;
}
main.landing div.landing-inside div.cta button.button-cta h1.button-text {
  font-family: sans-serif;
  color: white;
  font-size: 1.35rem;
  padding: 0 1.4rem;
}
main.landing .half#landing-2 {
  padding: 1rem;
}
main.landing .half#landing-2 div.form-container {
  box-shadow: -3px 3px 9px #bbb;
  border-radius: 10px;
}
main.landing .half#landing-2 div.form-title {
  width: 100%;
  background-color: #1c4234;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
main.landing .half#landing-2 div.form-title h2 {
  padding: 0.75rem 0;
  color: white;
}
main.landing .half#landing-2 form {
  padding: 1rem;
}
main.landing .half#landing-2 form:before {
  content: "alo";
  background-color: blue;
  width: 100%;
  height: 60px;
  display: block;
  display: none;
  box-shadow: -3px 3px 9px #bbb;
}
main.landing .half#landing-2 form fieldset {
  padding: 1rem 0;
  border: none;
}
main.landing .half#landing-2 form fieldset div.form-group {
  margin-bottom: 1rem;
}
main.landing .half#landing-2 form fieldset div.form-group label {
  font-weight: 100;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
main.landing .half#landing-2 form fieldset div.form-group.s-row {
  width: 49%;
  display: inline-block;
}
main.landing .half#landing-2 form fieldset div.form-group label input {
  display: block;
  width: 100%;
  height: 30px;
  margin-top: 0.25rem;
}
main.landing .half#landing-2 form fieldset div.form-group label abbr {
  display: none;
}
main.landing .half#landing-2 form fieldset div.form-group label span {
  font-weight: 100;
  margin-bottom: 0.5rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
main.landing .half#landing-2 form fieldset div.form-group div.controls select#country {
  margin-top: 0.25rem;
  width: 100%;
  height: 30px;
}
main.landing .half#landing-2 form fieldset .secondary {
  background-color: #16222a;
  background-color: #1c4234;
  border: none;
  color: white;
  display: block;
  margin: 0 auto;
}
main.landing .half#landing-2 form fieldset .secondary::after {
  border-color: #1c4234;
}

div.container .titulo {
  text-align: center;
  margin-bottom: 1rem;
  color: black;
  font-size: 1.6rem;
}
div.container section {
  padding: 1rem;
}
div.container section.about-us {
  display: flex;
  background-color: rgba(78, 126, 100, 0.1490196078);
}
div.container section.about-us div.half {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.container section.about-us div.half h2 {
  font-size: 1.6rem;
  padding-right: 1rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
div.container section.about-us div.half p {
  color: #666;
}
div.container section.about-us div.half.dos {
  padding: 1rem;
  display: none;
}
div.container section.about-us div.half.uno {
  padding: 1rem;
}
div.container section.about-us div.half.uno ul.good-points li {
  padding: 7.5px 1rem;
  border: 2px solid #4e7e64;
  border-radius: 30px;
  list-style: none;
  margin-bottom: 1.25rem;
}
div.container section.about-us div.half.uno ul.good-points li:first-of-type {
  margin-top: 1rem;
}
div.container section.about-us div.half.uno ul.good-points li img.icon {
  height: 18px;
  display: inline;
  margin-right: 1rem;
}
div.container section.about-us div.half.uno ul.good-points li p {
  display: inline;
  font-weight: 200;
  color: black;
}
div.container section.about-us div.half.uno {
  margin-bottom: 1rem;
}
div.container section.about-us div.half.dos img {
  width: 100%;
}
div.container section.our-models {
  width: 100%;
  margin: 3rem auto;
}
div.container section.our-models div.models {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
div.container section.our-models div.model {
  border-radius: 7px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 500px;
  min-width: 200px;
}
div.container section.our-models div.model div.model-picture {
  position: relative;
  padding-top: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url(../img/bike2.jpg);
  height: 100%;
  width: 100%;
}
div.container section.our-models div.model p.model-description {
  margin: 0.5rem 0;
  font-weight: 300;
  font-size: 1rem;
}
div.container section.our-models div.model .model-name {
  text-align: center;
  color: black;
}
div.container section.our-models div.model button.model-buy {
  text-align: center;
  padding: 0.5rem;
  box-shadow: none;
  border: none;
  background-color: #4e7e64;
  border: 1px solid #4e7e64;
  color: #4e7e64;
  border-radius: 5px;
  font-family: sans-serif;
  color: white;
}
div.container section.our-models div.model p.model-description {
  text-align: center;
}
div.container section.our-models div.model img.model-image {
  width: 100%;
  padding: 0 0.5rem;
}
div.container section.our-models div.model div.price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #4e7e64;
  padding: 0.15rem;
  font-weight: 800;
  color: white;
  border-radius: 5%;
}
div.container section.materials {
  margin: 3rem auto;
  padding: 2rem 1rem;
}
div.container section.materials div.avd {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
div.container section.materials div.avd div.check-marker {
  text-align: center;
  max-width: 250px;
  min-width: 200px;
  margin-bottom: 1rem;
  border: 2px solid #4e7e64;
  border-radius: 10px;
  padding: 1rem;
}
div.container section.materials div.avd div.check-marker h3 {
  font-size: 1.25em;
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
}
div.container section.materials div.avd div.check-marker p {
  color: rgb(128, 128, 128);
  font-weight: 200;
}
div.container section.materials div.avd div.check-marker img {
  width: 80%;
}
div.container section.materials div.avd div.check-marker:last-child {
  margin-bottom: 0;
}
div.container section.testimonial {
  background-color: rgba(78, 126, 100, 0.1490196078);
}
div.container section.testimonial h2.titulo span.ts {
  color: #4e7e64;
}
div.container section.testimonial div.testimonial-content div.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.container section.testimonial div.testimonial-content img.testimonial-img {
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
div.container section.testimonial div.testimonial-content p.test {
  line-height: 1.6;
  font-size: 1.4rem;
}
div.container section.testimonial div.testimonial-content p.test::before, div.container section.testimonial div.testimonial-content p.test::after {
  content: '"';
  position: relative;
  font-size: 1.7rem;
  line-height: 1;
  font-family: serif;
}

footer {
  background-color: #161616;
}
footer div.container {
  text-decoration: none;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 3rem 4rem;
  justify-content: space-between;
  z-index: 10;
}
footer div.container::before {
  content: "B-TRACK";
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  left: 0;
  font-size: clamp(2.5rem, -0.875rem + 8.333vw, 6.5rem);
  letter-spacing: 5px;
  color: white;
}
footer::before {
  content: "";
  background-image: url(../img/family-canyon-endurace-04.jpg);
  width: 100%;
  height: 120px;
  z-index: 10;
  display: block;
  filter: grayscale(1);
  background-position: center;
  background-size: cover;
}
footer div.link-section {
  display: inline-block;
  width: 50%;
  margin-bottom: 1rem;
}
footer div.link-section p.links-text {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e6e6e6;
  margin-bottom: 1.25rem;
}
footer div.link-section ul li {
  list-style: none;
  margin-bottom: 1rem;
}
footer div.link-section.socials ul li {
  display: inline-block;
}
footer div.link-section.socials ul li a {
  text-decoration: none;
  margin-right: 0.25rem;
}
footer div.link-section.socials ul li a img {
  width: 19px;
}
footer a, footer .copy-text {
  text-decoration: none;
  color: #a7a7a7;
  font-size: 14px;
}
footer a:hover, footer .copy-text:hover {
  color: #ddd;
  transition: 0.3s ease;
}
footer .copy-section {
  text-align: center;
  width: 100%;
}

@media (max-width: 600px) {
  div.container footer div.link-section {
    width: 100%;
    text-align: left;
  }
}
/* index 2 */
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card {
  cursor: pointer;
  width: 340px;
  height: 340px;
}

.front, .back {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  backface-visibility: hidden;
}

.anim {
  transition: transform 0.6s linear;
}

.front img {
  height: 100%;
}

.front {
  transform: perspective(600px) rotateY(0deg);
}

.back {
  background-color: #f1f1f1;
  transform: perspective(200px) rotateY(180deg);
}

.card:hover > .front {
  transform: perspective(200px) rotateY(-180deg);
}

.card:hover > .back {
  transform: perspective(600px) rotateY(0deg);
}

@media only screen and (max-width: 699px), (orientation: portrait) {
  main.landing {
    min-height: calc(100vh - 55px);
  }
  main.landing div.landing-inside div.landing-pic {
    position: initial;
    justify-content: center;
    display: flex;
  }
  main.landing div.landing-inside div.landing-pic img {
    position: initial;
    transform: initial;
  }
}
@media only screen and (min-width: 820px), (orientation: landscape) {
  main.landing {
    height: auto;
  }
  .hide {
    display: block;
  }
  main.landing div.landing-inside {
    flex-direction: row;
  }
  main.landing div.landing-inside div.half {
    width: 50%;
  }
  main.landing div.landing-inside div.half.cta {
    display: flex;
    flex-direction: column;
  }
  main.landing div.landing-inside div.half.cta h2 {
    text-align: center;
  }
  main.landing div.landing-inside div.half.cta h2.cta-text {
    margin: 0 0.5rem 1rem;
    margin-bottom: 1rem;
  }
  main.landing div.landing-inside div.half.cta button.button-cta {
    cursor: pointer;
    margin-bottom: 1rem;
  }
  div.container section.about-us {
    display: flex;
    background-color: rgba(78, 126, 100, 0.1490196078);
  }
  div.container section.about-us div.half {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  div.container section.about-us div.half h2 {
    font-size: 1.6rem;
    padding-right: 1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  div.container section.about-us div.half p {
    color: #666;
  }
  div.container section.about-us div.half.uno {
    padding: 1rem;
  }
  div.container section.about-us div.half.uno ul.good-points li {
    padding: 7.5px 1rem;
    border: 2px solid #4e7e64;
    border-radius: 30px;
    list-style: none;
    margin-bottom: 1.25rem;
  }
  div.container section.about-us div.half.uno ul.good-points li:first-of-type {
    margin-top: 1rem;
  }
  div.container section.about-us div.half.uno ul.good-points li img.icon {
    height: 18px;
    display: inline;
  }
  div.container section.about-us div.half.uno ul.good-points li p {
    display: inline;
    font-weight: 200;
    color: black;
  }
  div.container section.about-us div.half.dos {
    display: flex;
  }
  div.container section.our-models {
    width: 100%;
  }
  div.container section.our-models div.models {
    flex-direction: row;
    justify-content: center;
  }
  div.container section.our-models div.models div.model {
    width: 45%;
    max-width: 500px;
  }
  div.container section.materials div.avd {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  div.container section.materials div.avd div.check-marker {
    margin-bottom: 0;
    max-width: 25%;
  }
  div.container section.materials div.avd div.check-marker img.check {
    max-width: 200px;
  }
  div.container section.testimonial .testimonial-content {
    display: flex;
    padding: 0 1rem;
  }
  div.container section.testimonial .testimonial-content .testimonial-img, div.container section.testimonial .testimonial-content .text {
    width: 50%;
  }
  div.container section.testimonial .testimonial-content .text {
    margin-left: 1rem;
  }
  div.container footer div.link-section {
    width: 25%;
  }
}
@media only screen and (min-width: 1040px) {
  div.container section.our-models div.models div.model {
    width: 30%;
    max-width: 500px;
  }
}
.product-show {
  background-image: url(../img/sysbike.jpg);
  background-size: cover;
  height: 100vh;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 4rem;
}

@media (max-width: 700px) {
  .product-show {
    background-position: center;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    font-size: 2.5rem;
  }
}
.hidden {
  opacity: 0;
  transition: 1s ease;
  filter: blur(5px);
  transform: translateY(50%);
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0%);
}

.extra-text {
  transition-delay: 200ms;
}

.carrousel-area {
  height: 100vh;
  padding: 100px 0;
  overflow: hidden;
  background-color: black;
  display: flex;
  align-items: center;
}

.horizontal__content {
  display: flex;
}

.horizontal__item {
  padding: 200px 150px;
}

.horizontal__item:not(:last-child) {
  margin-right: 50px;
}

.horizontal__item:first-of-type {
  margin-left: 30px;
}

@media (min-width: 960px) {
  .horizontal__item:not(:last-child) {
    margin-right: 150px;
  }
  .horizontal__item:first-of-type {
    margin-left: 140px;
  }
}
.horizontal__num {
  font-size: 80px;
  font-weight: 900;
  font-stretch: condensed;
}

.horizontal__item {
  background-size: cover;
  background-position: center;
}

.horizontal__item:nth-of-type(1) {
  background-image: url(../img/man-biking.jpg);
}

.horizontal__item:nth-of-type(2) {
  background-image: url(../img/SystemSix23QA32.jpg);
}

.horizontal__item:nth-of-type(3) {
  background-image: url(../img/SystemSix-Rejig_03.jpg);
  background-position: left;
}

.horizontal__item:nth-of-type(4) {
  background-image: url(../img/sysbike.jpg);
  background-position: center;
}

.plus-sign {
  width: 20px;
}

.faq__container {
  background-color: black;
  color: #f0eded;
}
.faq__container .content {
  max-width: 1090px;
  margin: 0 auto;
}
.faq__container .faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
}
.faq__container .faq__element {
  overflow: hidden;
  cursor: pointer;
  transition: max-height 0.5s ease-in-out;
}
.faq__container .faq__element_header {
  display: grid;
  border-top: 1px solid rgb(115, 115, 115);
  grid-template-columns: 60px auto;
  padding: 1rem 0;
  padding-top: 1rem;
}
.faq__container .faq__element_header h3 {
  font-size: 1.3rem;
}
.faq__container .faq__element_content {
  padding-left: 60px;
  font-weight: 300;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}
.faq__container .faq__element.active .faq__element_content {
  max-height: 1000px;
}
.faq__container .faq__element_content_hero {
  padding-bottom: 1rem;
}
.faq__container iframe {
  margin-top: 1rem;
  width: 100%;
}

.map-section {
  text-align: center;
  background-color: black;
  padding: 8rem 1rem 4rem;
  color: white;
}
.map-section p {
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.map-section h2 {
  font-size: 2.5rem;
}
.map-section #svgmap {
  position: absolute;
  left: 29%;
  top: 12%;
  height: 79%;
}
.map-section .container {
  width: fit-content;
  max-width: 3000px;
}
.map-section img {
  width: 100%;
}
.map-section .circle {
  position: absolute;
  background: black;
  height: 25px;
  width: 25px;
  border-radius: 20px;
  top: 0;
  z-index: 1;
}
.map-section .map-container {
  margin: 0 auto;
}
.map-section .badge {
  width: 150px;
}
.map-section .download-buttons {
  display: flex;
  justify-content: space-around;
}
.map-section .strava-logo {
  height: 20px;
  display: flex;
  justify-content: center;
}

.download-buttons {
  margin: 3rem 0rem;
}

@media (min-width: 700px) {
  .map-section {
    text-align: left;
  }
  .map-section .container-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1090px;
    margin: 0 auto;
  }
  .map-section .map-container {
    max-width: 550px;
    margin-right: -1rem;
  }
}
.newsletter__container {
  background-color: black;
  padding: 4rem 0;
}
.newsletter__container .newsletter {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  color: white;
}
.newsletter__container .newsletter__image img {
  display: none;
  max-width: 400px;
}
.newsletter__container .newsletter__subscription form h3 {
  text-transform: capitalize;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.newsletter__container .newsletter__subscription form p {
  color: #ddd;
  font-weight: 400;
}
.newsletter__container .newsletter__subscription form .form-control {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  margin-top: 1rem;
}
.newsletter__container .newsletter__subscription form .form-control input, .newsletter__container .newsletter__subscription form .form-control button {
  padding: 0.7rem 0.75rem;
  font-size: 1rem;
}
.newsletter__container .newsletter__subscription form .form-control input {
  background: #161616;
  border: moccasin;
  color: white;
  cursor: pointer;
}
.newsletter__container .newsletter__subscription form .form-control button {
  background: #192831;
  color: white;
  border: none;
  font-weight: 600;
}
.newsletter__container .newsletter .success {
  font-size: 1.3rem;
}

@media (min-width: 900px) {
  .newsletter__container .newsletter {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    max-width: 1090px;
    padding: 1rem;
  }
  .newsletter__container .newsletter__image {
    grid-column: 1/5;
    padding: 1.5rem 0;
    z-index: 2;
  }
  .newsletter__container .newsletter__image img {
    display: inline-block;
    max-width: 600px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .newsletter__container .newsletter__subscription {
    grid-column: 6/-1;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-right: 3rem;
  }
  .newsletter__container .newsletter__subscription form .form-control input {
    background: #292929;
  }
  .newsletter__container .newsletter::after {
    content: "";
    background-color: #161616;
    height: 100%;
    width: 100%;
    grid-column: 4/-1;
    z-index: 1;
  }
  .newsletter__container .newsletter__image, .newsletter__container .newsletter__subscription, .newsletter__container .newsletter::after {
    grid-row: 1;
  }
}

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