body {
  background-color: var(--page-bg);
  background-image: none;
}
.page-content-container {
  background-color: var(--page-content-bg);
  color: var(--page-font);
  margin-bottom: 1rem;
}
.page-inner-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.page-inner-container h1 {
  margin: 0 0 1.5rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--title);
  text-transform: capitalize;
}
.page-inner-container p,
.page-inner-container ul {
  font-size: 1.15rem;
  line-height: 1.75rem;
}
.page-inner-container h5 {
  font-size: 1.15rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-inner-container ul li strong {
  font-weight: 700;
}
.title-container {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: lato, arial;
  font-size: 1.35rem;
  text-shadow: 0 2px 2px rgb(0 0 0 / 40%);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(0deg, #199CFF -40%, #285b83 100%);
  padding: 0;
}
.title-container h2 {
  padding: 2.5rem 0;
}
.page-adv-container {
  padding: 1.3rem;
  background-color: var(--page-bg);
}
.page-adv-container h4 {
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* LEGAL PAGES */
.legal-page-inner-container h4 {
  padding-bottom: 1rem;
  color: var(--title);
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: none;
  border-bottom: 1px solid #c4c8c6;
}

/* FAQ PAGE */
.faq-page-inner-container h4 {
  color: #787780;
}

/* CONTACT PAGE */
.page-inner-container h1.contact-title {
  margin-bottom: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.input-block {
  display: flex;
  flex-direction: column;
}
.input-name-block {
  display: flex;
  flex-direction: row;
}
.contact-input {
  background-color: var(--white);
  border-radius: 2px;
  color: #333;
  display: block;
  font-size: 1rem;
  border: 1px solid #ccc;
  padding: 6px 10px;
  margin: .5rem 0;
  height: 2.714rem;
  width: 100%;
  line-height: 1.3;
}
textarea.contact-input {
  background-color: var(--white);
  border-radius: 2px;
  color: #333;
  display: block;
  font-size: 1rem;
  border: 1px solid #ccc;
  padding: 6px 10px;
  margin: .5rem 0;
  height: 7rem;
  width: 100%;
  min-height: 4rem;
  max-height: 10rem;
  resize: vertical;
  width: 100%;
  line-height: 1.3;
}
.input-label {
  color: var(--black);
  font-weight: 700;
  font-size: 1.143rem;
  line-height: 1.3rem;
  padding: 0;
  margin-top: 2rem;
}
.input-label span {
  color: var(--error);
}
.input-name-block .input-block {
  width: 50%;
}
.input-name-block .input-block:first-child {
  margin-right: 1rem;
}
.submit {
  background-color: #eee;
  border: 1px solid #ddd;
  color: #333;
  font-size: 1.15rem;
  padding: 10px 15px;
  width: 6rem;
  cursor: pointer;
}
.submit:hover {
  background-color: #c7c4c4;
}
.form_msg {
  padding-top: 1rem;
  color: var(--error);
  font-weight: 700;
}
.form_msg.success {
  color: green;
}
.loader {
  display: none;
  font-size: 10px;
  text-indent: -9999em;
  width: 3rem;
  height: 3rem;
  margin-top: 1rem;
  border-radius: 50%;
  background: var(--header);
  background: linear-gradient(to right, var(--header) 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  animation: loader 1.4s infinite linear;
  transform: translateZ(0);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: var(--header);
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: var(--page-content-bg);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* REVIEWS PAGE */
.title-container.review-title-container {
  background: linear-gradient(0deg,#656565 -40%,#adadad 100%);
}
.reviews-page-container h1 {
  padding: 1.3rem;
  padding-bottom: 0;
  margin: 0 0 1.5rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--title);
  text-transform: capitalize;
}
.reviews-page-container p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-top: -1rem;
  padding: 1.3rem;
  padding-top: 0;
}
.review-page-block {
  display: flex;
  background-color: #fff;
  border-top: 1px solid #2825382b;
}
.review-page-image-block {
  background-color: #0C6029;
  width: 35%;
}
.review-page-image-block img {
  width: 60%;
  height: auto;
  padding: 1.5rem 1rem;
}
.review-page-title-block {
  position: relative;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 1rem 0 1rem 1rem;
}
.review-page-title {
  font-weight: 700;
  color: var(--title);
  text-shadow: none;
  text-transform: none;
  margin-bottom: 1rem;
}
.review-page-description {
  width: 80%;
  font-size: 1rem;
  line-height: 1.3rem;
  color: #787780 ;
  text-shadow: none;
  text-transform: none;
  font-weight: 400;
}
.review-page-link {
  display: block;
  font-size: 1rem;
  line-height: 1.3rem;
  color: #787780 ;
  text-shadow: none;
  text-transform: none;
  font-weight: 700;
  margin-top: 1rem;
}
.review-page-title:before {
  content: '➤';
  top: 50%;
  right: 1.5rem;
  font-size: 2.3rem;
  width: 2.85714rem;
  height: 2.85714rem;
  position: absolute;
  color: #000;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ARTICLES PAGE */
.title-container.article-title-container {
  background: linear-gradient(0deg,#656565 -40%,#adadad 100%);
}
.articles-container h1 {
  padding: 1.3rem;
  padding-bottom: 0;
  margin: 0 0 1.5rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--title);
  text-transform: capitalize;
}
.articles-container p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-top: -1rem;
  padding: 1.3rem;
  padding-top: 0;
}
.article-block {
  display: flex;
  background-color: #fff;
  border-top: 1px solid #2825382b;
}
.article-image-block {
  width: 20%;
}
.article-image-block img {
  width: 100%;
  height: 6rem;
  object-fit: cover;
}
.article-title-block {
  position: relative;
  width: 80%;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}
.article-title {
  font-weight: 700;
  color: var(--title);
  text-shadow: none;
  text-transform: none;
}
.article-title:before {
  content: '➤';
  top: 50%;
  right: 1.5rem;
  font-size: 2.3rem;
  width: 2.85714rem;
  height: 2.85714rem;
  position: absolute;
  color: #000;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  /* ARTICLES PAGE */
  .article-image-block {
    width: 40%;
  }
  .article-title-block {
    width: 60%;
  }
  .article-title {
    padding-right: 4rem;
  }
  .article-title:before {
    right: -.5rem;
  }
}

/* ANIMATION */
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
      opacity:0;
      -webkit-transform: translatey(-40px);
      -moz-transform: translatey(-40px);
      -o-transform: translatey(-40px);
      transform: translatey(-40px);
  }
  to {
      opacity:1;
      -webkit-transform: translatey(0);
      -moz-transform: translatey(0);
      -o-transform: translatey(0);
      transform: translatey(0);
  }
}
.in-down {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

@keyframes fadeUpDown {
  from {
      opacity:0;
      -webkit-transform: translatey(40px);
      -moz-transform: translatey(40px);
      -o-transform: translatey(40px);
      transform: translatey(40px);
  }
  to {
      opacity:1;
      -webkit-transform: translatey(0);
      -moz-transform: translatey(0);
      -o-transform: translatey(0);
      transform: translatey(0);
  }
}
.up-down {
  -webkit-animation-name: fadeUpDown;
  -moz-animation-name: fadeUpDown;
  -o-animation-name: fadeUpDown;
  animation-name: fadeUpDown;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}
