:root {
  --primary: #2F6464;
  --accent: #ABB693;
  --celeste: #A3DAD7;
  --celeste-light: #E6F4EC;
  --foreground: #00253b;
  --dark: #343438;
  --secondary: #6B6967;
  --light-gray: #E3E1DE;
  --slide-box-shadow: none;
  --slide-border-radius: 0;
  --slide-desktop-gap: 30px;
  --slide-mobile-gap: 12px;
  --slide-desktop-width: 558px;
  --slide-tablet-width: 400px; /* max-width: 992px */
  --slide-mobile-width: 315px; /* max-width: 576px */
}

/** GENERAL **/

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus,
*:active,
*:focus-visible {
  outline: none;
}

body {
  font-family: "Merriweather", serif;
  line-height: 24px;
  color: var(--dark);
  overflow-x: hidden;
}
section {
  scroll-margin-top: 56px;
}
img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
h1 {
  font-size: 48px;
  line-height: 56px;
}
h2,
.h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
h3,
.h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
h4,
.h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
h5,
.h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
h5 {
  font-size: 16px;
  line-height: 24px;
}

.roboto {
  font-family: "Roboto", sans-serif;
  line-height: 20px;
}
.btn {
  padding: 12px 24px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  border-radius: 0;
}
.btn.primary {
  background-color: var(--accent);
  color: #fff;
}
.btn.outline.white {
  border: 1px solid #fff;
  color: #fff;
}
.btn.outline.primary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn.outline.primary:focus,
.btn.outline.primary:hover {
  color: #fff;
  background: var(--primary);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-accent {
  background-color: var(--accent);
}
.bg-dark-blue {
  background-color: var(--foreground);
}
.bg-light-gray {
  background-color: var(--light-gray);
}
.txt-primary {
  color: var(--primary);
}
.txt-accent {
  color: var(--accent);
}
.txt-dark-blue {
  color: var(--foreground);
}
.txt-light-gray {
  color: var(--light-gray);
}
.detail-title {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  padding-bottom: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--accent);
  letter-spacing: 2px;
  display: inline-block;
  color: var(--secondary);
}
.detail-title.txt-light-gray {
  color: var(--light-gray);
}
.fs-32 {
  font-size: 32px;
}
.fs-24 {
  font-size: 24px;
}
.fs-12 {
  font-size: 12px;
  line-height: 14px;
}
.fs-14 {
  font-size: 14px;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
a:hover{
  color: unset;
}
/* ABOVE THE FOLD */
#atf-agency {
  height: 100vh;
  max-height: 804px;
  position: relative;
}
#atf-agency .atf-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}
#atf-agency .bg-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(41, 74, 60, 0.35) 32.6%, rgba(0, 0, 0, 0.05) 93.48%);
  mix-blend-mode: multiply;
  z-index: -1;
}
#atf-agency .logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}
#atf-agency .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
  color: #fff;
  max-width: 680px;
}
#atf-agency .title-container h1 {
  font-style: italic;
  font-size: 50px;
  line-height: 1.15;
  margin-bottom: 16px;
}
#atf-agency .title-container .subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 24px 0 16px 0;
}
#atf-agency .title-container .text-content {
  font-weight: 300;
  line-height: 24px;
  max-width: 520px;
}
#atf-agency .title-container .text-content b {
  font-weight: 600;
}
.menu-container {
  background-color: var(--accent);
  color: var(--dark);
  padding: 16px 0;
  transform: translateY(-56px);
  display: flex;
  column-gap: 16px;
  position: sticky;
  top: 56px;
  overflow: hidden;
  height: 56px;
  margin-bottom: -56px;
  z-index: 1000;
}
.menu-container .navbar-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  width: 45px;
  background: linear-gradient(
      270deg,
      var(--accent) 0%,
      rgba(5, 63, 111, 0) 100%
  );
}
.menu-container .menu-slider {
  display: flex;
  column-gap: 32px;
  white-space: nowrap;
  overflow-x: scroll;
  scrollbar-color: #ffffff00 #ffffff00;
}
.menu-container .menu-slider::-webkit-scrollbar {
  display: none;
}
.menu-container .menu-slider a {
  text-decoration: none;
  color: var(--dark);
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}
.menu-container .menu-slider a:last-of-type {
  padding-right: 45px;
}
/* END ABOVE THE FOLD */
/* TOPIC BOX */
.topic-container {
  padding: 56px 0;
  scroll-margin-top: 56px;
}
.topic-container + .topic-container {
  border-top: 1px solid rgba(171, 182, 147, 0.3);
}
.topic-container .h3 {
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 700;
}
.topic-container .detail-box {
  margin-top: 32px;
}
.topic-container .detail-box-img {
  height: 100%;
  position: relative;
}
.topic-container .detail-box-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topic-container .info-box {
  padding: 32px;
  width: 100%;
  color: #fff;
  background: var(--accent);
}
.info-box .detail-title {
  color: #fff;
  border-color: var(--dark);
}
ul.custom-list {
  padding: 0 0 12px 10px;
  margin-bottom: 0;
}
ul.custom-list li::marker {
  font-size: 9px;
}

