body {
  background: #fcfcf7;
  position: relative;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
	z-index: 99;
}

.directions {
  padding-top: 149px;
}

.up {
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 40px;
  bottom: 350px;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-right: 30px;
}
.menu__item {
  font-size: 16px;
  line-height: normal;
}
.menu__link {
  position: relative;
  padding-bottom: 5px;
	display: inline-block;
	text-align: center;
}
.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  background-color: var(--blue);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.menu__link:hover, .menu__link--active {
  color: var(--blue);
}
.menu__link:hover::after, .menu__link--active::after {
  transform: scale(1);
}

@media (max-width: 1030px) {
  .menu {
    gap: 20px;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .menu {
    display: none;
  }
}
.courses {
  padding-top: 149px;
}
.courses__list {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.courses__link {
  display: flex;
  padding: 23px 48px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--blue-dark);
  color: var(--blue-dark);
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 16px;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.courses__link--active, .courses__link:hover {
  color: var(--white);
  background-color: var(--blue-dark);
}
.courses__wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.courses__sorting {
  flex-basis: 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  border-right: 0.5px solid rgba(125, 125, 125, 0.42);
}
.courses__content {
  flex-basis: 67%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1030px) {
  .courses__link {
    padding: 13px 28px;
    font-size: 16px;
  }
}
.sorting__fieldset {
  border: 0;
}
.sorting__legend {
  font-size: 24px;
  font-weight: 500;
  line-height: 115%;
  margin-bottom: 20px;
}
.sorting__label {
  font-size: 18px;
  line-height: 115%;
  display: block;
  padding-left: 24px;
  position: relative;
  cursor: pointer;
}
.sorting__label:not(:last-child) {
  margin-bottom: 12px;
}
.sorting__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  width: 16px;
  height: 16px;
  left: 0;
  cursor: pointer;
  border-radius: 50%;
}
.sorting__input::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: #e2e4e9;
  border-radius: 50%;
}
.sorting__input::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 50%;
  top: 50%;
  transform: translate(-7px, -7px);
  border-radius: 96px;
  background: var(--white);
}
.sorting__input:checked::before {
  border-top: 1.5px solid var(--primary-dark, #253ea7);
  background: var(--primary-base, #375dfb);
  box-shadow: 0px 2px 2px 0px rgba(22, 38, 100, 0.32) inset;
}
.sorting__input:checked::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-4px, -4px);
  border-radius: 50%;
  border: 1px solid var(--white);
  background: var(--white);
  box-shadow: 0px -2px 3px 0px #cfd1d3 inset, 0px 2px 2px 0px rgba(27, 28, 29, 0.12);
}

