/*
Theme Name: Dragohub
Version: 1.0
*/

html,
body {
  height: 100%;
}

.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}



h1 {
  font-size: clamp(2.5rem, 2.164rem + 1.53vw, 4.063rem);
}

h2 {
  font-size: 126px;
}


.hero-words h3 {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.6875rem) !important;
}


@media (max-width:768px) {


  .hero-section {
    display: flex;
    flex-direction: column;
   
  }

    
  .hero-words {
    margin-top: auto !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    padding-right: 1rem;
    gap: 0.5rem;
  }

}


.button-clip {
  clip-path: polygon(0 0,
      91% 0,
      100% 27%,
      100% 100%,
      90% 100%,
      13% 100%,
      0 71%,
      0 34%);

}
      .header-contact-btn .wp-block-button__link {
          transition: background-color .35s ease, color .35s ease;
        }
      
        .header-contact-btn:hover .wp-block-button__link {
          background-color: #7b7a7c !important;
          color: #ffffff !important;
        }
        


    .header-contact-btn-mob:hover .wp-block-button__link {
      background-color: #7b7a7c !important;
      color: #ffffff !important;
    }




.is-style-fill:hover .wp-block-button__link {
  color: #F0BE57 !important;
}


.wp-block-button__link {
  transition: background-color .35s ease, color .35s ease;
}

.is-style-fill:hover .wp-block-button__link {
  background-color: #7b7a7c !important;
}

.is-style-outline:hover .wp-block-button__link {
  background-color: #F4A710 !important;
}


.hero-words h3 {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease forwards;
}

.hero-words h3:nth-child(1) {
  animation-delay: 0s;
}

.hero-words h3:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-words h3:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  /*min-height: 80vh;*/
}

.hero-words {
  margin-top: auto;
}



.items-block{
clip-path: polygon(11% 0, 91% 0, 100% 0, 100% 64%, 90% 100%, 0 100%, 0 71%, 0 34%);}


.items-block h3,
.items-block p {
  animation: textGlow 5s infinite;
}

.items-block:nth-child(1) h3,
.items-block:nth-child(1) p {
  animation-delay: 0s;
}

.items-block:nth-child(2) h3,
.items-block:nth-child(2) p {
  animation-delay: 1s;
}

.items-block:nth-child(3) h3,
.items-block:nth-child(3) p {
  animation-delay: 2s;
}

.items-block:nth-child(4) h3,
.items-block:nth-child(4) p {
  animation-delay: 3s;
}

.items-block h3,
.items-block p {
  animation: textFade 5s infinite ease-in-out;
}

@keyframes textHighlight {
    0%, 15%, 100% {
        color: #474547;
    }

    5%, 10% {
        color: #C9C9CA;
    }
}

.items-block h3,
.items-block p {
    animation: textHighlight 5s infinite;
}


.map-clip {clip-path: polygon(7% 0, 87% 0, 100% 26%, 100% 63%, 100% 100%, 8% 100%, 0 79%, 0 27%);}



.map-clip {
  overflow: hidden;
}

.map-clip .wp-block-cover__image-background {
  animation: mapZoom 12s ease-in-out infinite alternate;
}

@keyframes mapZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.50);
  }
}

.buy-clip {
  clip-path: polygon(50px 0,
      100% 0,
      100% 100%,
      50px 100%,
      0 calc(100% - 30px),
      0 30px);
}

.buy-clip {
  min-height: 140px;
}

.crane-card {
  position: relative;
  background: #F0BE57;
  clip-path: polygon(10% 0,
      100% 0,
      100% 25%,
      100% 100%,
      90% 100%,
      10% 100%,
      0 100%,
      0 25%);
}

.feature-box{
        clip-path: polygon(6% 0,
          94% 0,
          100% 12%,
          100% 88%,
          94% 100%,
          0 100%,
          0 0);
    }
  

.feature-box-right {
  clip-path: polygon(6% 0,
      100% 0,
      100% 100%,
      6% 100%,
      0 88%,
      0 12%);
}

.feature-box,
.feature-box-right {
  position: relative;
  /*border: 8px solid transparent;*/
  transition: all .35s ease;
}

.feature-box:hover,
.feature-box-right:hover {
  z-index: 100;
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
  /*border-color: #ed4d1a;*/
  color: #fff;
}

.features-grid {
  position: relative;
}

.hub-center {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);

  width: 20px;
  height: 20px;

  background: #f5a812;
  border-radius: 50%;

  z-index: 100;
}

