@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;

	color: #000;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;

  margin: 0;
  padding: 0;

  cursor: default;
  background-color: #fff;
  -webkit-tap-highlight-color: transparent;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

input, select, button, a, textarea {
  font-family: inherit;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
}
/* ====================================================
 *
 * 		general elements
 *
 * ==================================================*/
/* ====================================================
 * 		wrappers
 * ==================================================*/
.wrapper-row {
	display: flex;
}

.wrapper-column {
	display: flex;
	flex-direction: column;
}
/* ====================================================
 * 		popUp
 * ==================================================*/
.popUp {
	width: 100%;
	height: 100vh;

	position: fixed;
	top: 0;
	left: 0;

	display: none;

	overflow: auto;
	background-color: rgba(6, 24, 67, 0.7);
	z-index: 10000;
}

.popUp_inner {
	width: 100%;
	position: relative;

	padding: 20px;
	padding-top: 5px;
	margin: auto;
}

.popUp_inner:has(.input_form) {
	max-width: 450px;
}

.popUp_close {
	width: 30px;
	height: 30px;

	display: flex;
	align-items: center;
	justify-content: center;

	position: sticky;
	top: 5px;
	right: 5px;
	margin-bottom: -15px;
	margin-right: -15px;
	margin-left: auto;

	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 5px;
	
	background-color: #f91c3d;
	transition: all 0.2s linear;

	-webkit-box-shadow: 2px 2px 2px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 2px 2px 2px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 2px 2px 2px 0px rgba(18, 48, 117, 0.2);
}

.popUp_close span {
	width: 15px;
	height: 15px;

	background-color: #fff;
	transition: all 0.2s linear;

	-webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
	clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

.popUp_close:hover {
	border-color: rgba(18, 48, 117, 0.2);
	background-color: #fff;
}

.popUp_close:hover span {
	background-color: #f91c3d;
}

@media (max-width: 767px) {
	.popUp_inner {
		padding: 10px;
		padding-top: 0px;
	}

	.popUp_close {
		top: 0px;
		right: 0px;
		
		margin-bottom: -15px;
		margin-right: -10px;
	}
}
/* ====================================================
 * 		header
 * ==================================================*/
.header {
	position: relative;
	background-color: rgb(18, 48, 117);
	z-index: 1000;

	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
}

.header-mobile {
	display: none;
}

.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 15px;

	padding: 15px;
}

.header_info {
	display: flex;
	grid-gap: 5px;
	z-index: 1;
}

/* ===== header_logo ===== */

.header_logo {
	display: flex;
	align-items: center;
	z-index: 1;
}

.header_logo img {
	height: 82px;
}

.header_logo_text {
	color: #fff;
	margin-left: 10px;
	padding: 5px 10px;
	border-left: 1px solid #f91c3d;
}

.header_logo_text h4 {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.header_logo_text h5 {
	font-size: 12px;
	font-weight: 400;
	margin-top: 2px;
}

/* ===== forVIBtn ===== */

#forVIBtn {
	min-height: 50px;

	color: #000;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;

	padding: 5px 10px;
	border: none;
	border-radius: 0;
	cursor: pointer;
	background-color: #CCFF66;
	transition: all 0.2s linear;
}

#forVIBtn:hover {
	background-color: #CCFF33;
}

#forVIBtn:active {
	background-color: #CCFF66;
}

.header-mobile #forVIBtn br {
	display: none;
}

@media (max-width: 767px) {
	#forVIBtn {
		min-height: auto;
		padding: 10px;
	}
}

/* ===== header_dOTLink ===== */

.header_dOTLink {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;

	color: #061843;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;

	padding: 0 10px;
	margin-left: auto;
	background-color: #fff;
	transition: all 0.2s linear;
}

.header_dOTLink:hover {
	color: #fff;
	background-color: #2781fc;
}

.header-mobile .header_dOTLink br {
	display: none;
}

@media (max-width: 767px) {
	.header_dOTLink {
		height: auto;
		padding: 10px;
		margin-left: 0;
	}
}

/* ===== lang_select ===== */

.lang{
	width: 40px;
  color: #061843;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 0.9;

  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.lang img {
	width: 40px;
}

.lang_select{
	height: 50px;
  overflow: hidden;
}

.lang_select span {
	height: 100%;
	display: flex;
	flex-direction: column;
	grid-gap: 5px;
	transition: all 0.2s linear;
}

.lang_select span span {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;

	padding: 5px;
	background-color: #fff;
}

.lang_select:hover span span {
	color: #fff;
	background-color: #2781fc;
}

.lang_list{
  height: 0;

  position: absolute;
  margin-top: 5px;

  overflow-y: auto;
  background-color: #fff;
  transition: all 0.2s linear;
}

.lang_list_option{
	text-align: center;
	margin: 10px 5px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f91c3d;
  transition: all 0.2s linear;
}

.lang_list_option:last-child {
	border: none;
	padding-bottom: 0px;
}

.lang_list_option img {
	width: 25px;
	margin-bottom: 5px;
}

.lang_list_option:hover,
.lang_list_option.selected{
  color: #2781fc;
}

.lang_list::-webkit-scrollbar{
  display: none;
}

.lang_list.active{
  height: 161px;
  z-index: 1000;
  border: 1px solid #ccd2de;
}

/* ===== header_whatsapp ===== */

.header_whatsapp {
	height: 50px;
	display: flex;
	align-items: center;

	color: #061843;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;

	padding: 0 10px;
	background-color: #fff;
	transition: all 0.2s linear;
}

.header_whatsapp:hover {
	color: #fff;
	background-color: #2781fc;
}

.header_whatsapp img {
	width: 30px;
	margin-left: 10px;
}

/* ===== heder_account ===== */

.heder_account {
	display: flex;
	flex-direction: column;
	grid-gap: 5px;
}

.header_icon {
	display: none;
	align-items: center;
	background-color: #fff;
}

.header_icon_img {
	height: 50px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	padding: 3px;
}

.header_icon_img img {
	object-fit: cover;
	width: 100%;
  height: 100%;
  border-radius: 4px;
}

.header_icon_name {
	display: flex;
	align-items: center;

	color: #061843;
	font-size: 12px;
  font-weight: 700;
	line-height: 1.1;

	padding: 0px 10px;
}

/* ===== header_cabinet ===== */

.header_cabinet {
	display: none;
	align-items: center;
	justify-content: center;

	color: #061843;
	font-size: 12px;
  font-weight: 700;
	line-height: 1.2;
	text-decoration: none;

	padding: 8px;
	border-radius: 0px;
	background-color: #fff;
	transition: all 0.2s linear;
}

.header_cabinet:hover {
	color: #fff;
	background-color: #2781fc;
}
/* ===== header - login / logout ===== */

.header_login {
	min-height: 50px;
	color: #061843;
	font-size: 12px;
  font-weight: 700;

	border: none;
	border-radius: 0px;
	padding: 15px;
	cursor: pointer;
	background-color: #fff;
	transition: all 0.2s linear;
}

.header_login:hover {
	color: #fff;
	background-color: #2781fc;
}

.header_logout {
	color: #061843;
	font-size: 12px;
  font-weight: 700;

	display: none;
	border: none;
	border-radius: 0px;
	padding: 15px;
	cursor: pointer;
	background-color: #fff;
	transition: all 0.2s linear;
}

.header_logout:hover {
	color: #fff;
	background-color: #f91c3d;
}

/* ===== header ( @media )===== */

@media (max-width: 767px) {
	.header {
		display: none;
	}

	.header-mobile {
		display: block;
		background-color: rgb(18, 48, 117);
		z-index: 1000;

		background-color: rgb(18, 48, 117);
		background: -webkit-linear-gradient(0deg, rgb(18, 48, 117), rgb(9, 32, 86));
		background: -moz-linear-gradient(0deg, rgb(18, 48, 117), rgb(9, 32, 86));
		background: linear-gradient(0deg, rgb(18, 48, 117), rgb(9, 32, 86));
	}

	.header_inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px;
		grid-gap: 10px;
	}

	.header_logo {
		flex-grow: 1;
	}

	.header_logo img {
		height: 50px;
	}

	.header_icon {
		flex-grow: 1;
	}

	.header_logo_text {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		grid-gap: 5px;
		justify-content: center;

		border: none;
		margin: 0;
		padding: 0;
		padding-bottom: 10px;
		border-bottom: 1px solid #f91c3d;
	}

	.header_logo_text h4 {
		font-size: 10px;
	}

	.header_logo_text h5 {
		font-size: 8px;
	}
}
/* ====================================================
 * 		menu
 * ==================================================*/
