:root {
  font-size: 62.5%;
  --color-orange: #df6420;
  --color-grey: #231f20;
  --color-white: #fff;
}

*,
*:before,
*::after {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  font-size: 1.7rem;
  margin: 1.75rem 0;
}

section,
footer {
  padding: 5rem 2rem;
}

.legal {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.btn-primary {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
.btn-primary:focus,
.btn-primary:hover {
  background-color: transparent;
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.btn-primary:active:focus,
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgb(223, 100, 32, 0.5);
}

/* -- TYPOGRAPHY -- */
.heading {
  text-transform: uppercase;
}
.heading-1 {
  font-size: 3.6rem;
  font-weight: 400;
}
.heading-2 {
  font-size: 2.6rem;
  font-weight: 600;
}
.heading--orange {
  color: var(--color-orange);
}

/* -- HEADER -- */
.header {
  background-image: url("https://image.syngentamail.com/lib/fe39117276640478751477/m/3/7c180b59-c040-46cc-9393-2c6e5b35b37f.jpg");
  background-size: cover;
      max-width: 100%;
    height: auto;
}

/* -- LOCATIONS -- */
.locations__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.locations__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5.5rem;
}
#locations__cont {
  position: relative;
  margin-top: 4rem;
}
.locations__line {
  background-color: var(--color-orange);
  list-style: none;
  width: calc(100% - 15rem);

  position: absolute;
  height: 0.25rem;
  left: 10rem;
  top: 5.8rem;
  /*z-index: -1;*/
}

.locations__item {
  list-style: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  height: 18rem;
}
.locations__img--2,
.locations__img--3,
.locations__img--5 {
  margin-top: 3rem;
}
.locations__location {
  font-weight: 600;
  margin-top: auto;
  text-align: center;
}
.locations__location .orange {
  color: var(--color-orange);
}

/* -- REGISTER -- */
.register {
  background-color: var(--color-orange);
}
.register__container form {
  background-color: var(--color-white);
  border-radius: 1rem;
  height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 9px #00000029;
}

/* -- MODAL -- */
.modal {
  background: rgba(0, 0, 0, 0.8);
}
.modal-content {
  border: 0;
  border-radius: 0;
}
.modal-header {
  //background-image: url("https://image.syngentamail.com/lib/fe39117276640478751477/m/2/1b149b25-b6e7-4f03-b6e5-468d69a7a940.png");
    background-size: cover;
    min-height: 370px;
    border-bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    background-color: #df6420;
    opacity: 0.9;
}

.modal-header .btn-close {
  background: #fff;
  width: 4.2rem;
  height: 4.2rem;
  opacity: 1;
  color: #666769;
  border-radius: 0;
  font-size: 3rem;
  line-height: 1;
  padding: 0;
  margin: 0;
  margin-left: auto;
  transition: all 0.25s;
}
.modal-header .btn-close:focus,
.modal-header .btn-close:hover {
  background: transparent;
  color: #fff;
}
.modal-title {
  font-size: 5.6rem;
  line-height: 5.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-family: "Noto Sans Display", sans-serif;
  text-align: center;
  margin: 8rem;
}
.modal-body .thanks {
  font-size: 1.75rem;
}
.modal-body .legal {
  padding: 0 2rem;
}

.footer img {
  margin-bottom: 2rem;
}

/* MEDIA QUERY */
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1000px;
  }
}

@media (max-width: 62.5em) {
  .locations__location span {
    display: block;
  }
}

@media (max-width: 48em) {
  .hidden-sm {
    display: none;
  }
  .locations__img,
  .locations__line {
    display: none;
  }
  .locations__list {
    display: block;
  }
  .locations__item {
    display: list-item;
    list-style: disc;
    height: auto;
  }
  .locations__item::marker {
    color: var(--color-orange);
    font-size: 1.75rem;
  }
  .locations__location span {
    display: inline;
  }
  .locations__location {
    text-align: left;
  }

  .footer img {
    width: 33.2rem;
  }

  .modal-dialog {
    padding: 1.75rem;
  }
  .modal-body .thanks,
  .modal-body .legal {
    padding: 0 0.5rem;
  }
}

/* 600px */
@media (max-width: 37.5em) {
  .header {
    background-image: url("https://image.syngentamail.com/lib/fe39117276640478751477/m/2/3077e90a-ec17-4bb5-a426-82fd247fd007.png");
    height: 18.6rem;
  }
  .modal-header {
    background-image: url("https://image.syngentamail.com/lib/fe39117276640478751477/m/2/74bd5ed6-e060-41c9-90a5-3fb76bf41059.png");
    min-height: 341px;
  }
  .modal-title {
    font-size: 3.6rem;
    line-height: 3.8rem;
    margin: 2rem;
    margin-top: 5rem;
  }
}

@media (max-width: 28.43em) {
  .modal-title {
    margin-top: 0;
  }
}
