@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;
	background: #fff;
	font-family: 'SF Armenian', Arial, sans-serif;
	color: #0c2464;
	font-weight: 300
}

a {
	text-decoration: none;
	color: #0344B9
}

.program-container {
	width: calc(100% - 160px);
	margin: 0 auto;
	max-width: 1280px
}

.site-header {
	background: #fff;
	position: relative;
	z-index: 20;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .06)
}

.site-header-inner {
	height: 98px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px
}

.site-logo img {
	height: 48px;
	display: block
}

.site-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	color: #0649bf;
	font-size: 14px
}

.site-menu a {
	transition: .25s;
	font-size: 16px;
	position:relative;
	font-weight:400
}

.site-menu a:hover:after {
	position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -9px;
    background: #0344B9;
}

.site-lang {
	border: 1px solid rgba(6, 73, 191, .25);
	border-radius: 20px;
	padding: 6px 12px;
	color: #0649bf
}

.program-hero {
	background: linear-gradient(180deg, #337CFF 0%, #0344B9 100%);
	min-height: 300px;
	color: #fff;
	overflow: hidden;
	position: relative
}

.hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(images/prog_hero.svg) no-repeat center;
	background-size: 100%
}

.hero-title h1 {
	font-family: 'Braind Street';
	font-size: 80px;
	line-height: .86;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: .5px
}

.hero-title h1 span {
	color: #63c4ff
}

.hero-title p {
	font-size: 17px;
	line-height: 1.35;
	margin: 16px auto 0;
	max-width: 540px;
	color: rgba(255, 255, 255, .9)
}

.hero-btn {
	margin-top: 22px;
	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 .3s;
	display: inline-block;
	text-decoration: none;
	line-height: 1.1;
	box-shadow: none;
	letter-spacing: 0
}

.hero-btn:after {
	content: "";
	background: url('images/b_arrow.svg') center/contain no-repeat;
	position: absolute;
	width: 24px;
	height: 24px;
	right: 20px;
	top: 12px;
	transition: all .3s
}

.hero-btn:hover {
	background: #cddaf1
}

.hero-btn:hover:after {
	transform: rotate(45deg)
}

.hero-note {
	position: absolute;
	max-width: 280px;
	font-size: 15px;
	line-height: 1.25;
	text-align: left;
	color: rgba(255, 255, 255, .88)
}

.hero-note b {
	display: block;
	font-family: 'Braind Street';
	font-size: 26px;
	line-height: 1;
	color: #fff
}

.hero-note.n1 {
	left: 0;
	top: 20px
}

.hero-note.n2 {
	right: 0;
	top: 18px
}

.hero-note.n3 {
	left: 55px;
	bottom: 26px
}

.hero-note.n4 {
	right: 40px;
	bottom: 28px
}

.program-main {
	padding: 52px 0 0;
	background: #fff
}

.program-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
	margin: 0 auto 160px
}

.program-section.reverse .program-copy {
	order: 2
}

.program-section.reverse .program-image {
	order: 1
}

.program-copy h2 {
	font-family: 'Braind Street';
	font-size: 48px;
	line-height: 1;
	margin: 0 0 10px;
	color: #0344B9;
	text-transform: uppercase
}

.program-copy>p {
	font-size: 20px;
	line-height: 1.55;
	margin: 0 0 16px;
	color: #0344B9
}

.program-image {
	padding-top: 6px;
	position: sticky;
	top: 250px;
	align-self: start;
	aspect-ratio:157/90;
	display:flex
}

.program-image img {
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block
}

.program-list {
	display: grid;
	gap: 10px
}

.program-item {
	position: relative;
	background: #F6F6F6;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s
}
.program-item:hover {background:#ebebeb}
.program-q {
	position: relative;
	z-index: 2;
	-webkit-appearance: none;
	appearance: none;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	width: 100%;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 13px 40px 12px 16px;
	text-align: left;
	cursor: pointer;
	color: #0344b9;
	font-family: 'SF Armenian', Arial, sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.2
}

.program-q .plus {
	position: absolute;
	right: 16px;
	top: 18px;
	transition: transform .38s ease, color .38s ease;
	transform: rotate(45deg);
	background: url(images/close.svg) no-repeat center;
	height: 20px;
	width: 20px
}

.program-a {
	display: none;
	overflow: hidden;
	padding: 0 16px 14px;
	color: #0344B9;
	font-size: 20px;
	line-height: 1.55;
	font-weight: 300
}

.program-item.active .plus {
	transform: rotate(0deg)
}

footer {
	background: #1C1C1C;
	color: #fff;
	position: relative
}

footer .content {
	width: calc(100% - 160px);
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 0px;
	display: flex;
	flex-direction: column;
	gap: 24px
}

.top_footer {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #656565;
}

.log_lng img {
	height: 44px
}

.footer-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px
}