/* END TOPIC BOX */
/* ABOUT */
#about {
  padding-top: 56px;
}
#about .img-container {
  margin: 32px 0 40px 0;
  padding-bottom: 60%;
  position: relative;
}
#about .img-container img {
  position: absolute;
}
#about .logo {
  width: 117px;
  height: auto;
  bottom: 32px;
  left: 32px;
}
#about .target-box {
  padding: 32px;
  border: 2px solid var(--primary);
  margin-bottom: 32px;
}
.quote-box {
  padding: 70px 50px;
  background-color: var(--accent);
  position: relative;
  margin-top: 50px;
  color: #fff;
}
.quote-box .quote-text {
  text-align: center;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.quote-box .quote-sign-container {
  position: absolute;
  top: 40px;
  left: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 80px);
  display: flex;
}
.quote-box .quote-sign-container svg {
  width: 63px;
  height: auto;
  position: absolute;
}
.quote-box .quote-sign-container svg:first-child {
  top: 0;
  left: 0;
}
.quote-box .quote-sign-container svg:nth-child(2) {
  right: 0;
  bottom: 0;
}
/* END ABOUT */

/* SLIDER */
.project-slider {
  padding: 80px 0 64px 0;
  margin-top: 30px;
  position: relative;
  width: 100%;
}

.project-slider:before {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  width: 100vw;
  height: 100%;
  background: var(--light-gray);
  z-index: -1;
}

.prs_slider-container {
  width: 100vw;
  margin-left: -12px;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}

.prs_slider-container .prs_slide:first-child {
  margin-left: 12px;
}

.prs_slides {
  display: flex;
  gap: var(--slide-desktop-gap);
  transition: all 0.5s ease-in-out;
  padding-bottom: 20px;
  scrollbar-color: #ffffff00 #ffffff00;
}
.prs_slides.prs_scrolling {
  overflow-x: scroll;
  display: flex;
  transform: translate(0) !important;
}
.prs_slides::-webkit-scrollbar {
  display: none;
}

.prs_slide {
  box-shadow: var(--slide-box-shadow);
  border-radius: var(--slide-border-radius);
  overflow: hidden;
  width: var(--slide-desktop-width);
  flex: 0 0 auto;
}
.prs_slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.slide-subtitle {
  font-size: 22px;
}

.slide-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.slide-tags li {
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--accent);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  flex: 0 0 auto;
}


/* ABOUT */

.about-section {
  padding: 64px 0;
  position: relative;
  width: 100%;
}

.about-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  width: 100vw;
  height: 100%;
  background: var(--secondary);
  z-index: -1;
}




/* Frecce di navigazione */
.prs_arrow-container {
  position: absolute;
  right: 65px;
  top: 50px;
  display: flex;
  column-gap: 9px;
}
.prs_arrow {
  padding: 12px;
  border: 1.5px solid var(--dark);
  cursor: pointer;
  background-color: var(--accent);
}
/* END SLIDER */