.menu {
	display: flex;
	justify-content: center;
	position: relative;
	
	z-index: 500;

	background-color: rgb(6, 24, 67);
	background: -webkit-linear-gradient(180deg, rgb(6, 24, 67), rgb(5, 17, 46));
	background: -moz-linear-gradient(180deg, rgb(6, 24, 67), rgb(5, 17, 46));
	background: linear-gradient(180deg, rgb(6, 24, 67), rgb(5, 17, 46));
}

.menu_item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;

	border-left: 1px solid #092056;
	border-right: 1px solid #092056;
}

.menu_item-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;

	color: #fff;
	/*text-transform: uppercase;*/
	letter-spacing: 0.5px;
	text-decoration: none;

	-moz-user-select: none;
	user-select: none;

	padding: 12px 6px;
	border-top: 1px solid transparent;
	cursor: pointer;
	transition: all 0.2s linear; 

	border-left: 1px solid #092056;
	border-right: 1px solid #092056;
}

.menu_item-link:hover {
	color: #2781fc;
}

.menu_item:first-child {
	border-left: none;
}

.menu_item:last-child {
	border-right: none;
}

.menu_item_name {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;

	color: #fff;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;

	-moz-user-select: none;
	user-select: none; 

	padding: 12px 6px;
	border-top: 1px solid transparent;
	cursor: pointer;
	transition: all 0.2s linear;
}

.menu_item_name:hover {
	color: #2781fc;
}

.menu_item_name.active {
	color: #f91c3d;
	border-top-color: #f91c3d;
}

/* ===== menu_item_list ===== */

.menu_item_list {
	width: 100%;
	display: none;
	flex-wrap: wrap;
	align-items: flex-start;
	grid-gap: 5px;

	position: absolute;
	bottom: 1px;
	left: 0;
	transform: translateY(100%);

	padding: 20px;
  z-index: 1000;

  background-color: rgb(249, 28, 61);


  -webkit-box-shadow: 0px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 0px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 0px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.menu_item_list > div:not(.menu_item_list_title) {
	display: contents;
}

.menu_item_name.active ~ .menu_item_list {
	display: flex;
}

.menu_item_list_title {
	width: 100%;

	display: flex;
	align-items: center;
	grid-gap: 10px;

	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	
	padding: 15px 0;
}

.menu_item_list_title:before {
	content: "";
	height: 1px;
	flex-grow: 1;
	display: flex;

	border-top: 1px solid #fff;
}

.menu_item_list_title:after {
	content: "";
	height: 1px;
	flex-grow: 1;
	display: flex;

	border-top: 1px solid #fff;
}

.menu_item_list_item {
	width: calc(100% / 4 - 5px);
	flex-shrink: 0;

	display: flex;
	align-items: flex-start;

	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;

	padding: 15px 10px;
	
	transition: all 0.2s linear;
}

.menu_item_list_item:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.menu_item_list_item span {
	margin-right: 5px;
}

/* ===== menu ( @media ) ===== */

@media (max-width: 767px) {
	.menu {
		flex-wrap: wrap;
	}

	.menu_item {
		border: none;
	}

	.menu_item_name {
		padding: 10px;
	}

	.menu_item_name:hover {
		color: #fff;
	}

	.menu_item_name.active {
		color: #f91c3d;
	}
}

/* ===== menu_item_list_item ( @media ) ===== */

@media (max-width: 1150px) {
	.menu_item_list_item {
		width: calc(100% / 3);
	}
}

@media (max-width: 900px) {
	.menu_item_list_item {
		width: calc(100% / 2);
	}
}

@media (max-width: 600px) {
	.menu_item_list_item {
		width: 100%;
	}
}
/* ====================================================
 * 		footer
 * ==================================================*/
.footer {
	background-color: rgb(6, 24, 67);
	background: -webkit-linear-gradient(180deg, rgb(9, 32, 86), rgb(6, 24, 67));
	background: -moz-linear-gradient(180deg, rgb(9, 32, 86), rgb(6, 24, 67));
	background: linear-gradient(180deg, rgb(9, 32, 86), rgb(6, 24, 67));
}

.footer_inner {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	grid-gap: 40px;
	padding: 40px;
}

.footer_info {
	flex-grow: 1;
	width: fit-content;
	font-style: normal;
}

.footer_info h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;

	padding: 0 5px 5px;
	border-bottom: 1px solid #f91c3d;
}

.footer_info p {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	margin-top: 5px;
	padding: 5px;
}

.footer_info a {
	color: inherit;
	text-decoration: underline 1px;
	transition: all 0.2s linear;
}

.footer_info a:hover {
	text-decoration-color: transparent;
}

.footer_info p b {
	font-weight: 400;
}

.footer_info-social {
	display: flex;
	grid-gap: 15px;
	margin-top: 10px;
	padding: 0 5px;
}

.footer_info-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s linear;
}

.footer_info-social img {
	width: 25px;
}



.footer_copy {
	width: 100%;
	color: #576a7b;
	font-size: 12px;
	font-weight: 900;
	text-align: center;
	padding: 10px;
	border-top: 1px solid #576a7b;
}

@media (max-width: 767px) {
	.footer_inner {
		padding: 20px;
	}
}
/* ====================================================
 * 		scrollToTopBtn
 * ==================================================*/
#scrollToTopBtn {
	width: 58px;
	height: 58px;

	display: none;
	align-items: center;
	justify-content: center;

	position: fixed;
	bottom: 15px;
	right: 15px;

	color: #fff;
	font-size: 25px;
	font-weight: 400;
	line-height: 0;

	border: 2px solid #fff;;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	z-index: 20000;

	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
}

#scrollToTopBtn span {
	transform: rotate(-90deg);
}

@media (max-width: 767px) {
	#scrollToTopBtn {
		visibility: hidden;
	}
}
/* ====================================================
 *
 * 		unique pages
 *
 * ==================================================*/
/* ====================================================
 * 		index ( page )
 * ==================================================*/

/* ===== slider_top ===== */

