/* //////////////////// */
/* HEADER/////////////// */
/* ZÁKLADNÍ STYLY */

.logo-box{
  width: 300px;
}

.logo {
  width: 100%;
}

.logo a img {
  width: 100%;
  /* height: 100%; */
}



header li,
header a {
  list-style: none;
  text-decoration: none;
}


.header {
  padding: 5rem 3rem;
  max-width: 200rem;
  width: 100%;
  position: relative;
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s ease-in-out; */
  height: 4rem;
  background: var(--color-light);
}

.header .container_header {
  background: var(--color-light);
  position: fixed;
  /* height: 100%; */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s ease-in-out;
  padding: 0rem 2rem 0 0;
  max-width: 200rem;
  width: 99vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* *************************** */
/* NAVIGATION */
/* *************************** */

.main-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.main-nav-link {
  transition: all 0.2s ease;
  display: inline-block;
  letter-spacing: 0.6px;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-dark);
}

.main-nav-link:hover,
.main-nav-link:active {
  color: var(--color-logo);
}

.main-nav-link.nav-cta {
  padding: 1.7rem 2rem;
  margin-left: 3rem;
  border-radius: 9px;
  font-weight: 700;
 
  background: var(--bg-gradient-limo);
}
.main-nav-link.nav-cta i{
  margin-left: 2rem;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background: var(--color-secondary);
  /* background-image: linear-gradient(to top, var(--color-dark-salmon-2), var(--color-gold-2) 50%, var(--color-secondary-dark)); */
}

.main-nav-link.nav-cta.active {
  color: var(--color-dark);
  /* background: var(--color-dark); */
  /* background-image: linear-gradient(to top, var(--color-dark-salmon-2), var(--color-gold-2) 50%, var(--color-secondary-dark)); */
}

.main-nav-link.active {
  color: var(--color-dark);
}

/* *************************** */
/* HAMBURGER */
/* *************************** */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  width: 20px;
  text-align: right;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* *************************** */
/* RESPONSIVE MENU */
/* *************************** */

@media (max-width: 1300px) {
  .hamburger {
    display: flex;
  }

  .main-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: none;
    color: var(--color-dark);
    padding: 2rem 0;
    background: var(--color-light);
    /* background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    z-index: 999;
  }

  .main-nav-list.open {
    display: flex;
  }

  .main-nav-list.open .main-nav-link.nav-cta {
    margin-left: 0;
  }

  .main-nav-list.open .main-nav-link {
    margin-bottom: 2rem;
  }
}


/* ////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////// */
/* SECTION HERO ////////////////////////////////////////////*/
.sect_hero {
  color: var(--color-light);
  width: 100%;
  height: auto;
  padding: 5rem 0 5rem 0;
  padding: 0;
  z-index: 1;
  position: relative;
}

.container.container_hero {
  padding-left: 4rem;
  padding-top: 4rem;
  padding-bottom: 0rem;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  height: fit-content;
}

.hero_text {
  color: var(--color-light);
  position: relative;
}
.hero_title,
.hero_title span {
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: 4rem;
  letter-spacing: 1px;
  line-height: 140%;
  text-transform: uppercase;
  width: 35%;
  margin-bottom: 12rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.912);
}

.hero_subtitle {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 120%;
  margin-bottom: 3rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.912);
}

.hero_btn {
  margin-top: 2rem;
}

.hero_logos {
  width: 60%;
  margin-top: 12rem;
}

.hero_logos .logos {
  width: 60%;
  height: 100px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0)
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0)
  );
  z-index: 4;
}
.hero_logos .subheading {
  color: var(--color-light);
  position: relative;
  /* z-index: 2; */
}

.item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  position: absolute;
  animation-timing-function: linear;
  animation-duration: 40s;
  animation-iteration-count: infinite;
}

