.hero-wrap {
  padding: 24px 40px 0;
}
.hero {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/inicio.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--dark-overlay);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 600px;
  padding: 40px 24px;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.hero-content h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--white);
}
.hero-content p {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  max-width: 480px;
}
.hero-btns {
  display: flex; gap: 18px; flex-wrap: wrap;
  justify-content: center; margin-top: 4px;
}
.subtitle1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
}
.subtitle2 {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.25;
}
.subtitle3 {
    font-size: 30px;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 600;
    line-height: 1.05;
}
.subtitle4 {
	font-size: 30px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 700;
	line-height: 1.15;
}
.subtitle5 {
	font-size: 24px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 400;
	line-height: 1.333;
	letter-spacing: 0px;
}
.courses { padding: 72px 0 60px; }
.courses-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.courses-header h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 60px);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  background: var(--red);
  border-radius: 23px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.course-card-img {
  width: 100%; aspect-ratio: 10 / 10;
  object-fit: cover; display: block;
}
.course-card-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  gap: 10px; flex: 1;
  font-family: 'Darker Grotesque', sans-serif
}
.course-card-body h3 {
  font-weight: 800; font-size: 30px;
  color: var(--white); line-height: 1.25;
}
.course-card-body p {
  font-size: 24px; font-weight: 400;
  color: var(--white); line-height: 1.45; flex: 1;
}
.learning { padding: 60px 0 40px; }
.learning-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.learning-text h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 10px;
}
.learning-text h2 strong { font-weight: 700; }
.learning-text p {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500; line-height: 1.55;
  margin-bottom: 28px;
}
.photos {
  position: relative;
  height: 500px;
}
.polaroid {
  position: absolute;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 6px 28px rgba(0,0,0,.18);
  overflow: hidden;
}
.polaroid img {
  display: block; width: 100%;
  aspect-ratio: 4/3; object-fit: cover;
}
.about {
  position: relative;
  margin: 24px 0;
  overflow: hidden;
}
.about-bg {
  position: absolute; inset: 0;
  background: var(--yellow);
}
.about-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 60px; align-items: center;
  padding: 60px 44px;
  max-width: 1512px; margin: 0 auto;
}
.about-img {
  border-radius: 15px;
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-text h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 48px);
  margin-bottom: 18px;
}
.about-text p {
    font-size: clamp(20px, 1.5vw, 25px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 18px;
}
.steps { padding: 72px 0 60px; }
.steps-header { margin-bottom: 32px; }
.steps-header h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 42px);
  margin-bottom: 10px;
}
.steps-header p {
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 500;
}
.steps-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.step-panel {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center;
  justify-content: center;
}
.step-panel-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.step-panel-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--dark-overlay);
}
.step-panel-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  padding: 36px; text-align: center;
}
.step-panel-content h3 {
  font-family: 'Darker Grotesque', sans-serif
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 42px);
  color: var(--white); line-height: 1.2;
  max-width: 300px;
}
.nos-wrap {
  padding: 24px 40px 0;
  box-sizing: border-box;
  width: 100%;
}
.nos-top {
	margin-left: 1px;
	width: 100%;
	max-width: 1461px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-self: center;
	color: #fff;
	background: linear-gradient(rgba(43, 19, 0, 0.5), rgba(43, 19, 0, 0.5)) top left / auto auto no-repeat, url(../img/nosotros.jpg) center / cover no-repeat;
	padding: 56px 76px;
	border-radius: 15px;
}
.nos-top-c01 {
	margin-left: 1px;
	width: 100%;
	max-width: 1461px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-self: center;
	color: #fff;
	background: linear-gradient(rgba(43, 19, 0, 0.5), rgba(43, 19, 0, 0.5)) top left / auto auto no-repeat, url(../img/cur001.jpg) center / cover no-repeat;
	padding: 56px 76px;
	border-radius: 15px;
}
.nos-top-con {
	margin-left: 1px;
	width: 100%;
	max-width: 1461px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-self: center;
	color: #fff;
	background: linear-gradient(rgba(43, 19, 0, 0.5), rgba(43, 19, 0, 0.5)) top left / auto auto no-repeat, url(../img/contacto.jpg) center / cover no-repeat;
	padding: 56px 76px;
	border-radius: 15px;
}
.nos-top-subt-1 {
	font-family: Helvetica, Arial, sans-serif;
	min-height: 50px;
	flex-shrink: 0;
	font-size: clamp(30px, 4.5vw, 52px);
	font-weight: 700;
	line-height: 1;
}
.nos-top-subt-2 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: clamp(24px, 4vw, 30px);
	font-weight: 600;
	line-height: 0.667;
}
.comoen {
	margin: 61px -85px 0 26px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 50px;
	color: #000;
	font-weight: 700;
}
.comoen-left {
	margin-top: 5px;
	width: 583px;
	display: flex;
	flex-direction: column;
	gap: 26px;
	flex-shrink: 0;
	text-align: left;
}
.comoen-right {
	position: relative;
	display: flex;
    justify-content: center;
	max-width: 1280px;
	flex-grow: 1;
}
.subtitle-como-ens {
	min-height: 55px;
	flex-shrink: 0;
	font-size: 48px;
	line-height: normal;
}
.subtitle-como-ens2 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
}
.btn-primary-ens {
	width: 208px;
	justify-content: center;
	align-self: start;
	color: #fff;
	font-size: 16px;
	font-family: 'Darker Grotesque', sans-serif
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0px;
	text-align: center;
	background-color: #d20900;
}
@container body (width < 570px) {
	.comoen {
		flex-direction: column;
		align-items: center;
		gap: 100px;
	}
	.comoen > * {
		margin-top: unset !important;
		text-align: center;
	}
	.comoen .btn-primary1 {
		align-self: center;
	}
	.comoen > .comoen-left {
		width: 100%;
		max-width: 583px;
	}
	.comoen > .col-left > * {
		text-align: unset;
	}
	.comoen > .group1 {
		width: 100%;
	}
}
.polaroid-img1 {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .comoen {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .comoen-left,
    .comoen-right {
        width: 100%;
    }

    .polaroid-img1 {
        max-width: 100%;
    }
}
.quevas {
	container: quevas / inline-size;
	position: absolute; z-index: 3; top: 0; left: 0; right: 0; 
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #ffee89;
	font-family: 'Darker Grotesque', sans-serif
	padding-left: 32px;
	padding-right: 103px;
}
.quevas-rect {
	position: absolute; top: 60px; left: 0; right: 0; 
	height: 523px;
	background-color: #004da2;
}
.quevas-row3 {
	position: relative; z-index: 1;
	width: 100%;
	max-width: 1377px;
	display: flex;
	align-items: center;
	gap: 64px;
}
.quevas-right {
	width: 475px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	text-align: left;
	padding: 35px 0;
}
.quevas-img {
	min-width: 0;
	flex-grow: 1;
	border-radius: 15px;
}
.quevas-row {
	position: relative;
	margin-top: 50px;
	min-height: 626px;
	flex-shrink: 0;
	color: #fff;
	font-size: 300px;
	font-family: 'Darker Grotesque', sans-serif
	font-weight: 700;
	line-height: normal;
}
.btn-text-quevas {
	width: 148px;
	display: flex;
	justify-content: center;
	align-self: start;
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.333;
	letter-spacing: 0px;
	text-align: center;
	padding: 10px 24px;
	border-radius: 8px;
}
.btn-primary-quevas {
	margin-top: -28px;
	color: #d20900;
	background-color: #ffee89;
}
.func-row {
	margin-left: 25px; margin-top: 25px;
	width: 100%;
	max-width: 1331px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	align-self: center;
	color: #000;
	line-height: normal;
}
.func-group {
	position: relative;
	margin: 0px 0px 0px 0px;
	width: 575px; height: 365px;
	flex-shrink: 0;
}
.func-right {
	margin: 10px 10px;
	width: 650px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	flex-shrink: 0;
	text-align: left;
}
.func-subtitle {
	font-size: 50px;
	font-weight: 400;
}
.func-subtitle2 {
	min-height: 170px;
	flex-shrink: 0;
	font-size: 25px;
	font-weight: 500;
}
.func-primary {
	color: #ffee89;
	background-color: #d20900;
}
.opinion {
	container: col3 / inline-size;
	margin: 125px 125px 0 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}
.opinion-top {
	margin-right: auto;
	width: 90%;
	max-width: 1468px;
	display: flex;
	align-items: center;
	gap: 1067px;
	color: #000;
	font-size: 60px;
	font-weight: 700;
	line-height: normal;
}
.subtitle-opiniones {
	min-height: 77px;
	flex-grow: 1;
	text-align: left;
}
.opinion-row2 {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	align-self: stretch;
}
.card {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 880px;
	min-height: 388px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
	flex-grow: 1;
	text-align: left;
	background-color: #fff;
	padding: 0 48px;
	border-radius: 16px;
}
.card-subtitle {
	color: #d20900;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.167;
	letter-spacing: 0.36px;
}
.card-text-opinion {
	color: var(--gray);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.79px;
}
.card-row-bottom {
	display: flex;
	align-items: center;
	gap: 12px;
	align-self: start;
	color: var(--dark);
	font-size: 17.94px;
	font-family: 'Darker Grotesque', sans-serif
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.71px;
}
.card-img {
	width: 118px;
	flex-shrink: 0;
}
.card-text {
	text-align: left;
}
/* -- Opiniones-Bak -- */
.opinions { padding: 72px 0 60px; }
.opinions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.opinion-card {
  background: var(--red);
  border-radius: 23px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.opinion-card-img {
  width: 100%; aspect-ratio: 10 / 10;
  object-fit: cover; display: block;
}
.opinion-card-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  gap: 10px; flex: 1;
}
.opinion-card-body h3 {
  font-family: 'Darker Grotesque', sans-serif
  font-weight: 800; font-size: 24px;
  color: var(--white); line-height: 1.25;
}
.opinion-card-body p {
  font-size: 17px; font-weight: 400;
  color: var(--white); line-height: 1.45; flex: 1;
}
.pre-top {
	margin-left: 1px;
	width: 100%;
	max-width: 1461px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-self: center;
	color: #fff;
	background: linear-gradient(rgba(43, 19, 0, 0.5), rgba(43, 19, 0, 0.5)) top left / auto auto no-repeat, url(../img/precios.jpg) center / cover no-repeat;
	padding: 56px 76px;
	border-radius: 15px;
}
.pre-top-subt-1 {
	font-family: Helvetica, Arial, sans-serif;
	min-height: 50px;
	flex-shrink: 0;
	font-size: clamp(30px, 4.5vw, 52px);
	font-weight: 700;
	line-height: 1;
}
.pre-top-subt-2 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: clamp(24px, 4vw, 30px);
	font-weight: 600;
	line-height: 0.667;
}
.precios-sect {
    margin-top: 58px;
    width: 100%;
    max-width: 1452px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    align-content: flex-start;
    gap: 28px;
    row-gap: 34px;
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    padding: 0 3px;
}
.subtitle-precios {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	min-height: 69px;
	flex-shrink: 0;
	color: #000;
	align-self: center;
}
.tabs {
	position: relative;
	min-height: 48px;
	flex-shrink: 0;
	font-size: 18px;
}
.tabs-btn-yearly {
	position: absolute; top: 0; left: 189px; 
	width: 258px;
	display: flex;
	justify-content: center;
	color: #000;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.83px;
	text-align: center;
	background-color: #e2e2e2;
	padding: 14px 24px;
	border-radius: 30px;
}
.tabs-symbol {
	position: absolute; top: 0; left: 0; 
	filter: blur(2px);
	width: calc(100% - 0px); height: 48px;
	max-width: 447px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 22px;
}
.tabs-btn-monthly {
	position: absolute; top: 0; left: 0; 
	width: 230px;
	min-height: 48px;
	display: flex;
	justify-content: center;
	color: var(--white);
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.83px;
	text-align: center;
	background-color: #d20900;
	padding: 14px 24px;
	border-radius: 22px;
}
.pre-card {
    display: flex;
    flex-direction: column;
    padding: 57px 52px 0 52px;
    border: 1px solid #d20900;
    border-radius: 30px;
}
.pre-card-left {
	width:635px;
	gap: 17px;
	flex-shrink: 0;
	text-align: left;
	padding-top: 65px;
	padding-bottom: 45px;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
}
.pre-card-right {
	width: 635px;
	gap: 17px;
	flex-shrink: 0;
	text-align: left;
	padding-top: 65px;
	padding-bottom: 45px;
	font-size: 36px;
    font-weight: 700;
    line-height: normal;
}
.pre-card-left-col-top {
	container: pre-card-left-col-top / inline-size;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.pre-column-b {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.pre-card-left-subtitle {
	min-height: 42px;
	flex-shrink: 0;
}
.pre-card-subtitle {
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
}
.pre-line {
	height: 0;
	flex-shrink: 0;
	border-top: 1px solid #d20900;
}
.pre-card-left-line {
	margin-right: 4px;
}
.pre-card-left-row {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: 'Darker Grotesque', sans-serif;
	padding: 7px 197px 7px 0;
}
.pre-card-left-subtitle {
	width: 127%;
	min-height: 48px;
	flex-grow: 1;
	text-align: left;
}
.pre-card-left-subtitle-periodo {
	width: 73%;
	min-height: 25px;
	flex-grow: 1;
	text-align: left;
}
.pre-card-left-line-bottom {
	margin-right: 4px;
}
.pre-card-left-text-bottom {
	min-height: 16px;
	flex-shrink: 0;
	text-align: center;
}
.pre-card-subtitle-japones {
	min-height: 45px;
	flex-shrink: 0;
}
.pre-card-col-bottom {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 25px;
	color: #ffffff;
}
.pre-card-btn-agregar-al1 {
	margin-top: 30px;
}
.pre-card-row-bottom {
	margin-top: 1px;
	display: flex;
	align-items: center;
	gap: 13px;
	color: #d20900;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.333;
	padding: 0 196px;
}

.pre-card-img {
	width: 14px;
	flex-shrink: 0;
}

.pre-card-text {
	min-height: 16px;
	flex-grow: 1;
	text-align: left;
}

.pre-card3 {
	container: card3 / inline-size;
	width: 722px;
	flex-shrink: 0;
	text-align: left;
	padding-bottom: 85px;
}

.pre-card-subtitle-symbol {
	min-height: 44px;
	flex-shrink: 0;
	font-size: 38px;
	font-weight: 700;
	line-height: normal;
}

.pre-card-line2 {
	margin-top: 25px;
	width: 100%;
	max-width: 596px;
	align-self: start;
}
.pre-card-row {
	margin-top: 25px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: 'Darker Grotesque', sans-serif;
	padding: 9px 97px 9px 0;
}
.pre-card-subtitle {
	width: 126%;
	min-height: 41px;
	flex-grow: 1;
	text-align: left;
}

.pre-card-subtitle-al-mes {
	width: 74%;
	min-height: 21px;
	flex-grow: 1;
	text-align: left;
}

.pre-card-line3 {
	margin-top: 25px;
	width: 100%;
	max-width: 596px;
	align-self: start;
}
.pre-btn-agregar-al {
	display: flex;
	justify-content: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0px;
	text-align: center;
	background-color: #ffee89;
	padding: 23px 33px 22px 32px;
	border-radius: 20px;
}
.pre-card-subtitle {
	width: 126%;
	min-height: 41px;
	flex-grow: 1;
	text-align: left;
}
.pre-card-btn-agregar-al1 {
	align-self: stretch;
	color: #000;
	font-family: Helvetica, Arial, sans-serif;
}
.pre-column-subtitle-clases {
	min-height: 18px;
	flex-shrink: 0;
}
.text-red {
	color: #d20900;
	font-size: 15px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 700;
	line-height: 1.333;
	letter-spacing: 0px;
}
.pre-column-subtitle-dias {
	min-height: 40px;
	flex-shrink: 0;
}
.pre-column-a {
	display: flex;
	flex-direction: column;
	gap: 22px;
	font-size: 30px;
}
.pre-row-top {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 90px;
	background: linear-gradient(rgba(210, 9, 0, 0.69), rgba(210, 9, 0, 0.69)) top left / auto auto no-repeat, url(../img/pre-pro.png) center / cover no-repeat;
	padding: 65px 65px 65px 25px;
	border-radius: 28px;
	margin-left: 65px;
}
.pre-row-bottom {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 90px;
	background: linear-gradient(rgba(9, 120, 0, 0.69), rgba(9, 120, 0, 0.69)) top left / auto auto no-repeat, url(../img/pre-nin.png) center / cover no-repeat;
	padding: 65px 65px 65px 25px;
	border-radius: 28px;
	margin-left: 65px;
}
.pre-col-left {
	margin-left: 25px;
	width: 500px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
	flex-shrink: 0;
	text-align: left;
}
.pre-col-int {
	container: col10 / inline-size;
	width: 100%;
	max-width: 418px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	color: #fff;
	font-family: 'Darker Grotesque', sans-serif;
	padding-bottom: 8px;
}
.prec-sep {
    margin: 35px auto 0 auto;
    width: 90%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    font-family: 'Darker Grotesque', sans-serif;
    line-height: normal;
    letter-spacing: 0.83px;
    text-align: center;
}
.detcur {
	container: detcur / inline-size;
	position: relative;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	padding: 0 32px;
}
.detcurrect {
	position: absolute; top: 60px; left: 0; right: 0; 
	height: 523px;
	background-color: #d20900;
}
.detcurrow {
	position: relative; z-index: 1;
	width: 100%;
	max-width: 1448px;
	display: flex;
	align-items: center;
	gap: 64px;
}
.detcurpolaroid {
	position: relative;
	width: 527px; height: 632px;
	flex-shrink: 0;
   background: url(../img/polaroidcursos.jpg) center / cover no-repeat;
}
.detcutpolaroid2 {
	position: absolute; top: 22px; left: 23px; right: 23px; 
	transform-origin: 50% 50%;
	width: calc(100% - 23px - 23px);
}
.detcurcol-right {
	width: 675px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	text-align: left;
	padding: 35px 0;
}
.detcur-subtitle {
	min-height: 57px;
	flex-shrink: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: normal;
}
.detcur-text {
	margin-top: 21px;
	min-height: 207px;
	flex-shrink: 0;
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
}
.btn-primary {
	margin-top: 18px;
	justify-content: center;
	align-self: start;
	color: #d20900;
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.333;
	letter-spacing: 0px;
	text-align: center;
	background-color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}
.detcur {
		padding-inline: var(--margin-sm);
}
@container detcur (width < 1064px) {
	.detcurrow {
		flex-direction: column;
		align-items: center;
		gap: 82px;
	}
	.detcurrow > * {
		margin-top: unset !important;
		text-align: center;
	}
	.detcurrow > .detcurpolaroid {
		width: 100%;
		max-width: 527px;
	}
	.detcurrow .btn-primary {
		align-self: center;
	}
	.detcurrow > .detcurcol-right {
		width: 100%;
		max-width: 475px;
	}
	.detcurrow > .detcurcol-right > * {
		text-align: unset;
	}
}
.no-underline {
    text-decoration: none;
}
.cont-col {
    width: 100%;
    max-width: 563px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cont-text {
    color: #000;
    font-size: 20px;
    font-family: 'Darker Grotesque';
    font-weight: 400;
    line-height: 1;
}
.cont-col2 {
    display: flex;
    align-items: center;
    gap: 354px;
    color: #b2b2b2;
    font-size: 14px;
    font-family: 'Darker Grotesque';
    font-weight: 300;
    line-height: normal;
    background-color: #f7f7f7;
    padding: 11px 10px 11px 16px;
}