/* Style Globalne */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #121212;
  --color-text: #ffffff99;
  --color-headers: #ffffff;
  --color-pr: #ff8c00;
  --color-sc: #222831;
  --shadow-color: rgba(35, 49, 66, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  font-display: swap;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--color-headers);
}

h4,
h5,
h6 {
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-text);
}

a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-headers);
}

li {
  list-style: none;
}

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

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.btn {
  display: block;
  width: fit-content;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: 3px solid var(--color-pr);
  box-shadow: 5px 8px 10px 1px rgba(255, 140, 0, 0.25);
}

.btn-primary {
  background-color: var(--color-pr);
  color: var(--color-headers);
}

.btn-primary:hover {
  background-color: var(--color-bg);
  color: var(--color-headers);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: var(--color-sc);
  color: var(--color-headers);
}

.btn-outline:hover {
  background-color: var(--color-pr);
  color: var(--color-headers);
  transform: translateY(-2px);
}

button.btn {
  all: unset;
  display: inline-block;
}

.shadow-default {
  -webkit-filter: drop-shadow(4px 4px 4px var(--shadow-color));
  filter: drop-shadow(4px 4px 4px var(--shadow-color));
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-label {
  font-weight: 500;
  color: var(--color-pr);
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: solid 1px rgba(255, 140, 0, 0.2);
  border-radius: 3rem;
  margin-bottom: 1rem;
  width: fit-content;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 4rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.35rem;
    line-height: 1.4;
  }

  h4 {
    font-size: 1.15rem;
    line-height: 1.4;
  }

  p,
  a {
    font-size: 1rem;
    line-height: 1.6;
  }

  .btn {
    padding: 0.9rem 1.4rem;
    font-size: 1rem;
  }

  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  p,
  a {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
  }

  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-label {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
  }
}

/* Header */
header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

header.header-bg {
  background-color: var(--color-bg);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.3rem;
}

header .menu-logo,
header .menu-cta {
  width: 200px;
}

header .menu-cta a {
  margin-left: auto;
}

header .menu-logo img {
  height: 3rem;
}

/* Navigation */
nav.menu-box {
  border: 2px solid rgba(255, 140, 0, 0.2);
  border-radius: 3rem;
  padding: 0.5rem 1rem;
}

ul.nav-list {
  display: flex;
  column-gap: 0.3rem;
}

ul.nav-list li {
  padding: 0.5rem 0;
}

ul.nav-list li a,
ul.nav-list li span {
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
  border-radius: 3rem;
  background-color: transparent;
  width: fit-content;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-headers);
}

ul.nav-list li.current_page_item > a,
ul.nav-list li:hover > a,
ul.nav-list li:hover > span {
  background-color: var(--color-sc);
  color: var(--color-pr);
}

ul.sub-menu {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-14px);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  nav.menu-box {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-bg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: left 0.3s ease;
    z-index: 1000;
    border: 0;
    border-right: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 0;
  }

  nav.menu-box.active {
    left: 0;
  }

  ul.nav-list {
    flex-direction: column;
    row-gap: 0.8rem;
  }

  header .menu-cta {
    display: none;
  }

  body.no-scroll {
    overflow: hidden;
  }
}

.nav-list li {
  position: relative;
}

.nav-list li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-bg);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  z-index: 100;
}

.sub-menu li {
  white-space: nowrap;
  padding: 0.5rem 1rem;
}

.submenu-icon svg {
  width: 10px;
  height: 10px;
}

.submenu-icon svg#minus {
  display: none;
}

li.menu-item-has-children:hover .submenu-icon svg#minus {
  display: inline;
}

li.menu-item-has-children:hover .submenu-icon svg#plus {
  display: none;
}

li.menu-item-has-children:hover svg path {
  transition: all 0.3s ease-in-out;
  stroke: var(--color-pr);
}

