@font-face {
  font-family: 'Fixel Display';
  src: url('/wp-content/themes/twentytwentyfive/assets/fonts/FixelDisplay-Regular.woff2') format('woff2'),
       url('/wp-content/themes/twentytwentyfive/assets/fonts/FixelDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Fixel Display';
  src: url('/wp-content/themes/twentytwentyfive/assets/fonts/FixelDisplay-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Fixel Display';
  src: url('/wp-content/themes/twentytwentyfive/assets/fonts/FixelDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}


:root {
   --red: rgba(229, 27, 32, 1);
--yellow: rgba(250, 230, 21, 1);
--biege: #F3EDE6;
--grey:  #282828;
}

section {
    position: relative;
    overflow: hidden;
  
}

html {
  scroll-behavior: smooth;
}

body {
 
     font-family: 'Fixel Display', 'Manrope', 'Noto Sans', 'Roboto', sans-serif;
}

.wrapper {
    max-width: 1920px;
     margin: 0 auto;
    padding: 0 120px;

      padding-top: 128px;
    padding-bottom: 128px;
}

.btn {
  text-align: center;
    font-weight: 600;
    font-size: 24px;
    padding: 20px 126px;
    color: white;
    background-color: var(--red);
    border-radius: 100px;
    cursor: pointer;
    border: 2px solid transparent;
      transition: border 0.3s ease-in, background-color 0.3s ease-in, opacity 0.3s ease-in; 
      display: inline-block;
}

.btn:hover {
background-color: black;
border: 2px solid white;
}

  

.btn:disabled {
     opacity: 0.5;
}

/*  window */

.popup-overlay {
      display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 11;
}

.consultation-window {
  margin: 50px 0;
  display: none;
  z-index: 12;
    background: 
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), /* білий шар */
     url('/wp-content/themes/twentytwentyfive/assets/images/logo-notext.png') center/cover no-repeat;
   
     background-position: left -246% top 92%;
  background-repeat: no-repeat;
  background-size: 856px 921px;
}



.main-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.red-dot {
  color: var(--red);
}

.main-form-label {
  display: flex;
  flex-direction: column;
}

.main-form label p{
font-weight: 600;
font-size: 18px;
margin-bottom: 12px;
}

.main-form-input {
padding: 16px 25px;
border: 2px solid var(--grey);
border-radius: 30px;
background-color: transparent;
}
.main-form-input::placeholder {
  color:  rgba(40, 40, 40, 0.5);
}

.main-form-select {
  width: 100%;
  cursor: pointer;
}

.consultation-window-active {
  display: flex;
  flex-direction: column;
position: fixed;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 32px;
border-radius: 12px;
z-index: 12;
height: 90vh;   
  overflow-y: auto;

             
}


.scrollable {
  height: 100%;
  overflow-y: auto;
  padding-right: 16px;
  box-sizing: content-box;
}


.consultation-window-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consultation-social-group {
  display: flex;
  gap: 35px;
}

.consultation-window-title {
font-weight: 600;
font-size: 36px;
margin-top: 32px;
margin-bottom: 12px;
}

.consultation-window-text {
font-weight: 400;
font-size: 18px;
margin-bottom: 32px;
}

.main-form-dropdown-list {
    position: relative;
      color:  rgba(118, 121, 134, 0.5);
      cursor: pointer;
}

.main-form-dropdown-list.noselect {
    user-select: none;
    
}

.main-form-arrow {
      content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border: solid rgba(118, 121, 134, 0.5);
    border-width: 0 0px 2px 2px;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    bottom: 40%;
    right: 5%;
      transition: transform 0.8s ease;
}

.dropdown-options {
      top: 100%; 
  display: none;
}


.dropdown-options-active {
display: flex;
flex-direction: column;
position: absolute;
max-width: 80%;
    bottom: 30%;
    width: 100%;
      max-height: 300px; 
  opacity: 1;
}

.dropdown-option {
width: 125%;
padding: 16px 25px;
font-weight: 400;
font-size: 16px;
background-color: white;
color: var(--grey);
box-sizing: border-box;
cursor: pointer;
border: 1px solid var(--grey);
z-index: 2;
}

.dropdown-option:first-child {
  border-bottom: none;
}

.dropdown-option:last-child {
  border-top: none;
}
.dropdown-option:hover{
background: linear-gradient(rgba(40,40,40,0.2), rgba(40,40,40,0.2)), white;
}

.dropdown-option:not(:last-child) {
    border-top-left-radius: 12px;
     border-top-right-radius: 12px;
}

.dropdown-option:last-child {
    border-bottom-right-radius: 12px;
     border-bottom-left-radius: 12px;
}
.main-form-arrow.rotated {
  transform: rotate(-225deg);
  transition: transform 0.5s ease;
} 

.main-form-dropdown-wrapper {
    position: relative;
    width: 100%;
}


 input[type="checkbox"] {
    display: none;
  }

  .checkboxs-title {
    text-align: center;
  }

  .main-form-checkboxs {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
  .column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
    .checkbox-label {
      font-size: 16px;
    display: inline-flex;
    align-items: center; /* вирівнюємо по вертикалі кружок і текст */
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    gap: 8px; /* відстань між кружком і текстом */
    max-width: 260px;
    position: relative;
  }

  /* Ховаємо стандартний input */
  .main-form-checkbox {
  display: none;
}

.checkboxs-title {
  margin-bottom: 12px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  max-width: 260px;
}

.checkbox-custom {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  background: white; /* белый фон по умолчанию */
  box-sizing: border-box;
  flex-shrink: 0;
}

/* при checked — заливаем серым + белая точка */
.main-form-checkbox:checked + .checkbox-custom {
  background: var(--grey);
}

.main-form-checkbox:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

  /* Ховаємо стандартний input */
  .agreement-checkbox {
  display: none;
}

.agreement-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  align-items: center;
  max-width: 77%;
  align-self: center;
  margin-top: 32px; 
  
}

.agreement-checkbox-custom {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--grey);
  border-radius: 4px;
  background: white; /* белый фон по умолчанию */
  box-sizing: border-box;
  flex-shrink: 0;
  margin-right: 12px;
}

/* при checked — заливаем серым + белая точка */
.agreement-checkbox:checked + .agreement-checkbox-custom {
  background: var(--grey);
}

.agreement-checkbox:checked + .agreement-checkbox-custom::after {
  content: "";
  position: absolute;
background-image: url('/wp-content/themes/twentytwentyfive/assets/images/checked.png');
background-position: center;
width: 11px;
height: 9px;
top: 50%;
left: 50%;
  transform: translate(-50%, -50%);
}


.form-btn {
  align-self: center;
  font-size: 18px;
  padding: 16px 148px;
}

.form-btn:disabled {
    opacity: 0.5;
}
 
/* header */
.burger-block {
      pointer-events: none;
      overflow: hidden;
      display: flex;
      max-height: 0px;
      opacity:0 ;
          position: absolute;
    flex-direction: column;
    top: 100%;
    background-color: #282828;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    padding: 32px 20px;
    gap: 32px;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

.burger-block    .nav-list {
    flex-direction: column;
}

.burger-block .btn {
    padding: 18px 83px;
font-weight: 600;
font-size: 16px;
}


.burger-block.active {
    opacity: 1;
    max-height: 1000px;
  transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
     pointer-events: auto;
}

.header-nav.active {
    display: flex;
}

.burger-btn {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--red);
 
}

.burger-btn.active::before {
       background-image: url(/wp-content/themes/twentytwentyfive/assets/images/burger-cross.svg);
}

.burger-btn::before {
    content:"";
       background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/wp-content/themes/twentytwentyfive/assets/images/burger.svg);
    position: absolute;
    top: 50%;
    left: 50%;
       transform: translate(-50%, -50%);
    width: 18px;
    height: 12px;
        background-position: center;
}


.header {

  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0;
  background-color: transparent;
  z-index: 10;
      background-color: #282828
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
    padding-bottom: 13px;
}

.nav-list {
  display: flex; 
  align-items: center;
  gap: 48px;
}

.nav-list-item a{
font-size: 18px;
color: white;
cursor: pointer;
transition: color 0.3s ease;
}

.nav-list-item a:hover {
color: var(--red);
}

.language-swap {
  display: flex;
  gap: 32px;
}

.language-swap-btn {
  font-size: 18px;
  color: white;
}

/* hero */

.hero-section {
  background-image: url('/wp-content/themes/twentytwentyfive/assets/images/hero-image.png');
 background-repeat: no-repeat;
 height: max-content;
 background-position: center;
 background-size: cover;
}

.hero-wrapper {
  padding-bottom: 241px;
  padding-top: 350px;
}

.hero-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 52px;
  color: white;
  max-width: 978px;
}