.item img {
  padding: 0.5rem;
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: grayscale(0.7);
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.item {
  left: max(calc(200px * 6), 100%);
  animation-name: scrollLeft;
}

.item1 {
  animation-delay: calc(40s / 10 * (10 - 1) * -1);
}

.item2 {
  animation-delay: calc(40s / 10 * (10 - 2) * -1);
}

.item3 {
  animation-delay: calc(40s / 10 * (10 - 3) * -1);
}

.item4 {
  animation-delay: calc(40s / 10 * (10 - 4) * -1);
}

.item5 {
  animation-delay: calc(40s / 10 * (10 - 5) * -1);
}

.item6 {
  animation-delay: calc(40s / 10 * (10 - 6) * -1);
}

.item7 {
  animation-delay: calc(40s / 10 * (10 - 7) * -1);
}

.item8 {
  animation-delay: calc(40s / 10 * (10 - 8) * -1);
}

.item9 {
  animation-delay: calc(40s / 10 * (10 - 9) * -1);
}

.item10 {
  animation-delay: calc(40s / 10 * (10 - 10) * -1);
}

/* @keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
} */

.sect_hero .hero_video {
  background-color: var(--color-logo);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  /* height: 120%; */
  /* object-fit: cover; */
  /* transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform; */
  z-index: -1;
}
.sect_hero .hero_video video {
  width: 110%;
  height: 100%;
  object-fit: cover;
}

.sect_hero .hero_video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    140deg,
    #121212ee 35%,
    #12121200 50%,
    #121212f6 80%
  );
}

/* //////////////////////////////////////////////////*/
/* MEDIA HERO ///////////////////////////////////////*/
@media (max-width: 1400px) {
  .hero_title {
    width: 50%;
  }
}
@media (max-width: 1000px) {
  .hero_title {
    width: 80%;
    line-height: 110%;
  }
}