.slider_top {
	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

/* ===== events ===== */

.events {
	width: 100%;
	margin-top: 100px;
}

.events_inner {
	width: 100%;
	display: flex;
	grid-gap: 20px;

	padding: 0 40px;
}

/* ===== news ===== */

.news {
	width: calc(100% - 420px);
	background-color: #fff;
}

.news_title {
	color: #092056;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;

	display: flex;
	align-items: center;
	padding-left: 50px;
	margin-bottom: 50px;
}

.news_title a {
	color: #0645ad;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	text-decoration-color: transparent;

	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #f91c3d;
	transition: all 0.2s linear;
}

.news_title a:hover {
	text-decoration-color: inherit;
}

.news_item {
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	grid-gap: 10px;

	padding: 10px;
	border: 1px solid rgba(18, 48, 117, 0.2);
	
	text-decoration: none;
	transition: all 0.2s linear;

	background-color: #fff;
	background: -webkit-linear-gradient(135deg, rgb(255, 255, 255), rgb(243, 247, 251));
	background: -moz-linear-gradient(135deg, rgb(255, 255, 255), rgb(243, 247, 251));
	background: linear-gradient(135deg, rgb(255, 255, 255), rgb(243, 247, 251));

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.news_item:hover .news_item_img img {
  opacity: 0.7;
}

.news_item:hover h2 {
	color: #0645ad;
	text-decoration-color: inherit;
}

.news_item_img {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	overflow: hidden;
	background-color: #061843;
}

.news_item_img img {
	object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s linear;
}

.news_item_info {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;

	flex-grow: 1;
}

.news_item_info_date {
	color: #576a7b;
	font-size: 12px;
	font-weight: 500;
	align-self: flex-end;
}


.news_item_info h2 {
	color: #092056;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: underline 1px transparent;
	transition: all 0.2s linear;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -moz-box;
	-moz-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	box-orient: vertical;
}

/* ===== newsAll ===== */

.newsAll {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}

.newsAll .news_item {
	flex-direction: row;
	padding: 5px;
}

.newsAll .news_item
.news_item_img {
	width: 100px;
	flex-shrink: 0;
}

.newsAll .news_item
.news_item_info {
	flex-direction: column-reverse;
	justify-content: space-between;
	padding: 5px;
	padding-left: 0;
}

#searchNews {
	height: 44px;
	flex-grow: 1;

	color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  font-family: "Open Sans", sans-serif;

  padding: 10px;
  outline: none;
  border: 1px solid #576a7b;
  border-radius: 4px;
  
  background-color: #fff;
  transition: all 0.1s linear;

  -webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

/* ===== announcements ===== */

.announcements {
	width: 100%;
	max-width: 400px;

	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	padding: 0 10px;
}

.announcements h1 {
	color: #092056;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;

	display: flex;
	align-items: center;
	margin-bottom: 50px;
}

.announcements h1 a {
	color: #0645ad;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	text-decoration-color: transparent;

	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #f91c3d;
	transition: all 0.2s linear;
}

.announcements h1 a:hover {
	text-decoration-color: inherit;
}

.announcements_content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	grid-gap: 10px;

	margin-bottom: 4px;
	background-color: #fff;
}

.announcements_item {
	display: flex;
	align-items: flex-start;
	align-items: stretch;
	grid-gap: 15px;

	text-decoration: none;
	border-bottom: 1px solid rgba(18, 48, 117, 0.2);
	padding: 10px 10px 20px;
}

.announcements_item:first-child {
	padding-top: 0;
}


.announcements_item:last-child {
	border: none;
}

.announcements_item:hover h2 {
	color: #0645ad;
	text-decoration-color: inherit;
}

.announcements_item_date {
	width: 55px;
	height: 55px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	grid-gap: 5px;

	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1;

	padding: 8px;
	transition: all 0.2s linear;

	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}


.announcements_item_date span:first-child {
	font-size: 20px;
	font-weight: 300;
}

.announcements-wrapper {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.announcements_item h2 {
	color: #092056;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: underline 1px transparent;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -moz-box;
	-moz-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	box-orient: vertical;

	margin-bottom: 5px;
	transition: all 0.2s linear;
}

.announcements_item_date-v2 {
	color: #576a7b;
	font-size: 12px;
	font-weight: 500;
	line-height: 0.8;

	align-self: flex-end;
	margin-top: auto;
}

@media (max-width: 860px) {
	.events_inner {
		flex-direction: column;
		grid-gap: 40px;
		padding: 10px;
	}

	.news {
		width: 100%;
	}

	.announcements {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.news_title {
		padding-left: 10px;
	}
}

/* ===== achievements ===== */

.achievements {
	margin-top: 100px;
	padding: 100px 0px;

	background-color: #f91c3d;

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.achievements_inner {
	width: 100%;
	max-width: 1280px;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	grid-gap: 80px 40px;

	margin: 0 auto;
	padding: 0 40px;
}

.achievements_item {
	width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 10;
}

.achievements_item img {
	margin-bottom: 15px;
	background-color: #fff;
	
}

.achievements_item_numbers {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;

	margin-bottom: 10px;
}

.achievements_item_text {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 1px;
}

/* ===== certificates ===== */

.certificates {
	width: 100%;
	margin: 100px 0;
}

.certificates_title {
	width: 100%;

	color: #092056;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;

	margin-bottom: 20px;
}

.certificates_inner {
	width: 100%;

	padding: 0px 40px;
	margin: 0 auto;
}

.certificates_item {
	width: 100%;
	max-width: 400px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid rgba(18, 48, 117, 0.2);
	margin: 10px;
	padding: 10px;
	transition: all 0.2s linear;

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}



.certificates_item img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

@media (max-width: 767px) {
	.certificates_inner {
		padding: 0px 10px;
	}
}

/* ===== partners ===== */

.partners {
	width: 100%;
	margin: 100px 0;
}

.partners_inner {
	width: 100%;
	max-width: 1280px;

	padding: 0px 40px;
	margin: 0 auto;
}

.partners_item {
	width: 100%;
	max-width: 200px;
	aspect-ratio: 1 / 1;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid transparent;
	
	padding: 10px;
	margin: 10px;
	transition: all 0.2s linear;
}

.partners_item:hover {
	border-color: rgba(18, 48, 117, 0.2);
	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.partners_item img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

@media (max-width: 767px) {
	.partners_inner {
		padding: 0px 10px;
	}
}
/* ====================================================
 * 		pages
 * ==================================================*/
/* ====================================================
 * 		deans ( page )
 * ==================================================*/
.deans_appeal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 10px;
	position: relative;

	padding: 20px;
	

	background-color: rgb(18, 48, 117);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.deans_appeal_decor {
	width: 35%;
	height: 100%;

	position: absolute;
	top: 0;
	right: 0;

	background-color: rgba(9, 32, 86, 0.0);
	background: -webkit-linear-gradient(90deg, rgba(9, 32, 86, 0.0), rgb(249, 28, 61));
	background: -moz-linear-gradient(90deg, rgba(9, 32, 86, 0.0), rgb(249, 28, 61));
	background: linear-gradient(90deg, rgba(9, 32, 86, 0.0), rgb(249, 28, 61));

	
	z-index: 0;
}

.deans_appeal_text {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.1;

	z-index: 10;
}

.deans_appeal_pointer {
	color: #fff;
	font-size: 45px;

	transform: rotate(90deg);
}

/* ===== deans_questions ===== */

.deans_questions {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}


/* ====================================================
 * 		dot ( page )
 * ==================================================*/

.dot_certificates_inner {
 	display: flex;
 	flex-direction: column;
 	grid-gap: 20px;
}

.dot_certificates_list {
 	display: flex;
 	flex-direction: column;
 	grid-gap: 10px;
}

.dot_certificates_list_item {
 	display: flex;
 	flex-direction: column;
 	grid-gap: 5px;

 	padding: 10px;
 	border: 1px solid #576a7b;
 	
 	cursor: pointer;
 	background-color: #fff;
 	transition: all 0.2s linear;
}

.dot_certificates_list_item:hover {
 	background-color: #f3f7fb;
 	-webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

/* ===== DDET ===== */

.DDET {
	display: flex;
	flex-direction: column;
	grid-gap: 40px;
}
/* ====================================================
 * 		marketing ( page )
 * ==================================================*/
.marketing_notice {
	width: 100%;

	color: #576a7b;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
}
/* ====================================================
 *
 * 		constructor blocks
 *
 * ==================================================*/
/* ====================================================
 * 		page ( general )
 * ==================================================*/
.page {
	width: 100%;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	background-color: #f8f9fa;
}

.page_inner {
	width: 100%;
	max-width: 1120px;

	display: flex;
	flex-direction: column;
	grid-gap: 60px;
	flex-grow: 1;
	
	margin: 0 auto;
	padding: 60px 60px 80px;
	background-color: #fff;
}

@media (max-width: 767px) {
	.page_inner {
		padding: 60px 10px 80px;
	}
}
/* ====================================================
 * 		page_header
 * ==================================================*/

.page_title {
 	width: 100%;

 	color: #092056;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;

  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f91c3d;
}

/* ===== page_menu ===== */

.page_menu {
	width: 100%;

	display: flex;
	align-items: center;
	grid-gap: 10px;

	font-family: "Open Sans", sans-serif;
}

.page_menu_item {
	color: #576a7b;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	font-family: inherit;
	text-decoration: underline 1px transparent;

	transition: all 0.2s ease-out;
}

.page_menu_item:hover {
	color: #f71010;
	text-decoration-color: #f71010;
}

.page_menu_item:last-child {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.page_menu_item:last-child:hover {
	color: #576a7b;
	text-decoration-color: transparent;
	cursor: default;
}

.page_menu span {
	color: #f91c3d;
	line-height: 0;
}

@media (max-width: 1024px) {
	.page_inner {
		padding: 30px 30px 60px;
	}
}

@media (max-width: 767px) {
	.page_inner {
		padding: 30px 15px 60px;
	}
}

@media (orientation: portrait) {
  .page_menu {
    flex-wrap: wrap;
  }
}
/* ====================================================
 * 		page_headline
 * ==================================================*/
.page_headline {
	color: #061843;
	font-size: 18px;
	font-weight: 600;
	text-align: justify;
	line-height: 1.3;
	white-space: pre-wrap;
	margin: 0;
}

@media (max-width: 767px) {
	.page_headline {
		text-align: left;
	}
}
/* ====================================================
 *    block-hiding
 * ==================================================*/


.block-hiding_title {
	display: flex;
	align-items: center;
	justify-content: space-between;

	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
	font-family: "Open Sans", sans-serif;

	padding: 15px 20px;
	border-radius: 4px;
	user-select: none;
	cursor: pointer;
	transition: all 0.2s linear;

	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
}

.block-hiding_title:hover {
	color: #f91c3d;
}

.block-hiding_arrow {
	width: 20px;
  height: 10px;

  flex-shrink: 0;
  margin-left: 10px;
  background-color: #fff;
  transition: all 0.2s linear;
  
	-webkit-clip-path: polygon(10px 5px, 20px 0, 20px 5px, 10px 10px, 0 5px, 0 0);
	clip-path: polygon(10px 5px, 20px 0, 20px 5px, 10px 10px, 0 5px, 0 0);
}

.block-hiding_title:hover .block-hiding_arrow {
	background-color: #f91c3d;
}

.block-hiding_title.closed .block-hiding_arrow {
	transform: rotate(180deg);
}

.block-hiding_inner {
	display: flex;
	flex-direction: column;
	grid-gap: 60px;
	margin-top: 40px;
}

.block-hiding_inner.closed {
	display: none;
}
/* ====================================================
 *    list
 * ==================================================*/
.list {
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
}

.list_title {
	display: flex;
	align-items: center;
	justify-content: space-between;

	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
	font-family: "Open Sans", sans-serif;

	padding: 15px 20px;
	border-radius: 4px;

	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
}

.list_arrow {
	width: 20px;
  height: 10px;

  flex-shrink: 0;
  margin-left: 10px;
  background-color: #fff;
  transition: all 0.2s linear;
  
	-webkit-clip-path: polygon(10px 5px, 20px 0, 20px 5px, 10px 10px, 0 5px, 0 0);
	clip-path: polygon(10px 5px, 20px 0, 20px 5px, 10px 10px, 0 5px, 0 0);
}

.list_btn {
	user-select: none;
	transition: all 0.2s linear;
}

.list_btn:hover {
	color: #f91c3d;
	cursor: pointer;
}

.list_btn:hover .list_arrow {
	background-color: #f91c3d;
}

.list_title.closed .list_arrow {
	transform: rotate(180deg);
}

.list_inner {
	height: auto;
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
	transition: all 0.2s linear;
}

.list_inner.closed {
	display: none;
}

.list_split {
	color: #000;
	font-size: 17px;
	font-weight: 700;
	text-align: center;

	padding: 10px;
	
	background-color: rgba(18, 48, 117, 0.2);
}

.list_item {
	display: flex;
	align-items: center;
	grid-gap: 5px;
}

.list_item span {
	color: #f91c3d;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	font-family: "Open Sans", sans-serif;
}

.list_item_name {
	width: 100%;

	color: #000;
	font-size: 16px;
	font-weight: 500;

	position: relative;
	padding: 10px 5px;

	border-bottom: 1px solid #ccd2de;
}
/* ====================================================
 * 		subList
 * ==================================================*/
.subList {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;

	margin: 0;
}

.subList li {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;

	padding-left: 7px;
}

.subList li::marker {
	color: #f91c3d;
	font-weight: 700;
}

.subList li::first-letter {
	text-transform: uppercase;
}

.subList.ol {
	padding-inline-start: 28px;
	list-style-type: decimal-leading-zero;
}

.subList.ul {
	padding-inline-start: 13px;
}

.subList.ul.v2 {
	padding-inline-start: 6px;
}

.subList.ul li {
	padding-left: 10px;
}

.subList.ul.v2 li {
	padding-left: 10px;
}

.subList.ul li::marker {
	content: "✓";
}

.subList.ul.v2 li::marker {
	content: "•";
}
/* ====================================================
 * 		block-person
 * ==================================================*/
.block-person {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 40px;

	position: relative;
}

.block-person_info {
	color: #092056;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

@media (max-width: 767px) {
	.block-person {
		flex-direction: column;
	}
}
/* ====================================================
 * 		block-picLink
 * ==================================================*/
.block-picLink {
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	grid-gap: 40px;
}

.block-picLink_item {
	width: 306px;

	display: flex;
	flex-direction: column;
	grid-gap: 15px;

	padding: 20px;
	border: 1px solid rgba(18, 48, 117, 0.2);
	background-color: #fff;
}

.block-picLink_item img {
	width: 100%;
}

.block-picLink_item h1 {
	color: #f91c3d;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	line-height: 1.1;
}

.block-picLink_item a {
	width: 100%;
	height: 30px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline 1px transparent;
	text-underline-position: under;
	line-height: 1;
	
	margin-top: auto;
	cursor: pointer;
	transition: all 0.2s linear;
	background-color: #092056;
}

.block-picLink_item a:hover {
	color: #092056;
	text-decoration-color: inherit;
	background-color: transparent;
}
/* ====================================================
 * 		block-profiles
 * ==================================================*/
.block-profiles {
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 40px;
}

.block-profiles_card {
	width: 306px;

	display: flex;
	flex-direction: column;
	grid-gap: 10px;

	padding: 20px;
	border: 1px solid #ccd2de;
	background-color: #fff;
}

.block-profiles_card img {
	width: 266px;
	height: 266px;
	
}

.block-profiles_card h1 {
	color: #f91c3d;
	font-size: 16px;
	font-weight: 700;
	text-align: center;

	padding-bottom: 10px;
	border-bottom: 1px solid #ccd2de;
}

.block-profiles_card h2 {
	color: #061843;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}

.block-profiles_card_link {
	font-size: 15px;
	margin-top: auto;
	align-self: center;
	padding-bottom: 5px;
}

.block-profiles_card_link span {
	color: #f91c3d;
	font-weight: 700;
}

.block-profiles_card_link a {
	color: #0645ad;
	font-weight: 400;
	text-decoration: underline 1px inherit;
	transition: all 0.2s linear;
}

.block-profiles_card_link a:hover {
	text-decoration-color: transparent;
}
/* ====================================================
 * 		block-link
 * ==================================================*/
.block-link {
	width: fit-content;
	color: #0645ad;
	font-size: 16px;
	font-weight: 500;
	text-decoration: underline 1px #0645ad;

	transition: all 0.2s linear;

	margin: 0;
}

.block-link:before {
	color: #f91c3d;
	content:"⇲";
	line-height: 1;
	display: inline-block;
	margin-right: 5px;
	transform: rotate(-90deg);
	transition: all 0.2s linear;
}

.block-link:hover {
	text-decoration-color: transparent;
}
/* ====================================================
 * 		block-tel
 * ==================================================*/
.block-tel {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 10px;
}

.block-tel:before {
	content: "\260F";
	color: #f91c3d;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	display: flex;
}

.block-tel_name {
	color: #000;
	font-size: 16px;
	font-weight: 500;
}

.block-tel_number {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	grid-gap: 5px;

	color: #000;
	font-size: 16px;
	font-weight: 500;
	text-decoration: underline 1px #000;
	transition: all 0.2s linear;
}

.block-tel_number:hover {
	text-decoration-color: transparent;
}
/* ====================================================
 * 		block-Email
 * ==================================================*/
.block-Email {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 10px;
}

.block-Email:before {
	content: "\2709";
	color: #f91c3d;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	display: flex;
}

.block-Email_name {
	color: #000;
	font-size: 16px;
	font-weight: 500;
}

.block-Email_mail {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	grid-gap: 5px;

	color: #000;
	font-size: 16px;
	font-weight: 500;
	text-decoration: underline 1px #000;
	transition: all 0.2s linear;
}

.block-Email_mail:hover {
	text-decoration-color: transparent;
}
/* ====================================================
 * 		block-preview-v1
 * ==================================================*/
.block-preview-v1 {
	display: flex;
	grid-gap: 20px;

	padding: 20px;
	border: 1px solid #ccd2de;
	background-color: #f8f9fa;
}

.block-preview-v1 h1 {
	color: #061843;
	font-size: 18px;
	font-weight: 700;
}

.block-preview-v1_text {
	color: #000;
	font-size: 16px;
	font-weight: 500;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -moz-box;
	-moz-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	box-orient: vertical;
}

.block-preview-v1_button {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 0.5px;

	align-self: flex-end;
	padding: 10px 15px;
	border: 1px solid #f91c3d;
	border-radius: 6px;
	background-color: #f91c3d;
	transition: all 0.2s linear;

	-webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

.block-preview-v1_button:hover {
	color: #f91c3d;
	background-color: #fff;
}

@media (max-width: 767px) {
	.block-preview-v1 {
		flex-direction: column;
	}

	.block-preview-v1_text {
		-webkit-line-clamp: 3;
		line-clamp: 3;
	}
}
/* ====================================================
 * 		block-video
 * ==================================================*/
.block-video {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 20px;
}

.block-video_item {
	display: flex;
	flex-basis: 400px;
	flex-grow: 1;
	position: relative;
}

.block-video_item video {
	width: unset;
	height: unset;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;

	border: none;
	
}

.block-video_item iframe {
	width: unset;
	height: unset;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;

	border: none;
	
}

@media (max-width: 600px) {
	.block-video_item video {
		width: 100%;
	}

	.block-video_item iframe {
		width: 100%;
	}
}
/* ====================================================
 * 		block-youtube
 * ==================================================*/
.block-youtube {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 20px;
}

.block-youtube_item {
	display: flex;
	flex-basis: 400px;
	flex-grow: 1;
	position: relative;
}

.block-youtube_item iframe {
	width: unset;
	height: unset;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;

	border: none;
	
}

@media (max-width: 600px) {
	.block-youtube_item iframe {
		width: 100%;
	}
}
/* ====================================================
 * 		input
 * ==================================================*/
.input_form {
	flex-grow: 1;
	
	background-color: #fff;
	z-index: 10;
}

.input_form_header {
	width: 100%;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 1;

	padding: 20px;
	border-radius: 0px;
	
	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
}

.input_form_inner {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
	padding: 20px;
	border: 1px solid rgba(18, 48, 117, 0.2);
	border-top: none;
	border-radius: 0px;
}

.input_form_inner.wrapping {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}

.input_form_wrapper {
	width: calc(50% - 10px);
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}

.input_form_wrapper-row {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	grid-gap: 20px;
}

.input {
	min-width: calc(50% - 10px);
	flex-grow: 1;
	display: flex;
}

.input input {
	height: 44px;
	flex-grow: 1;

	color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  font-family: "Open Sans", sans-serif;

  padding: 10px;
  outline: none;
  border: 1px solid #576a7b;
  border-radius: 4px;
  
  background-color: #fff;
  transition: all 0.1s linear;
}

.input input:focus {
	-webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

/* ===== input_textarea ===== */

.input textarea {
	height: 44px;
	flex-grow: 1;

	color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  font-family: inherit;
  font-family: "Open Sans", sans-serif;

  padding: 10px;
  outline: none;
  border: 1px solid #576a7b;
  border-radius: 4px;
  
  resize: none;
  background-color: #fff;
  transition: all 0.1s linear;
}

.input textarea:focus {
	-webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

/* ===== input-file ===== */

.input-file {
	width: 100%;
	min-width: calc(50% - 10px);
	min-height: 44px;
	flex-grow: 1;

	display: flex;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 15px;

	border: 1px solid #576a7b;
	border-radius: 4px;
	padding: 10px;
	background-color: #fff;
}

.input-file label {
	color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
  font-family: "Open Sans", sans-serif;
}

.input-file input[type=file] {
	flex-grow: 1;
	color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  font-family: inherit;
  font-family: "Open Sans", sans-serif;
}

.input-file input[type=file]::file-selector-button {
	height: 22px;
	color: #fff;
	font-size: 13px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;

	border: none;
	border-radius: 4px;
	
	margin-right: 10px;
	padding: 0 15px;
	
	background: #055eea;
	cursor: pointer;
	transition: all 0.2s linear;
}

.input-file input[type=file]::file-selector-button:hover {
	background: #2781fc;
}

/* ===== input-select ===== */

.input-select {
	width: 100%;
	min-width: calc(50% - 10px);
	min-height: 44px;
	flex-grow: 1;

	display: flex;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 15px;

	border: 1px solid #576a7b;
	border-radius: 4px;
	padding: 10px;
	background-color: #fff;
}

.input-select label {
	color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
  font-family: "Open Sans", sans-serif;
}

.input-select select {
	flex-grow: 1;
	max-width: 100%;

	color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  font-family: inherit;
  text-overflow: ellipsis;
  font-family: "Open Sans", sans-serif;

  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.2s linear;
}

.input-select select:hover {
	color: #2781fc;
}

.input-select select:active {
	color: #055eea;
}

.input-select select option {
	color: #000;
	text-overflow: ellipsis;
}

/* ===== placeholder ===== */

::-webkit-input-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

::-moz-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

:-moz-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

:-ms-input-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.2s ease;}
::-moz-placeholder                {opacity: 1; transition: opacity 0.2s ease;}
:-moz-placeholder                 {opacity: 1; transition: opacity 0.2s ease;}
:-ms-input-placeholder            {opacity: 1; transition: opacity 0.2s ease;}
:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.2s ease;}
:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.2s ease;}
:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.2s ease;}
:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.2s ease;}

/* ===== input-checkBox ===== */

.input-checkBox {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;

	padding: 10px;
	border: 1px solid #576a7b;
	border-radius: 4px;
}

.input-checkBox label {
	display: flex;
	align-items: center;
	grid-gap: 5px;

	cursor: pointer;
}

.input-checkBox label:has(input:checked) {
	color: #2781fc;
}

.input-checkBox label input {
	width: 14px;
	height: 14px;
	cursor: pointer;
	accent-color: #2781fc;
	margin: 0;
}

.input-checkBox label input {
	
}

.input-checkBox label input {
	
}

/* ===== input_btn ===== */

.input_btn {
	height: 44px;
	min-width: calc(50% - 10px);
	flex-grow: 1;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;

  padding: 16px;
  border: none;
  border-radius: 4px;
  
  cursor: pointer;
  background-color: #0077ff;
  transition: all 0.2s linear;
}

.input_btn:hover {
  background-color: #008aff;
}

.input_btn:active {
  background-color: #0077ff;
}

.input_btn.green {
	background-color: #00bd9d;
	transition: all 0.2s linear;
}

.input_btn.green:hover {
	background-color: #00d8ba;
}

.input_btn.green:active {
  background-color: #00bd9d;
}

/* ===== input_info ===== */

.input_info {
	width: 100%;
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
}

.input_notice {
	width: 100%;

	color: #576a7b;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;

	padding: 10px;
	border: 1px dashed #bfc4ce;
	
	background-color: #fff;
}

.input_notice.important {
	color: #f96231;
	border-color: #f8ca4e;
}

/* ===== input_agreement ===== */

.input_agreement {
	width: 100%;

	color: #061843;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	font-family: "Open Sans", sans-serif;
}

/* ===== input_instruction ===== */

.input_instruction {
	width: 100%;
	display: flex;
	flex-direction: column;
	grid-gap: 20px;

	color: #000;
	font-size: 16px;
	font-weight: 400;

	padding: 15px;
	border: 1px dashed #bfc4ce;
	
}

.input_instruction b {
	color: #123075;
}

.input_instruction_list_title {
	font-size: 17px;
	color: #123075;
	font-weight: 700;
}

.input_instruction_list ol {
	list-style-position: inside;
	padding: 0;
	margin: 0;
}

.input_instruction_list ol li {
	margin-top: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #dddfe7;
}

.input_instruction_list ol li::marker {
	color: #f91c3d;
	font-weight: 700;
}

/* ===== input_clue ===== */

.input_clue {
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 20px;
	flex-grow: 1;

	color: #f71010;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;

	border: 1px dashed #f71010;
	
	padding: 10px;
	cursor: pointer;
	background-color: #fff;
}

.input_clue span {
	font-size: 50px;
	line-height: 0;
}

.input_clue {
  -webkit-animation: input_clue 3s ease-out infinite;
  animation: input_clue 3s ease-out infinite;
}

@keyframes input_clue {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== passReset ===== */

.passReset-btn {
	color: #576a7b;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	text-decoration: underline 1px transparent;
	text-underline-position: under;

	margin: 0 auto;
	
	border: 1px solid transparent;
	
	cursor: pointer;
	transition: all 0.2s linear;
}

.passReset-btn:hover {
	color: #2781fc;
	text-decoration-color: #2781fc;
}
/* ====================================================
 * 		accordion
 * ==================================================*/


.accordion_header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #092056;
  padding: 10px;
  border: 1px solid #576a7b;
  
  cursor: pointer;
  transition: all 0.2s linear;
}

.accordion_content .accordion_header {
	font-size: 15px;
  font-weight: 500;
  padding-left: 20px;
  border-top: none;
  border-radius: 0px;
  user-select: none;
  background-color: #fff;
}

.accordion_content .accordion_header:hover {
	color: #2781fc;
}

.accordion_content .accordion_header:hover:after {
	background-color: #2781fc;
}

/* .accordion_content .accordion_content .accordion_header {
  padding-left: 40px;
}*/

.accordion > .accordion_item > .accordion_header {
  font-size: 16px;
  font-weight: 700;
  background-color: #f3f7fb;

  margin-top: 10px;
  user-select: none;
}

.accordion > .accordion_item > .accordion_header:hover {
  color: #2781fc;
}

.accordion > .accordion_item > .accordion_header:hover:after {
	background-color: #2781fc;
}

.accordion_item_show > .accordion_header {
	color: #055eea;
}

.accordion_header:after {
	content: "";
	background-color: #576a7b;
	line-height: 1;

  width: 20px;
  height: 10px;

  flex-shrink: 0;
  
  transition: all 0.2s linear;

  -webkit-clip-path: polygon(10px 5px, 20px 0, 20px 5px, 10px 10px, 0 5px, 0 0);
	clip-path: polygon(10px 5px, 20px 0, 20px 5px, 10px 10px, 0 5px, 0 0);
}

.accordion_item_show > .accordion_header:after {
	background-color: #055eea;
}

.accordion_item_show > .accordion_header:after,
.accordion_item_slidedown > .accordion_header:after {
  transform: rotate(-180deg);
}

.accordion_item_show .accordion_item_show > .accordion_header {
  border-radius: 0px;
  border-bottom: none;
}

.accordion_content {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.accordion_item:not(.accordion_item_show) > .accordion_body {
  display: none;
}

/* ===== accordion - input_form ===== */

.accordion .input_form {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.accordion .input_form_inner {
	border: 1px solid #576a7b;
	border-top: none;
}
/* ====================================================
 * 		division
 * ==================================================*/
.division {
	display: flex;
	flex-direction: column;
	grid-gap: 30px;
}

.division_inner {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 30px;
}

/* ===== division_person ===== */

.division_person {
	width: calc(33.3333% - 20px);
	display: flex;
	flex-direction: column;

	position: relative;
	padding: 135px 15px 40px;
	margin: 20px 0;
	

	background-color: rgb(9, 32, 86);
  background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
  background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
  background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));

  -webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.division_person_photo {
	width: 140px;
	height: 140px;

	display: flex;
	position: relative;

	position: absolute;
  top: -20px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);

	overflow: hidden;
	

	-webkit-box-shadow: 4px 4px 2px 0px rgba(5, 17, 46, 0.2);
  -moz-box-shadow: 4px 4px 2px 0px rgba(5, 17, 46, 0.2);
  box-shadow: 4px 4px 2px 0px rgba(5, 17, 46, 0.2);
}

.division_person_photo img {
	object-fit: cover;
	width: 100%;
  height: 100%;
}

.division_person_info {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
}

.division_person_name {
	color: #f3f7fb;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
}

.division_person_info_item {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 5px;

	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1;

	padding: 7px;
	
	background-color: #fff;
}

.division_person_info_item b {
	font-weight: 900;
	white-space: nowrap;
}

.division_person_info a {
	width: calc(100% - 30px);

	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate3d(-50%, 0, 0);

	color: #fff;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	text-decoration: none;

	padding: 10px 15px;

	border: none;
	

	cursor: pointer;
	background-color: #f91c3d;
	transition: all 0.2s linear;

	-webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 4px 4px 2px  0px rgba(18, 48, 117, 0.2);
  box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

.division_person_info a:hover {
	background-color: #f71010;
}

.division_person_info a:active {
	background-color: #fa2b56;
}

/* ===== division_person.V2 ===== */

.division_person:not(:has(a)) {
	padding-bottom: 15px;

	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(9, 32, 86) 70%, rgb(249, 28, 61) 100%);
	background: -moz-linear-gradient(180deg, rgb(9, 32, 86) 70%, rgb(249, 28, 61) 100%);
	background: linear-gradient(180deg, rgb(9, 32, 86) 70%, rgb(249, 28, 61) 100%);
}

@media (max-width: 900px) {
	.division_person {
		width: calc(50% - 20px);
	}
}

@media (max-width: 600px) {
	.division_person {
		width: 100%;
	}
}
/* ====================================================
 * 		block-whatsapp
 * ==================================================*/
.block-whatsapp {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	grid-gap: 20px;

	padding: 20px;
	

	background-color: rgb(9, 32, 86);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.block-whatsapp span {
	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 20px;
	font-weight: 500;
}

.block-whatsapp a {
	display: flex;
	align-items: center;
	justify-content: center;

	color: #092056;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;

	padding: 5px 10px;
	
	background-color: #fff;
  transition: all 0.2s linear;
}

.block-whatsapp a:hover {
	color: #fff;
	background-color: #055eea;
}

.block-whatsapp img {
	width: 35px;
	margin-left: 10px;
}
/* ====================================================
 * 		youtubeGallery
 * ==================================================*/
.youtubeGallery {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}

.youtubeGallery_inner {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 20px;
}

.youtubeGallery iframe {
	width: calc(100% / 2 - 10px);
	aspect-ratio: 16 / 9;
	
}
/* ====================================================
 *    block-slider
 * ==================================================*/

.block-slider_item {
	width: 100%;
	max-height: 300px;
	aspect-ratio: 4 / 3;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.block-slider_item img {
	object-fit: cover;
	width: 100%;
  height: 100%;
	
	cursor: pointer;
	transition: all 0.15s linear;
}


.block-slider .slider_control {
	height: calc(100% - 20px);
	font-weight: 500;
	border-radius: 4px;
	background-color: rgba(6, 24, 67, 0.2);;
}

@media (max-width: 767px) {
	.block-slider_item {
		padding: 0px;
	}

	.block-slider_item img {
		max-height: 767px;
	}

	.block-slider .slider_control {
		height: 30px;
		font-weight: 600;
	}
}
/* ====================================================
 *    photoGallery
 * ==================================================*/
.photoGallery {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-gap: 30px;
}

.photoGallery_inner {
	width: 100%;
	display: grid;
	align-items: flex-start;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
}

.photoGallery_item {
	display: flex;
	aspect-ratio: 4 / 3;
	position: relative;
}

.photoGallery_item img {
	object-fit: cover;
	width: 100%;
  height: 100%;

	border: 1px solid rgba(18, 48, 117, 0.2);
	
	cursor: pointer;
	transition: all 0.15s linear;
}

.photoGallery_more {
	display: none;

	color: #092056;
	font-size: 16px;
	font-weight: 700;

	padding: 10px 20px;
	border: none;
	
	background-color: #f3f7fb;

	-webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

@media (max-width: 1024px) {
	.photoGallery_item {
		display: none;
	}

	.photoGallery_item:nth-child(-n+2) {
		display: flex;
	}

	.photoGallery_more {
		display: flex;
	}
}

/* ===== photoGallery_controls ===== */



#photoGallery_controls-prevBtn, 
#photoGallery_controls-nextBtn {
	width: 40px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  top: 50%;
  
  color: #fff;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  line-height: 1;

  border: none;
  
  outline: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);

  transform: translateY(-50%);
  transition: all 0.2s linear;
  z-index: 60000;
}

#photoGallery_controls-prevBtn {
	left: 5px;
}

#photoGallery_controls-nextBtn {
	right: 5px;
}

#photoGallery_controls-prevBtn:hover, 
#photoGallery_controls-nextBtn:hover {
  color: #2781fc;
}

#photoGallery_controls-prevBtn:disabled , 
#photoGallery_controls-nextBtn:disabled {
  opacity: 0;
  cursor: default;
}

#photoGallery_controls-closeBtn {
	position: fixed;
  top: 0;
  right: 0;
  
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1;

  border: none;
  border-radius: 0px;
  outline: 0;
  padding: 8px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);

  transition: all 0.2s linear;
  z-index: 60000;
}

#photoGallery_controls-closeBtn:hover {
  color: #f71010;
}

.modal {
  width: 100%;
  height: 100vh;

  align-items: center;
  justify-content: center;
  display: none;

  position: fixed;
  top: 0;
  right: 0;
  cursor: zoom-out;
  z-index: 50000;

  background-color: rgba(0, 0, 0, 0.8);
}

.modal img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
}
/* ====================================================
 *    block-picture
 * ==================================================*/