.hero-text {
  font-size: 24px;
  margin-bottom: 52px;
  color: white;
  max-width: 841px;
}

/* sponsors */

.sponsors-wrapper {
   padding-bottom: 32px;
  padding-top: 32px;
}

.sponsors-list {
  display: flex;
  align-items: center;
  gap: 128px;
  justify-content: space-between;
  flex-shrink: unset;
  animation-name: runningSponsors;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
animation-timing-function: ease-in-out;
}

.sponsors-list-item {
  font-family: 'Times New Roman';
font-weight: 700;
font-size: 16px;
text-transform: uppercase;
color:  #004097;
flex-shrink: 0;
flex-grow: 0;
}

/* about me */

.about-me-section {
  background-color: var(--biege);
  background-image: url('/wp-content/themes/twentytwentyfive/assets/images/logo_withoutext.png');
  background-repeat: no-repeat;
  background-position: left center;
}

.about-me-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 211px;
    padding-bottom: 211px;
    gap: 20px;
}

.about-me-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 55%;
}

.about-me-title {
font-weight: 600;
font-size: 64px;
}

.about-me-highlight {
color: red;
font-weight: 600;
font-size: 24px;
}

.about-me-text {
font-weight: 400;
font-size: 18px;
}

.about-me-bold {
font-weight: 600;
}


