/*
Theme Name: hr-search
Theme URI: https://generic.tools/
Author: Katerina Savina
Description: Тема разработана для компании HR-search на онове темы Generic
Version: 1.0.0
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.4
*/

:root {
  /* Шрифты */
  --font-source-serif-pro: 'SourceSerifPro', serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;

  /* Цвета */
  --color-dark: #131718;      /* Темный цвет */
  --color-green: #87C440;     /* Зеленый цвет */
  --color-white: #FFFFFF;     /* Белый цвет */
}

@font-face {
  font-family: var(--font-montserrat);
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: var(--font-weight-normal);
  font-style: normal;
}

@font-face {
  font-family: var(--font-montserrat);
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: var(--font-weight-medium);
  font-style: normal;
}

@font-face {
  font-family: var(--font-montserrat);
  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: var(--font-weight-semi-bold);
  font-style: normal;
}

@font-face {
  font-family: var(--font-montserrat);
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: var(--font-weight-bold);
  font-style: normal;
}

@font-face {
  font-family: var(--font-montserrat);
  src: url("fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: var(--font-weight-light);
  font-style: normal;
}

@font-face {
  font-family: var(--font-source-serif-pro);
  src: url("fonts/SourceSerifPro-Regular.ttf") format("truetype");
  font-weight: var(--font-weight-normal);
  font-style: normal;
}

@font-face {
  font-family: var(--font-source-serif-pro);
  src: url("fonts/SourceSerifPro-Bold.ttf") format("truetype");
  font-weight: var(--font-weight-semi-bold);
  font-style: normal;
}

@font-face {
  font-family: var(--font-source-serif-pro);
  src: url("fonts/SourceSerifPro-SemiBold.ttf") format("truetype");
  font-weight: var(--font-weight-bold);
  font-style: normal;
}

html, body {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-normal);
  background: linear-gradient(to bottom, #1D3126, var(--color-dark));
  color: var(--color-white);
  margin: 0;
}

h1 {
  font-family: var(--font-source-serif-pro);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-family: var(--font-source-serif-pro);
  font-weight: var(--font-weight-semi-bold);
}

p {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-medium);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 90px 0 90px;
}

.paged-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 769px) and (max-width: 1024px) {
  body {
    margin: 0px 20px 0px 20px;
  }

  .content-area {
    display: block;
    margin: 0;
  }
}

@media (max-width: 768px) {
  body {
    margin: 0px 10px 0px 10px;
  }

  .content-area {
    display: block;
    margin: 0;
  }
}

/* Header */

#header {
  /*height: 60px;*/
  /*margin: 35px 30px 10px 60px;*/
    height: 60px;
    margin: 35px 0px 10px 0px;
    background-color: #1D3126;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: margin-top 0.3s;
}

#logo-container {
  overflow: hidden; 
  width: 100px; 
  height: 100px; 
  position: relative; 
}

#logo {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  max-width: none; 
  max-height: none; 
  width: 75px;
  height: auto; 
  transition: transform 0.3s;
}


#branding {
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}

#site-title {
    margin-left: 65px;
  /*margin-right: 20px; */
    z-index: 2;
}

#menu {
  display: flex;
  margin-right: 30px;
  z-index: 2; 
}

#menu ul {
  display: flex; 
  list-style-type: none; 
  margin: 0; 
  padding: 0;
  transition: margin-top 0.3s;
}

#menu li {
  margin-right: 15px;
}

#menu a {
  text-decoration: none; 
  color: var(--color-white);
}

.logo-mobile {
  display: none;
}

.burger-menu {
    display: none;
}


@media (min-width: 769px) and (max-width: 1024px) {
  .logo-mobile {
    display: none;
  }  
}

@media (max-width: 768px) {
  #header {
    background: transparent;
    position: relative;
    margin: 0;
  }
  
  #branding {
    display: none;
  }

  .logo-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: fit-content;
  }

  #menu {
    display: none;
  }
  
  /*Мобильное меню*/