@media (max-width: 600px) {
  .hero_title,
  .hero_title span {
    width: 100%;
    line-height: 120%;
   font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .hero_subtitle {
    font-size: 2.5rem;
    /* margin-bottom: 20rem; */
  }

  .hero_btn button {
    display: block;
    /* margin-bottom: 0; */
  }
  .btn_primary {
    margin-bottom: 2rem;
  }
  .hero_logos {
    margin-top: 3rem;
    width: 100%;
  }
}

@media (max-width: 420px) {
  
}

/* //////////////////////////////////////////////////*/
/* //////////////////////////////////////////////////*/
/* //////////////////////////////////////////////////*/
/* SECTION ABOUT ///////////////////////////////////////*/
.sect_about {
  padding: 15rem 0;
  position: relative;
}

.sect_about .container {
  /* max-width: 700px; */
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sect_about .container .subheading,
.sect_about .container .title_primary {
  text-align: center;
}
.about_box{
  width: 100%;
}
.about_box .about_text .description{
  text-align: left;
  width: 100%;
  /* max-width: 700px; */
}





.about_box .about_text2 {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 2rem;
  margin-top: 2rem;
  width: 90%;
  font-weight: 600;
  text-align: left;
}

.about_box .about_text2 img.name {
  width: 300px;
  position: absolute;
  bottom: 0;
  right: -30%;
  transform: translateY(60%);
}



/* //////////////////////////////////////////////////*/
/* RESPONSIVITA ABOUT SECTION///////////////////////////////////////*/

@media screen and (max-width: 768px) {
  .about_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about_box .about_text2 .name {
    position: static;
    width: 200px;
    margin-top: 2rem;
    transform: none;
  }

  .about_box .about_text2 .name2 {
    position: static;
    display: block;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 600px) {
  .about_box {
    text-align: left;
  }
  .about_text,
  .about_text2 {
    text-align: left;
  }

  .about_box .about_text2 {
    width: 100%;
  }

  .about_box .about_text2 img.name {
    bottom: -10%;
    right: -10%;
  }

  .sect_about {
  padding: 5rem 0 10rem 0;
}}

@media screen and (max-width: 600px){
  /* .sect_about .container .subheading, .sect_about .container .title_primary {
  text-align: left;
} */
}

/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */
/* SECTION WHOM ///////////////////////////////////*/

.sect_whom {
  padding: 10rem 0;
}

.sect_whom .container {
  padding: 0 3rem;
}

.sect_whom .whom_left .title_secondary {
  /* margin-top: 5rem; */
}
.sect_whom .whom_box {
  display: flex;
  margin-bottom: 6rem;
  /* flex-direction: column; */

  align-items: flex-start;
  justify-content: space-between;
  /* gap: 10rem; */
}

.sect_whom .whom_box .whom_text{
  margin-bottom: 6rem;
}
.whom_left {
  width: 45%;
  /* flex: 3; */
}

.whom_right {
  width: 45%;
  /* flex: 1; */
}
.whom_text {
  /* max-width: 900px; */
  width: 100%;
  /* margin-bottom: 6rem; */
}

.whom_right .title_secondary {
  /* margin-bottom: 0; */
  /* margin-top: 0; */
}

.sect_whom .whom_right .cross-icon {
  width: 40px;
  height: 25px;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(31, 29, 29, 0);
  border-radius: 50px;
  padding: 1rem 2rem;
  background: #d7d6d30d;
  margin-left: 0rem;
}
.sect_whom .whom_right{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}

.sect_whom .whom_right .acc-title.title_secondary{
  font-size: 2rem;
  height: auto;
  margin-bottom: 0rem;
}

.sect_whom .whom_right .acc-toggle .acc-title{
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: .5rem;
}
.sect_whom .whom_right .acc-block{
  padding: 1rem 0;

}

.sect_whom .whom_right .description {
  margin-top: 2rem;
  width: 80%;
  margin-left: 3rem;
}

/* .sect_whom .whom_right .acc-content.open {
  max-height: 200px;
} */
.box_people {
  /* margin-top: 5rem; */
  display: flex;
  /* flex-wrap: wrap; */
  gap: 1rem;
  margin-bottom: 2rem;
  /* justify-content: space-between; */
}

.box_people_item {
  width: 130px;
  height: 130px;
  /* padding: 2rem; */
  /* width: 20%;
  height: 20%; */
  /* margin-bottom: 1rem;
  margin-right: .5rem;
  border-radius: 3rem; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-gradient-limo);
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.box_people_item::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000001d;
}
.box_people_item span {
  display: inline-block;
}
.box_people_item i {
  /* width: 100px; */
  font-size: 4rem;
  display: inline-block;
}
.box_people2 .box_people_item {
  background: #f6fa0d;
}
.box_people2 .box_people_item::before {
   background-color: #0000000f;
  background-color: none;
}

.sect_whom strong{
  font-weight: 600;
}
.sect_whom .cross-icon::after,
.sect_whom .cross-icon::before{
  background: linear-gradient(145deg, #88d353, #f6fa0d);
}

/* //////////////////////////////////////////////////*/
/* MEDIA SECTION WHOM ///////////////////////////////////////*/
@media (max-width: 1570px) {

.whom_text{
  max-width: 770px;
  width: 100%;
  margin-bottom: 5rem;

}



.box_people {
  /* flex-wrap: wrap; */
  
}

.box_people_item {
  width: 120px;
  height: 120px;



}

.box_people_item i{
  font-size: 3rem;
}


.sect_whom .whom_left .title_secondary{
  margin-bottom: 1rem;
}

}
@media (max-width: 1470px){
  .sect_whom .whom_box {
  display: flex;
  margin-bottom: 6rem;
  flex-direction: column;
  align-items: center;
  /* align-items: flex-start; */
  justify-content: space-between;
  gap: 3rem;
  flex-direction: column;
}

.whom_left{
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.whom_text{
  width: 30%;
} .whom_boxs{
  width: 65%;

}

.whom_right{
  width: 100%;
}

.sect_whom .subheading,
.sect_whom .title_primary{
  text-align: left;
}
.box_people{
  justify-content: space-between;
}

}



/* @media (max-width: 1450px){
  .whom_box_right{
  margin-left: -35rem;

}
} */

@media (max-width: 1100px){
  .sect_whom .whom_box .whom_left {
  
  margin-bottom: 6rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.whom_text{
  width: 100%;
} .whom_boxs{
  width: 100%;

}}
@media (max-width: 860px) {

  .box_people{
  flex-wrap: wrap;
  justify-content: flex-start;
}


.sect_whom .whom_right .cross-icon::after{
  width: 15px;
}
.sect_whom .whom_right .acc-title.title_secondary {
    line-height: 100%;
  /* .whom_left {
    width: 100%;
  }
  .whom_right {
    width: 100%;
  } */

  /* .whom_box_right{
  margin-left: -25rem;

} */
}}
@media (max-width: 749px){

  /* .whom_box_right{
  margin-left: 5rem;

} */
}
@media (max-width: 500px) {
.box_people_item {
  width: 100px;
  height: 100px;



}

.acc-content .description {
   
    width: 100%;
  }



 .sect_whom .whom_box{
  gap:0;
 }

  .sect_whom .whom_box .whom_left {
    margin-bottom: 2rem;

}

.box_people {
  
  margin-bottom: 4rem;
}

}




@media (max-width: 600px) {
  /* .whom_left,
  .whom_right {
    width: 100%;
  } */
  .sect_whom {
    padding: 4rem 0;
  }
}

/* ///////////////////////////////////////////////// */
/* ///////////////////////////////////////////////// */
/* ///////////////////////////////////////////////// */
/* SECTION STEPS ////////////////////////////////////*/
.sect_steps {
  color: var(--color-dark);
  padding: 10rem 0;
}

.sect_steps .container {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 3rem 5rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  
}

.steps_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* gap: 10; */position: relative;
  z-index: 1;
}
.sect_steps .steps_box .title_box {
  /* width:20%; */
  height: 100%;
  flex: 1;
}

.sect_steps .steps {
  flex: 2;
  /* width: 60%; */
  display: flex;
  flex-wrap: wrap;
  /* justify-content: flex-start;
  align-items: flex-start; */
}
.sect_steps .subheading {
  /* margin-top: 3rem; */
  margin-bottom: 6rem;
}

.sect_steps .steps .step .title_secondary {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  /* margin-bottom: -.5rem; */
}
.sect_steps .steps .step p:first-of-type {
  padding-top: 3rem;
  border-top: 1px solid #ffffff39;
}

.sect_steps .steps .step {
  width: 50%;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 1rem 2rem 1rem;
  /* gap: .5rem; */
  /* text-align: left; */
  /* padding: 2rem; */
  /* margin-bottom: 5rem; */
}

.sect_steps .logos {
  display: flex;
  width: 100%;
  height: 460px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0)
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0)
  );
  /* z-index: 4; */
}

.sect_steps .logos .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 22%;
  height: fit-content;
  position: absolute;
  /* animation-name: scrollLeft; */
  animation-timing-function: linear;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  background: #1f450511;
  background: #1a1c1a93;
  border-radius: 10px;
  left: max(calc(200px * 5), 100%);
  animation-name: scrollLeft;
  padding: 2rem;
}

.sect_steps .logos .item1 {
  animation-delay: calc(40s / 5 * (5 - 1) * -1);
}

.sect_steps .logos .item2 {
  animation-delay: calc(40s / 5 * (5 - 2) * -1);
}

.sect_steps .logos .item3 {
  animation-delay: calc(40s / 5 * (5 - 3) * -1);
}

.sect_steps .logos .item4 {
  animation-delay: calc(40s / 5 * (5 - 4) * -1);
}

.sect_steps .logos .item5 {
  animation-delay: calc(40s / 5 * (5 - 5) * -1);
}

.sect_steps .logos:hover .item {
  animation-play-state: paused;
}

.sect_steps .step:not(:last-child) {
  margin-bottom: 100px;
}

.step i {
  margin-right: 1rem;
}

.step .fa-check,
.step .fa-circle-check,
.training_item .fa-check,
.box_challenge .fa-check,
.sect_whom .fa-check {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.7rem;
  color: var(--color-dark);
  background: var(--bg-gradient-limo);
  border-radius: 3rem;
  padding: 0.5rem 0.5rem 0.4rem 0.5rem;
}



.sect_questions .title_secondary span,
.step .title_secondary span {
  position: relative;
  margin-right: 3rem;
}
.sect_questions .title_secondary span::before,
.step .title_secondary span::before {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  padding: 3rem;
  /* width: 3rem;
  height: 3rem; */
  border: 1px dotted #3a2e2ad9;
  border: 1px solid #3a2e2a82;
  border-radius: 50%;
  background-color: transparent;
}

.step .description {
  width: 80%;
}


.training {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.training_item {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sect_steps .container .circle,
.sect_steps .container .circle2 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--bg-gradient-limo);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: blur(50px);
  z-index: 1;
}

.sect_steps .container .circle2 {
  top: 20%;
  left: -15%;
  filter: blur(60px);
  opacity: 0.3;
}


/* ///////////////////////////////////////////// */
/* RESPONSE STEPS SECTION  //////////////////////////////////*/
@media (max-width: 1700px){
  .sect_steps .logos {
 
  height: 600px;
}
}
@media (max-width: 1470px){
  .steps_box{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 2rem; */
  }

  .sect_steps .subheading{
    text-align: center;
  }

  .sect_steps .steps .step {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* gap: 2rem; */
}

.step .title_secondary{
  align-self: start;
  margin-left: 1rem;
}

.sect_steps .logos {
 
  height: 600px;
}

.step .description {
  width: 90%;
  
}}

@media (max-width: 1300px){
.sect_steps .logos .item {

  width: 40%;

  left: max(calc(372px * 5), 100%);


}

  .sect_steps .logos {
    height: 450px;
  }
}
@media (max-width: 1140px){
   
    .sect_steps .steps{
    width: 100%;
}

.sect_steps .steps .step{
    padding: 1rem 5rem 1rem 1rem;
}
.step .description {
  width: 100%;
}




    .sect_steps .logos .item {
      width: 40%;
      left: max(calc(327px * 5), 100%);
    }
}


@media (max-width: 900px){
   .sect_steps .steps{
    flex-direction: column;
    align-items: center;
    justify-content: center;
   }

    .sect_steps .steps .step{
      width: 100%;
      margin-bottom: 4rem;
    }

       .sect_steps .logos .item {
      width: 50vw;
      left: max(calc(330px * 5), 100%);
      left: max(calc(50vw * 5), 100%);
    }
    .sect_steps .subheading{
  margin-bottom: 3rem;
}

}

@media (max-width: 500px){
    .sect_steps .logos .item {
      width: 60vw;
      left: max(calc(330px * 5), 100%);
      left: max(calc(55vw * 5), 100%);
    }

    .sect_steps .steps .step .title_secondary {
  font-size: 3rem;
  margin-left: 0;
}
  .sect_steps .subheading {
    text-align: left;
  }

   .sect_steps .steps .step {
    padding: 0;
  }

   .sect_steps .logos {
    height: 540px;
  }

  .sect_steps {
  padding: 0rem 0;



}
}

/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* SECTION TEAM //////////////////////////////////*/
.sect_team {
  padding: 20rem 0;
}
.sect_team .container {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  /* justify-content: start; */
}
.sect_team .container .subheading,
.sect_team .container .title_primary {
  text-align: center;
  /* align-self: flex-start; */
}

.sect_team .container .title_primary {
  margin-bottom: 10rem;
}



.sect_team .boxs .box {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10rem;
  margin-bottom: 5rem;
}

.sect_team .boxs .box .box_bottom {
  width: 35%;
}

.sect_team .boxs .box .img {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end;
  align-items: flex-end; */

  background-size: cover;
  background-position: center;

  background-repeat: no-repeat;
  width: 250px;
  height: 250px;
  border-radius: 100%;
  /* border-radius: 1rem;              */
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.659); */
  position: relative;
  /* overflow: hidden;  */
}