/* FOOTER */
footer {
  padding: 56px 0;
  background-color: var(--dark);
  color: #fff;
}
footer a {
  color: #fff;
}
footer p {
  max-width: 450px;
}
footer .row {
  row-gap: 32px;
}
/* END FOOTER */
/* FORM */

#form-wrapper {
  position: relative;
  height: 100%;
  width: calc((100vw - 960px) / 2 + 100%);
}


.form-container {
  position: sticky;
  top: 56px;
  right: 0;
}

#form-wrapper .input-container {
  position: relative;
}
#form-wrapper .input-container.checkbox {
  display: flex;
  column-gap: 8px;
  flex-wrap: nowrap;
}
#form-wrapper .input-container.checkbox input {
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 0;
  appearance: none;
  padding: 10px;
}
#form-wrapper .input-container.checkbox label {
  position: static;
  font-size: 12px;
  line-height: 14px;
}
#form-wrapper .input-container.checkbox label a {
  color: var(--dark);
  font-weight: 400;
}

#form-wrapper label {
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  transition: transform 0.3s, font-size 0.3s, top 0.3s;
}

#form-wrapper input {
  border: 1px solid var(--dark);
  width: 100%;
  padding: 18px 12px 6px;
  outline: none;
  color: var(--dark);
}
#form-wrapper textarea {
  border: 1px solid var(--dark);
  width: 100%;
  padding: 12px 12px;
  outline: none;
  color: var(--dark);
}

#form-wrapper input:focus,
#form-wrapper textarea:focus,
#form-wrapper textarea:not(:placeholder-shown) + label {
  border-color: var(--dark);
}
#form-wrapper .input-container.checkbox input:not(:placeholder-shown) {
  border-color: var(--dark);
}
#form-wrapper input:focus + label,
#form-wrapper input:not(:placeholder-shown) + label {
  transform: translateY(0);
  top: 6px;
  font-size: 10px;
}
#form-wrapper .input-container.checkbox input:checked {
  border-color: var(--dark);
  background-color: var(--accent);
  position: relative;
}
#form-wrapper .input-container.checkbox input:checked::before {
  content: "\2713";
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
#form-wrapper input::placeholder {
  color: transparent;
}
#form-wrapper textarea::placeholder {
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: var(--primary);
  line-height: 28px;
}
.form-container .contact-form-box {
  position: relative;
}
#form-wrapper .form-close-icon,
#form-wrapper .form-open-icon {
  position: absolute;
  top: -20px;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: none;
  z-index: 100;
}
#form-wrapper .contact-form-mobile-title {
  display: none;
  color: var(--accent);
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 2px;
  padding-top: 28px;
  text-transform: uppercase;
}
/* END FORM */


.accordion-item .accordion-button {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  line-height: 1.35;
  border-radius: 0 !important;
  box-shadow: none;
}

.accordion-item {
  margin-bottom: 6px;
  border-radius: 0 !important;
  border: none;
}

.accordion-button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background: #fff;
  right: 33px;
}

.accordion-button::before {
  position: absolute;
  content: '';
  right: 28px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 1px;
  background: #fff;
}