.hub-center::before,
.hub-center::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(237, 77, 26, .4);
}

.hub-center::before {
  animation: hubPulse 2s infinite;
}

.hub-center::after {
  animation: hubPulse 2s infinite 1s;
}

@keyframes hubPulse {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  100% {
    transform: scale(5);
    opacity: 0;
  }
}


.footer-clip {
  clip-path: polygon(0 0,
      100% 0,
      100% 100%,
      7% 100%,
      0 83%);
}


.infrastructure-image {
  clip-path: polygon(5% 0,
      100% 0,
      100% 88%,
      94% 100%,
      2% 100%,
      0 96%,
      0 5%);
  overflow: hidden;
}

.partnership{
clip-path: polygon(0 0, 100% 0, 100% 26%, 100% 64%, 100% 100%, 28% 100%, 0 69%, 0 27%);}

.manage-card {
  clip-path: polygon(0% 0,
  85% 0,
  100% 0%,
  100% 80%,
  71% 100%,
  0% 100%,
  0 80%,
  0 20%)
}



.contact-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.contact-col {
  width: 100%;
  max-width: 500px;
}

.contact-col input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #eb601d;
  /*padding: 15px 0;*/
  font-size: 1.3vw;
  /*font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
  color: #262526;
}

.contact-col input:focus {
  outline: none;
}

.contact-col input::placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.contact-btn {
  width: auto;
}

.contact-btn input,
.contact-btn .wpcf7-submit {
  background: #f9f2e0;
  border: none;
  padding: 14px 28px;
  cursor: pointer;

  clip-path: polygon(0 0,
      91% 0,
      100% 27%,
      100% 100%,
      90% 100%,
      13% 100%,
      0 71%,
      0 34%);

  transition: background-color 0.35s ease-in-out;
}

.contact-btn input:hover,
.contact-btn .wpcf7-submit:hover {
  background: #fc521e !important;
}

.contact-btn {
  width: clamp(140px, 25vw, 260px);
  height: clamp(45px, 6vw, 60px);
}

.uagb-infobox-cta-link {
  clip-path: polygon(0 0,
      91% 0,
      100% 27%,
      100% 100%,
      90% 100%,
      13% 100%,
      0 71%,
      0 34%);
}

.map-info-clip {
  clip-path: polygon(7% 0, 87% 0, 100% 26%, 100% 63%, 100% 100%, 8% 100%, 0 79%, 0 27%);
}

@media (max-width:768px) {

  .feature-box h3,
  .feature-box-right h3 {

    font-size: 1.8rem !important;

  }

}

.items-block {
  padding: clamp(12px, 3vw, 20px);
}

.items-block img {
  width: clamp(70px, 25vw, 150px);
}

.items-block p {
  font-size: clamp(0.75rem, 2.5vw, 1.125rem);
}


.left-column {
  opacity: 0;
  transform: translateX(100px);
  animation: slideFromRight 0.8s ease forwards;
}

.right-column {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideFromLeft 0.8s ease forwards;
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width:768px) {

  .crane-card p {
    font-size: clamp(14px, 3vw, 18px);
  }

}





.card-image {
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  animation: drift 8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes drift {
  0% {
    transform: scale(1.08) translateX(0);
  }

  50% {
    transform: scale(1.12) translateX(-8px);
  }

  100% {
    transform: scale(1.08) translateX(0);
  }
}



.card-info {
  animation: infoFade 4s infinite;
}

@keyframes infoFade {

  0%,
  40% {
    opacity: 0;
  }

  50%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.crane-card {
  animation: cardHighlight 6s infinite;
  transition: background-color .5s ease;
}

.crane-card .card-info {
  opacity: 0;
  animation: infoReveal 6s infinite;
  color: #FAF5E9;
}

@keyframes cardHighlight {

  0%,
  35%,
  100% {
    background-color: #F0BE57;
  }

  45%,
  85% {
    background-color: #F0BE57;
  }
}

@keyframes infoReveal {

  0%,
  35%,
  100% {
    opacity: 0;
  }

  45%,
  85% {
    opacity: 1;
  }
}

.formator_btn {

   color: #FDFBF7 !important;

  font-family: inherit !important;
  font-size: 16px !important;
  font-style: normal !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em;
     text-transform: uppercase;
  padding: 15px 15px !important;

  
  border-radius: 0 !important;

clip-path: polygon(0 0, 91% 0, 100% 27%, 100% 100%, 90% 100%, 13% 100%, 0 71%, 0 34%);

  transition: all .3s ease;
}

.formator_btn:hover {

  background: #7B7A7C !important;
  color: #ffffff !important;
  
  transform: translateY(-3px);
  
}

.formator_btn {
  transition: all .3s ease;
}

.formator_btn:hover {

  background: #7B7A7C !important;
  color: #FDFBF7!important;

  clip-path: polygon(0 0,
        91% 0,
        100% 27%,
        100% 100%,
        90% 100%,
        13% 100%,
        0 71%,
        0 34%);
  

  letter-spacing: .05em;

 
  transform: translateX(4px);
}

.forminator-ui .forminator-input {
  height: 60px !important;
  min-height: 60px !important;

  font-size: 18px !important;
  padding: 0 15px !important;
}

.forminator-ui .forminator-button {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
}


header {
  position: sticky;
  top: 0;
  z-index: 9999;
}


.wp-block-navigation-item__content {
  position: relative;
  transition: .3s;
}

.wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #F5A800;
  transition: .3s;
}

.wp-block-navigation-item__content:hover::after {
  width: 100%;
}





.management-card {
  clip-path: polygon(0% 0,
      85% 0,
      100% 0%,
      100% 80%,
      71% 100%,
      0% 100%,
      0 80%,
      0 20%);
}





.hero-section {
  overflow: hidden;
  animation: heroZoom 6s ease-out forwards;
}

@keyframes heroZoom {
  from {
    background-size: 120%;
  }

  to {
    background-size: 100%;
  }
}

/* Вимикаємо анімацію на планшетах і мобільних */
@media (max-width: 1140px) {
  .hero-section {
    animation: none !important;
    background-size: cover !important;
  }
}