.sect_team .boxs .box .img .box_top {
  position: absolute;
  bottom: 0;
  left: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 5;
}

.sect_team .box .box_bottom {
  margin-top: 5rem;
  /* position: absolute;
  bottom: 0;
  right: 0rem; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /* gap: 1rem; */
}

.sect_team .box .box_bottom a,
.sect_team .box .box_bottom p {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 1.6rem;
}

.sect_team .box .box_bottom p a {
  padding: 0.2rem 2rem;
  display: inline-block;
}

.sect_team .boxs .box .img p,
.sect_team .boxs .box .img div span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-dark);
  /* background: var(--color-light); */
  padding: 0.5rem 1rem;
  /* border-radius: 3rem; */
}

.sect_team .boxs .box .img1 {
  background: url("/src/img/verca3.jpg") no-repeat center center;
  background-position-x: 50%;
  background-position-y: 30%;
  background-size: cover;
  /* background-size: 150%;  */
  position: relative;
}

.sect_team .boxs .box .img2 {
  background: url("/src/img/romca.jpg") no-repeat center center;
  background-position-y: 20%;
  background-size: cover;
}
.sect_team .boxs .box .img3 {
  background: url("/src/img/fotonenikdispozici.png") no-repeat center center;
  /* background-position-y: 20%;    */
  background-size: cover;
}
.sect_team .boxs .box .img4 {
  background: url("/src/img/fotonenikdispozici.png") no-repeat center center;
  /* background-position-y: 20%;    */
  background-size: cover;
}