.card {
  border-radius: 40px;
  background: linear-gradient(1deg, #fff 0.76%, #dff4ff 99.16%);
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
  padding: 24px;
  display: flex;
  gap: 12px;
}
.card:nth-child(2n) {
  background: linear-gradient(1deg, #fff 0.76%, #dfe6ff 99.16%);
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
}
.card:nth-child(3n) {
  border-radius: 40px;
  background: linear-gradient(1deg, #fff 0.76%, #e0dfff 99.16%);
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
}
.card__whom {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  background-color: #fef3c7;
  margin-bottom: 32px;
  color: #92400e;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.card__whom--green {
  color: #065f46;
  background-color: #d1fae5;
}
.card__title {
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: 0.24px;
  margin-bottom: 16px;
}
.card__text {
  color: #4f4f4f;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 40px;
  max-width: 392px;
}
.card__price {
  font-family: Inter;
  font-size: 48px;
  font-weight: 500;
  line-height: 115%;
  margin-bottom: 12px;
}
.card__date {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 115%;
}
.card__image {
  display: block;
  min-width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-bottom: 13px;
}
.card__details {
  color: var(--blue);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-line: underline;
  margin-right: 16px;
}
.card__details:hover {
  text-decoration: none;
}
.card__btn {
  display: inline-flex;
  padding: 13px 25px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #456db1;
  box-shadow: 0px 2px 4px 0px rgba(58, 58, 68, 0.2), 0px 4px 8px 0px rgba(90, 91, 106, 0.2);
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.card__btn:hover {
  cursor: pointer;
  background: #1d56b7;
  box-shadow: 0px 4px 8px 0px rgba(58, 58, 68, 0.16), 0px 8px 16px 0px rgba(90, 91, 106, 0.16);
}

@media (max-width: 1030px) {
  .card__whom {
    margin-bottom: 15px;
  }
  .card__title {
    font-size: 20px;
  }
  .card__images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .card__image {
    min-width: 200px;
    height: 200px;
  }
  .card__details {
    margin-right: 0;
  }
  .card__text {
    font-size: 14px;
  }
  .card__price {
    font-size: 30px;
  }
}
.information {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.information__item {
  max-width: 325px;
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
}
.information__icon {
  margin-bottom: 20px;
}
.information__title {
  color: #676767;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 115%;
  margin-bottom: 8px;
}
.information__text {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
}

@media (max-width: 800px) {
  .information {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .information {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hero {
  padding-top: 149px;
  padding-bottom: 90px;
  background-image: -webkit-image-set(url("/ui/courses/img/hero/hero-bg.avif") type("image/avif"), url("/ui/courses/img/hero/hero-bg.webp") type("image/webp"), url("/ui/courses/img/hero/hero-bg.jpg"));
  background-image: image-set(url("/ui/courses/img/hero/hero-bg.avif") type("image/avif"), url("/ui/courses/img/hero/hero-bg.webp") type("image/webp"), url("/ui/courses/img/hero/hero-bg.jpg"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.hero__container {
  display: grid;
  grid-template-areas: "info image" "information information";
  gap: 80px 106px;
}
.hero__info {
  grid-area: info;
}
.hero__image {
  grid-area: image;
  min-width: 300px;
}
.hero__information {
  grid-area: information;
}
.hero__title {
  text-align: left;
  font-family: Inter, sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 32px;
}
.hero__status {
  display: inline-flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #1a8001;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 115%;
  margin-bottom: 16px;
}
.hero__btn {
  display: inline-block;
  padding: 13px 25px;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0px 2px 4px 0px rgba(58, 58, 68, 0.2), 0px 4px 8px 0px rgba(90, 91, 106, 0.2);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
	cursor: pointer;
}
.hero__btn:hover {
  cursor: pointer;
  background-color: #1d56b7;
}

@media (max-width: 1030px) {
  .hero__container {
    gap: 40px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__image {
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 22px;
  }
  .hero__image {
    max-width: 200px;
  }
}
@media (max-width: 640px) {
  .hero__container {
    grid-template-areas: "image" "info" "information";
  }
  .hero__image {
    margin: 0 auto;
  }
}
.course-info {
  padding-top: 70px;
}
.course-info__list {
  display: flex;
  gap: 20px;
}
.course-info__item {
  display: flex;
  width: 440px;
  padding: 40px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
}
.course-info__icon {
  display: block;
	width: auto;
	max-width: 79px;
	height: 70px;
}
.course-info__subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 2px;
}
.course-info__text {
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 900px) {
  .course-info__list {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 640px) {
  .course-info__item {
    display: flex;
    width: 320px;
  }
}
.program__list {
  border-radius: 8px;
  overflow: hidden;
}
.program__list > li {
  display: grid;
  grid-template-areas: "module arrow" "content content";
  justify-content: space-between;
  background: #e3f5ff;
  padding: 15px 0;
}
.program__list > li.active:last-child {
  padding-bottom: 0;
}
.program__list > li::after {
  grid-area: arrow;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M11.9997 14.95C11.8664 14.95 11.7414 14.929 11.6247 14.887C11.508 14.8456 11.3997 14.775 11.2997 14.675L6.6747 10.05C6.49136 9.86664 6.40403 9.63731 6.4127 9.36198C6.4207 9.08731 6.51636 8.85831 6.6997 8.67498C6.88303 8.49164 7.11636 8.39998 7.3997 8.39998C7.68303 8.39998 7.91636 8.49164 8.0997 8.67498L11.9997 12.575L15.9247 8.64998C16.108 8.46664 16.3374 8.37898 16.6127 8.38698C16.8874 8.39564 17.1164 8.49164 17.2997 8.67498C17.483 8.85831 17.5747 9.09164 17.5747 9.37498C17.5747 9.65831 17.483 9.89164 17.2997 10.075L12.6997 14.675C12.5997 14.775 12.4914 14.8456 12.3747 14.887C12.258 14.929 12.133 14.95 11.9997 14.95Z' fill='%23414346'/%3E%3C/svg%3E");
  margin-right: 16px;
}
.program__list > li.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.6998 14.6749C6.51647 14.4916 6.4248 14.2582 6.4248 13.9749C6.4248 13.6916 6.51647 13.4582 6.6998 13.2749L11.2998 8.6749C11.3998 8.5749 11.5081 8.5039 11.6248 8.4619C11.7415 8.42057 11.8665 8.3999 11.9998 8.3999C12.1331 8.3999 12.2581 8.42057 12.3748 8.4619C12.4915 8.5039 12.5998 8.5749 12.6998 8.6749L17.3248 13.2999C17.5081 13.4832 17.5998 13.7082 17.5998 13.9749C17.5998 14.2416 17.4998 14.4749 17.2998 14.6749C17.1165 14.8582 16.8831 14.9499 16.5998 14.9499C16.3165 14.9499 16.0831 14.8582 15.8998 14.6749L11.9998 10.7749L8.0748 14.6999C7.89147 14.8832 7.66647 14.9749 7.3998 14.9749C7.13314 14.9749 6.8998 14.8749 6.6998 14.6749Z' fill='%23414346'/%3E%3C/svg%3E");
}
.program__list > li a.program__list-module {
  grid-area: module;
  color: #1f2122;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
  padding: 0 16px;
  cursor: pointer;
}
.program__list-subnav {
  grid-area: content;
  display: none;
  background-color: var(--white);
  padding: 10px 16px;
}
.program__list-subnav p {
  padding: 10px 0 12px 0;
}
.program__list-subnav p b {
  color: #1f2122;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 20px;
}
.program__list-subnav ul {
  margin: 0 0 20px 25px;
}
.program__list-subnav ul li {
  list-style: disc;
  color: #1f2122;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 20px;
}

.registration__content {
  border-radius: 40px;
  background: linear-gradient(1deg, #fff 0.76%, #e0dfff 99.16%);
  box-shadow: 0px 1px 2px 0px rgba(58, 58, 68, 0.24), 0px 2px 4px 0px rgba(90, 91, 106, 0.24);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px 102px;
}
.registration__item {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 115%;
}
.registration__item:not(:last-child) {
  margin-bottom: 21px;
}
.registration__item::before {
  content: "";
  min-width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM15.6103 10.1859C15.8511 9.84887 15.773 9.38046 15.4359 9.1397C15.0989 8.89894 14.6305 8.97701 14.3897 9.31407L11.1543 13.8436L9.53033 12.2197C9.23744 11.9268 8.76256 11.9268 8.46967 12.2197C8.17678 12.5126 8.17678 12.9874 8.46967 13.2803L10.7197 15.5303C10.8756 15.6862 11.0921 15.7656 11.3119 15.7474C11.5316 15.7293 11.7322 15.6153 11.8603 15.4359L15.6103 10.1859Z' fill='%2369BC00'/%3E%3C/svg%3E");
}
.registration__price {
  font-family: Inter, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 115%;
}
.registration__text {
  line-height: 115%;
}

@media (max-width: 1280px) {
  .registration__content {
    gap: 40px;
    padding: 40px 20px;
  }
}
@media (max-width: 1030px) {
  .registration__price {
    font-size: 44px;
  }
}
@media (max-width: 900px) {
  .registration__content {
    flex-direction: column;
    align-items: center;
  }
  .registration__price {
    text-align: center;
  }
}
.form {
  max-width: 700px;
}
.form__tooltip {
  display: none;
}
.form__fieldset {
  border: 0;
  padding: 0;
  margin-bottom: 20px;
}
.form__fieldset:last-child {
  margin-bottom: 16px;
}
.form__fieldset--checkbox,
.form__type--checkbox {
  display: flex;
	flex-direction: row!important;
  align-items: flex-start;
  gap: 9px;
}
.modal__label[for="confirmation"] {
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
}
.form__legend, 
.modal__text,
.form__text {
  color: #454c52;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}
.form__label, .modal__text_checkbox,
.form__type--checkbox .form__inner .form__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;	
}
.modal__text_checkbox em,
.form__type--checkbox .form__inner .form__text em {  
	font-style: normal;
}
.form__link, .modal__text_checkbox a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.form__link:hover, .modal__text_checkbox a:hover {
  text-decoration: none;
}
.form__input,
.modal__input {
  display: flex;
  width: 100%;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  background: var(--white);
  /* color: #9ea5ad; */
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 0;
  box-shadow: 0px 2px 5px 0px rgba(103, 110, 118, 0.08), 0px 0px 0px 1px rgba(103, 110, 118, 0.16), 0px 1px 1px 0px rgba(0, 0, 0, 0.12);
}
.form__item {
	border-radius: 16px;
}
.form__input--checkbox,
.modal__checkbox,
.form__item--confirmation {
  width: auto!important;
	margin-top: 3px;
}
.form__btn, .modal__btn {
  width: 100%;
  padding: 13px 25px;
  border-radius: 16px;
  background-color: var(--blue);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.modal__btn:disabled {
	opacity: 0.5;
  cursor: no-drop;
}
.form__btn:hover,
.modal__btn:hover {
  background-color: #1d56b7;
}

.modal__btn:disabled:hover {
	background-color: var(--blue);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 9;
}

.overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal, .modal-info {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  /* transform: translateY(-20px); */
  transition: all 0.5s ease;
	background-color: rgba(0, 0, 0, 0.7);
	padding-top: 20px;
  padding-bottom: 20px;
}
.modal.visible, .modal-info.modal.visible,
.modal.show, .modal-info.modal.show {
  opacity: 1;
  visibility: visible;
  /* transform: translateY(10px); */
  transition: all 0.5s ease;
	overflow-y: auto;
}
.modal__container {
  position: relative;
  width: 568px;
  padding: 44px;
  border-radius: 25px;
  background-color: var(--white);
	margin: auto;
}
.modal__title {
	margin-bottom: 20px;
}
.modal__close {
  position: absolute;
  top: 0;
  right: -40px;
  width: 32px;
  height: 32px;
	background-color: rgba(196, 196, 196, 0.01);
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 17L7 7M17 7L7 17' stroke='white' stroke-width='1.3' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
	background-position: center center;
  justify-content: center;
  align-items: center;
  border-radius: 100%;  
  border: 2px solid rgba(255, 255, 255, 0.25);  
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  
}

@media (max-width: 660px) {
  .modal__container {
    width: 84%;
    padding: 34px;
		margin: auto;
  }
  .modal__close {
    top: -10px;
    right: -10px;
  }
}
@media (max-width: 400px) {
  .modal__container {
    width: 90%;
    padding: 24px;
  }
  .modal__close {
    top: -10px;
    right: -10px;
  }
}

.modal__label {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.content {
	padding: 149px 0 100px;
}

.content__row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;	
	justify-content: space-between;
}

.card--content {
	max-width: 49%;
	flex-direction: column;
	box-shadow: 0 2px 4px 0 rgba(90, 91, 106, 0.24), 0 1px 2px 0 rgba(58, 58, 68, 0.24);
	background: linear-gradient(0deg, #fff 0%, #dfe6ff 100%);
}

.card__info--content {
	display: grid;
	grid-template-areas: 
	'whom image'
	'title image';
	gap: 19px;	
	justify-content: center;	
}
.card__info--content>div {
	grid-area: whom;
	align-self: flex-start;
}
.card__whom--content {
	margin-bottom: 19px;	
	font-size: 20px;
	line-height: 100%;
	color: #b93815;
	background: #fef6ee;
	border: 1px solid #f9dbaf;
	border-radius: 12px;
	padding: 4px 10px;
	max-height: 68px;
}
.card__title--title {
	grid-area: title;
	font-family: Inter, sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 115%;
	letter-spacing: 0.01em;
	color: #000;
	align-items: start;
	min-height: 138px;
	margin-bottom: 0;
}
.card__image--content {
	grid-area: image;
	max-width: 300px;
	height: auto;
	margin: 48px 0;
}

.card__text--content {
	max-width: 100%;
	font-family: Inter, sans-serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 115%;
	color: #000;
}

.card__buttons--content {
	text-align: right;
}

@media(max-width: 1399px) {
	.content__row {
		justify-content: center;
	}
	.card--content {
		/* max-width: 570px; */
	}
	.card__image--content {
		min-width: 200px;
		max-width: 200px;
	}
}

@media(max-width: 1199px) {
	.card__info--content {		
		grid-template-areas: 
		'whom whom'
		'title image';		
	}
	.card--content {
		/* max-width: 470px; */
	}
	.card__text--content {
		font-size: 26px;
	}
}
@media (max-width: 1030px) {
}
@media (max-width: 1038px) {
	.card--content {
		max-width: 48%;
	}
  .card__images--content {
    align-items: inherit;
  }
}
@media(max-width: 999px) {
	.card--content {
		max-width: 100%;
	}
	.card__info--content {		
		grid-template-areas: 
		'whom image'
		'title image';
	}
	.card__buttons--content .card__details {
    font-size: 16px;
  }
	.card__image--content {
		margin-bottom: 0;
	}
	.card__title--title {  
  	min-height: 78px;
	}
}

@media(max-width: 768px) {
	.card__title--title {
		font-size: 18px;
	}
	.card__text--content {
		font-size: 22px;
		margin-bottom: 20px;
	}
}

@media(max-width: 768px) {
	.card__info--content {		
		grid-template-areas: 
		'whom whom'
		'title image';		
	}
	.card__image--content {
		margin: 28px 0;
	}
	.card__title--title {  
  	min-height: 138px;
		align-items: center;
    display: flex;
	}
	.card__whom--content {
		margin-bottom: 0;
	}
}

@media(max-width: 500px) {
	.card__info--content {		
		grid-template-areas: 
		'whom'
		'title'
		'image';		
	}
	.card__image--content {
		margin: 10px auto;
	}
	.card__title--title {  
  	min-height: auto;
	}
}