.header {
	position: sticky;
	top: 0;
	z-index: 12;
	background-color: #fff;
	box-shadow: 0 1px 0 0 #F4F4F4;
}
.header__inner {
	width: 100%;
	max-width: 980px;
	margin: auto;
	height: 80px;
	max-height: 80px;
	background-color: #fff;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 1rem;
	padding: 0 1.25rem;
}
@media (max-width: 800px) {
	.header__inner {
		grid-template-columns: 140px 1fr;
		height: 70px;
		padding: 0 0 0 1.25rem;
	}
}
.header__logo {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	min-width: 180px;
	height: 80px;
	background: url(../images/AccessBank-logo-v2.svg) no-repeat center center;
	background-size: 80%;
	padding: 0 20px;
}
@media (max-width: 800px) {
	.header__logo {
		background-size: 140px;
		width: 140px;
		min-width: 140px;
		height: 70px;
	}
}
.header__logo:hover {
	background-color: #FAFAFA;
}
.header__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}
@media (max-width: 800px) {
	.header__container {
		grid-template-columns: 1fr;
	}
}
.header__section-switch {
	display: flex;
	align-content: center;
	align-items: center;
	height: 36px;
}
@media (max-width: 800px) {
	.header__section-switch {
		display: none;
	}
}
.header__controls {
	display: inline-flex;
	justify-content: right;
	align-items: center;
	height: 36px;
}
@media (max-width: 800px) {
	.header__controls {
		height: 100%;
	}
}
.header .lang-switch {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;
	margin: 0 0.25rem;
	border-radius: 100px;
}
@media (max-width: 800px) {
	.header .lang-switch {
		display: none;
	}
}
.header .lang-switch:hover .lang-switch__active {
	background-color: #EFF6FF;
	z-index: 102;
}
.header .lang-switch:hover .lang-switch__expanded {
	display: flex;
	z-index: 101;
}
.header .lang-switch__active {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	padding: 0 0.75rem;
	cursor: pointer;
}
.header .lang-switch__text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	color: #838D90;
	font-family: "GTE-light";
}
.header .lang-switch__expanded {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	position: absolute;
	top: -3px;
	width: 60px;
	padding: 36px 0.25rem 12px 0.25rem;
	background: #ffffff;
	box-shadow: 0 5px 10px rgba(49, 98, 169, 0.168627451);
	border-radius: 0 0 10px 10px;
	text-align: center;
}
.header .lang-switch__expanded .link {
	justify-content: center;
	width: 100%;
	color: #377CCB;
	letter-spacing: 0.5px;
	border-radius: 30px;
	padding: 0.05rem 0.1rem;
	margin: 0.25rem 0.25rem;
}
.header .lang-switch__expanded .link:last-child {
	margin-bottom: 0;
}
.header .lang-switch__expanded .link:hover {
	background-color: #EFF6FF;
	text-decoration: none;
}
.header__search {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	cursor: pointer;
	transition: 0.2s ease;
	margin: 0 0.25rem;
	background: url(../images/header-v3-search.svg) no-repeat center center;
	background-size: 18px;
	width: 36px;
	height: 100%;
}
@media (max-width: 800px) {
	.header__search {
		display: none;
	}
}
.header__search:hover {
	background-color: #EFF6FF;
}
.header__nav {
	grid-column: 1/3;
	display: flex;
	align-content: center;
	align-items: center;
	height: 44px;
}
@media (max-width: 800px) {
	.header__nav {
		display: none;
	}
}