.sect_team .team_kontakt {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.sub2 {
  margin-top: 10rem;
  margin-bottom: 5rem !important;
}

.sect_team .boxs .box .box_top .name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}


/* ///////////////////////////////////////////// */
/* MEDIA TEAM SECTION //////////////////////////////////*/


@media (max-width: 850px) {
.sect_team .boxs .box {
  
  flex-direction: column;
  gap: 1rem;
  
  margin-bottom: 10rem;
}

.sect_team .boxs .box .box_bottom{
  width: 60%;
  align-items: center;
  /* text-align: center; */
  margin-top: 1rem;
}}

@media (max-width: 850px){
  .sect_team .boxs .box .box_bottom{
  width: 80%;
}}


@media (max-width: 850px){
  .sect_team .boxs .box .box_bottom{
  width: 100%;
}
 .sect_team {
    padding: 6rem 0;
  }

}
@media (max-width: 500px){
 

   .sect_team .boxs .box {
      
      margin-bottom: 6rem;
    }
}




/* ////////////////////////////////// */
/* ////////////////////////////////// */
/* SECTION QUESTIONS ////////////////*/

.sect_questions {
  /* background: var(--bg-gradient2); */
  padding: 20rem 0;
}
.sect_questions .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--color-dark);
  background: radial-gradient(circle at center, #0b5f0ac5, #0b0b0b 60%);
  background: radial-gradient(circle at 40% 50%, #d6b253 -30%, #000 -10%);
  background: radial-gradient(circle at 40% 50%, #0b5f0ac5 -30%, #000 -10%);
  color: var(--color-light);
  padding: 5rem 7rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  /* width: 100%; */
  /* height: 100%; */
  /* padding: 5rem; */
}

.sect_questions .container::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 30%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, #f0bc2c72, transparent 70%);
  background: radial-gradient(circle, rgba(133, 238, 5, 0.4), transparent 70%);
  filter: blur(100px);
  z-index: 0;
  transform: translate(-50%, -50%);
}
.sect_questions .container .circle,
.sect_questions .container .circle2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  /* transform: translate(-50%, -50%); */
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--bg-gradient-limo);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  /* z-index: -1; */
  filter: blur(50px);
}

