@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap");
:root {
  --header-height: 80px; }

body {
  color: #101010;
  font-family: 'Montserrat', sans-serif; }

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%; }

h1, h2 {
  font-weight: 800;
  line-height: 1; }

h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2; }

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0; }

h1 {
  font-size: 4.5rem; }

h2 {
  font-size: 3.5rem; }

h3 {
  font-size: 1.75rem; }

h4 {
  font-size: 1.5rem; }

h6 {
  font-size: 1.125rem; }

ul {
  padding: 0;
  margin: 0; }
  ul li {
    list-style: none; }

p {
  margin-bottom: 0; }
  p:not(:last-of-type) {
    margin-bottom: 1rem; }

a {
  color: inherit; }
  a:hover {
    color: inherit; }

input:not([type=checkbox]),
textarea,
select {
  display: block;
  width: 100%;
  min-height: 47px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border-width: 2px !important;
  border: solid transparent;
  padding: 10px 15px 9px;
  outline: 0 !important;
  transition: border-color .15s ease; }

textarea {
  height: 120px;
  resize: none; }

label {
  font-size: .875rem;
  margin-bottom: 5px; }

.button {
  background-color: #38A6F6;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  padding: 15px 50px 14px;
  cursor: pointer;
  outline: 0 !important;
  transition: background-color .25s ease; }
  .button:hover {
    background-color: #0b90f0; }

.mb-15 {
  margin-bottom: 15px; }

.mb-30 {
  margin-bottom: 30px; }

.grey-bg {
  background-color: #F4F9FE; }

.header .content {
  position: relative;
  height: var(--header-height); }
.header ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; }
  .header ul li:not(:last-of-type) {
    margin-right: 50px; }
  .header ul li a {
    font-weight: 500; }
  .header ul li.active a {
    color: #38A6F6; }
.header .phone {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%); }

.footer {
  padding: 30px 0; }
  .footer .content {
    text-align: center; }

#home-page .section-1 {
  position: relative; }
  #home-page .section-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 20px);
    height: 100%;
    background-image: url("../img/img-1.jpg");
    background-position: center center;
    background-size: cover; }
  #home-page .section-1 .flex-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: calc(100vh - var(--header-height)); }
  #home-page .section-1 .content {
    width: calc(50% - 20px);
    padding: 50px 0; }
#home-page .section-2 {
  padding: 100px 0; }
  #home-page .section-2 .content {
    max-width: 960px;
    margin: 0 auto; }
  #home-page .section-2 h2 {
    margin-bottom: 80px; }
  #home-page .section-2 h4 {
    margin-bottom: 15px; }
  #home-page .section-2 ul li {
    position: relative;
    display: flex;
    justify-content: flex-end;
    counter-increment: li; }
    #home-page .section-2 ul li:not(:last-of-type) {
      margin-bottom: 50px; }
    #home-page .section-2 ul li::before {
      content: counter(li);
      position: absolute;
      top: 0;
      left: 0;
      line-height: 3.2rem;
      font-size: 3.5rem;
      font-weight: 800; }
    #home-page .section-2 ul li .text-wrapper {
      width: calc(100% - 60px); }

#subscription-page .section-1 {
  position: relative; }
  #subscription-page .section-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 20px);
    height: 100%;
    background-image: url("../img/img-2.jpg");
    background-position: center center;
    background-size: cover; }
  #subscription-page .section-1 .flex-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: calc(100vh - var(--header-height)); }
  #subscription-page .section-1 .content {
    width: calc(50% - 20px);
    padding: 50px 0; }
  #subscription-page .section-1 .unsubscribe-check-wrapper {
    width: calc(100% - 1.25rem);
    margin: 0 0 0 auto; }

#faq-page .section-1 {
  padding: 100px 0; }
  #faq-page .section-1 h1 {
    text-align: center;
    margin-bottom: 100px; }
  #faq-page .section-1 .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; }
    #faq-page .section-1 .grid-wrapper .item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      padding: 30px;
      counter-increment: item; }
      #faq-page .section-1 .grid-wrapper .item::before {
        content: "Question #" counter(item);
        display: inline-flex;
        font-size: .875rem;
        margin-bottom: 30px; }
      #faq-page .section-1 .grid-wrapper .item h3 {
        margin-bottom: 30px; }

@media (max-width: 1199px) {
  h1 {
    font-size: 4rem; }

  h2 {
    font-size: 3rem; } }
@media (max-width: 991px) {
  h1, h2 {
    line-height: 1.2; }

  h1 {
    font-size: 2.75rem; }

  h2 {
    font-size: 2.5rem; }

  #home-page .section-1,
  #subscription-page .section-1 {
    --img-height: 500px;
    border-top: 1px solid #eee;
    padding-bottom: var(--img-height); }
    #home-page .section-1::before,
    #subscription-page .section-1::before {
      top: inherit;
      bottom: 0;
      width: 100%;
      height: var(--img-height); }
    #home-page .section-1 .flex-wrapper,
    #subscription-page .section-1 .flex-wrapper {
      min-height: inherit; }
    #home-page .section-1 .content,
    #subscription-page .section-1 .content {
      width: 100%; }

  #faq-page .section-1 .grid-wrapper {
    grid-template-columns: 1fr; } }
@media (max-width: 767px) {
  .header .content {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .header ul {
    height: auto;
    margin-bottom: 5px; }
  .header .phone {
    position: relative;
    top: 0;
    font-weight: 700;
    text-align: center;
    transform: translateY(0); } }