.search-box {
	display: none;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 110;
	box-shadow: 0 1px 0 0 #F4F4F4;
}
.search-box.active {
	display: flex;
}
.search-box__content {
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	max-width: 980px;
	height: 80px;
	margin: auto;
	padding: 0 1.25rem;
}
.search-box__form {
	width: 100%;
	height: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
.search-box__form .input {
	display: inline-flex;
	height: 100%;
	width: 100%;
	max-width: 980px;
	padding: 0 20px;
	margin: 0;
	font-size: 1rem;
	border: none;
	background-position: 5px;
	font-family: "GTE-light";
	outline: none;
}
.search-box__form .input:hover {
	background-color: unset;
	border-radius: unset;
}
.search-box__close {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	width: 36px;
	min-width: 36px;
	border-radius: 100px;
	cursor: pointer;
	transition: 0.2s ease;
	margin: 0 0.25rem;
	background: url(../images/header-v3-close.svg) no-repeat center center;
	background-size: 16px;
}
.search-box__close:hover {
	background-color: #EFF6FF;
}

@media (max-width: 800px) {
	.header .search-box {
		display: none;
	}
	.header .search-box.active {
		display: none;
	}
}
.header[data-state=sticky] {
	position: sticky;
	top: 0;
	left: 0;
}
.header[data-state=sticky] .header__inner {
	height: 60px;
}
.header[data-state=sticky] .header__logo {
	height: 60px;
}
.header[data-state=sticky] .header__container {
	grid-template-columns: 1fr 1fr 110px;
}
@media (max-width: 800px) {
	.header[data-state=sticky] .header__container {
		grid-template-columns: 1fr;
	}
}
.header[data-state=sticky] .header__section-switch {
	display: none;
}
.header[data-state=sticky] .header__nav {
	order: 1;
	height: 100%;
}
.header[data-state=sticky] .header__controls {
	order: 2;
}
.header[data-state=sticky] .search-box__content {
	height: 60px;
}
.header[data-state=sticky] .lang-switch__expanded {
	top: -20px;
	padding: 66px 0.25rem 12px 0.25rem;
}

[data-gs=business] .header {
	background-color: #377CCB;
	box-shadow: none;
}
[data-gs=business] .header .header__inner {
	background-color: #377CCB;
}
[data-gs=business] .header .header__logo {
	background-image: url(../images/AccessBank-logo-w-v2.svg);
	background-color: #377CCB;
}
[data-gs=business] .header .header__logo:hover {
	background-color: #2969B2;
}
[data-gs=business] .header .header__section .header__section__title {
	color: #F2F9FF;
}
[data-gs=business] .header .header__section .header__section__title_drop::after {
	filter: brightness(1.8);
}
[data-gs=business] .header .lang-switch:hover .lang-switch__text {
	color: #F2F9FF;
}
[data-gs=business] .header .lang-switch:hover .lang-switch__active {
	background: #1974b9;
}
[data-gs=business] .header .lang-switch__text {
	color: #F2F9FF;
}
[data-gs=business] .header .lang-switch__expanded {
	background: #4d93e2;
}
[data-gs=business] .header .lang-switch__expanded .link {
	color: #F2F9FF;
}
[data-gs=business] .header .lang-switch__expanded .link:hover {
	background: #1974b9;
}
[data-gs=business] .header .header__search {
	filter: brightness(1.8);
}
[data-gs=business] .header .header__search:hover {
	background-color: #0c3b5f;
}
[data-gs=business] .header .search-box {
	background-color: #2180c9;
}
[data-gs=business] .header .search-box__content {
	background-color: #2180c9;
}
[data-gs=business] .header .search-box__form .input {
	background-color: #fff;
}

[data-gs=investors] .header {
	background-color: #33536B;
	box-shadow: none;
}
[data-gs=investors] .header .header__inner {
	background-color: #33536B;
}
[data-gs=investors] .header .header__logo {
	background-image: url(../images/AccessBank-logo-w-v2.svg);
	background-color: #33536B;
}
[data-gs=investors] .header .header__logo:hover {
	background-color: #2a485f;
}
[data-gs=investors] .header .header__section .header__section__title {
	color: #F2F9FF;
}
[data-gs=investors] .header .header__section .header__section__title_drop::after {
	filter: brightness(1.8);
}
[data-gs=investors] .header .lang-switch:hover .lang-switch__text {
	color: #F2F9FF;
}
[data-gs=investors] .header .lang-switch:hover .lang-switch__active {
	background-color: #274a5e;
}
[data-gs=investors] .header .lang-switch__text {
	color: #F2F9FF;
}
[data-gs=investors] .header .lang-switch__expanded {
	background: #42637C;
}
[data-gs=investors] .header .lang-switch__expanded .link {
	color: #F2F9FF;
}
[data-gs=investors] .header .lang-switch__expanded .link:hover {
	background: #274a5e;
}
[data-gs=investors] .header .header__search {
	filter: brightness(1.8);
}
[data-gs=investors] .header .header__search:hover {
	background-color: #12242e;
}
[data-gs=investors] .header .search-box {
	background-color: #2e546a;
}
[data-gs=investors] .header .search-box__content {
	background-color: #2e546a;
}
[data-gs=investors] .header .search-box__form .input {
	background-color: #fff;
}

.header-mob .drop-v2::after {
	content: "";
	display: inline-flex;
	width: 30px;
	height: 30px;
	background: url(../images/arrow.svg) no-repeat center center;
	background-size: 16px;
	transform: rotate(-90deg);
	transition: 0.3s;
}
.header-mob .drop-v2.drop-v2__rotated::after {
	transform: rotate(0deg);
}
.header-mob .search-box-mob {
	display: none;
	flex-wrap: wrap;
	align-content: flex-start;
	width: 100%;
	position: absolute;
	right: 0;
	background: #f9fafb;
	z-index: 10;
	height: 100%;
	top: 70px;
}
.header-mob .search-box-mob.active {
	display: flex;
}
.header-mob .search-box-mob__form {
	width: 100%;
	height: 70px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 10px 0 10px;
	border-bottom: 1px solid #e2e6ea;
	background: #fff;
}
.header-mob .search-box-mob__form .input {
	display: inline-flex;
	height: 70px;
	width: 100%;
	margin: 0;
	padding: 10px;
	font-size: 1rem;
	border: none;
	font-family: "GTE-light";
	outline: none;
}
.header-mob .search-box-mob__form .input:hover {
	background-color: unset;
}
.header-mob .search-box-mob__close {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	min-width: 50px;
	border-radius: 100px;
	cursor: pointer;
	transition: 0.1s;
	background: url(../images/header-v3-close.svg) no-repeat center center;
	background-size: 18px;
}
.header-mob .menu-toggle {
	width: 24px;
	cursor: pointer;
}
.header-mob .menu-toggle span {
	display: block;
	width: 100%;
	border-radius: 100px;
	height: 2px;
	background: #838D90;
	transition: all 0.3s;
	position: relative;
}
.header-mob .menu-toggle span + span {
	margin-top: 4px;
}
.header-mob .menu-toggle.active span:nth-child(1) {
	animation: ease 0.5s top forwards;
}
.header-mob .menu-toggle.active span:nth-child(2) {
	animation: ease 0.5s scaled forwards;
}
.header-mob .menu-toggle.active span:nth-child(3) {
	animation: ease 0.5s bottom forwards;
}
.header-mob .menu-toggle.not-active span:nth-child(1) {
	animation: ease 0.5s top-2 forwards;
}
.header-mob .menu-toggle.not-active span:nth-child(2) {
	animation: ease 0.5s scaled-2 forwards;
}
.header-mob .menu-toggle.not-active span:nth-child(3) {
	animation: ease 0.5s bottom-2 forwards;
}
@keyframes top {
	0% {
	top: 0;
	transform: rotate(0);
	}
	50% {
	top: 6px;
	transform: rotate(0);
	}
	100% {
	top: 6px;
	transform: rotate(45deg);
	}
}
@keyframes top-2 {
	0% {
	top: 6px;
	transform: rotate(45deg);
	}
	50% {
	top: 6px;
	transform: rotate(0deg);
	}
	100% {
	top: 0;
	transform: rotate(0deg);
	}
}
@keyframes bottom {
	0% {
	bottom: 0;
	transform: rotate(0);
	}
	50% {
	bottom: 6px;
	transform: rotate(0);
	}
	100% {
	bottom: 6px;
	transform: rotate(135deg);
	}
}
@keyframes bottom-2 {
	0% {
	bottom: 6px;
	transform: rotate(135deg);
	}
	50% {
	bottom: 6px;
	transform: rotate(0);
	}
	100% {
	bottom: 0;
	transform: rotate(0);
	}
}
@keyframes scaled {
	50% {
	transform: scale(0);
	}
	100% {
	transform: scale(0);
	}
}
@keyframes scaled-2 {
	0% {
	transform: scale(0);
	}
	50% {
	transform: scale(0);
	}
	100% {
	transform: scale(1);
	}
}
.header-mob .content-mob-wr {
	display: none;
	position: fixed;
	background: #f8f8f8;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
}
@media (max-width: 800px) {
	.header-mob .content-mob-wr.menu-expanded {
	display: flex;
	}
}
.header-mob .content-mob {
	display: flex;
	flex-wrap: wrap;
	align-content: start;
	padding-top: 70px;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	background: #f5f7fa;
	background: #FAFAFA;
}
.header-mob .content-mob .top-header {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #fff;
	height: 70px;
	padding-right: 70px;
	box-shadow: 0 5px 10px 0 rgba(61, 61, 61, 0.1215686275);
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	padding: 0 calc(1.25rem + 50px) 0 1.25rem;
}
.header-mob .content-mob .bottom-header {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #fff;
	height: 70px;
	padding: 10px;
	border-bottom: 1px solid #e3e5e9;
	position: relative;
}
.header-mob .content-mob .header__search {
	display: inline-flex;
	width: 50px;
	height: 50px;
	min-width: 50px;
	margin: 0;
	background-color: unset;
	background-size: 22px;
}
.header-mob .content-mob .header__search:hover {
	background-color: #EFF6FF;
}
/*
.header-mob .content-mob .mobile-title-icon {
	width: 78px;
	height: 34px;
}
.header-mob .content-mob .mobile-title-icon_vip {
	background: url(images/VIPClub-logo-w-simple.svg) no-repeat center left;
	background-size: contain;
	filter: invert(0.75);
}
*/
.header-mob .content-mob .extra-content {
	width: 100%;
	border-top: 1px solid #e6e6e6;
	padding: 1.25rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.header-mob .content-mob .phone {
	display: inline-flex;
	width: 64px;
	height: 36px;
	background: url(../images/header-v3-151.svg) no-repeat left center;
	background-size: 54px;
}
.header-mob .content-mob .atm {
	display: inline-flex;
	width: 72px;
	height: 36px;
	background: url(../images/header-v3-atm.svg) no-repeat left center;
	background-size: 64px;
}
.header-mob .content-mob__section-switch {
	display: flex;
	align-content: center;
	align-items: center;
	height: 36px;
}
.header-mob .header__language {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 50px;
	margin: 0 6px;
	position: relative;
	z-index: 100;
}
.header-mob .header__language:hover .header__language__active-language {
	background-color: #f3f3f3;
	z-index: 102;
}
.header-mob .header__language:hover .header__language-expanded {
	display: flex;
	z-index: 101;
}
.header-mob .header__language .header__language__active-language {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 46px;
	margin: 6px 0;
	border-radius: 5px;
	cursor: pointer;
}
.header-mob .header__language .header__language-icon {
	display: inline-flex;
	justify-content: center;
	height: 28px;
	width: 32px;
	border-radius: 100px;
}
.header-mob .header__language .header__language-text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	color: #616161;
	font-size: 16px;
	line-height: 20px;
	padding: 6px 0;
	border-radius: 5px;
}
.header-mob .header__language .header__language-expanded {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	position: absolute;
	top: 0px;
	width: 56px;
	padding: 44px 5px 5px 5px;
	background: #ffffff;
	box-shadow: 0 5px 10px rgba(49, 98, 169, 0.168627451);
	border-radius: 10px;
	text-align: center;
}
.header-mob .header__language .header__language-expanded .link {
	width: 100%;
	justify-content: center;
	font-size: 16px;
	line-height: 20px;
	padding: 6px 0;
	margin-bottom: 6px;
	border-radius: 5px;
	color: #2362a9;
	letter-spacing: 0.5px;
}
.header-mob .header__language .header__language-expanded .link:last-child {
	margin-bottom: 0;
}
.header-mob .header__language .header__language-expanded .link:hover {
	background-color: #f2f8ff;
	text-decoration: none;
}

.header[data-state=sticky] .content-mob {
	padding-top: 60px;
}
.header[data-state=sticky] .content-mob .top-header {
	height: 60px;
}
.header[data-state=sticky] .search-box-mob {
	top: 60px;
}
.header[data-state=sticky] .header__hamburger-animated {
	height: 60px;
}

[data-gs=business] .header .menu-toggle {
	filter: brightness(1.8);
}
[data-gs=business] .header .content-mob .top-header {
	background-color: #377CCB;
}
[data-gs=business] .header .header__language .header__language-text {
	color: #F2F9FF;
}
[data-gs=business] .header .header__language:hover .header__language-text {
	color: #616161;
}
[data-gs=business] .header .content-mob .header__search {
	filter: unset;
}

[data-gs=investors] .header .menu-toggle {
	filter: brightness(1.8);
}
[data-gs=investors] .header .content-mob .top-header {
	background-color: #33536B;
}
[data-gs=investors] .header .header__language .header__language-text {
	color: #F2F9FF;
}
[data-gs=investors] .header .header__language:hover .header__language-text {
	color: #616161;
}
[data-gs=investors] .header .content-mob .header__search {
	filter: unset;
}

.header__hamburger-animated {
	display: none;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 70px;
	background-size: 30px;
	cursor: pointer;
	z-index: 101;
}
@media (max-width: 800px) {
	.header__hamburger-animated {
		display: flex;
	}
}

.mob-scroll-lock {
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: fixed;
}
.mob-scroll-lock .header__hamburger-animated {
	position: fixed;
	top: 0;
	right: 0;
	height: 70px;
}