.sect_questions .container .circle2 {
  top: 0%;
  left: -15%;
  filter: blur(60px);
  opacity: 0.3;
}

.sect_questions .container .questions_text {
  width: 30%;
  z-index: 2;
}

.sect_questions .container .questions_box {
  width: 70%;
  z-index: 2;
}
/* .questions_box{
}
.acc-toggle{
  
} */
.acc-block {
  padding: 1.5rem 0 1.5rem 0;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  cursor: pointer;
}
.acc-toggle:not(:first-of-type) .acc-block {
  border-top: 1px dotted rgba(230, 221, 221, 0.389);
}
.sect_questions .title_secondary {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: normal;
}
/* .acc-content{
  border-bottom: 1px solid rgba(45, 40, 40, 0.746);
} */
.acc-content .description {
  
  margin-top: 2rem;
  width: 70%;
  font-size: 1.6rem;
}

.acc-no {
  color: #eb4f1a;
  color: var(--accent-color);
}

.acc-toggle-icon {
  color: #e9e2e2;
  transition: transform 0.3s ease;
}

.acc-toggle-icon.rotate {
  transform: rotate(45deg);
  /* transform: rotate(180deg); */
}

.acc-content {
  max-height: 0;
  /* max-height: 3rem; */
  transform: translateY(0px);
  transition: all 0.6s ease-in-out;
  list-style: none;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}

