/**
*
* Template: Workshop
*
*/

.workshop {
  --cover-drop-offset-bottom: -94px;
  margin-top: 88px;
  /*---------- Animations ----------*/
  /*---------- General ----------*/
  /*---------- Cover ----------*/
  /*---------- Build ----------*/
  /*---------- Team ----------*/
  /*---------- CTA ----------*/
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes cover-circle-animation {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(-20%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes cover-drop-animation {
  0% {
    transform: perspective(400px) rotate3d(1, -1, 0, 0deg);
  }

  33% {
    transform: perspective(200px) rotate3d(1, -1, 0, -20deg);
  }

  66% {
    transform: perspective(700px) rotate3d(1, 1, 0, -40deg);
  }

  100% {
    transform: perspective(400px) rotate3d(1, -1, 0, 0deg);
  }
}

.workshop [data-aos=fade-up-40px] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: translateY(40px);
}

.workshop [data-aos=fade-up-40px].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.workshop [data-aos=fade-up-20px] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: translateY(20px);
}

.workshop [data-aos=fade-up-20px].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.workshop [data-aos=fade-down-20px] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: translateY(-20px);
}

.workshop [data-aos=fade-down-20px].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.workshop .workshop-cta__title,
.workshop .workshop-team__title,
.workshop .workshop-build__title,
.workshop .workshop-cover__subtitle,
.workshop .workshop-box__card.agenda .agenda-title {
  font-family: var(--font-family-primary);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

.workshop .workshop-build__text p {
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.workshop .gradient-element {
  display: block;
  position: absolute;
  filter: blur(85px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: 0.35s;
  will-change: transition;
}

.workshop .workshop-button {
  display: inline-flex;
  padding: 13px 22px;
  align-items: center;
  min-height: 50px;
  background-color: var(--color-orange);
  border-radius: 999em;
  color: #fff;
  text-align: center;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.workshop .workshop-button:hover {
  background-color: #ce8f01;
}

.workshop .workshop-box {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 24px;
  background-color: #F5F5F5;
}

.workshop .workshop-box__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop .workshop-box__col.agenda-col {
  position: relative;
}

.workshop .workshop-box__col.agenda-col:before {
  --circle-size: 109px;
  content: "";
  width: var(--circle-size);
  height: var(--circle-size);
  display: block;
  position: absolute;
  top: 107px;
  right: 0;
  margin-right: -70px;
  background-image: url("../images/templates/workshop/cover-circle-element.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  animation: cover-circle-animation 15s ease-in-out infinite;
}

.workshop .workshop-box__col.agenda-col:after {
  --circle-size: 59px;
  content: "";
  width: var(--circle-size);
  height: var(--circle-size);
  display: block;
  position: absolute;
  bottom: 0;
  left: 58px;
  margin-bottom: -30px;
  background-image: url("../images/templates/workshop/cover-circle-element.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  animation: cover-circle-animation 10s ease-in-out infinite;
}

.workshop .workshop-box__row {
  display: grid;
  grid-template-columns: var(--grid-template-columns, 1fr);
  grid-gap: var(--row-grid-gap, 24px);
  flex-grow: 1;
}

.workshop .workshop-box__row[data-columns="100"] {
  --grid-template-columns: 1fr;
}

.workshop .workshop-box__row[data-columns="33/33/33"] {
  --grid-template-columns: repeat(3, 1fr);
}

.workshop .workshop-box__row[data-columns="35/65"] {
  --grid-template-columns: 401px 1fr;
}

.workshop .workshop-box__row[data-columns="40/60"] {
  --grid-template-columns: 470px 1fr;
}

.workshop .workshop-box__row[data-gap="16px"] {
  --row-grid-gap: 16px;
}

.workshop .workshop-box__card {
  padding: var(--card-padding, 15px);
  border-radius: var(--card-border-radius, 20px);
  background-color: var(--card-background-color, #fff);
  border: var(--card-border, 1px solid #ccc);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--card-gap, 0);
}

.workshop .workshop-box__card[data-card-padding="24px"] {
  --card-padding: 24px;
}

.workshop .workshop-box__card[data-card-padding="24px/16px"] {
  --card-padding: 24px 16px;
}

.workshop .workshop-box__card[data-card-padding="32px/20px"] {
  --card-padding: 32px 20px;
}

.workshop .workshop-box__card[data-card-radius="11px"] {
  --card-border-radius: 11px;
}

.workshop .workshop-box__card[data-theme=image] {
  --card-background-color: transparent;
  --card-border: none;
  --card-padding: 0;
  height: 100%;
  position: relative;
}

.workshop .workshop-box__card[data-theme=animated-gradient] {
  --text-color: #fff;
  --card-background-color: #05323C;
  --card-border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.workshop .workshop-box__card[data-theme=animated-gradient] .gradient-element.gradient-element1 {
  width: 300px;
  height: 300px;
  background: #007EB9;
  right: -55%;
  top: 50%;
}

.workshop .workshop-box__card[data-theme=animated-gradient] .gradient-element.gradient-element2 {
  top: 110%;
  left: 0%;
}

.workshop .workshop-box__card.imageAndTextCentered {
  --card-padding: 40px 20px;
  --card-gap: 6px;
  justify-content: center;
  text-align: center;
}

.workshop .workshop-box__card.imageAndTextCentered .workshop-box__title {
  margin-bottom: 0;
}

.workshop .workshop-box__card.imageAndTextCentered .imageAndTextCentered-image {
  margin-bottom: 10px;
  text-align: center;
}

.workshop .workshop-box__card.imageAndTextCentered .imageAndTextCentered-image img {
  max-width: 100%;
  height: auto;
}

.workshop .workshop-box__card.agenda {
  padding: 65px 30px 48px;
  background-image: url("../images/templates/workshop/agenda-grid.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}

.workshop .workshop-box__card.agenda .agenda-title {
  margin: 0 0 12px;
  color: #fff;
  text-align: center;
}

.workshop .workshop-box__card.agenda .agenda-schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 46px;
}

.workshop .workshop-box__card.agenda .agenda-schedule__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workshop .workshop-box__card.agenda .agenda-schedule__card {
  padding: 16px;
  flex-grow: 1;
  border-radius: 11px;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
}

.workshop .workshop-box__card.agenda .agenda-schedule__time {
  margin: 0 0 8px;
  color: var(--color-orange);
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.56;
}

.workshop .workshop-box__card.agenda .agenda-schedule .workshop-box__title {
  margin-bottom: 6px;
}

.workshop .workshop-box__card.agenda > .workshop-box__text p {
  font-weight: 500;
}

.workshop .workshop-box__title {
  margin: 0 0 17px;
  color: var(--text-color, #000);
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.17;
}

.workshop .workshop-box__title.text-center {
  text-align: center;
}

.workshop .workshop-box__text {
  --text-font-size: 20px;
}

.workshop .workshop-box__text.text-center {
  text-align: center;
}

.workshop .workshop-box__text ul {
  padding-left: 24px;
  padding-right: 0;
  margin: 0;
}

.workshop .workshop-box__text p,
.workshop .workshop-box__text li {
  color: var(--text-color, #000);
  font-family: var(--font-family-primary);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: var(--text-line-height, 1.5);
}

.workshop .workshop-box__text p:not(:last-child),
.workshop .workshop-box__text li:not(:last-child) {
  margin-bottom: 16px;
}

.workshop .workshop-box__text p strong,
.workshop .workshop-box__text li strong {
  font-weight: 600;
}

.workshop .workshop-box__text.text-small {
  --text-font-size: 16px;
}

.workshop .workshop-box__text.text-medium {
  --text-font-size: 18px;
  --text-line-height: 1.33;
}

.workshop .workshop-box__iconAndText {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}

.workshop .workshop-box__iconAndText .workshop-box__text {
  max-width: 476px;
}

.workshop .workshop-box__iconAndText-icon {
  --icon-width: 57px;
  min-width: var(--icon-width);
  max-width: var(--icon-width);
  text-align: center;
}

.workshop .workshop-box__iconAndText-icon img {
  max-width: 100%;
  height: auto;
}

.workshop .workshop-box__image {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.workshop .workshop-box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.workshop .workshop-cover {
  --section-border-bottom-radius: 48px;
  padding-top: 53px;
  margin-bottom: calc(var(--cover-drop-offset-bottom) * -1);
  position: relative;
  overflow-x: clip;
  z-index: 1;
}

.workshop .workshop-cover__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 var(--section-border-bottom-radius) var(--section-border-bottom-radius);
  background-color: #05323C;
  overflow: hidden;
  z-index: -1;
}

.workshop .workshop-cover__bg .gradient-element {
  top: 10%;
  left: 60%;
}

.workshop .workshop-cover__inner {
  display: grid;
  grid-template-columns: 556px 1fr;
  grid-gap: 6px;
}

.workshop .workshop-cover__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 50px 0 34px;
}

.workshop .workshop-cover__title {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 63px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
}

.workshop .workshop-cover__subtitle {
  margin: 0;
  color: var(--color-orange);
}

.workshop .workshop-cover__text {
  padding-right: 50px;
}

.workshop .workshop-cover__text p {
  color: #fff;
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

.workshop .workshop-cover__image {
  text-align: left;
  align-self: flex-end;
  position: relative;
}

.workshop .workshop-cover__image-main {
  overflow: hidden;
}

.workshop .workshop-cover__image-main img {
  max-width: 100%;
  height: auto;
  margin-bottom: -107px;
}

.workshop .workshop-cover__image-drop {
  position: absolute;
  bottom: var(--cover-drop-offset-bottom);
  left: 39.5%;
  width: 52%;
  z-index: 1;
  animation: cover-drop-animation 15s ease-in-out infinite;
  animation-delay: 0s;
}

.workshop .workshop-cover__image-drop img {
  max-width: 100%;
  height: auto;
}

.workshop .workshop-cover__image-circle {
  position: absolute;
  width: 16.5%;
  left: -7.5%;
  top: 2%;
  z-index: 1;
  animation: cover-circle-animation 15s ease-in-out infinite;
}

.workshop .workshop-cover__image-circle img {
  max-width: 100%;
  height: auto;
}

.workshop .workshop-cover .workshop-button {
  margin-top: 16px;
}

.workshop .workshop-build {
  padding: 42px 0 32px;
  overflow-x: hidden;
}

.workshop .workshop-build__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.workshop .workshop-build__title {
  margin: 0;
  color: #32BBD7;
  text-align: center;
}

.workshop .workshop-build__text {
  max-width: 766px;
  margin-inline: auto;
  text-align: center;
}

.workshop .workshop-build__text p:not(:last-child) {
  margin-bottom: 16px;
}

.workshop .workshop-team {
  padding-block: 32px;
}

.workshop .workshop-team__title {
  margin: 0 0 22px;
  text-align: center;
  color: #fff;
}

.workshop .workshop-team__cards {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-left: 86px;
}

.workshop .workshop-team__cardsItem {
  position: relative;
  z-index: 1;
}

.workshop .workshop-team__cardsItem:first-child .workshop-team__cardsItem-content {
  left: 50%;
  margin-left: -8px;
  bottom: 33px;
}

.workshop .workshop-team__cardsItem:nth-child(2) {
  margin-left: auto;
  margin-right: -269px;
  z-index: 1;
}

.workshop .workshop-team__cardsItem:nth-child(2) .workshop-team__cardsItem-content {
  right: 50%;
  margin-right: 30px;
  bottom: 154px;
}

.workshop .workshop-team__cardsItem:last-child {
  margin-left: auto;
  margin-right: -25px;
}

.workshop .workshop-team__cardsItem:last-child .workshop-team__cardsItem-content {
  right: 50%;
  margin-right: -31px;
  bottom: 27px;
  z-index: 2;
}

.workshop .workshop-team__cardsItem-image {
  width: 100%;
  display: block;
}

.workshop .workshop-team__cardsItem-image img {
  max-width: 100%;
  height: auto;
}

.workshop .workshop-team__cardsItem-content {
  position: absolute;
  padding: 16px;
  width: 240px;
  color: #fff;
  border-radius: 11px;
  border: 1px solid #ccc;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
}

.workshop .workshop-team__cardsItem-name {
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
}

.workshop .workshop-team__cardsItem-position {
  font-family: var(--font-family-primary);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.36;
}

.workshop .workshop-team .gradients {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  border-radius: 22px;
  overflow: hidden;
}

.workshop .workshop-team .gradient-element.gradient-element1 {
  height: 100%;
  width: 25%;
  top: 20%;
  left: -10%;
  background-color: #07E5D3;
  border-radius: 30%;
}

.workshop .workshop-team .gradient-element.gradient-element2 {
  height: 300px;
  width: 300px;
  top: -30%;
  right: -10%;
  background-color: #007EB9;
  border-radius: 30%;
}

.workshop .workshop-team .gradient-element.gradient-element3 {
  height: 400px;
  width: 400px;
  top: 90%;
  right: -10%;
  background-color: #007EB9;
  border-radius: 30%;
}

.workshop .workshop-cta {
  padding-block: 32px;
}

.workshop .workshop-cta .workshop-box {
  background-image: url("../images/templates/workshop/cta-grid-bg.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
}

.workshop .workshop-cta .workshop-box__card {
  --card-gap: 16px;
}

.workshop .workshop-cta .develeap-hubspot div:has(img) {
  display: none;
}

.workshop .workshop-cta .develeap-hubspot .hs-fieldtype-phonenumber {
  flex: 1 0 100%;
}

.workshop .workshop-cta__title {
  margin: 0;
  line-height: 1.2;
  color: #32BBD7;
}

@media (min-width: 992px) {
  .workshop .workshop-team__inner {
    position: relative;
    z-index: 1;
    padding-top: 26px;
    background-color: #05323C;
    border-radius: 22px;
    background-image: url("../images/templates/aws/team-bg-grid.svg");
    background-position: left top 14px;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1200px) {
  .workshop .workshop-box__text.padding-right-50px {
    padding-right: 50px;
  }

  .workshop .workshop-cta .workshop-box {
    padding: 96px;
  }
}

@media (max-width: 1199px) {
  .workshop .workshop-box__row[data-columns-lg-max="100"] {
    --grid-template-columns: 1fr;
  }

  .workshop .workshop-cover {
    padding-top: 90px;
  }

  .workshop .workshop-cover__inner {
    grid-gap: 32px;
    grid-template-columns: 535px 1fr;
  }

  .workshop .workshop-team__cards {
    padding-left: 0;
  }

  .workshop .workshop-team__cardsItem:first-child .workshop-team__cardsItem-content {
    margin-left: -40px;
  }

  .workshop .workshop-team__cardsItem:nth-child(2) {
    margin-right: -200px;
  }

  .workshop .workshop-team__cardsItem:nth-child(2) .workshop-team__cardsItem-content {
    margin-right: -40px;
  }

  .workshop .workshop-team__cardsItem:last-child .workshop-team__cardsItem-content {
    margin-right: -100px;
  }
}

@media (max-width: 991px) {
  .workshop .workshop-cta__title,
  .workshop .workshop-team__title,
  .workshop .workshop-build__title,
  .workshop .workshop-cover__subtitle,
  .workshop .workshop-box__card.agenda .agenda-title {
    font-size: 32px;
    line-height: 1.38;
  }

  .workshop .workshop-box {
    margin-inline: -16px;
    border-radius: 24px;
  }

  .workshop .workshop-box__row[data-columns-md-max="100"] {
    --grid-template-columns: 1fr;
  }

  .workshop .workshop-box__card.agenda .agenda-title {
    font-size: 40px;
    line-height: 1;
  }

  .workshop .workshop-cover__bg {
    background-image: url("../images/templates/aws/cover-bg-mobile.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .workshop .workshop-cover__bg .gradient-element {
    display: none;
  }

  .workshop .workshop-cover__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 22px;
  }

  .workshop .workshop-cover__content {
    align-items: center;
    text-align: center;
    padding: 0 0 8px;
  }

  .workshop .workshop-cover__title {
    font-size: 50px;
    line-height: 1.36;
  }

  .workshop .workshop-cover__text {
    padding-inline: 32px;
  }

  .workshop .workshop-cover__image {
    padding-top: 0;
    align-self: center;
  }

  .workshop .workshop-cover__image-main {
    overflow: unset;
  }

  .workshop .workshop-cover__image-drop {
    left: 66.5%;
    top: 30%;
  }

  .workshop .workshop-cover__image-circle {
    left: 0%;
    top: 12%;
    z-index: -1;
  }

  .workshop .workshop-cover .workshop-button {
    margin-top: 6px;
  }

  .workshop .workshop-build__inner {
    gap: 32px;
  }

  .workshop .workshop-team__title {
    margin-bottom: 52px;
    color: #32BBD7;
  }

  .workshop .workshop-team__cards {
    --cards-gap: 24px;
    flex-direction: row;
    align-items: unset;
    flex-wrap: wrap;
    gap: var(--cards-gap);
  }

  .workshop .workshop-team__cardsItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: auto;
    width: calc(50% - var(--cards-gap) / 2);
  }

  .workshop .workshop-team__cardsItem:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    left: 0;
    top: 0;
    background-image: url("../images/templates/aws/team-bg-grid.svg"), url("../images/templates/aws/author-bg-mobile.png");
    background-position: left top 20px, center;
    background-size: auto 100%, auto 110%;
    background-repeat: no-repeat;
    z-index: -1;
  }

  .workshop .workshop-team__cardsItem:first-child .workshop-team__cardsItem-image {
    transform: translateX(-14px);
    max-width: 85%;
  }

  .workshop .workshop-team__cardsItem:nth-child(2) {
    margin: unset;
  }

  .workshop .workshop-team__cardsItem:nth-child(2) .workshop-team__cardsItem-image {
    align-self: flex-end;
    max-width: 85%;
    transform: translateX(8px);
  }

  .workshop .workshop-team__cardsItem:nth-child(2) .workshop-team__cardsItem-content {
    margin-right: -30px;
  }

  .workshop .workshop-team__cardsItem:last-child {
    margin: unset;
  }

  .workshop .workshop-team__cardsItem:last-child .workshop-team__cardsItem-image {
    margin-top: -15px;
    transform: translateX(-5px);
  }

  .workshop .workshop-team__cardsItem-content {
    width: 180px;
    padding: 8px;
  }

  .workshop .workshop-team__cardsItem-name {
    margin-bottom: 2px;
    font-size: 16px;
    line-height: 1.1;
  }

  .workshop .workshop-team__cardsItem-position {
    font-size: 14px;
    line-height: 1.32;
  }

  .workshop .workshop-team .gradients {
    display: none;
  }
}

@media (max-width: 767px) {
  .workshop {
    --cover-drop-offset-bottom: -56px;
  }

  .workshop .workshop-box {
    padding: 24px 36px;
  }

  .workshop .workshop-box__col.agenda-col:before,
  .workshop .workshop-box__col.agenda-col:after {
    content: none;
  }

  .workshop .workshop-box__row {
    display: flex;
    flex-direction: column;
    gap: var(--row-grid-gap, 20px);
  }

  .workshop .workshop-box__row[data-reverse-mobile] {
    flex-direction: column-reverse;
  }

  .workshop .workshop-box__card[data-card-padding="32px/20px"] {
    --card-padding: 24px 20px;
  }

  .workshop .workshop-box__card.imageAndTextCentered {
    --card-padding: 24px 16px;
    --card-gap: 16px;
  }

  .workshop .workshop-box__card.imageAndTextCentered .workshop-box__title {
    order: -1;
  }

  .workshop .workshop-box__card.imageAndTextCentered .workshop-box__text {
    max-width: 196px;
    margin-inline: auto;
  }

  .workshop .workshop-box__card.imageAndTextCentered .imageAndTextCentered-image {
    margin-bottom: 0;
  }

  .workshop .workshop-box__card.agenda {
    background-position: bottom right;
    background-size: contain;
    padding-inline: 16px;
  }

  .workshop .workshop-box__card.agenda .agenda-schedule {
    grid-template-columns: 1fr;
  }

  .workshop .workshop-box__card.agenda .agenda-schedule__col {
    display: contents;
  }

  .workshop .workshop-box__card.agenda .agenda-schedule__card {
    padding: 10px 16px;
  }

  .workshop .workshop-box__card.agenda .agenda-schedule__card .workshop-box__text p {
    font-size: 14px;
    line-height: 1.68;
  }

  .workshop .workshop-box__card.agenda .agenda-schedule__card .workshop-box__title {
    margin-bottom: 9px;
  }

  .workshop .workshop-box__card.agenda .agenda-schedule__time {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 500;
  }

  .workshop .workshop-box__card.agenda .agenda-schedule .workshop-box__title {
    font-size: 20px;
  }

  .workshop .workshop-box__card.agenda > .workshop-box__text {
    padding-inline: 29px;
  }

  .workshop .workshop-box__card.agenda > .workshop-box__text p {
    line-height: 1.3;
  }

  .workshop .workshop-box__iconAndText {
    flex-direction: column-reverse;
  }

  .workshop .workshop-cover {
    --section-border-bottom-radius: 24px;
    padding-top: 64px;
  }

  .workshop .workshop-cover__content {
    gap: 10px;
  }

  .workshop .workshop-cover__title {
    font-size: 32px;
  }

  .workshop .workshop-cover__subtitle {
    font-size: 24px;
    line-height: 1;
  }

  .workshop .workshop-cover__text p {
    font-size: 16px;
    line-height: 1.23;
  }

  .workshop .workshop-cover__image {
    max-width: 260px;
  }

  .workshop .workshop-cover__image-main {
    max-width: 194px;
  }

  .workshop .workshop-cover__image-main img {
    margin-bottom: -54px;
    margin-left: -30px;
  }

  .workshop .workshop-cover__image-drop {
    left: 50%;
    width: 70%;
    top: 22%;
  }

  .workshop .workshop-cover__image-circle {
    left: -23%;
    width: 25%;
  }

  .workshop .workshop-cover .workshop-button {
    padding: 12px 32px;
    min-height: unset;
  }

  .workshop .workshop-build {
    padding-top: 8px;
  }

  .workshop .workshop-build__inner {
    padding-inline: 20px;
  }

  .workshop .workshop-build__title {
    max-width: 220px;
    margin-inline: auto;
    font-weight: 700;
  }

  .workshop .workshop-build__text {
    padding-inline: 18px;
    margin-bottom: 22px;
  }

  .workshop .workshop-build .workshop-box {
    margin-inline: -36px;
  }

  .workshop .workshop-team {
    padding-block: 16px;
  }

  .workshop .workshop-team__title {
    font-weight: 700;
  }

  .workshop .workshop-team__cards {
    --cards-gap: 17px;
    flex-direction: column;
    max-width: 300px;
    margin-inline: auto;
  }

  .workshop .workshop-team__cardsItem {
    width: 100%;
  }

  .workshop .workshop-team__cardsItem:first-child .workshop-team__cardsItem-content {
    top: 50%;
    bottom: unset;
    width: 194px;
    max-width: 194px;
    padding: 16px 16px;
    left: 0;
    margin-left: 33px;
  }

  .workshop .workshop-team__cardsItem:first-child .workshop-team__cardsItem-image {
    margin-top: -19px;
    align-self: flex-end;
    max-width: 80%;
    transform: translateX(14%);
  }

  .workshop .workshop-team__cardsItem:nth-child(2) .workshop-team__cardsItem-image {
    max-width: 77%;
    margin-top: -15px;
    transform: translateX(18px);
  }

  .workshop .workshop-team__cardsItem:nth-child(2) .workshop-team__cardsItem-content {
    left: 16px;
    margin-right: 0;
    right: unset;
    bottom: unset;
    top: 50%;
  }

  .workshop .workshop-team__cardsItem:last-child .workshop-team__cardsItem-content {
    bottom: unset;
    top: 40%;
    right: unset;
    left: 50%;
    margin-left: -24px;
  }

  .workshop .workshop-team__cardsItem:last-child .workshop-team__cardsItem-image {
    max-width: 80%;
    margin-top: -12px;
    transform: translateX(12px);
  }

  .workshop .workshop-team__cardsItem-content {
    padding: 16px;
    width: 163px;
  }

  .workshop .workshop-cta {
    padding-block: 16px;
  }

  .workshop .workshop-cta .workshop-box__card {
    text-align: center;
  }

  .workshop .workshop-cta__title {
    font-size: 38px;
    line-height: 1.16;
  }

  .workshop .workshop-cta .workshop-box__text br {
    display: none;
  }
}