.block-picture {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-grow: 1;
}

.block-picture img {
	max-width: 100%;
	max-height: 767px;
	border: 1px solid rgba(18, 48, 117, 0.2);
	
}
/* ====================================================
 *    block-title
 * ==================================================*/
.block-title-h1 {
	color: #092056;
	font-size: 24px;
	font-weight: 700;

	margin-bottom: -30px;
}

.block-title-h2 {
	color: #092056;
	font-size: 22px;
	font-weight: 700;

	margin-bottom: -30px;
}

.blockTitle {
	width: 100%;
	color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;

  padding: 15px 20px;
  

  background-color: rgb(18, 48, 117);
	background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
	background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}
/* ====================================================
 *    block-textarea
 * ==================================================*/
.block-textarea {
	width: 100%;

	color: #000;
	font-size: 16px;
	font-weight: 500;
	font-family: inherit;
	text-align: justify;
	line-height: 1.4;

	border: none;
	outline: none;
	resize: none;
	cursor: default;
	margin: 0;
}
/* ====================================================
 * 		block-text
 * ==================================================*/
.block-text {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}

.block-text_paragraph {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	text-align: justify;
	line-height: 1.5;

	margin: 0;
}

.block-text_paragraph b {
	font-weight: 700;
}

.block-text_paragraph a {
	color: #0645ad;
	font-style: italic;
	text-decoration: underline 1px #0645ad;
	transition: all 0.2s linear;
}