/*заливкаголовна сторінка*/

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .10);
  z-index: 0;
  pointer-events: none;
}

.hero-section>* {
  position: relative;
  z-index: 1;
}



.advantage-investor-page{
clip-path: polygon(0 20%,
      8% 0,
      92% 0,
      100% 20%,
      100% 80%,
      92% 100%,
      8% 100%,
      0 80%);
}


.video-rhombus {
    position: static !important;
}

.iti__flag {
  display: none !important;
}

.forminator-button {
  margin-top: 30px !important;
}


.section-genplan {
  position: relative;
}

.genplan-cursor {
  position: absolute;

  width: 140px;
  height: 140px;

  border-radius: 50%;

  background: rgba(245, 168, 18, .35);
  backdrop-filter: blur(4px);

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;
  font-weight: 700;

  pointer-events: none;

  opacity: 0;

  transform: translate(-50%, -50%);

  transition: opacity .2s;

  z-index: 10;
}

.section-genplan:hover .genplan-cursor {
  opacity: 1;
}


.forminator-ui .select2-selection__rendered,
.forminator-ui .select2-results__option {
  font-size: 16px !important;
}

.forminator-ui .select2-selection--multiple {
  background: #ffffff !important;
}

.forminator-ui .select2-selection--multiple:hover {
  background: #ffffff !important;
}

.forminator-ui .select2-selection--multiple:focus {
  background: #ffffff !important;
}

.select2-results__option {
  background: #ffffff !important;
  color: #474547 !important;
  font-size: 14px !important;
  padding: 10px 15px !important;
}

.select2-results__option--highlighted {
  background: #F4A710 !important;
  color: #474547 !important;
}

.forminator-ui .select2-selection--multiple {
  min-height: 60px !important;
  height: 60px !important;
}

.forminator-ui .select2-selection__rendered {
  line-height: 60px !important;
}



#forminator-module-1153 .forminator-row-last {
  margin-top: 0px;
  margin-left: 290px;
}


.consultation-section {
  position: relative;
  overflow: hidden;
}


.moving-bg {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: max-content;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, .04);
  white-space: nowrap;
  pointer-events: none;
  animation: moveBg 55s linear infinite;
  z-index: 1;
}

@keyframes moveBg {
  from {
    transform: translateY(-50%) translateX(0);
  }

  to {
    transform: translateY(-50%) translateX(-50%);
  }
}

#forminator-module-1153 {
  max-width: 700px;
  margin: 0 auto;
}




.hero-words-small {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.4s ease forwards;
}

.hero-words-small:nth-child(1) {
  animation-delay: 0s;
}

.hero-words-small:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-words-small:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-words-small-mob {
  white-space: nowrap;
  width: max-content;
  animation: heroWordsMove 20s linear infinite;
}