.burger-menu {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.burger-icon {
    width: 30px;
    height: 3px;
    background-color: #fff; 
    margin: 3px 0;
    transition: all 0.3s ease;
}

#mobile-nav {
    background-color: #9CBE74; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-radius: 10px;
    z-index: 1000;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    padding: 10px;
}

.mobile-menu-list li a {
    text-decoration: none;
    color:#f0f0f0c9;
    font-size: 16px;
    font-weight: 600;
}

/* Анимация для бургер-меню */
#menu-toggle[aria-expanded="true"] .burger-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle[aria-expanded="true"] .burger-icon:nth-child(2) {
    opacity: 0;
}

#menu-toggle[aria-expanded="true"] .burger-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
}

/* ############################## */
/* Main section */
.main-section {
  position: relative; 
  height: auto;
  min-height: 100vh;
  background-image: url('/wp-content/themes/hr-search/assets/img/bg-img.svg');
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  color: white; 
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 75vh;
}

.main-content h1 {
  width: 60%;
  font-family: var(--font-source-serif-pro);
  font-size: 50px;
  text-align: center;
}

.main-content h4 {
  width: 50%;
  text-align: center;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-normal);
  font-size: 19px;
}

.main-content p {
  width: 39%;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.63);
}

.main-image {
  display: flex; 
  justify-content: center;
}

.main-image a {
  display: inline-block;
  cursor: pointer; 
}

.main-image img {
  width: 35px;
  height: 35px;
  transform: translateX(-50%); 
  animation: move 2s ease-in-out infinite; 
}

@keyframes move {
  0%, 100% {
      transform: translate(-50%, 0); 
  }
  50% {
      transform: translate(-50%, 20px); 
  }
}

.main-image:hover img {
  animation-play-state: paused; 
}

@media (min-width: 769px) and (max-width: 1024px) {
  .main-section {
    background-size: inherit;
    background-position: bottom;
    min-height: 95vh;
    width: 100vw; 
    position: relative; 
    left: 50%; 
    margin-left: -50vw; 
  }

  .main-image {
    margin-top: 100px;
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .main-section {
    background-size: inherit;
    background-position: bottom;
    min-height: 89vh;
    width: 100vw;
    position: relative; 
    left: 50%; 
    margin-left: -50vw;
  }

  .main-content {
    height: auto;
    min-height: 67vh;
  }

  .main-content h1 {
    width: 95%;
    font-size: 30px;
  }

  .main-content h4 {
    width: 90%;
    font-size: 16px;
  }

  .main-content p {
    width: 95%;
  }

  .main-image img {
    margin-left: 35px;
  }
}
/* ############################## */


/* Section-popular-options */
.section-popular-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 25px;
}

.background-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1220px;
  height: 380px;
  background: #a4ff006b;
  transform: rotate(4deg);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(119, 169, 56, 1);
  margin: 80px 0 20px 0;
}

.content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1220px;
  height: 420px;
  background: var(--color-white);
  color: #131718;
  transform: rotate(356deg);
  border-radius: 14px;
}

.content-block h2 {
  font-family: var(--font-source-serif-pro);
  font-weight: var(--font-weight-semi-bold);
  text-align: center;
  font-size: 28px;
}

.items {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 260px;
}

.item h4 {
  color: #F0564E;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: var(--font-weight-semi-bold);
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: center;
}

.item .description {
  width: 126px;
  height: 53px;
}

.best-offer {
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--font-source-serif-pro);
  font-size: 13px;
  font-weight: var(--font-weight-normal);
  text-align: center;
  margin: 0 0 10px 0;
}

.price {
  color: rgba(0, 0, 0, 0.65);
  font-family: var(--font-source-serif-pro);
  font-size: 36px;
  font-weight: var(--font-weight-medium);
  text-align: center;
  margin: 0;
}

.description {
  color: rgba(0, 0, 0, 0.61);
  font-family: var(--font-montserrat);
  font-size: 14px;
  text-align: center;
}

.item button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  border-radius: 8px;
  border: none;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25),-2px -2px 5px 0px rgba(255, 255, 255, 0.25);
  background: rgb(134, 193, 63);
  cursor: pointer;
}