.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-button:not(.collapsed) {
  background: var(--accent);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item .accordion-collapse {
  background: var(--accent);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border-radius: 0 !important;
  line-height: 150%;
}

.accordion-item .accordion-body {
  padding: 2px 28px 28px;
}

.cta-section {
  padding: 46px 35px;
  background: rgba(182, 194, 189, 0.40);
  margin-top: 82px;
}


















@media screen and (min-width: 576px) {
  .project-slider:before,
  .about-section:before {
    left: calc((100vw - 540px) / 2 * -1 - 12px);
  }

  .prs_slider-container {
    margin-left: calc((100vw - 540px) / 2 * -1 - 12px);
  }

  .prs_slider-container .prs_slide:first-child {
    margin-left: calc((100vw - 540px) / 2 + 12px);
  }
}

@media screen and (min-width: 768px) {
  .project-slider:before,
  .about-section:before {
    left: calc((100vw - 720px) / 2 * -1 - 12px);
  }

  .prs_slider-container {
    margin-left: calc((100vw - 720px) / 2 * -1 - 12px);
  }

  .prs_slider-container .prs_slide:first-child {
    margin-left: calc((100vw - 720px) / 2 + 12px);
  }
}

@media screen and (min-width: 992px) {

  .page-content .left-col {
    padding-right: 60px;
  }

  .prs_slides.prs_scrolling .prs_slide:last-of-type {
    margin-right: 50% !important;
  }

  .form-container {
    background-image: url('/assets/img/team-working.jpg');
    background-size: cover;
  }
  .form-container .form-box {
    position: sticky;
    padding: 32px;
    display: flex;
    backdrop-filter: blur(10px);
  }
  .form-container .form-box .contact-form-box {
    background: #fff;
    box-shadow: 0px 4px 24px 0px rgba(5, 63, 111, 0.08);
    padding: 32px 24px;
    width: 100%;
  }
  #form-wrapper .contact-form-subtitle {
    font-family: "Roboto", sans-serif;
  }
  .form-container .form-box{
    scrollbar-width: auto;
    scrollbar-color: var(--primary) #ffffff;
  }

  .form-container .form-box::-webkit-scrollbar {
    width: 12px;
  }

  .form-container .form-box::-webkit-scrollbar-track {
    background: #ffffff;
  }

  .form-container .form-box::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
    border: 2px solid #ffffff;
  }

  .project-slider:before,
  .about-section:before {
    left: calc((100vw - 960px) / 2 * -1 - 12px);
    width: calc((100vw - 960px) / 2 + 672px);
  }

  .prs_slider-container {
    margin-left: calc((100vw - 960px) / 2 * -1 - 12px);
    width: calc((100vw - 960px) / 2 + 672px);
  }

  .prs_slider-container .prs_slide:first-child {
    margin-left: calc((100vw - 960px) / 2 + 12px);
  }

  .prs_arrow-container {
    top: 76px;
  }
}

@media (min-width: 1200px) {
  #form-wrapper {
    width: calc((100vw - 1140px) / 2 + 100%);
  }

  .project-slider:before,
  .about-section:before {
    left: calc((100vw - 1140px) / 2 * -1 - 12px);
    width: calc((100vw - 1140px) / 2 + 772px);
  }

  .prs_slider-container {
    margin-left: calc((100vw - 1140px) / 2 * -1 - 12px);
    width: calc((100vw - 1140px) / 2 + 772px);
  }

  .prs_slider-container .prs_slide:first-child {
    margin-left: calc((100vw - 1140px) / 2 + 12px);
  }
}

@media (min-width: 1400px) {
  #form-wrapper {
    width: calc((100vw - 1320px) / 2 + 100%);
  }

  .project-slider:before,
  .about-section:before {
    left: calc((100vw - 1320px) / 2 * -1 - 12px);
    width: calc((100vw - 1320px) / 2 + 892px);
  }

  .prs_slider-container {
    margin-left: calc((100vw - 1320px) / 2 * -1 - 12px);
    width: calc((100vw - 1320px) / 2 + 892px);
  }

  .prs_slider-container .prs_slide:first-child {
    margin-left: calc((100vw - 1320px) / 2 + 12px);
  }

  .form-container .form-box {
    padding: 32px 58px;
  }
}