@keyframes heroWordsMove {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}


.obraty-sklad-btn {
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(0 100%,
      0 25%,
      15% 0,
      85% 0,
      100% 25%,
      100% 100%);
}




.uagb-modal-trigger:hover svg {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}


.uagb-modal-trigger svg {
  animation: breathe 3s ease-in-out infinite;
}

.uagb-modal-trigger path {
  animation: glow 3s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes glow {

  0%,
  100% {
    fill: #f5a812;
  }

  50% {
    fill: #ffd76a;
  }
}

.sticky-section {
  position: sticky;
  top: 0;
  min-height: 85vh;

  clip-path: polygon(0 0,
      95% 0,
      100% 5%,
      100% 100%,
      0 100%);
}

.section-1 {
  z-index: 1;
}

.section-2 {
  z-index: 2;
}

.section-3 {
  z-index: 3;
}

.section-4 {
  z-index: 4;
}

.sticky-section {
  background: #e8e3d3;
  
}




.invest-card {
  clip-path: polygon(0 0,
      100% 0,
      100% 90%,
      93% 100%,
      0 100%);
}



.image-inv-charact {
    clip-path: polygon(0 0,
          95% 0,
          100% 5%,
          100% 100%,
          0 100%);
}


.advantage-investor-page .adv-title {
  transition: .4s ease;
}

.advantage-investor-page:hover .adv-title {
  opacity: 0;
  transform: translateY(-20px);
}

.adv-text {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 30px;

  opacity: 0;
  transform: translateY(20px);

  transition: .4s ease;

  text-align: center;
  color: #F5F0E5;
}

.advantage-investor-page:hover .adv-text {
  opacity: 1;
  transform: translateY(0);
}

.section-4 {
  min-height: 85vh;
}


.advantage-investor-page {
  height: 200px;
}

.advantage-investor-page {
  transition: .35s ease;
}

.advantage-investor-page:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, .15);

  outline: 1px solid rgba(255, 255, 255, .4);
}

.hero-section-investors {
  min-height: 90vh !important;
}

.hero-section-investors {
  position: relative;
  overflow: hidden;
}

.hero-section-investors::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .15);
  /* регулюєш затемнення */
  z-index: 1;
}

.hero-section-investors>* {
  position: relative;
  z-index: 2;
}


.benefits-investor-card-mob-clip{
      clip-path: polygon(0 0,
            90% 0,
            100% 16%,
            100% 100%,
            100% 100%,
            0 100%);
      }

      
.benefits-investor-card-mob-clip-blur {
  position: relative;
  overflow: hidden;
}

.benefits-investor-card-mob-clip-blur::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
  
}

.benefits-investor-card-mob-clip-blur>* {
  position: relative;
  z-index: 2;
  
}

.benefits-investor-card-mob-clip-blur { 
  clip-path: polygon(0 0,
      100% 0,
      100% 100%,
      10% 100%,
      0 84%);

}

.uagb-block-71dd8b26 .uagb-modal-button-link.uagb-modal-trigger {
  min-width: 180px !important;
  line-height: 1.2 !important;

  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 1px;

  clip-path: polygon(0 0,
      94% 0,
      100% 18%,
      100% 100%,
      6% 100%,
      0 82%);
}


.modal-button-henplan-mob .uagb-modal-button-link.uagb-modal-trigger {
  min-width: 180px !important;
  font-size: 16px !important;
  padding: 15px 25px !important;

  clip-path: polygon(0 0,
        94% 0,
        100% 18%,
        100% 100%,
        6% 100%,
        0 82%);
}

.valuables {
  padding-top: 40px !important;
  
}


@media (max-width: 768px) {

  .valuables>.has-global-padding {
    padding-bottom: 0 !important;
  }

}

.advantage-investor-page-no-corner {
  clip-path: polygon(0 20%,
      8% 0,
      92% 0,
      100% 20%,
      100% 80%,
      92% 100%,
      8% 100%,
      0 80%);
}



.investor-slider * {
  margin-top: 0;
  margin-bottom: 0;
}


.map-zoom {
  overflow: hidden;
}

.map-zoom img {
  transition: transform 0.4s ease !important;
}

.map-zoom:hover img {
  transform: scale(1.5) !important;
}

.business-text {
  font-size: 60px;
}

.business-text {
  font-size: clamp(36px, 5vw, 60px);

}

.hub-title {
  display: block;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: var(--wp--preset--color--custom-yellow);
}