.item a {
  color: #131718;
  font-weight: var(--font-weight-semi-bold);
  text-decoration: none;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px); /* Эффект размытия фона */
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: linear-gradient(90.00deg, rgb(134, 193, 63),rgb(48, 90, 19) 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.popup .input-container p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: fit-content;
  width: 95%;
  align-items: center;
  margin: 10px 0 10px 0;
}

.popup .checkbox-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.all-options-block {
  margin-top: 20px;
  text-align: center;
}

.all-options-block a {
  color: var(--color-dark);
  text-decoration: none;
}

.wpcf7-not-valid-tip {
    margin-top: 15px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .section-popular-options {
    width: 100%;
    height: auto;
    padding: 15px;
  }
  .section-popular-options {
    margin-top: 20px;
  }
  .background-block {
    width: 100%;
    height: fit-content;
    transform: none;
    margin: 20px 0 20px 0;
  }

  .content-block {
    height: auto;
    transform: none;
    padding: 10px 0 20px 0;
  }
}

@media (max-width: 768px) {
  .section-popular-options {
    width: 100%;
    height: auto;
    padding: 15px;
  }
  .section-popular-options {
    margin-top: 20px;
  }
  .background-block {
    width: 100%;
    height: fit-content;
    transform: none;
    margin: 20px 0 20px 0;
  }

  .content-block {
    height: auto;
    transform: none;
    padding: 10px 0 20px 0;
  }

  .items {
    flex-direction: column;
  }
}
/* ############################## */


/* Section-order */
.order-section {
  width: 1150px;
  height: auto;
  margin: 45px 0 45px 45px;
}

.order-section h1 {
  font-size: 32px;
}

.order-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 450px;
}

.order-text {
  width: 50%;
}

.order-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 30px;
}

.order-image img {
  width: 450px;
  height: auto;
}

.bottom-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.bottom-content p {
  font-size: 20px;
  font-family: var(--font-source-serif-pro);
  font-weight: var(--font-weight-semi-bold);
}

.bottom-content button {
  width: 140px;
  height: 40px;
  border-radius: 40px;
  border: none;
  background: #87C440;
  margin-left: 40px;
}

.bottom-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-family: var(--font-source-serif-pro);
  font-weight: var(--font-weight-semi-bold);
  text-decoration: none;
  color: rgb(49, 87, 18);
  margin-left: 15px;
}

.bottom-content img {
  width: 30px;
  height: 30px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .order-section {
    width: 96%;
    height: fit-content;
    margin: 100px 15px 100px 15px;
  }

  .order-block {
    height: auto;
  }

  .order-text {
    width: 50%;
    text-align: justify;
  }

  .order-image img {
    width: 430px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .order-section {
    width: 100%;
    height: auto;
    margin: 0 10px 0 10px;
  }

  .order-block {
    height: auto;
    flex-direction: column;
  }

  .order-text {
    width: 95%;
    text-align: justify;
  }

  .order-image {
    margin-right: 15px;
  }

  .order-image img {
    width: 100%;
    height: auto;
  }

  .bottom-content {
    width: 95%;
  }

  .bottom-content button {
    margin-left: 10px;
  }
}
/* ############################## */


/* Download-section */
.download-section {
  width: 1150px;
  height: auto;
  margin: 100px 0 45px 45px;
}

.download-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 700px;
}

.download-image img {
  width: 400px;
  height: auto;
}

.download-text {
  width: 50%;
}

.download-text h1 {
  font-size: 28px;
}

.download-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 30px;
}

.download-text .bottom-content {
  justify-content: flex-start;
}

.download-text .bottom-content button {
  margin-left: 0;
}

.download-video {
  width: 100%;
  margin-top: 30px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .download-section {
    width: 100%;
    height: auto;
    margin: 40px 0px 40px 15px;
  }

  .download-content {
    justify-content: space-evenly;
    align-items: center;
    height: auto;
  }

  .download-image img {
    width: 300px;
    height: auto;
  }

  .download-text {
    width: 50%;
    text-align: justify;
}

  .download-video {
    width: 100%;
    margin-top: 30px;
}
  }

