.indexpage {
  max-width: calc(1400px + 2rem);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 0 1rem;
}

.ndxpage {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 0;
}

.dictionaryBox {
  max-width: 1000px;
  padding: 3rem 4rem;
  background-image: url(../img/hero.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
  color: white;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 5rem;
}
.dictionaryBox a {
  color: white;
  text-decoration: none;
}
.dictionaryBox__text {
  font-size: 2rem;
  padding-right: 3rem;
  border-right: 1px solid white;
  margin-right: 3rem;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.dictionaryBox p {
  max-width: 50%;
  margin-right: 1rem;
}

a.button,
.dictionaryBox__button {
  margin-left: auto;
  padding: 1rem 4rem;
  background-color: var(--lightblue);
  font-weight: 600;
  border-radius: 5px;
  box-shadow: 0px 0px 5px var(--lightblue);
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.articles__title {
  width: calc(100% + 2rem);
  padding: 0 1rem;
  max-width: 1100px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}
.articles__title span[text] {
  font-size: 3rem;
  font-weight: 600;
  padding-right: 2rem;
  flex-shrink: 0;
}
.articles__title span[hr] {
  border-top: 1px solid black;
  height: 1px;
  width: 100%;
}
.articles__slider {
  display: flex;
  justify-content: left;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  width: calc(990px + 9rem);
  background-color: white;
  margin-bottom: 5rem;
}
.article__item {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--darkblue);
  margin: 0 1.5rem;
  border-radius: 5px;
  height: 100%;
}
.article__image {
  flex-shrink: 0;
}
.article__image img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.article__content {
  flex-grow: 1;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 2rem;
  color: white;
}
.article__content a {
  color: white;
  text-decoration: none;
}
.article__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  width: 100%;
}
.article__text {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 4rem;
}
.article__button {
  padding: 1rem 3rem;
  background-color: var(--red);
  box-shadow: 0px 0px 5px var(--red);
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
  align-self: flex-end;
}

.articles__sliderOuter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

#slider__prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 3rem;
  color: gray;
  cursor: pointer;
  z-index: 2;
}

#slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 3rem;
  color: gray;
  cursor: pointer;
  z-index: 2;
}

.contact {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  border-radius: 5px;
  position: relative;
  background-color: var(--lightgrey);
  min-height: 450px;
  margin-bottom: 8rem;
  padding: 2rem;
}
.contact__inner {
  width: 100%;
  max-width: 630px;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
}
.contact__title {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}
.contact__inputs {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.contact__inputs input:not([type="checkbox"]),
.contact__inputs textarea {
  width: 100%;
  margin-bottom: 1rem;
  background-color: var(--grey);
  border: 1px solid var(--darkgrey);
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 0.25rem;
}
.contact__inputs input::placeholder,
.contact__inputs textarea::placeholder {
  color: var(--textgrey);
}
.contact__inputs input:focus,
.contact__inputs:active {
  outline: none;
}
.contact__inputs label {
  color: var(--labelgrey);
  font-size: 0.8rem;
}
.contact__inputs .contact__button {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.contact__inputs .contact__button button {
  padding: 1rem 2.5rem;
  color: white;
  color: white;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--red);
  box-shadow: 0px 0px 15px var(--red);
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1rem;
}
@media screen and (max-width: 1220px) {
  .articles__sliderOuter {
    padding: 0 3rem;
  }
  .articles__slider {
    width: 100%;
  }
}

@media screen and (max-width: 850px) {
  .dictionaryBox {
    flex-wrap: wrap;
    justify-content: center;
  }
  .dictionaryBox__text {
    width: 50%;
    text-align: center;
    display: block;
    margin: 0 0 2rem 0;
    padding: 0;
    border-right: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid white;
  }
  .dictionaryBox > p {
    width: 100%;
    max-width: unset;
    margin-bottom: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .articles__slider {
    width: 95%;
  }
  #slider__next,
  #slider__prev{
    font-size: 1.5rem;
  }
  .articles__sliderOuter {
    padding: 0;
  }
  .article__item {
    margin: 0 0.5rem;
  }
  .contact {
    padding: 0;
  }
  .dictionaryBox {
    margin-bottom: 3rem;
    padding: 3rem 1rem;
  }
  .articles__title {
    margin-bottom: 2rem;
  }
}

.prolog {
  width: 95%;
  max-width: 1200px;
  margin: 1.5rem auto;
  color: rgb(36, 36, 36);
  line-height: 1.3;
  /* font-weight: 400; */
}

.prolog.nmw {
  max-width: none;
  margin: 1.5rem 0;
  width: 100%;
}

.prolog.nmw .center div{
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.prolog p {
  margin-bottom: 1rem;
}

.prolog small {
  margin-top: 2rem;
}

.prolog h1 {
  margin-bottom: 1.5rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.clrrow {
  background-color: #f9f6f6;
  width: 100%;
  margin: 4rem 0;
}

.clrrow .row img {
  transform: scale(1.1);
}

.row,
.center {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

.rrw{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}