:root {
  --color-white: #fff;
  --color-black: #000;
  --color-dark: #050f19;
  --color-blue: #14a0ff;
  --color-hover-blue: #5cbdff;
  --color-deep-blue: #061f33;
  --color-red: #ee4747;
  --color-hover-red: #ff6565;
  --color-light-bg: #f5f5f3;
  --color-grey: #f5f5f5;
  --color-grey-medium: #888;
  --color-dark-60: rgba(5, 15, 25, 0.6);
  --gradient-banner: linear-gradient(183.25deg, #050f19 2.86%, #050f19 48.69%, #03c2ce 96.99%);

  --blur-value: 10px;

  --font-cairo: "Cairo", sans-serif;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-Black.woff2") format("woff2"), url("../fonts/Cairo-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-ExtraBold.woff2") format("woff2"), url("../fonts/Cairo-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-ExtraLight.woff2") format("woff2"), url("../fonts/Cairo-ExtraLight.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-Light.woff2") format("woff2"), url("../fonts/Cairo-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-Bold.woff2") format("woff2"), url("../fonts/Cairo-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-Medium.woff2") format("woff2"), url("../fonts/Cairo-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-Regular.woff2") format("woff2"), url("../fonts/Cairo-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  font-display: swap;
  src: url("../fonts/Cairo-SemiBold.woff2") format("woff2"), url("../fonts/Cairo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: NotoSansArabic;
  font-display: swap;
  src: url("../fonts/NotoSansArabic-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansArabic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-width: 320px;
  height: 100%;
  font-family: var(--font-cairo);
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-dark);
  background-color: var(--color-grey);
}

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

ul li {
  list-style: none;
}

input,
textarea {
  padding: 0.7rem 1.5rem;
  font-display: var(--font-cairo);
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.4rem;
  color: var(--color-dark);
  border: 1px solid var(--color-grey-medium);
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-cairo), sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  background-color: var(--color-blue);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover,
.btn:focus {
  background-color: var(--color-hover-blue);
}

.btn--red {
  background-color: var(--color-red);
}

.btn--red:hover,
.btn--red:focus {
  background-color: var(--color-hover-red);
}

.btn--white {
  color: var(--color-red);
  background-color: var(--color-white);
}

.btn--white:hover,
.btn--white:focus {
  color: var(--color-white);
  background-color: var(--color-hover-red);
}

.container {
  max-width: 1326px;
  margin: 0 auto;
  padding: 0 3rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  font-family: var(--font-mukta);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  clear: both;
}

h1,
.h1 {
  font-size: 3.2rem;
  line-height: 150%;
}

h2,
.h2 {
  font-size: 3.2rem;
  line-height: 150%;
}

h3,
.h3 {
  font-size: 3.2rem;
  line-height: 150%;
}

h4,
.h4 {
  font-size: 2.6rem;
  line-height: 140%;
}

h5,
.h5 {
  font-size: 2rem;
  line-height: 140%;
}

a {
  color: var(--color-blue);
  text-decoration: underline;
}

a:not([class]) {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:not([class]):hover,
a:not([class]):focus {
  color: var(--color-red);
  text-decoration: none;
}

.header {
  position: fixed;
  top: 4.5rem;
  right: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 1rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu li:last-child {
  padding-left: 0;
}

.header__action {
  padding: 1.15rem 6.5rem;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu li {
  padding: 0.5rem 2rem;
}

.menu a {
  font-weight: 500;
  color: var(--color-white);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--color-blue);
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.burger__close {
  display: none;
}

.burger--active .burger__open {
  display: none;
}

.burger--active .burger__close {
  display: block;
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.hero {
  background: var(--color-dark) url(../img/backs/hero_bg.jpg) no-repeat center center/cover;
  position: relative;
  max-height: 610px;
}

.hero__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 21rem 0 10rem;
}

.hero__content {
  padding: 5rem;
  background-color: var(--color-dark-60);
}

.hero__title {
  margin-bottom: 4.2rem;
  font-size: 2.6rem;
  line-height: 3.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--color-white);
}

.hero__text {
  margin-bottom: 4.5rem;
  color: var(--color-white);
}

.hero__btn {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}

.hero-page {
  position: relative;
  z-index: 2;
  background: var(--color-dark) url(../img/backs/page_hero.jpg) no-repeat center center/cover;
}

.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: var(--gradient-banner);
  opacity: 0.7;
}

.useful-pages {
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
  overflow: hidden;
}

.useful-pages__container {
  max-width: 705px;
  padding: 0;
}

.useful-pages__row {
  padding: 12rem 0;
}

.useful-pages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.useful-pages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.useful-pages__caption {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--color-dark);
  max-width: 190px;
}

.useful-pages__text {
  margin-bottom: 2rem;
  max-width: 190px;
}

.background-text {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--color-whie);
  background-image: url(../img/backs/back-text-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}

.slick-dots__container {
  position: absolute;
  left: 50%;
  bottom: 4.5rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-dots button {
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-dark);
  border-radius: 50%;
  outline: none;
  line-height: 1rem;
}

.slick-dots li {
  line-height: 1rem;
}

.slick-dots li:not(:last-child) {
  margin-left: 3rem;
}

.slick-dots .slick-active button {
  background: var(--color-dark);
}

.site-content {
  background-image: url(../img/backs/back-text-2.png), url(../img/backs/back-text-3.png);
}

.site-content {
  position: relative;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 75% 20%, 10% 80%;
}

.site-content__container {
  max-width: 980px;
  padding: 0;
}

.site-content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10rem 0;
}

body:not(.home) .site-content__row {
  padding-top: 2rem;
}

.sidebar {
  flex: 1 0 210px;
  width: 100%;
  max-width: 210px;
  margin-right: 6.5rem;
}

.sidebar__row {
  position: sticky;
  top: 10rem;
}

.sidebar__item:not(:empty) {
  margin-bottom: 3rem;
}

.side-cta {
  background: var(--color-dark) url(../img/backs/banner.jpg) no-repeat center center/cover;
}

.side-cta {
  border-radius: 1rem;
}

.side-cta__row {
  padding: 3rem 2rem;
}

.side-cta__text {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  text-align: right;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.side-cta__btn {
  letter-spacing: 0;
  border-radius: 1rem;
}

.breadcrumbs {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem 0;
}

.pre-cta {
  margin-bottom: 7rem;
}
.pre-cta__title {
  margin-bottom: 4rem;
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-weight: 600;
  text-align: right;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

.pre-cta__btn {
  display: block;
  width: max-content;
  margin: 5.4rem auto 0;
}

.content-btn {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 3rem auto 3.5rem;
}

.page-title {
  max-width: 980px;
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 5.4rem;
  text-align: right;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.entry-content p {
  margin-bottom: 2rem;
}

.entry-content ul,
.entry-content ol {
  margin: 3rem 0;
}

.entry-content ul li {
  list-style: inside square;
}

.entry-content ol li {
  list-style: inside arabic;
}

.entry-content li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.entry-content .attachment-full {
  margin: 0 auto;
  margin-bottom: 3rem;
}

.prm-c {
  max-width: 680px;
  margin: 3.5rem auto;
  background: var(--color-deep-blue);
  border-radius: 2rem;
  text-align: center;
}

.prm-c__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5rem 6rem;
}

.prm-c__text {
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
  line-height: 3.9rem;
  font-weight: 600;
  text-align: right;
  color: var(--color-white);
}

.prm-c__code {
  width: 178px;
  margin-bottom: 2rem;
  padding: 1.2rem 2rem;
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--color-white);
  border: 3px dashed var(--color-blue);
}

.prm-c__btn {
  width: 178px;
  font-size: 2rem;
  line-height: 3rem;
  padding: 1.05rem 2rem 1.45rem;
}

.prm-c p {
  margin-bottom: 0;
}

.entry-content h1 {
  margin-bottom: 2rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  margin-bottom: 2rem;
}

.entry-content img {
  margin: 3rem 0;
}

.comments-area {
  padding: 10rem 0;
  background-color: var(--color-white);
}

.comments-area__container {
  max-width: 980px;
  padding: 0;
}

.comment-list .comment-form {
  margin-bottom: 3rem;
}

#cancel-comment-reply-link {
  display: inline-block;
  margin-left: 1rem;
}

.comment-list-wrapp {
  max-width: 705px;
  margin-left: auto;
  padding: 0 5rem;
  background-color: var(--color-grey);
}

.comment-list-wrapp :is .comment-list:not(:empty) {
  margin-bottom: 3rem;
}

.comments-title {
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.comment {
  padding: 3rem 0;
}

.comment:not(:last-child) {
  border-bottom: 1px solid var(--color-dark);
}

.comment-meta {
  margin-bottom: 1.5rem;
}

.comment-author {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
}

.vcard .avatar {
  float: left;
  width: 47px;
  height: 47px;
  margin-right: 1.5rem;
  border-radius: 50px;
}

.comment-author b.fn {
  font-weight: 600;
}

.comment-metadata,
.comment-metadata a {
  font-size: 12px;
  line-height: 17px;
  color: #1b1616;
}

.comment-content p {
  margin: 1.5rem 0;
}

.comment-reply-link {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

/* .comment-reply-link::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -2px;
  background-image: url(../img/icons/reply.svg);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  margin-right: 1rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
} */

.comment-reply-link:hover {
  color: var(--color-red);
}

/* .comment-reply-link:hover::before {
  background-image: url(../img/icons/reply-hover.svg);
} */

.load-more {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 3rem auto 0;
  padding: 1.05rem 3.4rem;
}

.comments-wrapp {
  max-width: 705px;
  margin-left: auto;
  padding: 4.5rem 5rem 4.5rem 7.5rem;
  background-color: var(--color-grey);
}

.comment-reply-title {
  margin-bottom: 1.2rem;
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

.comment-notes {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-dark);
}

.comment-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.comment-form textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
  background-color: transparent;
}

.comment-form input[name="author"],
.comment-form input[name="email"] {
  width: 320px;
  max-width: 100%;
  margin-bottom: 2rem;
  background-color: transparent;
}

.comment-form textarea:placeholder,
.comment-form input[name="author"]:placeholder,
.comment-form input[name="email"]:placeholder {
  color: var(--color-medium-grey);
}

.form-submit {
  margin: 3.5rem 0 0;
}

.btn-submit {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  padding: 1.4rem 3.4rem;
  color: var(--color-dark);
  -webkit-box-shadow: 0 0 0 1px var(--color-dark);
  box-shadow: 0 0 0 1px var(--color-dark);
  background: transparent;
  border: none;
  cursor: pointer;
}

.btn-submit:hover,
.btn-submit:focus {
  color: var(--color-white);
  background: var(--color-dark);
}

.sended-comment {
  display: none;
  max-width: 705px;
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--color-grey);
  border: 1px solid var(--color-dark);
}

.footer {
  background-color: var(--color-dark);
}

.footer__row {
  padding: 5rem 0 6rem;
  text-align: center;
}

.footer__copyright {
  margin-top: 4.5rem;
  color: var(--color-white);
}

.mobile-action {
  position: fixed;
  bottom: 0;
  z-index: 99;
  width: 100%;
  background-color: var(--color-dark-60);
  -webkit-backdrop-filter: blur(var(--blur-value));
  backdrop-filter: blur(var(--blur-value));
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.mobile-action.fixed {
  opacity: 1;
  visibility: visible;
}

.mobile-action__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.5rem 2rem;
}

.mobile-action__btn {
  width: 260px;
}

.error404 {
  background-color: var(--color-white);
}

.error404 .header {
  background-color: var(--color-dark);
  top: 0;
}

.error404 .g-wrapp {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

}

.main-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.error404 .page-title {
  margin-bottom: 2rem;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .header.fixed {
    top: 0;
    background-color: var(--color-dark);
  }

  .mobile-action {
    display: none;
  }
}

@media (min-width: 1366px) {
  .burger {
    display: none;
  }
}

@media (max-width: 1367px) {
  .header {
    top: 4rem;
  }
}

@media (max-width: 1365px) {
  .header__menu {
    position: absolute;
    left: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 251px;
    top: 4.8rem;
    padding: 3.5rem 4rem;
    background-color: var(--color-dark);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .header__menu--active {
    opacity: 1;
    visibility: visible;
  }

  .header__menu li {
    padding: 0.5rem;
  }

  .header__menu li:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .useful-pages__row {
    padding: 10rem 0;
  }

  .site-content {
    background-size: 895px;
  }

  .background-text {
    background-size: 760px auto;
  }

  .comments-area {
    padding: 8rem 0;
  }
}

@media (max-width: 1025px) {
  .header {
    top: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .hero__row {
    padding: 22.9rem 0 9rem;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 1023px) {
  .useful-pages__row {
    padding: 9rem 0;
  }

  .comments-area {
    padding: 6.5rem 0;
  }
}

@media (max-width: 992px) {
  .hero__row {
    padding: 22rem 0 10rem;
  }

  .hero__content {
    background-color: var(--color-dark);
  }

  .site-content__row {
    padding: 5.5rem 0 11.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 2rem;
  }

  .header {
    top: 0;
    padding: 1.5rem 0;
    background-color: var(--color-dark);
  }

  .header__menu {
    width: 100vw;
    padding: 3.5rem 7rem 3.5rem 4rem;
  }

  .header__action {
    padding: 1.15rem 2.85rem;
  }

  .logo img {
    width: 103px;
  }

  .hero {
    background-image: url(../img/backs/hero_bg_mobile.jpg);
  }
  .hero-page {
    background-image: url(../img/backs/page_hero_mobile.jpg);
  }
  .hero__row {
    padding: 11.9rem 0 1rem;
  }
  .hero-page .hero__row {
    padding: 14.4rem 0 7rem;
  }
  .hero__content {
    padding: 2rem;
    background-color: var(--color-dark-60);
  }

  .hero__title {
    margin-bottom: 1.4rem;
  }

  .hero__text {
    margin-bottom: 1.4rem;
  }

  .useful-pages__row {
    padding: 4.5rem 0 8rem;
  }

  .breadcrumbs {
    padding: 2rem;
    background-color: var(--color-white);
  }

  .pre-cta {
    margin-bottom: 4rem;
  }

  .pre-cta__title {
    margin-bottom: 2.5rem;
    font-size: 2.6rem;
    line-height: 3.9rem;
  }

  .page-title {
    font-size: 2.6rem;
    line-height: 3.9rem;
  }

  .content-btn {
    margin: 3rem auto 2.5rem;
  }

  .prm-c__row {
    padding: 5rem 3rem;
  }

  .entry-content h1 {
    margin-bottom: 2.5rem;
  }

  .comments-area {
    padding: 7.5rem 0;
  }

  .comments-wrapp,
  .comment-list-wrapp {
    max-width: unset;
    width: calc(100% + 4rem);
    margin-right: -2rem;
    padding: 2rem 2rem 2.5rem;
  }

  .comment-list-wrapp {
    padding: 0;
  }

  .comment-form input[name="author"],
  .comment-form input[name="email"] {
    width: 100%;
  }

  .footer__row {
    padding: 5rem 0 9rem;
  }
}

@media (max-width: 767px) {
  .site-content__row {
    padding: 4rem 0 7rem;
  }
}

@media (max-width: 700px) {
  .background-text {
    background-size: 333px auto;
  }

  .site-content {
    background-size: 360px;
  }

  .slick-initialized .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}


@media (min-width: 2000px) {
  body {
    background-color: #cdd3d5;
  }

  .g-wrapp {
    max-width: 1920px;
    margin: 0 auto;
  }

  .site-content {
    background-color: var(--color-grey);
  }
}