@media (max-width: 768px) {
  .download-section {
    width: 100%;
    height: auto;
    margin: 40px 0px 40px 0;
  }

  .download-content {
    flex-direction: column;
    height: auto;
    padding: 0 10px 0 10px;
  }

  .download-image {
    display: flex;
    justify-content: center;
  }

  .download-image img {
    width: 100%;
    height: auto;
  }

  .download-text {
    width: 100%;
    text-align: justify;
  }

  .download-video {
    width: 100%;
    margin-top: 30px;
  }
}
/* ############################## */


/* Information-section */
.information-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1150px;
  height: auto;
  margin: 45px 0 45px 45px;
}

.information-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 580px;
  margin: 0 0 50px 0;
  background-image: url('/wp-content/themes/hr-search/assets/img/background.svg');
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: 99% 99%;
}

.top-block, .bottom-block {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.payment-systems {
  display: flex;
  flex-direction: column;
}

.payment-systems img {
  width: 90px;
}

.send-contact, .payment, .delivery {
  background: var(--color-white);  
  border: none;
  border-radius: 40px;
}

.send-contact {
  width: 40%;
  margin: 20px 20px 20px 0;
  padding: 20px;
}

.send-contact h2 {
  color: rgb(48, 90, 19);
  font-family: var(--font-source-serif-pro);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 35px;
}

.payment {
  width: 50%;
  margin: 20px;
  padding: 20px;
}

.payment h2 {
  color: rgb(240, 86, 78);
  font-family: var(--font-source-serif-pro);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 35px;
}

.delivery {
  width: 80%;
  margin: 20px 20px 20px 0;
  padding: 20px;
}

.delivery h2 {
  color: rgb(119, 169, 56);
  font-family: var(--font-source-serif-pro);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 35px;
}

.send-contact p, .payment p, .delivery p {
  color: var(--color-dark);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  line-height: 22px;
}

.payment-systems {
  width: 10%;
  margin: 20px;
  justify-content: center
}

.payment-systems img {
  width: 120px;
  margin-bottom: 10px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .information-section {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .information-content {
    height: fit-content;
    padding: 5px;
  }

  .top-block, .bottom-block {
    flex-direction: column;
  }

  .send-contact, .payment, .delivery, .payment-systems {
    width: 95%;
    margin: 20px 0 20px 0;
  }

  .payment-systems {
    flex-direction: row;
  }

  .payment-systems :nth-child(1) {
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .information-section {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .information-content {
    height: fit-content;
    padding: 5px;
  }

  .top-block, .bottom-block {
    flex-direction: column;
  }

  .send-contact, .payment, .delivery, .payment-systems {
    width: 90%;
  }

  .payment {
    margin-left: 0;
  }

  .payment-systems {
    flex-direction: row;
  }

  .payment-systems :nth-child(1) {
    margin-right: 10px;
  }
}
/* ############################## */

/* Tariffs */
.tariffs-section {
  width: 1050px;
  height: auto;
  margin: 45px 0 45px 0;
}

.tariffs-section h1, .note {
  width: 100%;
  text-align: center;
}

.tariffs-section h1 {
  font-size: 30px;
}

.tariffs-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 300px;
  height: auto;
}

.details {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  background: rgba(156, 190, 116, 0.35);
  border-radius: 5px;
  transition: 0.3s;
  overflow: hidden;
}

.details::after {
  z-index: 12;
  position: absolute;
  right: 24px;
  top: 15px;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-right: 3px solid #ffffffb5;
  border-bottom: 3px solid #ffffffb5;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: .3s;
}

.details[open]::after {
  transform: rotate(45deg);
}

.details[open] .details__content {
  margin-top: 0;
}

.details__title {
  z-index: 10;
  position: relative;
  background: rgba(156, 190, 116, 0.35);
  border-radius: 5px;
  padding: 12px 24px;
  font-family: var(--font-montserrat);
  font-weight: 300 !important;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  transition: .3s;
}

.details__content {
  z-index: 0;
  position: relative;
  padding: 32px;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  margin-top: -100px;
  transition: .3s;
  color: #ffffffa3;
}

.details__content p:last-child {
  margin-bottom: 0;
}
.details__content p:first-child {
  margin-top: 0;
}

.note {
  color: #ffffffba;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tariffs-section {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .tariffs-section {
    width: 100%;
    margin: 0;
  }
  .tariffs-content {
    width: 100%;
    height: fit-content;
  }

  .details__title {
    font-size: 16px;
  }
}
/* ############################## */


/* Footer */
.site-footer {
  position: static;
  width: 100%;
  height: fit-content;
  flex: none;
  order: 6;
  flex-grow: 1;
  margin: 0px 0px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px 0 40px;
}
/* Footer-forms */
.footer-forms {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  height: 260px;
  min-height: fit-content;
  border-radius: 32px;
  background: linear-gradient(90.00deg, rgb(134, 193, 63),rgb(48, 90, 19) 100%);
  padding: 0 45px 0 45px;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.footer-form-title {
  font-family: var(--font-source-serif-pro);
  font-weight: var(--font-weight-bold);
  font-size: 24px;
  line-height: 30px;
  margin: 0;
}

.footer-form-subtitle {
  font-size: 14px;
}

.input-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 350px;
  height: 40px;
  border-radius: 30px 0px 0px 30px;
  background-color: var(--color-white);
  margin: 15px 0 15px 0;
}

.email-input {
  width: 225px;
  border: none;
}

.email-input:active, .email-input:focus {
  outline: none;
  border: transparent;
}

.submit-button-container p {
    width: auto;
    height: 25px;
    margin: 0;
}

.submit-button {
  width: 100%;
  color: #305A13;
  font-family: var(--font-source-serif-pro);
  font-weight: var(--font-weight-semi-bold);
  font-size: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.checkbox-container label {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
}

.privacy-policy {
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-normal);
  cursor: pointer;
}

.privacy-policy-text {
  color:#ffffffad;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-normal);
  font-size: 12px;
  text-align: center;
  margin: 0;
}

.privacy-policy-text a {
  color: #ffffffad;
}

.privacy-policy-text a:active, .privacy-policy-text a:focus {
  color: #ffffffad;
}

.footer-form .input-container p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: fit-content;
  width: 95%;
  align-items: center;
  margin: 10px 0 10px 0;
}

.footer-form .checkbox-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0em 0.5em 2em;
}

