@font-face {
  font-family: "heboo";
  src: url("../fonts/Heebo/Heebo-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "heboo";
  src: url("../fonts/Heebo/Heebo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "heboo";
  src: url("../fonts/Heebo/Heebo-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "heboo";
  src: url("../fonts/Heebo/Heebo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "heboo";
  src: url("../fonts/Heebo/Heebo-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "BebasNeue";
  src: url("../fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.applications-section {
  width: 100%;
  background-color: #FAF9F9;
}
.applications-section .application-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 91px 116px;
  padding-block: 82px;
  position: relative;
  width: 950px;
  margin: auto;
}
.applications-section .application-card {
  position: relative;
  width: 100%;
  height: 364px;
  cursor: pointer;
  text-align: center;
}
.applications-section .application-card .card-image {
  max-width: 100%;
  height: 303px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.applications-section .application-card .card-title {
  margin: auto;
  margin-top: 16px;
  font-family: "BebasNeue";
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
}
.applications-section .application-card .card-title .popup-btn {
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-margin-start: 14px;
          margin-inline-start: 14px;
}
.applications-section .application-card .popup-arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid #3D484A;
  position: absolute;
  z-index: 9;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.applications-section .application-card .popup-arrow.show {
  display: block;
}
.applications-section .application-card .popup-arrow.rendering {
  opacity: 0;
}
.applications-section .card-popup {
  position: absolute;
  z-index: 10;
  background-color: #3D484A;
  width: 1300px;
  border-radius: 30px;
  margin-top: 18px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  opacity: 1;
  display: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.applications-section .card-popup.popup-position-1 {
  left: -100px;
}
.applications-section .card-popup.popup-position-2 {
  left: -500px;
}
.applications-section .card-popup.popup-position-3 {
  left: -900px;
}
.applications-section .card-popup .popup-content {
  padding-inline: 112px;
  padding-top: 105px;
}
.applications-section .card-popup .popup-content .title {
  font-family: "BebasNeue";
  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  text-align: start;
  color: #fff;
}
.applications-section .card-popup .popup-content .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
.applications-section .card-popup .popup-content .content .text {
  color: #fff;
  font-family: "heboo";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: start;
  width: 500px;
}
.applications-section .card-popup .popup-content .content .text p {
  margin-bottom: 8px;
}
.applications-section .card-popup .popup-content .content .quotes {
  background-color: #fff;
  width: 516px;
  min-height: 349px;
  border-radius: 30px;
}
.applications-section .card-popup .popup-content .mobile-close-popup {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  border: none;
  background: none;
}
.applications-section .card-popup .popup-solutions {
  padding-block: 28px;
  background-color: #e5e5e5;
  width: 100%;
  padding-inline: 80px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.applications-section .card-popup .popup-solutions .solutions-title {
  text-align: start;
  font-family: "BebasNeue";
  text-transform: uppercase;
  font-size: 26px;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 20px;
}
.applications-section .card-popup .popup-solutions .solutions-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
}
.applications-section .card-popup .popup-solutions .solutions-wrapper .solution-item .solution-item-image {
  width: 152px;
  height: 152px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.applications-section .card-popup .popup-solutions .solutions-wrapper .solution-item .solution-item-title {
  text-align: center;
  max-width: 152px;
  font-family: "heboo";
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}
.applications-section .card-popup.show {
  display: block;
}
.applications-section .card-popup.rendering {
  opacity: 0;
}
.applications-section .quotes-carusel {
  height: 100%;
}
.applications-section .quotes-carusel .quote-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px;
  text-align: start;
}
.applications-section .quotes-carusel .quote-slide .slide-title {
  font-weight: 500;
  font-family: "heboo";
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 16px;
}
.applications-section .quotes-carusel .quote-slide .slide-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "heboo";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.applications-section .quotes-carusel .quote-slide .slide-source {
  font-family: "heboo";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.applications-section .quotes-carusel .swiper-pagination-bullet-active {
  background-color: #86a650;
}
@media screen and (max-width: 1700px) {
  .applications-section .card-popup {
    width: 1200px;
  }
  .applications-section .card-popup.popup-position-1 {
    left: -125px;
  }
  .applications-section .card-popup.popup-position-2 {
    left: -480px;
  }
  .applications-section .card-popup.popup-position-3 {
    left: -835px;
  }
  .applications-section .card-popup .popup-content {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 768px) {
  .applications-section .application-section-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    width: 100%;
  }
  .applications-section .application-card .card-image {
    height: 301px;
  }
  .applications-section .application-card .card-title {
    margin-top: 28px;
    line-height: 110%;
  }
  .applications-section .application-card .card-title .popup-btn {
    -webkit-margin-start: 16px;
            margin-inline-start: 16px;
  }
  .applications-section .application-card .popup-arrow {
    display: none;
  }
  .applications-section .card-popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    margin-top: 0;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    top: 0;
    overflow: scroll;
    cursor: auto;
  }
  .applications-section .card-popup.popup-position-1 {
    left: 0;
  }
  .applications-section .card-popup.popup-position-2 {
    left: 0;
  }
  .applications-section .card-popup.popup-position-3 {
    left: 0;
  }
  .applications-section .card-popup .popup-content {
    padding-inline: 20px;
    padding-top: 36px;
    position: relative;
  }
  .applications-section .card-popup .popup-content .title {
    font-size: 40px;
    line-height: 140%;
    margin-bottom: 4px;
  }
  .applications-section .card-popup .popup-content .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .applications-section .card-popup .popup-content .content .text {
    font-size: 18px;
    line-height: 134%;
    width: 100%;
  }
  .applications-section .card-popup .popup-content .content .text p {
    margin-bottom: 0;
  }
  .applications-section .card-popup .popup-content .content .quotes {
    background-color: transparent;
    width: 100%;
    border-radius: 0;
    min-height: 288px;
  }
  .applications-section .card-popup .popup-content .mobile-close-popup {
    display: block;
    position: absolute;
    z-index: 9;
    top: 28px;
    right: 24px;
    border: none;
    background: none;
    cursor: pointer;
  }
  .applications-section .card-popup .popup-solutions {
    padding-inline: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .applications-section .card-popup .popup-solutions .solutions-title {
    text-align: center;
    font-family: "BebasNeue";
    font-size: 30px;
    line-height: 110%;
    margin-bottom: 28px;
    text-transform: uppercase;
    max-width: 220px;
    margin: auto;
    margin-bottom: 10px;
  }
  .applications-section .card-popup .popup-solutions .solutions-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
  }
  .applications-section .card-popup .popup-solutions .solutions-wrapper .solution-item .solution-item-image {
    margin-bottom: 20px;
  }
  .applications-section .card-popup .popup-solutions .solutions-wrapper .solution-item .solution-item-title {
    max-width: 100%;
    font-family: "heboo";
    font-weight: 700;
    font-size: 18px;
  }
  .applications-section .quotes-carusel {
    height: 100%;
  }
  .applications-section .quotes-carusel .quote-slide {
    background-color: #e5e5e5;
    border-radius: 36px;
    padding: 28px;
    height: auto;
  }
  .applications-section .quotes-carusel .swiper-pagination-bullet-active {
    background-color: #86a650;
  }
}