.about-me-left {
  position: relative;
}

.about-me-photo {
  border-radius: 12px;
}

.about-me-image-bot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
background-color: rgba(40, 40, 40, 0.65);
padding: 24px 0;
width: 100%;
bottom: 0;
  border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.about-me-image-bot-job  {
font-weight: 400;
font-size: 24px;
margin-bottom: 12px;
color: white;
}

.about-me-image-bot-name {
font-weight: 600;
font-size: 36px;
color: white;
}

.about-me-facts {
  display: flex;
  gap: 40px;
  margin-top: 55px;
  justify-content: center;
}

.about-me-facts-group {
  text-align: center;
  max-width: 204px;
}

.about-me-facts-number {
font-weight: 600;
font-size: 36px;
color: var(--red);
margin-bottom: 5px;
}

.about-me-facts-text {
font-weight: 400;
font-size: 18px;
}


/*   certification */

.certification-section {
    background-color: var(--biege);
}

  
.gallery {
  display: flex;
  gap: 24px;
  padding-bottom: 10px;
  animation-name: runningCertification;
animation-duration: 20s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
animation-timing-function: ease-in-out;
align-items: center;
}



.certificate {
        text-align: center;
  background-color: var(--grey);
  padding: 24px;
  flex: 0 0 auto;
  width: 402px; 
  min-height: 375px; 
  background: #2a2a2a;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 .certificate:hover {
      transform: scale(1.03);
    }
    
  
    
        .certificate-vertical img{
         max-width: 158px !important;
      
    }


.certificate img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.certificate-description {
  color: white;
font-weight: 400;
font-size: 18px;
margin-top: 24px;
}

    /* Лайтбокс */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .lightbox img {
      width: 34%;
      border-radius: 8px;
    }
    
     

    .lightbox.active {
      display: flex;
    }


/* why-us */

.why-us-section {
  background-color: var(--biege);
}

.why-us-title {
  text-align: center;
  font-family: 'Noto Sans';
font-weight: 600;
font-size: 36px;
}

.why-us-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.why-us-item-number {
position: absolute;
    right: 5%;
    top: 20%;
font-weight: 400;
font-size: 48px;
text-transform: uppercase;
color: var(--yellow);
}


.why-us-list-item {
  position: relative;
  background-color: white;
  padding: 32px;
  padding-top: 65px;
display: flex;
flex-direction: column;
align-items: start;
border-radius: 12px;
}

.last-numb {
  right: 2.5%;
}

.why-us-list-item:not(:last-child) {
  width: 48%;
}

.why-us-item-title {
font-weight: 500;
font-size: 24px;
margin-bottom: 32px;
text-transform: uppercase;
max-width: 85%;
}

.why-us-item-text {
font-weight: 400;
font-size: 18px;
max-width: 90%;
}

/* services */

.services-section {
  background-color: var(--biege);
  position: relative;
}

.services-wrapper {
  padding-bottom: 112px;
}

.services-top {
  position: relative;
}

.services-content-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}

.double-main-title {
  position: relative;
  text-align: center;
z-index: 2;
}

.double-main-title::after {
  position: absolute;
  content: '';
  width: 400%;
 height: 2px;
 background-color: var(--red);
 left: 50%;
 transform: translateX(-50%);
 top: 10px;
 z-index: 0;
}
.double-main-title span {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background-color: var(--biege); 
  padding: 0 12px;
  z-index: 1;
  font-family: 'Noto Sans';
font-weight: 500;
font-size: 18px;
}

.services-title {
font-weight: 600;
font-size: 36px;
max-width: 550px;
line-height: 150%;
}