.acc-content.open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(-20px);
}

.acc-content p {
  /* padding: 4px 0; */
  /* font-size: 26px; */
}

.acc-content p:first-child {
  /* padding: 0 0 1rem 0; */
  /* padding-top: 4rem; */
  /* padding-bottom: 1rem 0 2rem; */
}

.acc-content p:last-child {
  /* border-bottom: 1px solid rgba(22, 20, 20, 0.422); */
}

/* Styl pro křížek */
.cross-icon {
  width: 40px;
  height: 25px;
  position: relative;
  cursor: pointer;
  /* border: 1px solid rgba(31, 29, 29, 0.537); */
  border-radius: 50px;
  padding: 1rem 2rem;
  background: #fffefbb6;
  margin-left: 6rem;
}

.cross-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: rgb(31, 29, 29); /* Barva křížku */
  border-radius: 3px;
  transform-origin: center;
  transition: all 0.3s ease;
}

.cross-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background-color: rgb(31, 29, 29); /* Barva křížku */
  border-radius: 3px;
  transform-origin: center;
  transition: all 0.3s ease;
}

.cross-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.cross-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* Efekt při otevření akordeonu (pokud je potřeba) */
.acc-toggle[data-collapse="open"] .cross-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.acc-toggle[data-collapse="open"] .cross-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}




