@font-face {
    font-family: 'Braind Street';
    src: url('fonts/BraindStreet-BoldItalic.woff2') format('woff2'),
        url('fonts/BraindStreet-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'SF Armenian';
	src: url('fonts/SFArmenian-Regular.woff2') format('woff2'),
		url('fonts/SFArmenian-Regular.woff') format('woff');
		font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}


* {
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'SF Armenian';
	font-weight: 300;
	background-color: #f4f5f7;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-section {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	background:linear-gradient(180deg,rgba(227, 240, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.logo {
	position: absolute;
	top: 40px;
	left: 16.5%;
	z-index: 10;
}

.hero-text {
	position: absolute;
	bottom: 50px;
	z-index: 10;
}

.hero-text img {
	width: 426px
}

.hero-backgrounds {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: url(images/hero_bg.svg) no-repeat top left;
    background-size: cover;
	display:flex; align-items:end;
	justify-content:center
}

.hero-bg {
	position: absolute;
}



.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hands-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	height: 60vh;
	margin-top: 15vh;
}

.hero-text {
	position: absolute;
	bottom: 110px;
	z-index: 3;
}

.scroll {
	position: absolute;
	bottom: 45px;
	z-index: 3;
	transition: all 0.3s
}
.scroll img {width:24px}
.scroll:hover {
	bottom: 55px
}

.blue-section {
	background: linear-gradient(0deg, #337CFF, #0344B9);
	color: #fff;
	padding: 150px 0;
	position: relative
}

.right-text h3 {
	font-family: "Braind Street";
	font-size: 48px;
	margin: 0;
	line-height: 48px
}

.flex-container {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	align-items: flex-start;
	align-items: center
}

.left-text img {
	width: 390px
}

.left-text h2 {
	font-size: 3rem;
	margin: 0;
	line-height: 1.2;
}

.left-text span {
	font-family: cursive;
	font-size: 4rem;
	color: #a4c2f4;
}

.right-text {
	max-width: 600px;
	font-size: 20px;
	line-height: 1.6;
}

.btn-more {
	margin-top: 20px;
	background: #fff;
	color: #0344B9;
	padding: 10px 48px 10px 24px;
	border: none;
	font-weight: bold;
	cursor: pointer;
	border-radius: 8px;
	font-size: 26px;
	font-family: "Braind Street";
	position: relative;
	transition: all 0.3s;
	display: inline-block;
	text-decoration: none;
	line-height: 1.1
}

.btn-more:after {
	content: "";
	background: url("images/b_arrow.svg");
	position: absolute;
	width: 24px;
	height: 24px;
	right: 20px;
	transition: all 0.3s;
	top:12px
}

.btn-more:hover {
	background: #cddaf1
}

.btn-more:hover:after {
	transform: rotate(45deg);
}

.photo-section {
	position: relative;
	width: 100%;
	height: 800px;
	background: url('images/3.jpg') no-repeat center;
	background-size: cover
}

.photo-section .container {
	position: relative;
	height: 100%;
	width:min(100% - 160px, 1280px)!important
}

.photo-section .container img {
	position: absolute;
	right: 0;
	bottom: 60px
}

.slider-section {
	padding: 0;
	justify-content: center;
	position: relative;
	z-index: 10;
	background:
		url('images/arr_left.svg') left center no-repeat,
		url('images/arr_right.svg') right center no-repeat,
		linear-gradient(0deg, #FF692D, #F6001C);
	height: 480px;

	color: #fff;
	text-align: center;
	overflow: hidden;
	display:flex;
	justify-content:center;
	align-items:center

}

.slider-content {
	position: relative;
	margin: 0 40px;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	pointer-events: none;
}

.slide.active {
	opacity: 1;
	pointer-events: auto;
}

.slider-prev,
.slider-next {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: #fff;
	width: 50px;
	height: 50px;
	font-size: 20px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 20;
}

.slider-prev:hover,
.slider-next:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.slider-container {
	position: relative;
	width: 840px;
	margin: 0 auto
}

.slides-container {
	max-width: 720px;
	margin: 0 auto
}

.slider-content h3 {
	font-size: 60px;
	margin-bottom: 20px;
	text-transform: uppercase;
	margin: 0;
	font-family: "Braind Street"
}

.slide-text {
	display: none;
	font-size: 22px;
	line-height: 1.4;
}

.slide-text.active {
	display: block;
}

.slider-content p {
	font-size: 24px;
	line-height: 1.4;
	margin: 0
}

.slider-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 3;
	pointer-events: none;
}

.slider-arrow {
	pointer-events: auto;
	background: none;
	border: none;
	cursor: pointer;
	transition: 0.3s;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	transition: all 0.3s
}


.slider-arrow.prev-slide {
	background: url('images/sla.svg') no-repeat center
}

.slider-arrow.next-slide {
	background: url('images/sra.svg') no-repeat center
}

.slider-arrow.prev-slide:hover {
	background: url('images/sla.svg') no-repeat center, rgba(255, 255, 255, 0.15)
}

.slider-arrow.next-slide:hover {
	background: url('images/sra.svg') no-repeat center, rgba(255, 255, 255, 0.15)
}

.slider-dots-container {
	position: absolute;
	bottom: 30px;
	transform: translateX(-50%);
	left: 50%;
}

.slider-dots {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	position: relative;
	width: max-content;
	margin-left: auto;
	margin-right: auto;
}

.dot {
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 12px;
	cursor: pointer;

	transition: width 0.4s cubic-bezier(0.25, 1, 0.3, 1), background-color 0.4s;
}

.dot.active {
	width: 24px;
	background-color: transparent;
}

.active-indicator {
	position: absolute;
	height: 8px;
	width: 24px;
	background-color: #fff;
	border-radius: 12px;
	top: 50%;
	left: 0;

	transform: translateY(-50%) translateX(0);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
	pointer-events: none;
	z-index: 2;
}

.blue-pattern-container {
	padding: 60px 80px;
	position: relative;
	height: 540px;
	background: #F9F6F1
}

.blue-pattern-section {
	background: url('images/coming_soon.svg') no-repeat center;
	text-align: center;
	height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	border-radius: 33px
}

footer {
	background: #1C1C1C;
	color: #fff;
	position: relative;
	
}

footer .content {
	max-width: 1600px;
	margin: 0 auto;
	padding: 30px 80px
}

.top_footer {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #656565;
	padding-bottom: 65px
}

.socials {
	display: flex;
	gap: 8px
}

.socials a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.3s
}