.accordion-list {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.accordion-list-item  {
   padding: 32px;
   background-repeat: no-repeat;
   background-size: cover;
   border-radius: 12px;
   cursor: pointer;
}

.service1 {
  background-image: linear-gradient(rgba(40,40,40,0.8), rgba(40,40,40,0.8)), url('/wp-content/themes/twentytwentyfive/assets/images/services-image1.jpg');
}
.service2 {
  background-image: linear-gradient(rgba(40,40,40,0.8), rgba(40,40,40,0.8)), url('/wp-content/themes/twentytwentyfive/assets/images/services-image2.jpg');
}
.service3 {
  background-image: linear-gradient(rgba(40,40,40,0.8), rgba(40,40,40,0.8)), url('/wp-content/themes/twentytwentyfive/assets/images/services-image3.jpg');
}
.service4 {
  background-image: linear-gradient(rgba(40,40,40,0.8), rgba(40,40,40,0.8)), url('/wp-content/themes/twentytwentyfive/assets/images/services-image4.jpg');
}
.service5 {
  background-image: linear-gradient(rgba(40,40,40,0.8), rgba(40,40,40,0.8)), url('/wp-content/themes/twentytwentyfive/assets/images/services-image5.jpg');
}



.accordion-item-content {
   display: flex;
  flex-direction: column;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in, max-height 0.3s ease-in-out;
}

.accordion-item-content::before {
  content: '';
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 32px;
}

.accordion-item-top {
display: flex;
justify-content: space-between;
align-items: center;
}

.services-item-title {
font-weight: 600;
font-size: 24px;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
max-width: 86.5%;
}

.accordion-item-btn {
  transition: all 0.3s ease-in;
    background-repeat: no-repeat;
}

.services-item-btn {
  display: inline-block;
  background-image: url('/wp-content/themes/twentytwentyfive/assets/images/services-arrow.svg');
  width: 32px;
  height: 34px;
  transform: rotate(180deg);
}

.rotated {
      transform: rotate(0deg);
} 

.accordion-item-content-active {
  max-height: 1200px;
  opacity: 1;
    transition: opacity 0.3s ease-in, max-height 0.3s ease-in-out;
}

.services-item-text ul {
  list-style-type: disc;
  color: white;
}

.services-item-text {
  margin-top: 32px;
  font-size: 18px;
  color: white;
}

.services-item-text:first-child {
  margin-top: 24px;
}

.services-item-yellow {
  color: var(--yellow);

}

.services-item-red {
  color: var(--red);
}

.services-bot {
  display: flex;
  flex-direction: column;
align-items: end;
margin-top: 64px;
}

.services-btn {
  margin-top: 18px;
  display: inline-block;
  width: auto;
}


/* format */

.format-section {
  background-color: var(--biege)
}

.format-content {
  margin-top: 64px;
}

.solo-main-title {
  position: relative;
  text-align: center;
z-index: 2;
}

.solo-main-title::after {
  position: absolute;
  content: '';
  width: 100%;
 height: 2px;
 background-color: var(--red);
 left: 15%;
 transform: translateX(-90%);
 top: 10px;
 z-index: 0;
}
.solo-main-title span {
  top: 0;
  left: 24%;
  transform: translateX(-20%);
  position: absolute;
  background-color: var(--biege); 
  padding: 0 12px;
  z-index: 1;
  font-family: 'Noto Sans';
font-weight: 500;
font-size: 18px;
}

.format-title {
font-weight: 600;
font-size: 36px;
}

.format-quote {
  margin-top: 24px;
font-weight: 400;
font-size: 18px;
}



.format-list {
  display: flex;
  margin-top: 72px;
  width: 100%;
  position: relative;
}

.format-list-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 25%;
}



.format-item-number {
font-weight: 400;
font-size: 24px;
color: var(--red);
}

.format-item-title {
font-weight: 500;
font-size: 24px;
}

.format-item-text {
font-weight: 400;
font-size: 18px;
    max-width: 90%;
}

.format-bottom{
    display:flex;
    margin-top: 20px;
    width: 100%;
    height: 40px;
}

.format-bottom-item {
    display: flex;
    align-items: center;
    width: 25%;
}

.format-circle {
        background-color: black;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}


.format-line {
        width: 100%;
    height: 4px;
    background-color: black;
}
/* reviews */

.reviews-section {
  background-color: var(--grey);
  color: white;
}

.reviews-main-title span {
  background-color: var(--grey);
left: 50%;
}

.reviews-main-title::after {
      transform: translateX(35%);
}