.service-section {
clip-path: polygon(0 0,
      94% 0,
      100% 14%,
      100% 100%,
      0 100%);
}


.items-block-new {
  clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 75%, 90% 100%, 0 100%, 0 75%, 0 34%);
}

.biz-card {
  clip-path: polygon(0 0,
      100% 0,
      100% 90%,
      93% 100%,
      0 100%);
}


.gallery-box {
  clip-path: polygon(6% 0,
      94% 0,
      100% 12%,
      100% 88%,
      100% 100%,
      0 100%,
      0 0);
}


.uagb-slider-container {
  overflow: visible !important;
}

.uagb-slider-container .swiper-pagination {
  bottom: 0px !important;
}

@media (max-width: 975px){
.wp-container-core-group-is-layout-58d67d8d {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}
}

@media (max-width: 415px) {
  .section-perevagi .is-layout-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 385px) {
  .hero-buttons-group .wp-block-button__link {
    font-size: 14px !important;
    padding: 15px 12px !important;
  }
}

@media (max-width: 768px) {
  .section-location {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width:768px) {

  .features-grid {
    grid-template-columns: 1fr !important;
  }

}


@media (max-width: 768px) {
  .main-service-grid-mob.wp-block-group.is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:768px) {

  .section-cooperate .is-layout-grid {
    grid-template-columns: 1fr !important;
  }

}

@media (max-width:1200px) and (min-width:755px) {

  .section-why-us .has-x-large-font-size {
    font-size: 20px !important;
  }

}

@media (max-width:1000px) and (min-width:768px) {

.format-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

}

@media (max-width: 1120px) {
    .wp-container-core-group-is-layout-386bbe06,
      .wp-container-core-group-is-layout-0e0ab994,
      .wp-container-core-group-is-layout-8fc098da {
        grid-template-columns: 1fr !important;
      }
    }



@media (max-width: 768px) {
  .wp-container-core-group-is-layout-f6e9e624 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  
}  .wp-container-core-group-is-layout-0e0ab994 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .wp-container-core-group-is-layout-8fc098da {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  }

 @media (min-width: 768px) and (max-width: 1300px) {

   .wp-container-core-columns-is-layout-7723de3b {
     display: flex !important;
     flex-direction: column !important;
     gap: 30px !important;
     
   }

     @media (min-width: 768px) and (max-width: 1300px) {
       .wp-container-core-column-is-layout-fdb1458d {
         max-width: 500px !important;
         width: 100% !important;
       }
     }

 }

@media (max-width: 768px) {
  .wp-container-core-group-is-layout-b172b561 {
    grid-template-columns: 1fr !important;
  }
}


@media (max-width: 768px) {
  .wp-container-core-group-is-layout-aef9e7d4 {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 1100px) {
.wp-container-core-group-is-layout-854debf6 {
  grid-template-columns: repeat(2, minmax(0, 1fr));}
}

@media (max-width: 1100px) {
  .wp-container-core-columns-is-layout-bc65ad8f {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
      }
}

@media (max-width: 1100px) {
  .wp-container-core-column-is-layout-78286544 {
    width: 500px !important;
    max-width: 500px !important;
    align-items: center;
  }
}

@media (max-width: 1200px) {
  .wp-container-core-column-is-layout-78286544 {
    align-self: center !important;
      }
}

@media (max-width: 768px) {
.wp-container-core-group-is-layout-c5a884b5 {
    min-height: 120px !important;
  }
}

@media (max-width: 1024px) {
  h2 {
    font-size: clamp(36px, 10vw, 80px);
  }
}

@media (max-width: 1300px) {
  .section-cooperate h2 {
    font-size: clamp(36px, 10vw, 80px) !important;
  }
}

@media (max-width:768px) {


  .hero-section {
    display: flex;
    flex-direction: column;

  }

  @media (max-width: 768px) {

    .map-clip {
      clip-path: none;
    }

  }


  @media (max-width: 768px) {

    .is-layout-grid {
      grid-template-columns: 1fr !important;
    }

  }

  @media (max-width: 768px) {

    .feature-box,
    .feature-box-right {

      clip-path: polygon(5% 0,
          95% 0,
          100% 5%,
          100% 95%,
          95% 100%,
          5% 100%,
          0 95%,
          0 5%);

      padding: 30px;
      margin-bottom: 20px;
    }

  }



  @media (max-width:768px) {

    .crane-card {
      flex-direction: column;
    }

    .crane-card figure {
      width: 100%;
    }

    .crane-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }

    .text-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 15px;
    }

    .card-title {
      color: #262526;
      text-align: center;
      font-size: 22px;
    }

    .card-info {
      display: block;
      color: #262526;
      text-align: center;
      font-size: 14px;
    }

  }

  @media (max-width:768px) {

    .crane-card.is-layout-flex {
      display: block !important;
    }

  }

  @media (max-width:768px) {

    .crane-card {
      clip-path: polygon(0 0,
          92% 0,
          100% 8%,
          100% 100%,
          0 100%);
    }

  }

  @media (max-width:768px) {

    .text-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
    }

    .card-title {
      margin: 0;
    }

    .card-info {
      margin: 0;
      color: #fff;
      font-size: 12px;
      white-space: nowrap;
    }

  }

  @media (max-width:768px) {

    .is-vertical {
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 16px;
      padding-top: 16px;
    }

  }

  @media (max-width:767px) {

    .manage-card {
      padding: 0 !important;
    }

  }

  @media (max-width:767px) {

    .uagb-block-9189e0c9 {
      padding: 0 !important;
    }

  }




  @media (max-width: 768px) {

    .mobile-fix {
      padding-top: 30px !important;
      padding-right: 10px !important;
      padding-bottom: 10px !important;
      padding-left: 10px !important;
    }

  }

  @media (max-width:768px) {

    .header-contact-btn {
      display: none !important;
    }

  }


  @media (max-width:768px) {

    .wp-block-navigation {
      margin-left: auto;
    }

  }

  @media (max-width:768px) {
    .hero-buttons-group {
      margin-bottom: 50px !important;
    }
  }


  @media (max-width:767px) {
    .management-card {
      padding: 20px !important;
    }
  }


  @media (max-width: 1240px) {
    .hero-section {
      animation: none !important;
      background-size: cover !important;
    }
  }

  @media (max-width:768px) {
    .hero-section {
      min-height: 90vh !important;
      background-position: 30% 83% !important;
    }
  }



  @media (max-width:768px) {

    .section-perevagi {
      padding-top: 60px !important;
      padding-bottom: 20px !important;
    }

  }

  @media (max-width:768px) {

    .section-why-us {
      padding-bottom: 60px !important;
    }

  }

  @media (max-width:768px) {

    .section-cooperate {
      padding-top: 40px !important;
      padding-bottom: 50px !important;
    }

  }


  @media (max-width:768px) {

    .section-add-service {
      padding-top: 40px !important;
      margin-top: 0 !important;
      margin-bottom: 40px !important;
    }

  }


  @media (max-width:768px) {

    p.moving-bg {
      max-width: none !important;
      width: max-content !important;
    }

  }

  @media (max-width: 767px) {
    .hub-center {
      transform: translate(-50%, -200%);
    }
  }

  @media (max-width:768px) {
    footer .wp-block-site-logo {
      margin-left: -16px;
    }
  }


  @media (max-width:768px) {
    .hero-section-investors {
      min-height: 70vh !important;
    }
  }


  @media (max-width:768px) {

    .benefits-section {
      padding: 40px 0 !important;
    }

  }

  @media (max-width:768px) {

    .invest-card {
      min-height: 100px !important;
      padding: 10px !important;
    }

  }



  @media (max-width:768px) {

    .sticky-section-mob {
      position: sticky;
      top: 0;
      min-height: 60vh;
      background: #4f4c52;
      clip-path: none;
    }

    .section-1 {
      min-height: 60vh;
      z-index: 1;
    }

    .section-2 {
      min-height: 60vh;
      z-index: 2;
    }

    .section-3 {
      min-height: 60vh;
      z-index: 3;
    }

    .section-4 {
      min-height: 60vh;
      z-index: 4;
    }

  }

  /* ПК */
  @media (min-width: 769px) {
    .uagb-block-71dd8b26 .uagb-modal-button-link.uagb-modal-trigger {
      font-size: 18px !important;
    }
  }

  /* Мобільна */
  @media (max-width: 768px) {
    .uagb-block-71dd8b26 .uagb-modal-button-link.uagb-modal-trigger {
      font-size: 16px !important;
    }
  }


  @media (max-width:768px) {
    .parameters-section {
      padding: 40px !important;
    }
  }

  @media (max-width:768px) {
    .parameters-section-text {
      font-size: 16px !important;
      line-height: 1.5 !important;
    }
  }
}