/* ////////////////////////////////// */
/* MEDIA QUESTIONS SECTION  ////////////////*/
@media screen and (max-width: 1350px){
  .sect_questions .container{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sect_questions .container .questions_text{
    width: 100%;
  }
 .sect_questions .container .subheading,
 .sect_questions .container .title_primary{
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
 }

 .sect_questions .container .title_primary{
  margin-bottom: 6rem;
 }


 .sect_questions .container .questions_box {
  width: 100%;

}


}
@media screen and (max-width: 1350px){
  .sect_questions .title_secondary{
  font-size: 2.5rem;
  }


  .cross-icon {
 
  margin-left: 2rem;
}
}

@media (max-width: 500px) {
  .sect_questions {
    
    padding: 0rem 0;
  }


  .sect_questions .title_secondary {
      font-size: 2rem;
    }

     .cross-icon::after {
    
    width: 17px;



}}





/* /////////////////////// */
/* /////////////////////// */
/* SECTION IMAGES2 */

.sect_images2 {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.sect_images2 .images2_box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../img/2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  /* aspect-ratio: 16 / 9; */
}

.sect_images2 .images2_box .parallax_item_title {
  position: relative;
  font-size: 5vw;
  z-index: 2;
  /* text-transform: uppercase; */
  color: var(--color-light);
  line-height: 100%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* //////////////////// */
/* //////////////////// */
/* SECTION  REFERENCE */
.sect_reference {
  /* margin-top: 40%; */
  /* padding: 10rem 0; */
  /* background-color: #F9F7F3; */
  /* text-align: center; */
  /* padding: 0 !important; */
  padding: 3.5rem 2rem 10rem 2rem;
}
.reference {
  display: flex;
  flex-wrap: nowrap;
  gap: 3.5rem;
}
.reference .reference_item {
  position: relative;
  width: 30%;
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.79);
  background: var(--bg-gradient);
  /* transform: translateY(-12rem); */
}

.reference .reference_item::before {
  content: "“"; /* otevírací uvozovka */
  position: absolute;
  /* padding: 2rem; */
  top: -3rem;
  left: -1rem;
  font-family: var(--ff-primary);
  font-style: italic;
  font-size: 9rem;
  /* background-color: rgba(125, 10, 10, 0.5); */
  /* z-index: -1; */
}

.reference .reference_item::after {
  content: "”"; /* uzavírací uvozovka */
  position: absolute;
  bottom: -8rem;
  right: 1rem;
  font-family: var(--ff-primary);
  font-style: italic;
  font-size: 12rem;
  /* background-color: rgba(125, 10, 10, 0.5); */
  /* z-index: -1; */
}

.reference .reference_item .name {
  font-size: 1.2rem;
  font-weight: 800;
}

/* SECTION CONTACT */
.sect_contact {
  padding: 10rem 0 8rem 0rem;
  /* background-color: #F9F7F3; */
  text-align: center;
}

label,
input,
textarea {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2rem;
  border: none;
}

input,
textarea {
  border-bottom: 1px dotted #000;
  /* height: 100px; */
}
textarea {
  display: flex;
  height: 250px;
  resize: none;
}

.sect_contact .description {
  /* max-width: 600px; */
  margin: 0 auto 7rem;
}

.contact_form {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 7rem 0 2rem 0;
}

.contact_form div {
  display: flex;
  /* gap: 2rem; */
  /* gap: 7rem; */
  /* flex-direction: column; */
  width: 100%;
}
.contact_form div .groups {
  display: flex;
  flex-direction: column;
  margin-right: 7rem;
  /* width: 100%; */
}
.contact_form div .form-group {
  width: 100%;
}

.form_group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form_group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: inherit;
}

.contact_form input,
.contact_form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-bottom: 1px dotted inherit;
  /* border: none; */

  /* border-radius: 0.5rem; */
  background: inherit;
  transition: border-color 0.3s ease;
}

.contact_form input:focus,
.contact_form textarea:focus {
  /* border-color: #A17C60; */
  outline: none;
  border-bottom: 1px solid var(--color-secondary);
}

/* 
.contact_form button:hover {
  background-color: #8f6a51;
} */

.sect_contact .container .title_primary,
.sect_contact .container .description {
  text-align: left;
  align-self: start;
}
/* /////////////////// */
/* /////////////////// */
/* FOOTER */
.footer {
  position: relative;
  /* background-color: #F4F2EF; */
  padding: 4rem 0 2rem;
  /* font-size: 0.95rem; */
  color: #2f3b34;
  border-top: 1px solid #3a2e2a31;
  overflow: hidden;
}

.footer .deco {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 70%;
  opacity: 0.1;
  filter: blur(4px);
  z-index: -20;
}
.footer .container {
}
.footer_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  /* max-width: 1200px; */
  margin: 0 auto 2rem;
  margin-top: 3rem;
}

.footer_left {
  /* flex: 1; */
  /* min-width: 250px; */
}

.footer_content a {
  color: #2f3b34;
  text-decoration: none;
}

.footer_content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
  line-height: 160%;
  /* font-family: 'lora'; */
  margin-bottom: 1rem;
}

.footer_content a {
  /* color: #2F3B34; */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_content a:hover {
  color: #a17c60;
}

.footer_bottom {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  /* border-top: 1px solid #DDD; */
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}


/* /////////////////// */
/* FOOTER */

@media (max-width: 768px) {
  .footer_content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer_right ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
@media (max-width: 500px) {
  .footer_content {
    flex-direction: column;
    align-items: center;
  }

  .footer_left,
  .footer_right {
    width: 100%;
    text-align: center;
  }

  .footer_content ul {
    flex-direction: column;
    align-items: center;
  }
}