.reviews-title {
font-weight: 600;
font-size: 36px;
margin-top: 70px;
margin-bottom: 64px;
text-align: center;
}

.reviews-list {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
min-width: 686px;
 width: 35%;
 background-color: transparent;
}

.slide-wrapper {
     background-image: url('/wp-content/themes/twentytwentyfive/assets/images/reviews-sign.png');
  background-repeat: no-repeat;
      background-position: top 15% left 5%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 32px;
  padding-top: 112px;
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.3);
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

.reviews-comment {
font-weight: 400;
font-size: 18px;
line-height: 36px;
}

.reviews-profile {
  font-family: 'Manrope';
  margin-top: 32px;
  display: flex;
  align-items: center;
}

.reviews-user-info{
display: flex;
flex-direction: column;
margin-left: 32px;
gap: 8px;
}

.company-name {
font-weight: 700;
font-size: 24px;
}

.company-description {
font-weight: 300;
font-size: 18px;
}
/* lastest(blog) */

.lastest-section {
  background-color: var(--biege);
}

.lastest-wrapper {
  padding-bottom: 152px;
}

.lastest-title  {
  margin: 64px 0;
font-weight: 600;
font-size: 36px;
}

.lastest-list {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.lastest-list-item  {
  display: flex;
  flex-direction: column;
  width: 32%;
  border-radius: 12px;
  transition: background-color 0.5s ease;
  cursor: pointer;
}

.lastest-list-item:hover {
background-color: white;
}

.lastest-item-image {
width: auto;

}

.lastest-item-date {
font-weight: 400;
font-size: 14px;
color:  rgba(40, 40, 40, 0.5);
margin: 24px 0;
  padding: 0 12px;
}

.lastest-item-title {
  margin-bottom: 16px;
font-weight: 500;
font-size: 24px;
  padding: 0 12px;

}

.lastest-item-text {
font-weight: 400;
font-size: 18px;
color:  rgba(40, 40, 40, 0.8);
  padding: 0 12px;
    padding-bottom: 24px;
}

.lastest-content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-btn {
  display: flex;
  align-items: center;
font-weight: 500;
font-size: 18px;
}


.blog-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  transform: rotate(-45deg);
  margin: 10px;
}

/* FAQ */

.FAQ-section {
  background-color: var(--biege);
}

.FAQ-content{
  margin-top: 64px;
  display: flex 
}


.FAQ-title {

font-weight: 600;
font-size: 36px;
max-width: 545px;
}

.FAQ-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 70%;
  margin-top: -62px;
}

.FAQ-list-item {
  background-color: white;
  padding: 24px 40px;
  border-radius: 12px;
}

.FAQ-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.FAQ-item-title {
font-weight: 500;
font-size: 24px;
color: var(--grey);
max-width: 90%;
}

.FAQ-item-text {
margin-top: 24px;
}

.FAQ-item-btn {
  background-image: url('/wp-content/themes/twentytwentyfive/assets/images/plus.svg');
  background-color: rgba(40, 40, 40, 0.5);
  border-radius: 50%;
  background-position: center;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}


.FAQ-item-btn-active {
  transform: rotate(45deg);
background-color: var(--grey);
}

.FAQ-list .accordion-item-content::before {
  background-color: rgba(250, 230, 21, 1); /* наприклад, синій */
}

/* question */

.question-section {
  background-image: linear-gradient(rgba(40,40,40,0.8), rgba(40,40,40,0.8)), url('/wp-content/themes/twentytwentyfive/assets/images/question-image.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

.question-wrapper {
  padding-top: 162px;
  padding-bottom: 162px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.question-title {
font-weight: 600;
font-size: 52px;
margin-bottom: 32px;
color: white;
    text-align: center;
}

/* footer */

.footer {
  background-color: var(--grey);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 64px;
}


.footer-top-group {
  display: flex;
  flex-direction: column;
 width: 19%;
   gap: 22px;
}

.social-group {
  display: flex;
  gap: 36px;
  justify-content: end;

}

.footer-btn {
  display: inline-block;
  width: auto;
  padding: 16px 32px;
  font-size: 16px;
  max-width: 283px;
  align-self: flex-end;
}

.footer-creatory-text {
  font-family: 'Fixel Display';
font-weight: 400;
font-size: 12px;
    position: relative;
color: white;
display: flex;
align-items: center;
justify-content: center;
padding-top: 43px;
}

.creatory-logo {
margin-left: 5px;
margin-bottom: 10px;
width: 64px;
height: max-content;
}

.heart::after {
    content: ' ❤️ ©';
}

.footer-creatory-text::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  bottom: 100%;
}