@media (max-width: 1024px) {
  .menu-item-has-children > a {
    width: 100%;
  }

  .nav-list li .sub-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0 0 1rem;
    position: static !important;
    background: none;
    box-shadow: none;
  }

  .menu-item-has-children.is-open > .sub-menu {
    display: flex;
  }

  .menu-item-has-children.is-open .submenu-icon #plus {
    display: none;
  }
  .menu-item-has-children.is-open .submenu-icon #minus {
    display: inline;
  }
}

@media (min-width: 1025px) {
  .menu-item-has-children:hover > .sub-menu {
    display: block;
  }

  .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
  }

  .menu-item-has-children {
    position: relative;
  }
}

@media (max-width: 1024px) {
  .sub-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: none;
    position: static;
    box-shadow: none;
  }

  .menu-item-has-children.is-open > .sub-menu {
    display: flex;
  }
}

/* Hero Section */
.hs {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  padding-top: 100px;
}

.hs-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hs h1 {
  font-weight: 500;
}

.hs h1 span {
  font-weight: 700;
  color: var(--color-pr);
}

.hs h2 {
  color: var(--color-text);
  max-width: 600px;
  font-size: 1.5rem;
  font-weight: 400;
}

.hs h2 span {
  font-weight: 700;
  color: var(--color-headers);
}

@media (max-width: 768px) {
  .hs-content {
    margin-bottom: 100px;
  }

  .hs h2 {
    font-size: 1.2rem;
  }
}

/* About Us */
.about-us-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2.5rem;
}

.about-us-left {
  max-width: 290px;
}

.about-us-right {
  max-width: 640px;
}

.about-us-right span {
  color: var(--color-headers);
}