@media screen and (max-width: 1199px) {

  .topic-container .detail-box-img {
    height: 300px;
  }

  .topic-container .detail-box-img img {
    position: relative;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 24px;
    line-height: 32px;
  }
  h2,
  .h2 {
    font-size: 32px;
    line-height: 40px;
  }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 32px;
  }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 24px;
  }
  h5,
  .h5 {
    font-size: 16px;
    line-height: 24px;
  }

  .form-container {
    position: fixed !important;
    bottom: 0;
    height: 0;
    width: 100% !important;
    z-index: 2000 !important;
  }
  .form-box {
    background-color: #fff !important;
    padding: 0 12px 40px;
    transform: translateY(calc(100vh - 120px));
    transition: all 400ms ease-in-out;
    border-radius: 16px 16px 0px 0px;
    position: relative;
    box-shadow: 0px 4px 24px 0px rgba(5, 63, 111, 0.14);
  }
  #contact-form {
    opacity: 0;
    pointer-events: none;
  }
  #form-wrapper .form-open-icon {
    display: flex;
  }
  #form-wrapper .contact-form-subtitle {
    display: none;
  }
  #form-wrapper .contact-form-mobile-title {
    display: block;
  }
  .form-container .contact-form-box {
    position: relative;
    height: calc(100vh - 64px);
    overflow-y: hidden;
    overflow-x: hidden;
    padding-bottom: 40px;
    scrollbar-color: #ffffff00 #ffffff00;
  }
  .form-container .contact-form-box::-webkit-scrollbar {
    display: none;
  }

  body {
    position: relative;
  }
  body.overlay-form {
    overflow: hidden;
  }
  body.overlay-form::after {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    background-color: var(--primary);
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 1500;
  }
  body.overlay-form .form-box {
    transform: translateY(24px);
  }
  body.overlay-form #contact-form {
    opacity: 1;
    pointer-events: auto;
  }

  body.overlay-form #form-wrapper .form-open-icon,
  body.overlay-form .contact-form-mobile-title {
    display: none !important;
  }
  body.overlay-form #form-wrapper .form-close-icon {
    display: flex;
  }
  body.overlay-form .contact-form-subtitle,
  body.overlay-form #form-wrapper .contact-form-subtitle {
    display: block;
  }
  body.overlay-form .contact-form-box {
    overflow: scroll;
  }

  .topic-container .h2 {
    margin-bottom: 16px;
  }

  #about .img-container {
    margin: 32px 0;
  }
  #about .logo {
    width: 66px;
    bottom: 16px;
    left: 16px;
  }

  #atf-agency {
    height: auto;
    max-height: 100%;
  }

  #atf-agency .btn.top-btn {
    display: none;
  }
  #atf-agency .logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
  }
  #atf-agency .title-container {
    align-items: center;
    text-align: center;
    padding: 155px 12px 115px;
  }
  #atf-agency .title-container h1 {
    font-size: 34px;
    line-height: 43px;
  }
  #atf-agency .title-container .subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
  }
  #atf-agency .title-container .text-content {
    font-size: 14px;
    line-height: 20px;
  }
  #atf-agency .bg-overlay {
    background: #294A3C;
    mix-blend-mode: multiply;
    opacity: 0.7;
  }


  .project-slider {
    background-color: var(--light-gray);
    padding: 56px 0 76px 0;
    margin-top: 20px;
  }

  .prs_slide {
    width: var(--slide-tablet-width);
  }


  #riconoscimenti .riconoscimenti-container {
    column-gap: 16px;
    row-gap: 24px;
  }
  #riconoscimenti .riconoscimento {
    width: calc(50% - 8px);
  }
  #riconoscimenti .riconoscimento-box {
    height: 152px;
    padding: 18px;
    margin-bottom: 12px;
  }


  footer {
    padding: 48px 0 148px 0;
  }

  .topic-container .info-box {
    padding: 20px 24px;
  }

  .fs-32 {
    font-size: 24px;
  }

  .prs_slides {
    gap: var(--slide-mobile-gap);
  }

  .cta-section {
    margin-top: 32px;
    padding: 60px 20px;
  }

}

@media screen and (max-width: 767px) {
  .quote-box {
    padding: 60px 30px 45px;
    margin-top: 24px;
  }
  .quote-box .quote-text {
    font-size: 20px;
    line-height: 30px;
  }
  .quote-box .quote-sign-container {
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
  }
  .quote-box .quote-sign-container svg {
    width: 40px;
  }
  .quote-box .quote-sign-container svg:first-child {
    top: -8px;
    left: -10px;
  }
  .quote-box .quote-sign-container svg:nth-child(2) {
    right: -8px;
    bottom: -10px;
  }
  .prs_arrow-container {
    position: static;
    margin-top: 24px;
    column-gap: 16px;
    justify-content: center;
  }
  .prs_slider-container {
    padding-top: 32px;
  }
  .project-slider .slider-title-container p {
    display: block;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 11px;
    border-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .prs_slide {
    width: var(--slide-mobile-width);
  }
  .prs_slide img {
    height: 182px;
  }
}
