:root {
  --dark-text: #1D1C1C;
  --light-text: #F5F5F5;
  --bs-body-font-size: 1.1rem;
}

html {
  scroll-behavior: auto !important;
}

body {
  background-color: #0F3230;
  color: #fff;
  font-family: 'Aspekta Variable', Arial;
  transition: all 400ms ease;
  font-size: var(--bs-body-font-size);
}

a {
  color: rgb(58 58 58);
  transition: all 400ms ease;
}
.section {
  padding: 10px;
}

.section-inner {
  position: relative;
  border-radius: 16px;
  padding: 120px 64px;
  background: #fff;
}

.section-hero {
  background: #0F3230;
  background: linear-gradient(0deg, rgba(15, 50, 48, 1) 0%, rgba(25, 106, 100, 1) 100%);
}

.section-inner-hero {
  background: #E8E9E9;
  min-height: 90vh;
}

.section-inner-hero {
  position: relative;
  background-color: #E8E9E9;
  background-image: url('../img/bg-hero.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
}
.section-page-inner-grey {
  position: relative;
  background-color: #E8E9E9;
  color: #153230;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 200px;
}

.section-intro {
  background: #0F3230;
}

.section-inner-intro {
  background: #0F3230;
  background-image: url('../img/bg-intro.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.section-cards {
  background: #0F3230;
}

.section-inner-cards {
  background: #196A64;
}

.section-team {
  background: #0F3230;
  background: linear-gradient(180deg, rgba(15, 50, 48, 1) 0%, rgba(25, 106, 100, 1) 100%);
}

.section-inner-team {
  background: #E8E9E9;
}

.section-inner-events {
  margin-top: -30px;
  background: #CDD6D6;
}

.section-faq-contacts {
  background: #196A64;
  background: #0F3230;
  background: linear-gradient(0deg, rgba(15, 50, 48, 1) 0%, rgba(25, 106, 100, 1) 100%);
}

.section-inner-faq {
  background: #F4F4F4;
  background-image: url('../img/bg-faq.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.section-inner-contacts {
  margin-top: -30px;
  background: #E8E9E9;
}

footer {
  background: #0F3230;
}

@media (max-width: 992px) {
  .section {
    padding: 4px;
  }

  .section-inner {
    position: relative;
    padding: 64px 12px;
  }

  .section-inner-intro {
    padding: 64px 0px 64px 12px;
  }
}

/* misc styles starts */
h1 {}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.heading-dark {
  color: var(--dark-text);
}

.heading-light {
  color: var(--light-text);
}

.w-50-wm-100 {
  width: 50%;
}

.wm-100 {
  width: auto;
}

@media (max-width: 992px) {
  .w-50-wm-100 {
    width: 100%;
  }

  .wm-100 {
    width: 100%;
  }
}

/* misc styles end */
/* hero section start */
.hero-main-inner {
  display: flex;
  justify-content: center;
  align-content: center;
  flex: auto;
  flex-wrap: wrap;
}

.hero-main-inner-heading {
  position: relative;
  width: 60vw;
}

.hero-main-inner-heading img {
  width: 100%;
}

.hero-main-inner-heading h1 {
  position: absolute;
  left: 0;
  bottom: -12px;
  font-size: 1.4rem;
  font-size: clamp(0.5rem, 0.2441rem + 0.9632vw, 1.4rem);
  color: #03211F;
}

.hero-bottom {
  position: absolute;
  bottom: 1rem;
  padding-top: 3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 3rem;
}

.hero-bottom-inner {
  border-top: 1px solid #B5BCBB;
}

.hero-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 0px;
}

.hero-bottom-left p {
  margin: 0;
}

.hero-bottom-right {
  display: flex;
  padding: 24px 0px;
  flex-wrap: wrap;
  align-content: end;
  justify-content: end;
}

.hero-bottom-tooltip {
  margin-bottom: 1rem;
  padding-left: 0;
}

@media (max-width: 992px) {
  .hero-main-inner-heading h1 {
    top: -50px;
    font-size: 1.2rem !important;
    width: 100%;
    top: 140px;
  }
  .hero-bottom {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 1rem;
  }

  .hero-bottom-right {
    padding: 16px 0px;
  }

  /* tooltip mobile fixes*/
  .hero-bottom-tooltip {
    padding-right: 0;
  }

  .hero-notificator, .hero-notificator-wrap, #hero-notificator-trigger a {
    width: 100% !important;
  }
}

.hero-tags {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*  pointer-events: none;*/

}

.hero-tag {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  border: 1px dashed #DEDADA;
  color: #272727;
  font-size: 1.2rem;
  padding: 4px 12px 4px 54px;
  height: 48px;
  height: auto;
  line-height: 35px;
  white-space: nowrap !important;
  z-index: 999;
  cursor: pointer;
}

.hero-tag::before {
  position: absolute;
  content: '';
  background-image: url(../img/icon-star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 48px;
  width: 48px;
  height: 36px;
  width: 36px;
  left: 4px;
}
.hero-tag:hover {
  background-color: #2a6b64;
  color:#fff;
}
.hero-tag:hover::before {
  background-image: url(../img/icon-star-on.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-main-inner {
  position: relative;
  /*
  width: 100%;
  height: 80vh;
  border: 1px solid red;
  overflow: hidden;*/
}

.hero-main-inner-heading {
  position: relative;
  z-index: 2;
  min-height: 120px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .hero-tags {
    top:-60px;
    opacity: 0.3;
  }
  .hero-tag {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    border: 1px dashed #DEDADA;
    color: #272727;
    font-size: 1rem;
    padding: 2px 8px 2px 48px;
    height: 36px;
    line-height: 35px;
    white-space: nowrap !important;
    z-index: 999;
  }
  .hero-tag::before {
    height: 32px;
    width: 32px;
    left: 2px;
  }
}

/* hero section end */
/* intro section start */
.info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #E8E9E9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  color: #0F3230;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  min-height: 274px;
}

.info-card h5 {
  margin-top: 1rem;
  font-weight: 600;
}

.card-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.info-card-empty {
  background: transparent;
  box-shadow: none;
}

.icon-link-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.icon-link-icon {
  display: flex;
  background: url(../img/icon-info-001.svg);
  background-size: contain;
  width: 92px;
  height: 28px;
}

.icon-link-icon-001 {
  background: url(../img/icon-info-001.svg);
}

.icon-link-icon-002 {
  background: url(../img/icon-info-002.svg);
}

.icon-link-icon-003 {
  background: url(../img/icon-info-003.svg);
}

.icon-link-icon-004 {
  background: url(../img/icon-info-004.svg);
}

.icon-link-icon-005 {
  background: url(../img/icon-info-005.svg);
}

.icon-link-icon-006 {
  background: url(../img/icon-info-006.svg);
}

.info-card-inner p {
  padding: 0;
  margin: 0;
}

a.info-card-inner {
  text-decoration: none;
  color: #0F3230;
}

.swiper {
  padding-bottom: 30px;
}

.swiper-slide {
  width: auto;
}

/*
section {
  padding: 2rem 1rem;
}
*/
.section-inner-intro p {
  font-size:1.2rem;
}
.row.d-lg-flex {
  align-items: stretch;
}

.info-card {
  height: 100%;
  transition: all 300ms ease-in-out;
}

.info-card:hover {
  background: #fff;
}

.info-card:hover .btn-arr {
  background: #25746e;
  border: 2px solid #25746e;
}

.info-card:hover .btn-arr .button-icon svg {
  color: #fff;
  transition: 0.3s;
  transform: rotate(45deg);
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.box {
  color: white;
  padding: 0px;
}

/* Desktop (>= 992px) */
@media (min-width: 992px) {
  .red {
    grid-column: span 3;
  }

  .green {
    grid-column: span 9;
  }

  .orange {
    grid-column: span 5;
    display: block;
  }

  .blue {
    grid-column: span 7;
    display: block;
  }
}

/* Mobile (< 992px) */
@media (max-width: 991px) {
    .section-inner-intro p {
        font-size: 1rem;
      }
  .intro-swiper-wrapper {
    padding: 0;
  }

  .red {
    grid-column: span 12;
  }

  .green {
    grid-column: span 12;
  }

  .orange {
    display: none;
  }

  .blue {
    grid-column: span 12;
  }
}

/* intro section start */
/* intro section start */
/* section tag */
/* section tag */
.section-tags {
  display: flex;
  width: fit-content;
  padding: 4px 12px 4px 4px;
  border-radius: 8px;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  margin-bottom: 0.5rem;
}

.section-tags i {
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/tag-logo-dark.svg);
  background-size: contain;
}

.section-tags span {
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #333;
  font-size: 0.8rem;
}

.section-tags-darkgreen {
  background: #0D5A54;
}

.section-tags-darkgreen i {
  background: url(../img/tag-logo-light.svg);
  background-size: contain;
}

.section-tags-darkgreen span {
  color: #fff;
}

.section-tags-green {
  background: #0F3230;
}

.section-tags-green i {
  background: url(../img/tag-logo-light.svg);
  background-size: contain;
}

.section-tags-reen span {
  color: #fff;
}

.section-tags-white {
  background: #FFFFFF;
}

.section-tags-white i {
  background: url(../img/tag-logo-dark.svg);
  background-size: contain;
}

.section-tags-white span {
  color: #1D1C1C;
}

/* section tag end */
/* section tag end */
/* path cards styles start */
/* path cards styles start */

.section-inner-cards p {
  font-size: 1.2rem;
}
.card-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%
}

.card-inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.card-inner-info-milestone {
  position: absolute;
  top: 0;
  padding: 0.5rem 2rem;
  background: red;
  border-radius: 0px 0px 12px 12px;
  width: fit-content;
}

.milestone-color-1 {
  background: #0E4A45;
  color: #fff;
}

.milestone-color-2 {
  background: #6A7E7E;
  color: #fff;
}

.milestone-color-3 {
  background: #A1B0B0;
  color: #fff;
}

.card-inner-info-notificator {
  display: inline-flex;
  background: #082A27;
  padding: 1rem 2rem;
  border-radius: 80px;
  border: 1px solid #3D7A75;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 3rem;
}

.card-inner-info h2 {
  font-size: 2.4rem;
}

.card-inner-info p {
  font-size: 1.25rem;
}

.card-inner-info-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.card-info-tag {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 80px;
  padding: 6px 6px 6px 44px;
  color: #373737;
  height: 2.5rem;
}

.card-info-tag:before {
  position: absolute;
  content: '';
  background-image: url(../img/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.75rem;
  height: 1.75rem;
  left: 6px;
}

.card-info-success-story {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #b7c2c2;
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 2rem;
  max-width: 70%;
}

.card-info-success-story img {
  border-radius: 8px;
}

.card-info-success-story-inner {
  display: flex;
  flex-direction: column;
}

.card-info-success-story-inner h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.card-info-success-story-inner p {
  font-size: 1.1rem;
  font-weight: 400;
}

@media (max-width: 1024px) {
    .section-inner-cards p {
        font-size: 1rem;
      }

  .card-inner-info-milestone {
    position: relative;
    top: -32px;
    padding: 0.6rem;
    border-radius: 0px 0px 12px 12px;
    width: 100%;
  }

  .card-inner-info-notificator {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0rem;
  }

  .card-info-tag {
    padding: 4px 12px 4px 32px;
    font-size: 0.9rem;
    height: auto;
  }

  .card-info-tag:before {
    left: 2px;
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* path cards styles end */
/* path cards styles end */
/* team bento styles start */
.bento-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-line {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.bento-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 1rem;
  box-sizing: border-box;
  min-height: 224px;
}
.bento-block p {
  margin:0;
}

.bento-block-00 {
  background: #fff;
  padding: 1.5rem;
  background-image: url(../img/bg-bento-1.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto;
}

.bento-block-ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.bento-block-ol li {
  counter-increment: item;
  margin-bottom: 0.6em;
  position: relative;
  padding-left: 3.5em;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.bento-block-ol li::before {
  content: counter(item, decimal-leading-zero) ' —';
  position: absolute;
  left: 0;
  color: #6b7d7b;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.bento-block-01 {
  background: #E8E9E9;
  border: 1px solid #fff;
  background-image: url(../img/bg-bento-2.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto;
}

.bento-block-02 {
  background: #0D5A54;
  background-image: url(../img/bg-bento-3.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
}

.bento-block-03 {
  background: #FBF5F1;
  justify-content: end;
  background-image: url(../img/bg-bento-4.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.bento-block-04 {
  background: #FFFFFF;
}

.bento-block h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.bento-block h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Верхняя линия: 50% + 50% */
.bento-line-top .bento-block-01 {
  flex: 0 0 50%;
}

.bento-line-top .bento-block-02 {
  flex: 0 0 50%;
}

/* Нижняя линия: 60% + 40% */
.bento-line-bottom .bento-block-03 {
  flex: 0 0 60%;
}

.bento-line-bottom .bento-block-04 {
  flex: 0 0 40%;
}

@media (max-width: 992px) {
  .bento-container {
    padding: 0;
  }

  .bento-line-top,
  .bento-line-bottom {
    flex-direction: column;
  }

  .bento-block-00 {
    margin-bottom: 1rem;
  }

  .bento-block-01,
  .bento-block-02,
  .bento-block-03,
  .bento-block-04 {
    flex: 0 0 100%;
    flex: auto !important;
    background-size: contain;
  }
}

/*  team bento styles end  */
/* section events start */
.events-button-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.events-list-wrapper {
  display: flex;
  gap: 1.5rem;
}

.events-list-item {
/*  width: 32%;*/
  min-height: 400px;
  border-radius: 12px;
  background: #EDEDED;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.events-list-item:hover {
  background: #fff;
}

.events-list-item:hover .btn-event-list {
  background: #0F3230;
  color: #fff;
  border-radius: 4px;
}

.events-list-item h3 {
  text-decoration: underline;
  text-decoration-color: #0F3230;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F3230;
  line-height: 1.6;
}

.events-list-item p {
  font-size: 1rem;
  font-weight: 400;
  color: #4E4E4E;
}

.btn-event-list {
  display: inline;
  font-size: 1rem;
  font-weight: 600;
  color: #4E4E4E;
  border-bottom: 2px solid #0F3230;
  padding: 2px;
  transition: all 300ms ease-in-out;
}

@media (max-width: 767.98px) {
  .events-list-wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 0.8rem;
  }

  .events-list-item {
/*    width: 100%;*/
    padding: 1.2rem;
  }
}

/* section events end */
/* section faq start */
/* section faq start */
.inner-faq {
  margin-bottom: 40px;
}

.inner-faq-info {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .inner-faq-info {
    min-height: auto;
    margin-bottom: 2rem;
    padding: 0;
  }

  .faq-info-right {
    padding: 0;
  }
}

/* section faq end */
/* section faq end */
/* section contacts start */
/* section contacts start */
.contacts-mini-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.25rem;
  padding: 1.5rem;
  background: #0F3230;
  border-radius: 16px;
}

.contacts-mini-block .button-email {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.contacts-mini-block .contacts-show-google {
  font-size: 1.2rem;
  text-decoration: none;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.contacts-form-wrapper input, .contacts-form-wrapper select {
  height: 4rem;
}

.contacts-form-wrapper .contacts-policy {
  font-size: 1rem;
  color: #676767;
}

.contacts-form-wrapper .btn-btn {
  height: 48px;
  font-size: clamp(14px, 1.3vw, 28px);
}

@media (max-width: 992px) {
  .contacts-form-wrapper {
    margin-top: 2rem;
  }
    .contacts-mini-block .button-email {
      font-size: 1.5rem;
    }
}

/* section contacts end */
/* section contacts end */
/* footer starts */
/* footer starts */
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(img/footer-compass-big.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-top-wrapper {
  display: flex;
  flex-direction: column;
  padding: 60px 90px;
  max-width: 70%;
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 60px 70px 20px 70px;
}

.footer-bottom-left {
  display: flex;
  align-items: end;
  gap: 2rem;
}

.footer-bottom-left img {
  height: 3.5rem;
}

.footer-bottom-left span {
  width: 28%;
  line-height: 1;
  padding-bottom: 8px;
  font-size: 1rem;
}

.footer-bottom-middle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-middle a {
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.footer-bottom-middle a:hover {
  color: #0F3230;
  background: #fff;
}

.footer-bottom-right {
  display: flex;
  gap: 0.5rem;
}

.footer-bottom-right img {
  height: 2.6rem;
  width: auto;
}

@media (max-width: 1110px) {
  .footer-top-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 48px 12px;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    padding: 60px 8px 20px 8px;
    gap: 2rem;
    align-items: center;
  }
  .footer-bottom-left img {
    height: 48px;
    }
    .footer-bottom-left span {
    width: 35%;
    }
  .footer-bottom-left {
    justify-content: space-between;
  }
}

/* footer styles end */
/* footer styles end */
.to-top-button {
  position: fixed;
  z-index: 2;
  right: 2rem;
  bottom: 6rem;
  opacity: 0;
  transform: translateY(20px);
  background: #f4f4f4;
  color: #000;
  border-radius: 1rem;
  padding: 0.5rem 2rem;
}


.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(200,200,200,0.5);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
}

.progress-wrap span {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate3d(-50%,-50%,0);

}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
	stroke: rgba(37, 116, 110, 1); /* --- Lijn progres kleur --- */
	stroke-width: 6;
	box-sizing:border-box;
}
.mailSent {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
}


/* gsap modal window styles 11-06-2025*/
/* gsap modal window styles 11-06-2025*/
.gsmod-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gsmod-dimmer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  opacity: 0;
}

.gsmod-modal-window {
  width: 60%;
  padding: 1.5rem;
  max-width: 700px;
  min-height: 400px;
  background: white;
  border-radius: 10px;
  color: #0F3230;
  opacity: 0;
}
.gsmod-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 32px;
  height: 32px;
  text-align: center;
  padding: 0px;
  border: 1px solid #c1c1c1;
  background: #fff;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 400ms ease;
}
.gsmod-close:hover {
  border: 1px solid #196A64;
  background: #196A64;
  color:#fff;
}
.gsmod-modal-window .mailSent {
  padding:0px;
}
@media (max-width: 1024px) {
  .gsmod-modal-window {
      width: 96%;
      max-width: 100%;
  }
}

/* gsap modal window styles end 11-06-2025*/
/* gsap modal window styles end 11-06-2025*/
/* media fixes*/

@media (min-width: 1024px) and (max-width: 1380px) {
  .section-inner {
    padding: 100px 16px;
  }

  .info-card {
    padding: 1.1rem;
    min-height: 244px;
  }

  .section-inner-intro p {
    font-size: 1.05rem;
  }

  .card-body {
    padding: 0px 24px 24px 48px;
  }

  .card-inner-info h2 {
    font-size: 1.8rem;
  }

  .card-inner-info p {
    font-size: 1.1rem;
  }

  .card-inner-info-notificator {
    font-size: 1.1rem;
  }

  .card-body-color-1 {
    background-size: 58%;
  }

  .card-body-color-2 {
    background-size: 55%;
  }

  .card-body-color-3 {
    background-size: 70%;
  }

  .bento-block h2 {
    font-size: 1.4rem;
  }

  .bento-block h3 {
    font-size: 1.2rem;
  }

  /* media fixes end*/