:root {
  --white: white;
  --dark-grey: #484442;
  --red-ost: #d3411c;
  --gold: #c9961a;
  --beige: #d6c99e;
}

.section {
  background-color: var(--white);
  height: 100vh;
  display: flex;
}

.container {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8em;
  padding-left: 8vw;
  padding-right: 8vw;
  display: flex;
}

.text-block {
  color: var(--white);
  text-align: center;
  background-color: #0000;
  width: auto;
  max-width: none;
  margin-top: 0;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
}

.div-block {
  background-color: #fff;
}

.div-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  max-width: 360px;
  display: flex;
}

.div-bg-phone {
  background-color: var(--dark-grey);
  justify-content: center;
  align-items: center;
  min-width: 360px;
  margin-top: 26px;
  padding: 12px;
  text-decoration: none;
  display: flex;
}

.link-email {
  color: var(--dark-grey);
  margin-top: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.paragraph-services {
  color: var(--dark-grey);
  text-align: center;
  text-transform: uppercase;
  align-self: stretch;
  margin-top: .25em;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  text-decoration: none;
  display: block;
}

.img-logo-slowfood {
  margin-top: 40px;
}

.span-bold {
  font-size: 1.4rem;
  font-weight: 700;
}

.span-small {
  font-size: 1rem;
  line-height: 1.4rem;
}

.paragraph {
  color: var(--dark-grey);
  text-align: center;
  text-transform: uppercase;
  margin-top: 2em;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.link-social {
  background-image: url('../images/logo-insta-gold.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 3rem;
  height: 3rem;
  transition: all .375s;
}

.link-social:hover {
  transform: scale(1.1);
}

.link-social.fb {
  background-image: url('../images/logo-fb-gold.svg');
  transition: all .375s;
}

.link-social.fb:hover {
  transform: scale(1.1);
}

.div-social {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  display: flex;
}

@media screen and (max-width: 991px) {
  .container {
    margin-top: 4em;
  }
}

@media screen and (max-width: 767px) {
  .text-block {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }

  .div-wrapper {
    max-width: 280px;
  }

  .div-bg-phone {
    min-width: 240px;
  }

  .link-email {
    font-size: 1.2rem;
  }

  .paragraph-services {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .link-social, .link-social.fb {
    width: 2rem;
    height: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    align-items: center;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .div-wrapper {
    max-width: 300px;
  }
}