.footer-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 0;
	font-size: 16px;
	color: rgba(255, 255, 255, .92)
}

.footer-menu a {
	transition: .25s;
	position: relative;
	color:#ffffff
}

.footer-menu a:hover:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -9px;
	background: #fff
}

.socials {
	display: flex;
	gap: 8px;
	padding-bottom: 24px
}

.socials a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all .3s
}

.socials a:hover {
	background: rgba(255, 255, 255, .15)
}

.socials a img {
	width: 24px;
	height: 24px
}

.footer_title {
	font-size: 16px
}

.footer_info {
	display: flex;
	gap: 24px
}

.copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0 0 0;
	font-size: 16px
}

.copyright_text {
	display: flex;
	align-items: center;
	gap: 10px
}

.copyright_text img {
	width: 24px;
	height: 24px
}

@media(max-width:1439px) {.program-container, footer .content {width:calc(100% - 96px); max-width:1024px} .hero-inner {background:url(images/tablet_cover.svg) no-repeat center; height:540px}
.program-image {aspect-ratio: 113 / 90;}} 

@media(max-width:1024px) {
	.program-container {
		width: min(880px, calc(100% - 40px))
	}

	.site-header-inner {
		height: 64px
	}

	.site-logo img {
		height: 34px
	}

	.site-menu {
		gap: 18px;
		font-size: 12px
	}

	.program-hero {
		min-height: 500px
	}

	.hero-inner {
		padding: 36px 0 62px;
		min-height: 280px;
	}

	.hero-title h1 {
		font-size: 56px
	}

	.hero-title h1 span {
		color: #63c4ff
	}

	.hero-title p {
		font-size: 15px;
		max-width: 460px
	}

	.hero-btn {
		font-size: 22px;
		padding: 9px 44px 9px 22px
	}

	.hero-btn:after {
		top: 10px
	}

	.hero-note {
		display: none
	}

	.program-main {
		padding-top: 46px
	}

	.program-section {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
		margin-bottom: 66px
	}

	.program-copy>p {
		line-height: 1.2;
	}
	.program-image {aspect-ratio: 113 / 90;}

	.program-list {
		gap: 7px
	}

	.program-image {
		top: 86px;
		padding-top: 10px;
		
	}

	footer .content {
		padding: 40px
	}
}

@media(max-width:826px) {.program-hero {height:450px; min-height:450px} .hero-inner{padding:0; height:450px} .program-image {aspect-ratio: 113 / 90;}}
@media(max-width:760px) {.hero-inner{background:url(images/phone_hcover.svg) no-repeat center; width:100%} .program-copy h2 {font-size:36px} .program-copy>p,.program-a {font-size:16px} .program-q {font-size:18px} footer .content {width:calc(100% - 40px); padding:40px 0}}

@media(max-width:627px) {
	.program-container {
		width: calc(100% - 40px)
	}

	.site-header-inner {
		height: 56px;
		padding: 0;
		align-items: center;
		position:relative
	}
.mobile-menu-logo {display:block!important}
	.site-logo img {
		height: 32px
	}

	.site-menu {
		width: 32px;
		height: 32px;
		gap: 0;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center
	}

.site-menu a:hover:after {display:none}
	.site-menu a,
	.site-menu .site-lang {
		display: none
	}

	.program-hero {
		min-height: 780px;
		background: linear-gradient(180deg, #0344B9 0%, #2f83ff 100%)
	}

	.hero-inner {
		min-height: 780px;
		display: block;
		text-align: center;
		background:url(images/phone_cover.svg) no-repeat center;
		width:100%!important
	}

	.hero-title {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		z-index: 2
	}

	.hero-title h1 {
		font-size: 40px;
		line-height: .9
	}

	.hero-title h1 span {
		color: #63c4ff
	}

	.hero-title p {
		display: none
	}

	.hero-btn {
		margin-top: 18px;
		font-size: 20px;
		padding: 10px 46px 9px 20px;
		border-radius: 6px
	}

	.hero-btn:after {
		width: 20px;
		height: 20px;
		right: 17px;
		top: 10px
	}

	.hero-note {
		display: block;
		position: absolute;
		max-width: 178px;
		font-size: 11px;
		line-height: 1.18;
		text-align: center;
		color: rgba(255, 255, 255, .88)
	}

	.hero-note b {
		font-size: 18px;
		line-height: 1.05;
		margin-bottom: 3px
	}

	.hero-note.n1 {
		left: 0;
		right: auto;
		top: 22px
	}

	.hero-note.n2 {
		right: 0;
		top: 74px
	}

	.hero-note.n3 {
		left: 0;
		bottom: 78px
	}

	.hero-note.n4 {
		right: 0;
		bottom: 30px
	}

	.program-main {
		padding-top: 60px
	}

	.program-section,
	.program-section.reverse {
		display: flex;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 46px
	}

	.program-section .program-image,
	.program-section.reverse .program-image {
		order: 1;
		position: relative;
		top: auto;
		padding-top: 0;
		width: 100%
	}

	.program-section .program-copy,
	.program-section.reverse .program-copy {
		order: 2
	}
	
	.program-image{aspect-ratio: 175 / 100}

	.program-image img {
		border-radius: 7px;
		box-shadow: none
	}

	.program-copy h2 {
		text-align: center;
		font-size: 28px;
		line-height: .95;
		margin-bottom: 10px
	}

	.program-copy>p {
		text-align: left;
		font-size: 12px;
		line-height: 1.42;
		margin-bottom: 16px;
		color: #1d4d9b
	}

	.program-list {
		gap: 8px
	}

	.program-item {
		border: 0;
		border-radius: 8px;
		box-shadow: none
	}

	.program-q {
		font-size: 16px;

	}

	.program-a {
		font-size: 12px;
		line-height: 1.45;
		padding: 0 13px
	}

	.program-item.active .program-a {
		padding: 0 13px 13px
	}

	footer .content {
		padding: 34px 24px 18px
	}

	.top_footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
		padding-bottom: 24px;
		border-bottom: 1px solid #656565
	}

	.log_lng img {
		height: 40px
	}

	.footer-right {
		width: 100%;
		align-items: center;
		flex-direction: column;
		gap: 22px
	}

	.footer-menu {
		padding-top: 0;
		gap: 14px;
		flex-direction: column;
		justify-content: center;
		font-size: 15px
	}

	.socials {
		gap: 9px
	}

	.socials a {
		width: 28px;
		height: 28px;
		border-radius: 4px
	}

.footer_info {justify-content:space-between; width:100%}
.program-q .plus {width:16px; height:16px; top:unset}

	.copyright {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		font-size: 12px;
		gap: 14px;
		padding: 18px 0 0
	}

	.copyright_text {
		font-size: 12px;
		gap: 8px;
		justify-content: center
	}

	.copyright_text img {
		width: 18px;
		height: 18px
	}
	.footer_title {font-size:12px}
}