.socials a:hover {
	background: rgba(255, 255, 255, 0.15)
}

.socials a img {
	width: 24px;
	height: 24px
}

.lng_switcher {
	width: 60px !important
}

.lng_switcher img.lng {
	width: 30px;
	height: 30px
}


.lng_switcher.active img:last-child {
	transform: rotate(180deg);
}

.copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
	font-size: 20px
}

.copyright_text {
	display: flex;
	align-items: center;
	gap: 10px
}

.log_lng .lng_switcher {
	display: none
}


@media (max-width:1440px) {
	.logo {
		left: 6%
	}

	.slider-container {
		width: 62%
	}

	.slides-container {
		width: 95%
	}

	.blue-pattern-section {
		background: url('images/comming_lt.svg') no-repeat center, #F9F6F1;
	}

	footer .content {
		max-width: 1440px;
	}
}

@media (min-width:1200px) and (max-width:1439px) {

	.slider-section {
		background: url('images/arr_left.svg') -50px center no-repeat,
			url('images/arr_right.svg') right center no-repeat,
			linear-gradient(0deg, #FF692D, #F6001C)
	}

}

@media (min-width:1025px) and (max-width:1199px) {

	.slider-section {
		background: url('images/arr_left.svg') -80px center no-repeat,
			url('images/arr_right.svg') right center no-repeat,
			linear-gradient(0deg, #FF692D, #F6001C)
	}
}

@media (max-width:1024px) {
	.blue-section {
		padding: 120px 0;
	}

	.flex-container {
		flex-wrap: wrap;
		justify-content: center;
	}

	.right-text {
		text-align: center
	}

	.right-text h3,
	.right-text p {
		text-align: left
	}

	.photo-section {
		background-size: cover;
	}


	.slider-section {
		background: url('images/arr_left.svg') -80px center no-repeat,
			url('images/arr_right.svg') right center no-repeat,
			linear-gradient(0deg, #FF692D, #F6001C)
	}

	.slider-container {
		width: 760px
	}

	.slides-container {
		width: 648px
	}

	.blue-pattern-container {
		height: 460px
	}

	.blue-pattern-section {
		background: url('images/comming_ipad.svg') no-repeat center, #F9F6F1;
		border-radius:20px; background-size:cover

	}

	footer .content {
		max-width: 924px;
	}
}

@media (max-width:1023px) and (min-width:769px) {
	.slider-section {
		padding: 130px 0
	}

	.slider-container {
		width: 700px
	}

	.slides-container {
		width: 600px
	}

	.slider-section {
		height: 450px;
		background:
			url('images/mob_bg.svg') right center no-repeat,
			linear-gradient(0deg, #FF692D, #F6001C)
	}

}

@media (max-width:768px) and (min-width:390px) {
	.logo {
		left: 10%;
	}

	.flex-container {
		flex-wrap: wrap;
		justify-content: center;
	}

	.right-text {
		text-align: center
	}

	.right-text h3,
	.right-text p {
		text-align: left
	}

	.left-text img {
		width: 390px
	}

	.photo-section {
		height: 848px;
		background-size: cover;
	}

	.slider-section {
		height: 450px;
		background:
			url('images/mob_bg.svg') 114% center no-repeat,
			linear-gradient(0deg, #FF692D, #F6001C)
	}

}

@media (max-width:767px) {
	.logo {
		left: 20px;
		top: 60px
	}

	.hero-text img {
		width: 245px
	}

	.left-text img {
		width: 244px
	}

	.right-text h3 {
		font-size: 32px
	}

	.right-text p {
		font-size: 16px
	}

	.photo-section {
		height: 848px;
		background-size: cover;
	}

	.photo-section .container {
		text-align: center
	}

	.photo-section .container img {
		margin-top: 80px;
	}

	.slider-section {
		height: 450px;
		background:
			url('images/mob_bg.svg') 114% center no-repeat,
			linear-gradient(0deg, #FF692D, #F6001C)
	}
.blue-pattern-container {padding:60px 20px}
	.slider-content h3 {
		font-size: 32px
	}

	.slider-content p {
		font-size: 16px;
		line-height: 1.2;
		text-align: left
	}

	.slider-container {
		width: 350px
	}

	.slides-container {
		width: 278px
	}

	.slider-dots-container {
		bottom: 90px
	}

	.blue-pattern-container {
		height: 524px;
	}

	.blue-pattern-section {
		background: url('images/mob_banner.svg') no-repeat center, #F9F6F1;
		border-radius:20px; background-size:cover
	}

	.copyright {
		flex-wrap: wrap;
		font-size: 12px;
		justify-content: center;
		gap: 10px;
		padding-bottom: 0
	}

	.top_footer {
		gap: 24px;
		justify-content: center;
		padding-bottom: 12px
	}

	.log_lng {
		display: flex;
		justify-content: center;
	}

	.log_lng .lng_switcher {
		display: flex;
		align-items: center
	}

	.log_lng a img {
		width: 24px;
		height: 24px
	}

	.socials .lng_switcher {
		display: none
	}
}

.program-page {
	background: #F9F6F1;
	color: #101010;
}

.program-page a {
	color: inherit;
}

.program-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(249, 246, 241, 0.94);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.program-header__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 28px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.program-header__logo img {
	display: block;
	width: 178px;
	height: auto;
}

.program-nav,
.program-footer__nav {
	display: flex;
	align-items: center;
	gap: 36px;
	font-size: 18px;
	line-height: 1.2;
}

.program-nav a,
.program-footer__nav a {
	text-decoration: none;
	transition: color 0.25s;
}

.program-nav a:hover,
.program-nav a.active,
.program-footer__nav a:hover {
	color: #0344B9;
}

.program-hero {
	min-height: 820px;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 52% 45%, rgba(51, 124, 255, 0.16), transparent 28%),
		linear-gradient(135deg, rgba(246, 0, 28, 0.06), transparent 34%),
		#F9F6F1;
}



.program-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1320px;
	min-height: 820px;
	margin: 0 auto;
	padding: 96px 40px 90px;
}

.program-hero__title {
	position: absolute;
	top: 315px;
	left: 50%;
	transform: translateX(-50%);
	width: min(760px, calc(100% - 80px));
	text-align: center;
	text-transform: uppercase;
	color: #0344B9;
}

.program-hero__title span,
.program-hero__title strong {
	display: block;
	font-family: "Braind Street";
	font-weight: bold;
	font-style: normal;
}

.program-hero__title span {
	font-size: 92px;
	line-height: 0.95;
}

.program-hero__title strong {
	margin-top: 16px;
	font-size: 58px;
	line-height: 1.05;
	color: #F6001C;
}

.program-hero__cta {
	position: absolute;
	left: 50%;
	bottom: 118px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	min-height: 58px;
	padding: 15px 58px 13px 28px;
	background: #0344B9;
	color: #fff !important;
	border-radius: 8px;
	text-decoration: none;
	font-family: "Braind Street";
	font-size: 26px;
	line-height: 1;
	transition: background 0.25s, transform 0.25s;
}

.program-hero__cta:after {
	content: "";
	position: absolute;
	right: 24px;
	width: 24px;
	height: 24px;
	background: url("images/Scroll.svg") no-repeat center / contain;
	transform: rotate(-90deg);
	filter: brightness(0) invert(1);
}

.program-hero__cta:hover {
	background: #F6001C;
	transform: translateX(-50%) translateY(-3px);
}

.program-hero__badge {
	position: absolute;
	max-width: 320px;
	padding: 18px 22px 16px;
	background: #fff;
	border: 1px solid rgba(3, 68, 185, 0.12);
	border-radius: 8px;
	box-shadow: 0 22px 60px rgba(23, 39, 76, 0.10);
	color: #0344B9;
	font-size: 22px;
	line-height: 1.18;
}

.program-hero__badge:before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #F6001C;
	top: 18px;
	left: -6px;
}
.members {position:relative}
.members {position:relative; overflow:hidden}

.marquee_line {
	--marquee-duration: 26s;
	background:#63C4FF;
	height:66px;
	overflow:hidden;
	display:flex;
	align-items:center;
}

.marquee_left {
	background:#0344B9;
}

.marquee_inner {
	display:flex;
	width:max-content;
	animation-duration: var(--marquee-duration);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.marquee_right .marquee_inner {
	animation-name: marqueeLeftToRight;
}

.marquee_left .marquee_inner {
	animation-name: marqueeRightToLeft;
}

.marquee_group {
	display:flex;
	align-items:center;
	gap:32px;
	padding:0 16px;
	flex-shrink:0;
}

.marquee_line img {
	height:18px;
	display:block;
}

@keyframes marqueeRightToLeft {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes marqueeLeftToRight {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}
.badge-top-left {
	top: 142px;
	left: 72px;
}

.badge-top-right {
	top: 150px;
	right: 116px;
}

.badge-right {
	top: 330px;
	right: 44px;
}

.badge-bottom-left {
	left: 120px;
	bottom: 225px;
}

.badge-bottom-right {
	right: 150px;
	bottom: 212px;
}

.badge-left {
	top: 360px;
	left: 24px;
}

.badge-wide {
	left: 308px;
	top: 206px;
	max-width: 420px;
	color: #1C1C1C;
}

.badge-yerevan {
	right: 284px;
	bottom: 88px;
	max-width: 360px;
	color: #1C1C1C;
}

.badge-jobs {
	left: 50%;
	bottom: 34px;
	transform: translateX(-50%);
	color: #F6001C;
}

.program-shell {
	position: relative;
	max-width: 1320px;
	margin: 0 auto;
	padding: 86px 40px 120px;
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 58px;
}

.program-sidebar {
	position: sticky;
	top: 108px;
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 14px;
	background: #fff;
	border: 1px solid rgba(28, 28, 28, 0.08);
	border-radius: 8px;
	box-shadow: 0 18px 50px rgba(23, 39, 76, 0.08);
}

.program-sidebar a {
	display: block;
	padding: 12px 14px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.15;
	color: #343434;
	transition: background 0.25s, color 0.25s;
}

.program-sidebar a:hover,
.program-sidebar a.active {
	background: #0344B9;
	color: #fff;
}

.program-content {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.program-section {
	scroll-margin-top: 112px;
	padding: 52px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid rgba(28, 28, 28, 0.08);
	box-shadow: 0 24px 70px rgba(23, 39, 76, 0.08);
}

.program-section:nth-child(3n+2) {
	background: linear-gradient(0deg, #337CFF, #0344B9);
	color: #fff;
}

.program-section:nth-child(3n) {
	background: linear-gradient(0deg, #FF692D, #F6001C);
	color: #fff;
}

.program-section__intro {
	position: relative;
	padding-left: 96px;
	margin-bottom: 34px;
}

.program-section__number {
	position: absolute;
	left: 0;
	top: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #F9F6F1;
	color: #0344B9;
	font-family: "Braind Street";
	font-size: 28px;
	line-height: 1;
}

.program-section:nth-child(3n+2) .program-section__number,
.program-section:nth-child(3n) .program-section__number {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.program-section h2 {
	margin: 0;
	font-family: "Braind Street";
	font-size: 54px;
	line-height: 1;
	text-transform: uppercase;
}

.program-section__intro p {
	max-width: 820px;
	margin: 18px 0 0;
	font-size: 21px;
	line-height: 1.5;
}

.program-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.program-points article {
	min-height: 190px;
	padding: 24px;
	border: 1px solid rgba(28, 28, 28, 0.08);
	border-radius: 8px;
	background: #F9F6F1;
}

.program-section:nth-child(3n+2) .program-points article,
.program-section:nth-child(3n) .program-points article {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
}

.program-points h3 {
	margin: 0 0 12px;
	font-family: "Braind Street";
	font-size: 27px;
	line-height: 1.05;
}

.program-points p {
	margin: 0;
	font-size: 18px;
	line-height: 1.42;
}

.program-footer .top_footer {
	align-items: flex-start;
	gap: 24px;
}

.program-footer .copyright {
	gap: 24px;
}

@media (max-width: 1180px) {
	.program-hero__inner {
		min-height: 780px;
	}

	.program-hero__title span {
		font-size: 74px;
	}

	.program-hero__title strong {
		font-size: 45px;
	}

	.program-hero__badge {
		font-size: 18px;
		max-width: 280px;
	}

	.badge-wide {
		left: 250px;
		max-width: 350px;
	}

	.program-shell {
		grid-template-columns: 1fr;
		padding-top: 56px;
	}

	.program-sidebar {
		position: relative;
		top: auto;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.program-header__inner {
		padding: 22px 24px;
		flex-wrap: wrap;
		gap: 22px;
	}

	.program-nav,
	.program-footer__nav {
		width: 100%;
		justify-content: space-between;
		gap: 14px;
		font-size: 15px;
	}

	.program-hero,
	.program-hero__inner {
		min-height: 760px;
	}

	.program-hero__inner {
		padding: 58px 24px 72px;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.program-hero:before,
	.program-hero:after {
		display: none;
	}

	.program-hero__title {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		order: -1;
		width: 100%;
		margin: 38px 0 18px;
	}

	.program-hero__title span {
		font-size: 54px;
	}

	.program-hero__title strong {
		font-size: 34px;
	}

	.program-hero__badge {
		position: relative;
		inset: auto;
		transform: none;
		max-width: none;
		width: 100%;
		padding: 13px 18px 12px;
		font-size: 16px;
	}

	.program-hero__cta {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
		margin-top: 18px;
		justify-content: center;
		text-align: center;
		font-size: 22px;
	}

	.program-hero__cta:hover {
		transform: translateY(-3px);
	}

	.program-shell {
		padding: 44px 24px 84px;
	}

	.program-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.program-section {
		padding: 34px 24px;
	}

	.program-section__intro {
		padding-left: 0;
	}

	.program-section__number {
		position: static;
		margin-bottom: 18px;
	}

	.program-section h2 {
		font-size: 36px;
	}

	.program-section__intro p {
		font-size: 17px;
	}

	.program-points {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.program-header__logo img {
		width: 150px;
	}

	.program-nav,
	.program-footer__nav {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.program-hero,
	.program-hero__inner {
		min-height: 0;
	}

	.program-hero__title span {
		font-size: 38px;
	}

	.program-hero__title strong {
		font-size: 25px;
	}

	.program-hero__cta {
		min-height: 52px;
		padding-left: 18px;
		padding-right: 48px;
		font-size: 18px;
	}

	.program-sidebar {
		grid-template-columns: 1fr;
	}

	.program-section h2 {
		font-size: 30px;
	}

	.program-points article {
		min-height: 0;
		padding: 20px;
	}

	.program-points h3 {
		font-size: 23px;
	}

	.program-points p {
		font-size: 16px;
	}

	.program-footer .copyright {
		flex-direction: column;
		align-items: center;
	}
}
.members-carousel-block {
	position: relative;
	padding: 52px 0 48px;
	background: linear-gradient(180deg, #ffffff 0%, #CEE5FF 100%);
}

.members-carousel-head {
	width: min(100% - 160px, 1280px);
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.members-carousel-head h2 {
	margin: 0;
	color: #0344B9;
	font-family: "Braind Street";
	font-size: 48px;
	line-height: 1;
	font-weight:700
}

.members-all-btn {
	padding: 12px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #0344B9;
	color: #ffffff !important;
	text-decoration: none;
	font-family: "Braind Street";
	font-size: 26px;
	line-height: 1;
	transition: background 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
	font-weight:700
}

.members-all-btn:hover {
	background: #03399a
}

.members-carousel {
	width: min(100% - 160px, 1280px);
	margin: 0 auto;
	position: relative;
}

.members-carousel-viewport {
	overflow: hidden;
	padding: 0 2px 16px;
}

.members-carousel-track {
	display: flex;
	gap: 32px;
	will-change: transform;
	transition: transform 0.65s ease;
}

.member-card {
	flex: 0 0 calc((100% - 116px) / 2);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
}

.member-card img {
	width: 100%;
	display: block;
	height: 100%;
}

@media (max-width: 1024px) {
	.members-carousel-block {
		padding: 44px 0 42px;
	}

	.member-card {
		flex:0 0 calc((100% - 293px) / 1)
	}

	.members-carousel-head {
		margin-bottom: 20px;
		width:min(100% - 96px, 1024px)
	}
	.members-carousel {width:min(100% - 96px, 1024px)}
}

@media (max-width: 627px) {
	.members-carousel-block {
		padding: 34px 0 36px;
	}

	.members-carousel-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.members-all-btn {
		font-size: 18px;
	}

	.members-carousel {
		width: min(100% - 24px, 1320px);
	}

	.members-carousel-track {
		gap: 18px;
	}

	.member-card {
		flex-basis: 100%;
		border-radius: 10px;
	}
	.marquee_group {gap:16px; padding:0 12px}
	.marquee_line img {height:12px}
	.marquee_line {height:32px}

}


.news-block {
	position: relative;
	padding: 58px 0 64px;
	background: linear-gradient(180deg, #ffffff 0%, #dff1ff 100%);
}

.news-head {
	width: min(100% - 160px, 1280px);
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.news-head h2 {
	margin: 0;
	color: #0344B9;
	font-family: "Braind Street";
	font-size: 48px;
	line-height: 1;
	font-weight: 700;
}

.news-all-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 24px;
	border-radius: 8px;
	background: #0344B9;
	color: #ffffff !important;
	text-decoration: none;
	font-family: "Braind Street";
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.25s ease, transform 0.25s ease;
}

.news-all-btn:hover {
	background: #03399a;
}

.news-grid {
	width: min(100% - 160px, 1280px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.42fr) minmax(320px, 1fr);
	gap: 20px;
}

.news-side {
	display: grid;
	gap: 20px;
}

.news-card {
	position: relative;
	display: block;
	min-height: 100%;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: #ffffff;
	background: #0344B9;
}

.news-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.news-card:hover img {
	transform: scale(1.04);
}

.news-card:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 58%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
	pointer-events: none;
}

.news-card-large {
	aspect-ratio:369/330
}

.news-card-small {
	height: 193px;
}

.news-card-overlay {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 14px;
	z-index: 2;
}

.news-card-overlay h3 {
	margin: 0 0 8px;
	color: #ffffff;
	font-family: "SF Armenian", Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.22;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card-large .news-card-overlay h3 {
	font-size: 24px;
	-webkit-line-clamp: 2;
	font-weight:500
}

.news-card-overlay span {
	display: block;
	color: #ffffff;
	font-family: "SF Armenian", Arial, sans-serif;
	font-size: 16px;
	line-height: 1;
	margin-top:12px
}

@media (max-width: 1024px) {
	.news-block {
		padding: 46px 0 54px;
	}

	.news-head,
	.news-grid {
		width: min(100% - 96px, 1320px);
	}

	.news-grid {
		grid-template-columns: 1.2fr 1fr;
		gap: 18px;
	}

	.news-side {
		gap: 18px;
	}

	.news-card-large {
		aspect-ratio:24/33
	}

	.news-card-small {
		height: 176px;
	}

	.news-head h2 {
		font-size: 42px;
	}
}

@media (max-width: 767px) {
	.news-head {
		align-items: flex-start;
		gap: 14px;
	}

}

@media (max-width: 480px) {
	.news-block {
		padding: 36px 0 42px;
	}

	.news-head,
	.news-grid {
		width: min(100% - 24px, 1320px);
	}

	.news-head h2 {
		font-size: 34px;
	}

	.news-all-btn {
		font-size: 18px;
		min-height: 38px;
		padding: 9px 18px;
	}

	.news-card-overlay {
		left: 14px;
		right: 14px;
		bottom: 12px;
	}

	.news-card-overlay h3,
	.news-card-large .news-card-overlay h3 {
		font-size: 16px;
	}
}
/* Home page mobile adjustments only. Scoped to index_new.html so program.css remains safe for other pages. */
.members-all-btn-mobile,
.news-all-btn-mobile {
	display: none;
}

@media (max-width: 627px) {
	body.home-page {
		background: #dff1ff;
	}

	body.home-page .hero-section {
		position: relative;
		height: 100vh;
		max-height:608px
	}

	body.home-page .hero-text {
		bottom: 90px;
	}

	body.home-page .hero-text img {
		width: 178px;
	}
	body.home-page .scroll {bottom:34px}
	body.home-page .scroll:hover {bottom:40px}

	body.home-page .scroll img {
		width:18px
	}

	body.home-page .home_prog.program-hero {
		min-height: 760px;
		height: 760px;
	}

	body.home-page .home_prog .hero-inner {
		min-height: 760px;
		height: 760px;
	}

	body.home-page .members-carousel-block {
		padding: 32px 0 34px;
		background: linear-gradient(180deg, #ffffff 0%, #dff1ff 100%);
		text-align:center
	}

	body.home-page .members-carousel-head {
		width: calc(100% - 40px);
		margin-bottom: 18px;
		align-items: center;
		text-align: center;
	}

	body.home-page .members-carousel-head h2,
	body.home-page .news-head h2 {
		width: 100%;
		font-size: 26px;
		line-height: 1;
		text-align: center;
	}

	body.home-page .members-all-btn-desktop,
	body.home-page .news-all-btn-desktop {
		display: none;
	}

	body.home-page .members-all-btn-mobile,
	body.home-page .news-all-btn-mobile {
		display: inline-flex;
		margin: 16px auto 0;
		font-size: 20px;
		min-height: 38px;
		padding: 12px 20px;
		border-radius: 8px;
	}

	body.home-page .members-carousel {
		width: 100%;
		margin: 0;
	}

	body.home-page .members-carousel-viewport {
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0 20px 12px;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		cursor: grab;
		scrollbar-width: none;
	}

	body.home-page .members-carousel-viewport::-webkit-scrollbar {
		display: none;
	}

	body.home-page .members-carousel-viewport.is-dragging {
		cursor: grabbing;
		scroll-snap-type: none;
	}

	body.home-page .members-carousel-track {
		gap: 16px;
		transition: none !important;
		transform: none !important;
		will-change: auto;
	}

	body.home-page .member-card {
		flex: 0 0 308px;
		max-width: 82vw;
		border-radius: 8px;
		scroll-snap-align: start;
		box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
	}

	body.home-page .member-card img {
		pointer-events: none;
		user-select: none;
	}

	body.home-page .news-block {
		padding: 34px 0 42px;
		background: linear-gradient(180deg, #ffffff 0%, #dff1ff 100%);
		text-align:center
	}

	body.home-page .news-head {
		width: calc(100% - 40px);
		margin-bottom: 18px;
		align-items: center;
	}

	body.home-page .news-grid {
		width: calc(100% - 40px);
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	body.home-page .news-side {
		gap: 14px;
	}

	body.home-page .news-card-large,
	body.home-page .news-card-small {
		aspect-ratio: 350/220;
		border-radius: 12px;
	}
	.news-card-small {height:unset}

	body.home-page .news-card-overlay {
		left: 12px;
		right: 12px;
		bottom: 10px;
		text-align:left
	}

	body.home-page .news-card-overlay h3,
	body.home-page .news-card-large .news-card-overlay h3 {
		font-size: 16px;
		line-height: 1.18;
		-webkit-line-clamp: 2;
	}

	body.home-page .news-card-overlay span {
		font-size: 12px;
		margin-top: 7px;
	}

	body.home-page .slider-section {
		min-height: 470px;
	}

	body.home-page .photo-section {
		height: 650px;
		background-position: center top;
	}

	body.home-page .photo-section .container {
		width: calc(100% - 40px) !important;
	}

	body.home-page .photo-section .container img {
		width: 165px;
		right: 50%;
		transform: translateX(50%);
		bottom: 42px;
	}
}

.members-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.members-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.members-carousel-viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.members-carousel-track {
    display: flex;
    transform: none !important;
    transition: none !important;
}

@media (min-width: 628px) {
	.members-carousel {
		--members-carousel-width: min(calc(100vw - 160px), 1280px);
		--members-carousel-side: calc((100vw - var(--members-carousel-width)) / 2);
		--members-carousel-side-negative: calc((var(--members-carousel-width) - 100vw) / 2);
		--members-card-width: calc((var(--members-carousel-width) - 116px) / 2);
		width: var(--members-carousel-width);
		margin: 0 auto;
		overflow: visible;
	}

	.members-carousel-viewport {
		width: calc(100vw - var(--members-carousel-side));
		margin-right: var(--members-carousel-side-negative);
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0 2px 16px;
	}

	.members-carousel-track {
		width: max-content;
		min-width: 100%;
	}

	.member-card {
		flex: 0 0 var(--members-card-width);
	}
}

@media (min-width: 628px) and (max-width: 1024px) {
	.members-carousel {
		--members-carousel-width: min(calc(100vw - 96px), 1024px);
		--members-carousel-side: calc((100vw - var(--members-carousel-width)) / 2);
		--members-carousel-side-negative: calc((var(--members-carousel-width) - 100vw) / 2);
		--members-card-width: calc(var(--members-carousel-width) - 293px);
	}
}
/* Dynamic hero image alignment.
   JS adds this class only when bottom alignment would push the image top above the hero container. */
body.home-page .hero-backgrounds.hero-backgrounds--top {
	align-items: flex-start !important;
}

body.home-page .hero-backgrounds.hero-backgrounds--top .hero-bg {
	top: 0;
}