/* Footer-text */
.footer-text-info {
  display: flex;
  align-items: center;
  width: 39%;
  text-align: center;
  color: #ffffff8a;
  line-height: 24px;
}

.footer-info {
  text-align: center;
  margin-top: 20px;
}

.footer-info p {
  margin-top: 5px;
  font-size: 12px;
  color: #ffffff6e;
}

.footer-social-logo img {
  width: 35px;
  height: 35px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .site-footer {
    height: fit-content;
  }

  .footer-content {
    padding: 0;
  }

  .footer-forms {
    display: flex;
    flex-direction: column-reverse;
    height: fit-content;
    padding: 17px 15px 30px 15px;
  }

  .footer-form-subtitle {
    margin: 5px;
  }

  .footer-text-info {
    width: 100%;
  }

  .input-container {
    width: 100%;
    margin: 15px 0 20px 0;
  }

  .email-input {
    width: 175px;
  }

  .submit-button {
    font-size: 16px;
  }

  .footer-text-info p {
    font-size: 16px;
    line-height: 18px;
  } 
}

@media (max-width: 768px) {
  .site-footer {
    height: fit-content;
  }

  .footer-content {
    padding: 0;
  }
  
  form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

  .footer-forms {
    display: flex;
    flex-direction: column-reverse;
    height: fit-content;
    padding: 17px 15px 30px 15px;
  }

  .footer-form-subtitle {
    margin: 5px;
  }

  .footer-text-info {
    width: 100%;
  }

  .input-container {
    width: 100%;
    margin: 15px 0 20px 0;
  }

  .email-input {
    width: 175px;
  }

  .submit-button {
    font-size: 16px;
  }

  .footer-text-info p {
    font-size: 13px;
    line-height: 15px;
  }
  
  .wpcf7-spinner {
      display: none;
  }
}

/* ############################## */