.about-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-us-box {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  height: 350px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-us-box:hover {
  transform: translateY(-5px);
}

.about-us-content {
  position: absolute;
  bottom: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: var(--color-text);
}

.about-us-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.about-us-line {
  width: 40px;
  height: 3px;
  background-color: var(--color-pr);
  margin-bottom: 0.5rem;
}

.about-us-content p {
  margin-bottom: 0;
}

.about-us-more {
  margin-top: 3rem;
}

.about-us-more a.btn-primary {
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .about-us-info h2,
  .about-us-info p {
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .about-us-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us-left {
    max-width: unset;
  }

  .about-us-grid {
    grid-template-columns: 1fr;
  }

  .about-us-box {
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .about-us-box {
    padding: 1rem 1.5rem;
  }
}

/* Offer */
.offer-front {
  background: #233142;
}

.offer-front .section-label {
  margin-inline: auto;
}

.offer-front h2 {
  text-align: center;
}

.offer-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.offer-box {
  padding: 4rem 2rem;
  background: var(--color-bg);
  text-align: center;
  border: 2px solid var(--color-pr);
  transition: transform 0.3s ease, border 0.5s ease;
  cursor: pointer;
}

.offer-box:hover {
  border: 2px solid transparent;
  transform: translateY(-5px);
}

.offer-box:nth-child(even) {
  border: 2px solid transparent;
}

.offer-box:nth-child(even):hover {
  border: 2px solid var(--color-pr);
  transform: translateY(-5px);
}

.offer-box svg {
  margin-bottom: 2rem;
  height: 60px;
}

@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .offer-box {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .offer-box {
    padding: 2rem 1rem;
  }
}

/* Why Us */
section.whyus .container {
  display: flex;
  justify-content: space-between;
}

.whyus-left {
  width: 49%;
  max-width: 550px;
}

.whyus-boxes {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 3rem;
}

.whyus-box {
  display: grid;
  grid-template-columns: 70px auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
}

.whyus-box svg {
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.whyus-box:hover svg {
  transform: translateY(-5px);
}

.whyus-box h3 {
  margin-bottom: 0.5rem;
}

.whyus-right {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.whyus-right img {
  position: relative;
  border-radius: 20px;
  width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
  z-index: 1;
}

.whyus-right img:hover {
  transform: translateY(-5px);
}

.whyus-right img:last-of-type {
  margin-left: auto;
  margin-top: -5rem;
  z-index: 2;
}

@media (max-width: 1024px) {
  section.whyus .container {
    flex-direction: column;
    row-gap: 2rem;
  }

  .whyus-left,
  .whyus-right {
    width: 100%;
    max-width: unset;
  }

  .whyus-right {
    align-items: center;
  }

  .whyus-right img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/3;
  }

  .whyus-right img:last-of-type {
    display: none;
  }
}

@media (max-width: 768px) {
  .whyus-box {
    grid-template-columns: 50px auto;
    grid-column-gap: 1rem;
  }

  .whyus-box svg {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 400px) {
  .whyus-left {
    background: none !important;
  }
}

/* Portfolio */
.portfolio {
  background: #233142;
}

.portfolio-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2.5rem;
}

.portfolio-left {
  max-width: 430px;
}

.portfolio-right {
  max-width: 640px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-item img {
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
  transition: transform 0.3s ease;
  border-radius: 20px;
  cursor: pointer;
}

.portfolio-item img:hover {
  filter: grayscale(0%);
  transform: translateY(-5px);
}

.portfolio-more {
  display: none;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .portfolio-left {
    max-width: unset;
    margin: 0 auto;
    text-align: center;
  }

  .portfolio-left .section-label {
    margin-inline: auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem 1rem;
    margin-top: 2rem;
  }

  .portfolio-right .btn-outline {
    display: none;
  }

  .portfolio-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-more {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }

  .portfolio-more .btn {
    margin: 0 auto;
  }
}

/* Testimonials */
.testimonials .section-label {
  margin-inline: auto;
}

.testimonials h2 {
  text-align: center;
}

.testimonials-grid {
  margin-top: 3rem;
}

.testimonials-box {
  display: flex;
  flex-direction: column;
  row-gap: 1.4rem;
  background-color: var(--color-sc);
  border: 2px solid rgba(255, 140, 0, 0.5);
  border-radius: 20px;
  padding: 2rem;
  cursor: grab;
}

.testimonials-box img.stars {
  width: 100%;
  max-width: 120px;
}

.testimonials-info {
  display: flex;
  column-gap: 1.5rem;
}

.testimonials-info img {
  width: 5rem !important;
  height: 5rem;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-name span.name {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.testimonials-name span.work {
  font-size: 0.8rem;
}

.testimonials-box p {
  color: #fff;
  margin-bottom: 0;
}

/* Partners */
.partners-logo .owl-stage {
  display: flex;
  align-items: center;
}

.partners-logo img {
  max-width: 140px;
  max-height: 90px;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.partners-logo img:hover {
  filter: grayscale(0%);
}

/* Page Global */
.page ul {
  margin-bottom: 1rem;
}

.page ul li {
  list-style: disc;
  margin-left: 2rem;
}

.page strong {
  color: var(--color-headers);
}

.about-page {
  display: flex;
  column-gap: 4rem;
  justify-content: space-between;
}

.about-page-left,
.about-page-right {
  width: 49%;
}

.about-page-left img {
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about-page-left img:hover {
  transform: translateY(-5px);
}

.about-page strong {
  color: var(--color-headers);
}

.about-page ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--color-headers);
}

.about-page ul li:before {
  content: "";
  background: url(../img/page-marker.svg) center center / cover no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .about-page {
    column-gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-page {
    flex-direction: column-reverse;
    row-gap: 2rem;
  }

  .about-page-left,
  .about-page-right {
    width: 100%;
  }

  .about-page-left img {
    height: 400px;
  }
}

.header-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text);
  padding: 300px 0 200px;
}

.header-page-default {
  padding: 200px 0 0;
}

@media (max-width: 1024px) {
  .header-page {
    padding: 250px 0 150px;
  }

  .header-page-default {
    padding: 150px 0 0;
  }
}

@media (max-width: 768px) {
  .header-page {
    padding: 150px 0 100px;
  }

  .header-page-default {
    padding: 120px 0 0;
  }
}

/* Offer Page */
.offer-grid.offer-page .offer-box {
  cursor: unset;
}

/* Portfolio Page */
.portfolio-page .section-label {
  margin-inline: auto;
}

.portfolio-page h2 {
  text-align: center;
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  margin-top: 3rem;
}

.portfolio-page-item img {
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
  cursor: pointer;
}

.portfolio-page-item:nth-child(even) img {
  position: relative;
  top: 3rem;
}

.portfolio-page-item img:hover {
  filter: grayscale(0%);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .portfolio-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0.5rem;
    margin-top: 2rem;
  }

  .portfolio-page-item:nth-child(even) img {
    top: unset;
  }
}

/* Contact */
.offer-grid.conatct {
  grid-template-rows: auto;
}

.contact-form .section-label {
  margin-inline: auto;
}

.contact-form h2 {
  text-align: center;
}

/* Form Kontakt */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.form-grid p {
  margin-bottom: 0;
}

.form-full {
  grid-column: 1 / -1;
}

.form-button {
  grid-column: 1 / -1;
  margin: 0 auto;
}

.form-button p {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 140, 0, 0.25);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  width: 100%;
  background: transparent;
  color: var(--color-headers);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7-not-valid-tip {
  padding-left: 2rem;
  margin-top: 0.5rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  background: #ffb900;
  padding: 1rem;
  border-radius: 8px;
  color: var(--color-sc);
  margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: #46b450;
  padding: 1rem;
  border-radius: 8px;
  color: var(--color-headers);
  margin: 0;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-input,
  .form-textarea {
    padding: 1rem;
  }

  .wpcf7-not-valid-tip {
    padding-left: 1rem;
  }
}

/* Footer CTA */
.footer-cta-bg {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../img/footer-cta.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  padding: 12rem 2rem;
  border-radius: 4rem;
}

.footer-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-cta-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.footer-cta-content p {
  color: var(--color-headers);
  max-width: 700px;
}

.footer-cta-content .btn-primary {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .footer-cta-bg {
    padding: 8rem 2rem;
    border-radius: 0;
  }

  .footer-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-cta-content p {
    font-size: 0.8rem;
  }

  .footer-cta-content .btn-primary {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-cta-bg {
    padding: 6rem 1.5rem;
  }

  .footer-cta-content h2 {
    font-size: 1.5rem;
  }
}

/* Footer */
.footer {
  padding-bottom: 2rem;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
  grid-row-gap: 2.5rem;
}

a.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  row-gap: 0.8rem;
}

.footer-box img {
  max-width: 225px;
  width: 100%;
}

.footer-box span {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-box h4 {
  color: var(--color-pr);
}

.footer-box ul {
  padding-left: 1.5rem;
}

.footer-box li {
  margin-bottom: 2px;
}

.footer-box a {
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-box a:hover,
.footer-box:hover span {
  color: var(--color-pr);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  padding-left: 1.5rem;
}

a.footer-contact-item {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}

a.footer-contact-item svg {
  height: auto;
  width: 2rem;
}

@media only screen and (max-width: 1024px) {
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}

@media only screen and (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
}

/* Error 404 */
section.error-404-page {
  padding: 8rem 0;
}

section.error-404-page .container {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

section.error-404-page h1 {
  font-size: 3rem;
  text-align: center;
}

section.error-404-page p {
  font-size: 1.5rem;
  text-align: center;
}

section.error-404-page img {
  max-height: 500px;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  section.error-404-page {
    padding: 7rem 0;
  }

  section.error-404-page h1 {
    font-size: 2rem;
  }

  section.error-404-page p {
    font-size: 1rem;
  }

  section.error-404-page img {
    max-height: 300px;
  }
}