.block-text_paragraph a:hover {
	text-decoration-color: transparent;
}
/* ====================================================
 * 		block-text-p
 * ==================================================*/
.block-text-p {
	width: 100%;

	color: #000;
	font-size: 16px;
	font-weight: 500;
	font-family: inherit;
	text-align: justify;
	line-height: 1.4;
	white-space: pre-wrap;

	cursor: default;
	margin: 0;
}
/* ====================================================
 * 		block-table
 * ==================================================*/
.block-table {
	width: 100%;
	overflow-x: auto;
}

.block-table table {
	width: 100%;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	border-collapse: collapse;
	background-color: #fff;
}

.block-table th {
	padding: 5px;
	border: 1px solid #061843;
}

.block-table td {
	padding: 5px;
	border: 1px solid #061843;
}

.block-table th {
	color: #092056;
	font-size: 15px;
	font-weight: 700;
}

.block-table table .t-number {
	color: #f91c3d;
	font-weight: 700;
	text-align: center;
}
/* ====================================================
 *    block-button
 * ==================================================*/
.block-button {
	min-width: 290px;
	align-self: center;

	color: #092056;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;

	padding: 15px;
	border: 2px solid #092056;
	
	cursor: pointer;
	background-color: #fff;
	transition: all 0.2s linear;

	-webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	-moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
	box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.block-button:hover {
	color: #fff;
	background-color: #092056;
}
/* ====================================================
 *    block-br
 * ==================================================*/
.block-br {
	width: 100%;
	height: 2px;
	background-color: #f91c3d;
}
/* ====================================================
 *    picTxt
 * ==================================================*/
.picTxt {
	display: flex;
	flex-direction: column;
	grid-gap: 30px;
}

.picTxt_item {
	width: 100%;
	display: flex;
	align-items: flex-start;
	grid-gap: 20px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ccd2de;
}

.picTxt_item:nth-child(even) {
	flex-direction: row-reverse;
}

.picTxt_item:last-child {
	padding-bottom: 0px;
	border-bottom: none;
}

.picTxt_item_img {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.picTxt_item_img img {
	width: auto;
	height: auto;
	max-width: 300px;
	max-height: 300px;
}

.picTxt_item_text {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
	flex-grow: 1;
}

.picTxt_item_text h3 {
	color: #092056;
	font-size: 20px;
	font-weight: 700;
}

.picTxt_item_text p {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	text-align: justify;
	line-height: 1.5;
	font-family: inherit;
	margin: 0;
}

@media (max-width: 767px) {
	.picTxt_item {
		flex-wrap: wrap;
		justify-content: center;
	}

	.picTxt_item_img {
		flex-shrink: 1;
	}

	.picTxt_item_img img {
		max-width: 100%;
		max-height: 424px;
	}

	.picTxt_item_text h3 {
		text-align: center;
	}
}
/* ====================================================
 *    slider_partners
 * ==================================================*/
.slider_partners_item {
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	grid-gap: 10px;

	color: #576a7b;
	text-decoration: underline 1px transparent;
	transition: all 0.2s linear;
}

.slider_partners_item:hover {
	color: #576a7b;
	text-decoration-color: transparent;
}

.slider_partners_item p {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	line-height: 1;

	margin: 0;
	padding: 10px;
}

.slider_partners_item img {
	width: auto;
	height: auto;
	max-width: 150px;
	max-height: 150px;
	margin: auto;
}
/* ====================================================
 *    block-headContacts
 * ==================================================*/
.block-headContacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	grid-gap: 5px;
}

.block-headContacts h3 {
	color: #092056;
	font-size: 16px;
	font-weight: 700;
}

.block-headContacts_item {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	font-size: 14px;
	font-weight: 500;
}

.block-headContacts_item address {
	color: #061843;
	font-style: normal;
	text-align: right;
}

.block-headContacts_item div {
	color: #061843;
	font-style: normal;
	text-align: right;
}

.block-headContacts_item span {
	color: #f91c3d;
	font-weight: 600;
	margin-right: 8px;
}

.block-headContacts_item a {
	color: #061843;
	text-decoration: underline 1px solid;
	text-align: right;
	transition: all 0.2s linear;
}

.block-headContacts_item a:hover {
	text-decoration-color: transparent;
}
/* ====================================================
 *    notice
 * ==================================================*/
.notice {
  width: 100%;
  height: 100vh;

  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  background-color: rgba(243, 247, 251, 0.9);
  z-index: 2000;
}

.notice_item {
  width: 100%;
  max-width: 450px;

  display: flex;
  flex-direction: column;
  
  
  background-color: #fff;

  -webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.notice_title {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(18, 48, 117, 0.2);

  padding: 10px;
  border-radius: 0px;
  background-color: #00bd9d;
}

.notice_title:after {
  content: "✓";
  display: flex;
}

.notice_item_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;

  padding: 30px;
  border: 1px dashed #00bd9d;
  border-top: none;
  border-radius: 0px;
}

.notice_text {
  color: #092056;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

.notice_btn {
  width: 100%;
  max-width: 250px;

  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  padding: 10px;
  border: none;
  
  cursor: pointer;
  background-color: #00bd9d;
  transition: all 0.2s linear;
}

.notice_btn:hover {
  background-color: #00d8ba;

  -webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

.notice_item.error .notice_item_bottom {
  border-color: #f71010;
}

.notice_item.error .notice_title {
  color: #fff;
  background-color: #f71010;
}

.notice_item.error .notice_title:after{
  content: "!";
}

.notice_item.error .notice_btn  {
  background-color: #f71010;
}

.notice_item.error .notice_btn:hover {
  background-color: #fa2b56;
}

/* ===== load ===== */

.load {
  width: 100%;
  max-width: 450px;

  display: flex;
  flex-direction: column;

  

  -webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.load_top {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(18, 48, 117, 0.2); 

  padding: 10px;
  border-radius: 0px;
  background-color: #576a7b;
}

.load_bottom {
  width: 100;

  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;

  padding: 30px;
  border: 1px dashed #576a7b;
  border-radius: 0px;
  border-top: none;
  background-color: #fff;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px dashed;
  border-color: #bfc4ce #bfc4ce transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2px solid;
  border-color: transparent #f91c3d #f91c3d;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
    
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.load_text {
  color: #092056;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
/* ====================================================
 *
 * 		@media
 *
 * ==================================================*/
/* ====================================================
 *    @media ( mobile )
 * ==================================================*/
@media (max-width: 424px) {

/* ===== input ===== */

	.input {
		width: 100%;
	}

	.input_form_wrapper {
		width: 100%;
	}

	.input_clue span {
		transform: rotate(90deg);
	}

/* ===== whatsappBlock ===== */

	.whatsappBlock {
		flex-direction: column;
	}

/* ===== youtubeGallery ===== */

	.youtubeGallery iframe {
		width: 100%;
	}

/* ===== marketing ===== */

	.marketing_request_block {
		flex-direction: column;
	}

}
/* ====================================================
 *    forVI
 * ==================================================*/
body.forVI .header {
	background: unset;
	background-color: #222;
}

body.forVI .header-mobile {
	background: unset;
	background-color: #222;
}

body.forVI .header_logo_text h4 {
	font-size: 16px;
	font-weight: 700;
}

body.forVI .header_logo_text h5 {
	font-size: 13px;
	font-weight: 600;
}

/* ===== menu ===== */

body.forVI .menu {
	background: unset;
	background-color: #111;
}

body.forVI .menu_item {
	border-left: 1px solid #111;
	border-right: 1px solid #111;
}

body.forVI .menu_item_name {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
}

body.forVI .menu_item_list {
	background-color: #CCFF66;
}

body.forVI .menu_item_list_title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

body.forVI .menu_item_list_item {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

body.forVI .menu_item_list_item:hover {
	background-color: rgba(000, 000, 000, 0.2);
}

/* ===== page ===== */

body.forVI .page {
	background-color: #222;
}

body.forVI .page_inner {
	background-color: #000;
}

body.forVI .page_title {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
}

body.forVI .page_menu_item {
	font-size: 15px;
	font-weight: 700;
}

body.forVI .page_headline {
	color: #fff;
	font-size: 26px;
	font-weight: 700;
}

/* ===== text ===== */

body.forVI .block-text-p {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

body.forVI .block-title-h1 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
}

body.forVI .block-title-h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
}

body.forVI .block-text_paragraph {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

/* ===== photo ===== */

body.forVI .photoGallery {
	display: none;
}

body.forVI .block-picture {
	display: none;
}

body.forVI .block-slider {
	display: none;
}

/* ===== block-profiles ===== */

body.forVI .block-profiles {
	display: none;
}

body.forVI .block-profiles_card {
	display: none;
}

/* ===== picTxt ===== */

body.forVI .picTxt_item_img {
	display: none;
}

body.forVI .picTxt_item_text p {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

/* ===== list ===== */

body.forVI .list .list_title {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

body.forVI .list .list_item span {
	color: #fff;
	font-size: 24px;
}

body.forVI .list .list_item_name{
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

/* ===== subList ===== */

body.forVI li {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin-left: 10px;
}

body.forVI .subList li::marker {
	color: #fff;
}

/* ===== block-link ===== */

body.forVI .block-link {
	color: #2781fc;
	font-size: 22px;
	font-weight: 700;
	text-decoration-color: #2781fc;
}

body.forVI .block-link:before {
	color: #fff;
}

body.forVI .block-link:hover {
	text-decoration-color: transparent;
}

/* ===== footer ===== */

body.forVI .footer {
	background: unset;
	background: unset;
	background: unset;
	background-color: #111;
}

body.forVI .footer_info h3 {
	font-size: 22px;
	font-weight: 700;
}

body.forVI .footer_info p {
	font-size: 18px;
	font-weight: 700;
}

body.forVI .footer_info p b {
	font-weight: 600;
}

/* ===== rector ===== */

body.forVI .rector_top_info h1 {
	color: #fff;
	font-size: 30px;
}

body.forVI .rector_top_info h2 {
	color: #fff;
	font-size: 24px;
}

body.forVI .rector_top_info p {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}

body.forVI .rector_links h4 {
	font-size: 22px;
	padding: 0;
	background-color: unset;
	background: unset;
}

body.forVI .rector_links_item span {
	color: #fff;
}

/* ===== block-table ===== */

body.forVI .block-table table {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	background-color: transparent;
}

body.forVI .block-table th {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

body.forVI .block-table table .t-number {
	color: #fff;
}

body.forVI .block-table td, th {
	border: 2px solid #fff;
}

/* ===== block-picLink ===== */

body.forVI .block-picLink_item {
	border: 2px solid #fff;
	background-color: transparent;
}

body.forVI .block-picLink_item h1 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

body.forVI .block-picLink_item a {
	font-size: 18px;
	font-weight: 600;
}

/* ===== block-hiding_title ===== */

body.forVI .block-hiding_title {
	font-size: 24px;
	font-weight: 700;
}

/* ===== block-person ===== */

body.forVI .block-person_info {
	color: #fff;
	font-size: 22px;
}

/* ===== block-Email ===== */

body.forVI .block-Email:before {
	font-size: 22px;
}

body.forVI .block-Email_name {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

body.forVI .block-Email_mail {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	text-decoration: underline 1px #fff;
}

body.forVI .block-Email_mail:hover {
	text-decoration-color: transparent;
}

/* ===== block-Email ===== */

body.forVI .block-textarea {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	background-color: transparent;
}

/* ===== block-headContacts ===== */

body.forVI .block-headContacts h3 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

body.forVI .block-headContacts_item {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

body.forVI .block-headContacts_item address {
	color: #fff;
}
body.forVI .block-headContacts_item div {
	color: #fff;
}

body.forVI .block-headContacts_item span {
	color: #fff;
}

body.forVI .block-headContacts_item a {
	color: #fff;
}

body.forVI .block-headContacts_item a:hover {
	text-decoration-color: transparent;
}

/* ===== index ===== */

body.forVI {
	background-color: #000;
}

body.forVI .certificates {
	display: none;
}

body.forVI .news {
	background-color: transparent;
}

body.forVI .news_title {
	color: #fff;
}

body.forVI .news_title a {
	color: #fff;
}

body.forVI .news_item {
	border: 1px solid #fff;
	background-color: transparent;
	background: unset;
}

body.forVI .news_item_img {
	display: none;
}

body.forVI .news_item_info h2 {
	color: #fff;
	font-weight: 700;
}

body.forVI .announcements h1 {
	color: #fff;
}

body.forVI .announcements h2 {
	color: #fff;
	font-size: 16px;
}

body.forVI .announcements_item_date {
	font-weight: 700;
}

body.forVI .announcements_item_date span:first-child  {
	font-weight: 700;
}

body.forVI .announcements_content {
	background-color: transparent;
}

body.forVI .achievements {
	background-color: transparent;
}

/*body.forVI .achievements_item img {
	display: none;
}*/

body.forVI .achievements_item_text {
	font-size: 16px;
	font-weight: 700;
}



body.forVI {
	
}

body.forVI {
	
}

body.forVI {
	
}

body.forVI {
	
}

body.forVI {
	
}

body.forVI {
	
}

body.forVI {
	
}

body.forVI {
	
}