/* Mobile off-canvas menu */
.mobile-menu-toggle,
.mobile-menu-close,
.mobile-menu-head,
.mobile-menu-contact {
	display: none
}

body.menu-open {
	overflow: hidden
}

.mobile-menu-toggle,
.mobile-menu-close {
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	position: relative;
	z-index: 80
}

.mobile-menu-toggle span,
.mobile-menu-close span {
	width: 20px;
	height: 2px;
	background: #0649bf;
	border-radius: 2px;
	display: block;
	transition: .25s
}

@media(max-width:627px) {
	.mobile-menu-toggle {
		display: flex;
		margin-left: auto
	}

	.site-header {
		position: relative;
		z-index: 90;
		box-shadow: none;
		background: #fff;
		padding-top:48px
	}

	.site-menu {
		position: fixed;
		inset: 0 0 0 auto;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
		z-index: 100;
		transform: translateX(100%);
		transition: transform .42s cubic-bezier(.22, .61, .36, 1);
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: space-between;
		padding: 58px 22px 26px;
		overflow-y: auto;
		color: #0649bf;
		gap: 0
	}

	.site-menu.is-open {
		transform: translateX(0)
	}

	.mobile-menu-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: absolute;
		left: 20px;
		right: 20px;
		top: 60px
	}

	.mobile-menu-logo img {
		height: 32px;
		display: block
	}

	.mobile-menu-close {
		display: flex
	}

	.mobile-menu-close span:nth-child(1) {
		transform: translateY(7px) rotate(45deg)
	}

	.mobile-menu-close span:nth-child(2) {
		opacity: 0
	}

	.mobile-menu-close span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg)
	}

	.site-menu-links {
		display: flex;
		flex: 1;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 24px;
		padding: 86px 0 100px
	}

	.site-menu .site-menu-links a {
		display: block;
		font-family: 'Braind Street';
		font-size: 32px;
		line-height: 1;
		color: #0649bf;
		text-align: center;
		text-transform: none;
		letter-spacing: .2px
	}

	.site-menu .site-lang {
		display: none
	}

	.mobile-menu-contact {
		display: block;
		color: #0649bf;
		width: 100%;
		font-size: 13px;
		line-height: 1.3;
		font-weight:500
	}

	.mobile-menu-contact p {
		margin: 0 0 14px;
		font-size: 13px;
		color: #0649bf
	}

	.mobile-contact-row {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-top: 12px;
		color: #0649bf;
		font-size: 14px
	}

	.mobile-contact-row svg {
		width: 22px;
		height: 22px;
		flex: 0 0 22px;
		fill: #0649bf
	}

	.mobile-contact-row a {
		color: #0649bf
	}
}

@media(min-width:628px) {
	.site-menu-links {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 24px
	}
}