:root {
	--green: #008080;
	--yellow: #faca0c;
	--orange: #ec8822;
	--dark: #404040;
	--white: #fff;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	/* firefox scrollbar */
	scrollbar-width: thin;
	scrollbar-color: var(--dark) #e0e0e0;
}

/* Scrollbar */
::-webkit-scrollbar { 
	width: 6px; 
	background: #e0e0e0; 
}
::-moz-scrollbar { 
	width: 6px; 
	background: #e0e0e0; 
}
::-webkit-scrollbar-thumb { 
	background: var(--dark); 
}
::-webkit-scrollbar-thumb:hover { 
	background-color: var(--green); 
}

/* Text selection */
::-webkit-selection { 
	color: var(--white); 
	background: var(--dark); 
}
::-moz-selection { 
	color: var(--white); 
	background: var(--dark); 
}
::selection { 
	color: var(--white); 
	background: var(--dark); 
}

html, body {
	font-family: mregular;
}
a { 
	text-decoration: none; 
}
li { 
	list-style: none;
}
p, .quote span {
	line-height: 24px;
}
h1,h2,h3,h4,h5 {
	font-weight: normal;
}
.container {
	position: relative;
	max-width: 1320px;
	padding: 0 15px;
	margin: 0 auto;
}
.navbar {
	background-color: var(--green);
	height: 70px;
}
.navbar-wrapper {
	position: relative;
	display: flex;
	justify-content: flex-end;
}
.navbar-toggle-link {
	display: flex;
	align-items: center;
	margin-right: auto;
	opacity: 0;
	visibility: hidden;
}
.navbar-toggle-link span {
	font-size: 14px;
	color: var(--white);
	cursor: pointer;
}
.navbar-toggle-link img {
	vertical-align: middle;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
.navbar-partner--toggle {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}
.navbar-logo,
.navbar-options {
	height: 70px;
	display: flex;
	align-items: center;
}
.navbar-logo {
	margin-right: 50px;
}
.navbar-options img {
	width: 18px;
	cursor: pointer;
}
.navbar-options img:hover {
	opacity: .7;
}
.navbar-logo li,
.navbar-lang,
.navbar-search  {
	position: relative;
	padding: 0 20px;
}
.navbar-lang ul {
	position: absolute;
	top: 40px;
	left: 2px;
	z-index: 6;
	border: 2px solid var(--green);
	background-color: var(--white);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .25s ease-out;
	transition: .25s ease-out;
}
.navbar-lang ul.lang--open {
	top: 24px;
	opacity: 1;
	visibility: visible;
}
.navbar-lang ul li a {
	display: block;
	padding: 2px 12px;
	font-size: 14px;
	color: var(--green);
}
.navbar-lang ul li:hover a {
	background-color: #b2c2c2;
}
/* search */
.navbar-search-wrapper {
	background-color: var(--green);
	position: absolute;
	top: 0;
	right: 0;
	height: 70px;
	width: 0;
	z-index: 5;
	-webkit-transition: .5s ease-out;
	transition: .5s ease-out;
	visibility: hidden;
}
.navbar-search--toggle {
	width: 100%;
	visibility: visible;
}
.lang--close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 6;
	padding: 5px;
	cursor: pointer;
	opacity: .6;
	height: 30px;
	-webkit-transition: .2s ease-out;
	transition: .2s ease-out;
}
.lang--close img {
	width: 20px;
}
.lang--close:hover {
	opacity: 1;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.search-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	margin-right: 100px;
}
.search-wrap input,
.search-wrap button {
	border: none;
	outline: none;
	background-color: transparent;
	color: var(--white);
}
.search-wrap input {
	width: 100%;
	padding: 5px;
	border-bottom: 2px solid #b2c2c2;
	font-family: mregular
}
.search-text {
	position: relative;
	width: 400px;
	margin-right: 10px;
}
.search-wrap span {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background-color: var(--white);
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
.search-focus {
	width: 100% !important;
}
.search-wrap button {
	cursor: pointer;
}

/* header */
.menu-icon {
	display: none;
}
nav {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 0;
}
nav ul {
	width: 100%;
	display: flex;
	justify-content: space-around;
}
nav ul li {
	position: relative;
	max-width: 200px;
	text-align: center;
}
nav ul li::before,
nav ul li::after {
	content: '';
	position: absolute;
}
nav ul li::before {
	top: 44px;
	left: 50%;
	width: 2px;
	height: 20px;
	background-color: var(--dark);
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
	opacity: 0;
	visibility: hidden;
}
nav ul li::after {
	top: 35px;
	left: 0;
	width: 100%;
	height: 100%;
}
nav ul li a {
	display: block;
	margin: 0 10px;
	font-size: 14px;
	font-family: mbold;
	color: var(--dark);
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
nav ul li a:hover {
	color: var(--yellow);
}
nav ul li:hover ul {
	top: 71px;
	z-index: 6;
	opacity: 1;
	visibility: visible;
}
nav ul li:hover::before {
	opacity: 1;
	visibility: visible;
}
li ul {
	position: absolute;
	top: 90px;
	left: 0;
	z-index: -1;
	display: block;
	width: 200px;
	padding: 5px 0;
	background-color: rgba(0,0,0,0.8);
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
	opacity: 0;
	visibility: hidden;
}
li ul li {
	max-width: unset;
}
.contacts-link::before,
li ul li::before,
li ul li::after {
	display: none;
}
li ul li a {
	padding: 8px 4px;
	color: var(--white);
	font-size: 12px;
	font-family: mmedium;
	font-style: italic;
}

/* socials block */
.main-fixed-social {
	position: relative;
	max-width: 1320px;
	height: 35px;
	margin: 0 auto;
}
.main-fixed-social
.fixed-social,
.main-fixed-social
.fixed-news {
	top: 0;
}
.fixed-social,
.fixed-news {
	position: absolute;
	top: -70px;
	right: 0;
	display: flex;
}
.fixed-social-block {
	background-color: var(--green);
	padding: 4px 12px 2px 20px;
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
}
.fixed-social-block a {
	display: inline-block;
	padding: 0 8px;
}
.fixed-link-block {
	position: relative;
	overflow: hidden;
	width: 250px;
	background-color: var(--orange);
	-webkit-clip-path: polygon(14% 0, 94% 0, 100% 100%, 20% 100%);
	clip-path: polygon(14% 0, 94% 0, 100% 100%, 20% 100%);
	margin-right: -60px;
	text-align: center;
}
.fixed-link-block-2 {
	width: 280px;
	background-color: var(--yellow);
	-webkit-clip-path: polygon(14% 0, 95% 0, 100% 100%, 20% 100%);
	clip-path: polygon(14% 0, 95% 0, 100% 100%, 20% 100%);
	margin-right: -16px;
}
.fixed-link-block a,
.fixed-link-block-2 a {
	position: absolute;
	top: 8px;
	left: -18px;
	width: 100%;
	height: 100%;
	font-size: 13px;
	margin-left: 36px;
	color: var(--white);
	font-family: mmedium;
	font-style: italic;
}
.fixed-link-block-2 a {
	top: 0;
}
/* news ticker */
.fixed-news {
	height: 35px;
	left: 0;
	right: unset;
	align-items: center;
}
.fixed-news-block {
	width: 220px;
	height: 35px;
	text-align: center;
	padding: 5px;
	background-color: var(--green);
	-webkit-clip-path: polygon(0 0%, 100% 0%, 90% 100%, 0% 100%);
	clip-path: polygon(0 0%, 100% 0%, 90% 100%, 0% 100%);
}
.fixed-news-block a {
	max-width: 190px;
	font-size: 14px;
	font-family: mbold;
	color: var(--white);
}
.news-ticker {
	width: 500px;
	height: 35px !important;
	position: absolute !important;
	top: 0;
	left: 230px;
}
.news-ticker ul li {
	height: 35px !important;
	display: flex;
	align-items: center;
}
.news-ticker ul li a {
	display: block;
}
.news-ticker a {
	font-size: 10px;
	font-style: italic;
	font-family: mbold;
	color: var(--dark);
}

/* sidemenu */
.sidemenu-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10000;
	-webkit-transition: opacity .4s cubic-bezier(.165,.84,.44,1) 0ms;
	-o-transition: opacity .4s cubic-bezier(.165,.84,.44,1) 0ms;
	transition: opacity .4s cubic-bezier(.165,.84,.44,1) 0ms;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
}
.sidemenu-wrapper {
	position: fixed;
	overflow-x: hidden;
	left: -280px;
	top: 0;
	bottom: 0;
	z-index: 10001;
	width: 280px;
	height: 100%;
	-webkit-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
	background-color: var(--white);
}
.body--overflow {
	overflow: hidden;
}
.sidemenu-overlay--show {
	opacity: 1;
	visibility: visible;
}
.sidemenu-wrapper--slide {
	left: 0;
}
.sidemenu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 30px 10px 15px;
}
.sidemenu__header--close .fas {
	display: block;
	padding: 10px 15px;
	font-size: 20px;
	color: var(--dark);
	opacity: 0.6;
	cursor: pointer;
	transition: .3s ease;
}
.sidemenu__header--close .fas:hover {
	opacity: 1;
	transform: rotate(90deg);
}
/* sidebar language */
.sidebar-lang {
	position: relative;
	color: var(--dark);
	text-transform: uppercase;
	font-size: 10px;
	padding: 4px 8px;
	border: 1px solid var(--dark);
	cursor: pointer;
}
.sidebar-lang:hover,
.sidebar-lang a:hover {
	background-color: var(--dark);
	color: var(--white);
}
.sidebar-lang ul {
	display: none;
	position: absolute;
	top: 21px;
	left: -1px;
	z-index: 5;
	border: 1px solid var(--dark);
	background-color: var(--white);
}
.sidebar-lang ul li a {
	display: block;
	padding: 4px 12px;
	color: var(--dark);
}
.sidemenu__links {
	padding-bottom: 30px;
}
.sidemenu__links a {
	display: block;
	font-size: 13px;
	padding: 3px 26px;
	color: var(--dark);
	font-family: mmedium;
}
.sidemenu__links a:hover {
	background-color: rgba(0,0,0,0.1);
}
.sidemenu__link-wrap {
	margin-top: 8px;
}
.sidemenu__link-wrap .sidemenu__link-main {
	font-family: mbold;
	color: var(--green);
	margin-top: 6px;
}

/* main */
.main {
	width: 100%;
	height: 510px;
	background-image: url('../img/main-bg-5.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.main-wrapper {
	padding-top: 140px;
	padding-left: center;
}
.main-wrapper h1 {
	font-family: asylm;
	color: var(--yellow);
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 1);
	font-weight: normal;
	font-size: 80px;
	line-height: 90px;
}

/* winner history */
.winner-history-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.winner-history-wrapper p {
	font-size: 15px;
}
.wh-info {
	width: 35%;
}
.winner-history-wrapper .grid-item {
	/*max-width: 420px;*/
}
.wh-info div:last-child {
	margin-top: 15px;
}
.wh-info div:last-child p {
	font-size: 14px;
	font-family: mmedium;
}
.wh-info div:last-child span {
	font-size: 14px;
	font-family: mbold;
}
.wh-text {
	width: 65%;
	margin-left: 30px;
}
.wh-text span {
	font-family: mbold;
}
.wh-quote {
	margin: 15px auto;
	max-width: 450px;
	background-color: #e5f2f2;
	border-left: 4px solid var(--orange);
	padding: 10px 15px;
}
.wh-quote h4 {
	font-family: mbold;
	font-weight: normal;
}

/* competition winners */
.competition-winners
.content-title p {
	font-style: italic;
	color: var(--green);
	max-width: 960px;
	margin: 15px auto 0;
	font-size: 15px;
}
.competition-winners
.indep-judges-photo {
	position: relative;
	width: 220px;
	height: 220px;
	overflow: unset;
}
.competition-winners
.indep-judges-photo img {
	width: 220px;
}
.competition-winners
.indep-judges-photo img:last-child {
	width: 80px;
	position: absolute;
	bottom: 0;
	right: 0;
}
.competition-winners
.indep-judges-info h2,
.competition-winners
.indep-judges-info p,
.competition-winners
.indep-judges-info a {
	color: var(--dark) !important;
}
.competition-winner-link {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}
.competition-winner-link img {
	vertical-align: middle;
}
.competition-winner-link a {
	position: relative;
	display: block;
	margin: 0 0 0 8px !important;
}
.competition-winner-link a::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--green);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .2s;
	transition: .2s;
}
.competition-winner-link a:hover::before {
	bottom: -4px;
	opacity: 1;
	visibility: visible;
}

/* main pwc */
.main-pwc {
	background-color: #e5f2f2;
	margin-top: 30px;
}
.main-pwc-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 0;
}
.main-pwc-left,
.main-pwc-right {
	width: 100%;
}
.main-pwc-left p {
	color: var(--green);
	font-size: 14px;
}
.main-pwc-left a {
	display: block;
	font-family: mbold;
	color: var(--green);
	font-size: 26px;
	padding: 10px 0;
}
.main-pwc-left span {
	font-size: 14px;
	font-family: mmedium;
}
.main-pwc-right {
	margin-left: 40px;
}
.main-pwc-right-quote {
	position: relative;
	border: 1px solid var(--green);
	margin-bottom: 15px;
	padding: 15px;
}
.main-pwc-right-quote::before,
.main-pwc-right-quote::after {
	position: absolute;
	font-size: 40px;
	font-family: mmedium;
	color: var(--green);
	background-color: #e5f2f2; 
}
.main-pwc-right-quote::before {
	content: "«";
	top: -14px;
	left: -8px;
}
.main-pwc-right-quote::after {
	content: '»';
	bottom: -8px;
	right: -6px;
}
.main-pwc-right
.main-pwc-right-quote p {
	text-align: left;
	font-family: mregular;
}
.main-pwc-right p {
	text-align: right;
	font-family: mbold;
	color: var(--green);
}

/* grid */
.grid {
	margin: 40px 0;
}
.grid-wrapper,
.grid-wrapper-2 {
	display: grid;
	grid-gap: 4px;
}
.grid-wrapper {
	grid-template-columns: repeat(3, 1fr);
}
.grid-wrapper-2 {
	margin-top: 4px;
	grid-template-columns: 1fr 2fr;
}
.grid-item {
	position: relative;
	width: 100%;
	/*height: 50%;*/
	max-height: 328px;
	overflow: hidden;
}
.grid-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}
.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.grid-item__title,
.grid-item__link,
.grid-item__bold {
	position: absolute;
	bottom: 90px;
	left: 30px;
	z-index: 5;
	color: var(--white);
}
.grid-item__title {
	right: 20px;
}
.grid-item__bold {
	bottom: 80px;
	font-family: mbold;
	text-transform: uppercase;
}
.grid-item__link {
	bottom: 30px;
	display: block;
	border: 2px solid var(--white);
	background-color: rgba(0,0,0,0.3);
	padding: 10px 30px;
	text-transform: uppercase;
	font-size: 12px;
	font-family: mmedium;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
.grid-item__link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 0;
	background-color: var(--white);
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
.grid-item__link:hover::before {
	top: 0;
	height: 100%;
}
.grid-item__link:hover {
	color: var(--dark);
	font-weight: bold;
}

/* footer */
footer {
	background-color: var(--green);
}
.footer-wrapper {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 40px 0 30px;
}
.footer-item {
	margin: 10px 0;
}
.footer-item h4,
.subscribe-section h4 {
	position: relative;
	font-family: mbold;
	font-size: 14px;
	font-weight: normal;
	color: var(--white);
	text-transform: uppercase;
}
.footer-item h4::before {
	content: '';
	position: absolute;
	top: 3px;
	left: -12px;
	width: 8px;
	height: 65%;
	background-color: var(--orange);
}
.footer-item ul {
	margin-top: 5px;
}
.footer-item a {
	position: relative;
	color: var(--white);
	font-size: 14px;
	padding-bottom: 4px;
	line-height: 26px;
}
.footer-item a::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background-color: var(--white);
	-webkit-transition: .4s ease-out;
	transition: .4s ease-out;
}
.footer-item a:hover::before {
	left: 0;
	width: 100%;
}
.footer-item 
.footer-item-crowd-links {
	display: block;
	width: 250px;
	margin-top: 15px;
	text-align: center;
	border: 1px solid #026262;
	text-transform: uppercase;
	font-size: 10px;
	padding: 10px 15px;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
.footer-item 
.footer-item-crowd-links:hover {
	background-color: #026262;
}
.footer-item 
.footer-item-crowd-links:hover::before {
	width: 0;
}

/* subscribe */
.subscribe-section {
	background-color: var(--orange);
	padding: 25px 0;
}
.subscribe-section 
.container {
	max-width: 1000px;
}
.subscribe-section ul {
	margin-top: 15px;
}
.sendmail-subscribe {
	display: flex;
}
.sendmail-subscribe input {
	width: 100%;
	border: 1px solid var(--white);
	background-color: transparent;
	color: var(--white);
	padding: 15px;
}
.sendmail-subscribe input::placeholder {
	color: var(--white);
	opacity: .6;
	font-style: italic;
}
.sendmail-subscribe button {
	background-color: var(--white);
	color: var(--orange);
	text-transform: uppercase;
	border: none;
	font-size: 12px;
	cursor: pointer;
	padding: 15px 20px;
	margin-left: 10px;
}
/* author */
.author {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0 20px 20px;
	color: #daedf0;
	font-size: 12px;
}
.author img {
	width: 70px;
	opacity: 0.6;

	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.author img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 1;
}

/* about */
.border-top {
	border-top: 2px solid var(--green);
	padding: 70px 0;
}
.about-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-column-gap: 5px;
}
.about-wrapper p,
.about-item__text p {
	font-size: 15px;
}
.about-item-wrap {
	margin: 0 auto;
}
.about-item-wrap .about-item__text {
	margin-top: 20px;
}
.about-item-wrap:first-child {
	margin-right: 40px;
}
.about-item__info {
	color: var(--green);
}
.about-item__info h1,
.about-item__text span {
	font-family: asylm;
	font-weight: normal;
}
.about-item__info h1 {
	font-size: 38px;
}
.about-item__text span {
	font-size: 30px;
}
.about-item__img img,
.about-item-video__img img {
	width: 100%;
	max-width: 330px;
}
.about-item__video {
	margin: auto;
}
.about-item-video__img img {
	height: 220px;
}
.about-item-video__img {
	position: relative;
	overflow: hidden;
	height: 220px;
	max-width: 330px;
}
.about-item-video__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
.about-item-video__img span {
	position: absolute;
	bottom: 15px;
	left: 15px;
	z-index: 2;
	color: var(--white);
	font-style: italic;
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
}
.about-item-video__img img:last-child {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);	
	width: 30px;
	height: unset;
}
.about-item__video a:hover 
.about-item-video__img::before {
	background-color: rgba(0,0,0,0.6);
}
.about-item__video a:hover 
.about-item-video__img span {
	z-index: 0;
}
/* addition style for about page */
.aw-block {
	display: block;
}
.aw-block .about-item-wrap {
	margin: 0 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.aw-block .about-item__video,
.aw-block .about-item__img {
	margin: 20px 15px;
}
.aw-block .about-item__img {
	height: 220px;
	overflow: hidden;
}
.aw-block .about-item__img img {
	height: 220px;
}

/* FAQ */
.content-title {
	margin-bottom: 10px;
}
.content-title h1,
.content-title a {
	font-family: asylm;
	font-size: 38px;
	color: var(--green);
}
.accordion-wrapper {
	width: 90%;
	margin: 0 auto 10px;
}
.accord-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border: 1px solid #d0d0d0;
	background-color: #f8f8f8;
	cursor: pointer;
}
.accord-header h5 {
	color: #333333;
	padding: 15px;
	margin: 0;
	text-align: left;
	cursor: pointer;
	text-transform: uppercase;
	font-family: mmedium;
	font-weight: normal;
}
.accordion-arrow {
	margin: auto;
	margin-right: 0;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}
.rotate-arrow {
	-webkit-transform: rotate(180deg) !important;
	-moz-transform: rotate(180deg) !important;
	transform: rotate(180deg) !important;
}
.accord-header img {
	padding: 10px;
	-webkit-transition: .3s ease-out;
	-moz-transition: .3s ease-out;
	transition: .3s ease-out;
}
.accord-info {
	padding: 15px;
	padding-left: 50px;
	border: 1px solid #d0d0d0;
	border-top: none;
}
.accord-info-wrap p {
	font-size: 14px;
}

/* methodology */
.block-quote {
	margin-top: 40px;
}
.block-quote p {
	font-size: 18px;
	font-family: mmedium;
}
.quote {
	border-left: 4px solid var(--green);
	padding-left: 20px;
}
.quote span {
	color: var(--green);
}

/* Teacher-status */
.status-item-wrap {
	display: flex;
	justify-content: space-between;
}
.status-item-img {
	width: 50%;
}
.status-item-img img {
	width: 100%;
}
.status-item-text {
	width: 70%;
	font-size: 14px;
	color: var(--dark);
	margin-left: 40px;
}
.status-item-text span {
	font-family: mbold;
}
.status-item-text ul {
	padding-left: 30px;
}
.status-item-text li {
	line-height: 26px;
}

/* main page FAQ */
.main-faq-wrapper {
	margin: 50px 0;
}
.main-faq-wrapper
.content-title {
	margin-bottom: 30px;
	text-align: center;
}

/* Terms conditions */
.terms-item {
	margin-top: 30px;
}
.terms-item p {
	font-size: 15px;
	line-height: 24px;
}
.terms-item li {
	list-style: unset;
	line-height: 24px;
	font-size: 15px;
}
.block-title {
	margin-bottom: 10px;
}
.block-title h4 {
	font-family: mbold;
	font-weight: normal;
}
.terms__intro {
	display: flex;
	justify-content: space-between;
}
.terms__intro-left {
	width: 66%;
}
.terms__intro-left span {
	color: var(--orange);
	font-size: 40px;
	font-family: mblack;
	line-height: 50px;
}
.terms__intro-right {
	width: 30%;
	margin-left: 4%;
	background-color: #fef5d3;
	padding: 15px;
}
.terms__intro-right span {
	display: inline-block;
	color: var(--orange);
	font-family: mbold;
	margin: 10px 0;
}
.terms__intro-right b {
	font-family: mbold;
	font-weight: normal;
}
.terms__eligibility span {
	font-family: mmedium;
	line-height: 24px;
	font-size: 15px;
}
.terms__howto a,
.terms-list__text a {
	font-family: mmedium;
	color: var(--orange);
	text-decoration: underline;
}
.terms-list-wrap {
	margin-top: 20px;
}
.terms-list {
	display: flex;
	margin: 4px 0;
}
.terms-list__number,
.terms-list__text {
	display: flex;
	min-height: 64px;
}
.terms-list__number {
	background-color: var(--green);
}
.terms-list__number span {
	width: 70px;
	text-align: right;
	padding-right: 10px;
	font-family: mbold;
	font-size: 50px;
	line-height: unset;
	color: #55a8a7;
}
.terms-list__text {
	align-items: center;
	width: 100%;
	background-color: #cee6e6;
	padding: 10px 15px;
}
.terms__selection--desktop {
	text-align: center;
	margin-top: 50px;
}
.terms__selection--desktop img {
	width: 100%;
	max-width: 900px;
}
.terms__selection--mob {
	display: none;
}
.terms__selection--mob li span {
	font-family: mbold;
}
.terms__post p span {
	font-family: mbold;
	color: var(--green);
	font-size: 24px;
}
.term__post-wrap {
	display: flex;
	margin-top: 20px;
}
.term__post-wrap div {
	width: 33%;
}
.term__post-wrap div:nth-child(2) {
	width: 22%;
	margin: 0 30px;
}
.term__post-wrap div:nth-child(3) {
	width: 40%;
}
.term__post-wrap div span {
	color: #72b6b6;
	font-family: mblack;
	font-size: 40px;
}

/* national criteria */
.criteria-wrapper p {
	font-size: 15px;
}
.criteria-grid {
	max-width: 900px;
	margin: 0 auto;
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
}
.criteria-grid-item {
	border: 1px solid var(--green);
	padding: 20px;
	display: flex;
	align-items: center;
}
.criteria-grid-item p span {
	font-family: mbold;
}
.criteria-icon-wrap {
	margin: 30px 0;
	display: flex;
	justify-content: space-around;
}
.criteria-icon-item {
	text-align: center;
	width: 300px;
	padding: 15px;
}
.criteria-icon-item img {
	width: 100px;
	margin-bottom: 15px;
}
.criteria-icon-item p {
	font-size: 14px;
}
.criteria-icon-item span {
	font-family: mbold;
}
.criteria-oneblock {
	border: 1px solid var(--green);
	padding: 8px 20px;
}
.criteria-oneblock span {
	display: block;
	font-family: mbold;
	font-size: 14px;
	margin: 8px 0;
}
.criteria-oneblock span:last-child {
	text-align: right;
}
.criteria-oneblock p {
	font-size: 14px;
}
.criteria-otbor-wrap {
	position: relative;
	max-width: 650px;
	margin: auto;
	margin-top: 30px;
	padding: 10px;
}
.criteria-otbor-wrap::before,
.criteria-otbor-wrap::after {
	content: '';
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 300px;
	height: 2px;
	background-color: var(--green);
}
.criteria-otbor-wrap::before {
	top: 1px;
}
.criteria-otbor-wrap::after {
	bottom: -1px;
}
.criteria-otbor-wrap span {
	position: absolute;
	background-color: var(--green);
	width: 50px;
	height: 2px;
}
.criteria-otbor-wrap span:nth-child(2),
.criteria-otbor-wrap span:nth-child(4),
.criteria-otbor-wrap span:nth-child(6),
.criteria-otbor-wrap span:nth-child(8) {
	width: 2px;
	height: 50px;
}
.criteria-otbor-wrap span:nth-child(1),
.criteria-otbor-wrap span:nth-child(2) {
	top: 0;
	left: 0;
}
.criteria-otbor-wrap span:nth-child(3),
.criteria-otbor-wrap span:nth-child(4) {
	bottom: 0;
	left: 0;
}
.criteria-otbor-wrap span:nth-child(5),
.criteria-otbor-wrap span:nth-child(6) {
	top: 0;
	right: 0;
}
.criteria-otbor-wrap span:nth-child(7),
.criteria-otbor-wrap span:nth-child(8) {
	bottom: 0;
	right: 0;
}
.criteria-otbor {
	border: 2px solid var(--green);
	background-color: #cee6e6;
	padding: 20px 30px;
}
.criteria-otbor a {
	border-bottom: 1px solid #000;
	color: #000;
}
.criteria-otbor a:hover {
	border-bottom: 1px solid var(--green);
	color: var(--green);
}
.criteria-requirement {
	margin-top: 50px;
}
.national-block-title {
	text-transform: uppercase;
	margin-bottom: 20px;
}
.criteria-requirement span {
	font-family: mbold;
}

/* auditors */
.auditors-box {
	max-width: 900px;
	margin-left: auto;
	margin-top: 30px;
	background-color: var(--green);
	padding: 15px 25px;
}
.auditors-box p {
	color: var(--white);
}
.auditors-box p:last-child {
	text-align: right;
	font-size: 14px;
}
.auditors-stages {
	background-color: var(--green);
	padding: 50px 0;
	margin-top: 50px;
}
.auditors-stages .container {
	max-width: 800px;
}
.auditors-stages-desktop {
	width: 100%;
	text-align: center;
}
.auditors-stages-desktop img {
	width: 100%;
}
.auditors-stages-mob {
	display: none;
}
.auditors-stages__title {
	text-align: center;
	color: var(--white);
	margin-bottom: 30px;
}
.auditors-stages__title h4 {
	font-family: mbold;
	font-weight: normal;
}
.auditors-stages__title h6 {
	margin-top: 8px;
	font-family: mmedium;
	font-weight: normal;
	font-size: 12px;
}
.auditors-stages__info {
	margin-top: 10px;
}
.auditors-stages__info span,
.auditors-stages__info p {
	color: var(--white);
	font-size: 14px;
}
.auditors-stages__info span {
	font-family: mmedium;
}
.auditors-pwc {
	background-color: var(--white);
}
.auditors-benefits__title,
.auditors-benefits__info span,
.auditors-benefits__info p {
	color: #000 !important;
}

/* national teacher status */
.national-ts-grid {
	/*max-width: 1000px;*/
	margin: 40px auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}
.national-ts-grid div,
.judge-grid {
	display: flex;
	align-items: center;
	background-color: var(--green);
	padding: 10px 15px;
}
.national-ts-grid div p {
	color: var(--white);
	font-size: 12px;
	line-height: 20px;
}
.national-ts-facts p {
	font-size: 15px;
}
.national-ts-facts span {
	color: var(--green);
	font-family: mbold;
	font-size: 20px;
}

/* National judges */
.national-judges-wrapper p {
	font-size: 15px;
}
.judge-grid {
	margin-top: 20px;
	color: var(--white);
}

/* national about */
.about-item__info i,
.about-item__info b,
.national-about-wrapper b {
	font-family: mbold;
}
.national-about-wrap {
	display: flex;
	max-width: 1024px;
	margin: 25px auto;
}
.national-about-wrapper p {
	font-size: 15px;
}
.national-about-wrap div:last-child {
	margin-left: 30px;
}
.national-about-wrap p {
	font-size: 15px;
}
.national-about-box {
	border: 1px solid var(--green);
	padding: 15px;
	max-width: 1024px;
	margin: 0 auto 30px;
}
.national-about-box div {
	background-color: var(--green);
	color: var(--white);
	text-align: center;
	padding: 15px;
}
.national-about-box div h4 {
	font-family: mbold;
	font-weight: normal;
	line-height: 28px;
}
.national-about-box div p {
	font-style: italic;
	font-size: 14px;
}

/* winner */
.winners-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
}
.winners-item {
	position: relative;
	max-width: 300px;
	margin: 0 auto 30px;
}
.winners-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: var(--dark);
}
.winners-item:hover h3 {
	color: var(--orange);
	-webkit-transition: .2s ease-out;
	transition: .2s ease-out;
}
.winners-item img {
	width: 100%;
}
.winners-item h3 {
	font-family: mbold;
	font-weight: normal;
	margin-top: 10px;
}
.winners-item p {
	font-size: 14px;
	margin-top: 5px;
}

/* finalists */
.finalists-item {
	position: relative;
	height: unset !important;
	margin: 0 auto !important;
}
.finalists-item::before,
.finalists-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out;
}
.finalists-item::before {
	-webkit-transform: scale(.6);
	transform: scale(.6);
	z-index: 2;
	background-color: rgba(0,0,0,0.6);
}
.finalists-item::after {
	z-index: 3;
	background-color: var(--green);
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.finalists-item:hover::before,
.finalists-item:hover::after {
	-webkit-transform: scale(.8);
	transform: scale(.8);
}
.finalists-item:hover::after {
	opacity: 0;
}
.finalists-item a {
	z-index: 5;
}
.finalists-item span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 4;
	text-align: center;
	color: var(--white);
	font-family: mmedium;
	font-size: 18px;
}

/* news */
.news .content-title h1 {
	text-align: center;
}
.news-wrapper {
	grid-gap: 20px;
	margin-top: 30px;
}
.news-item {
	height: 100%;
	max-width: unset;
	margin: 0 auto 10px;
}
.news-item img {
	height: 220px;
	object-fit: cover;
	object-position: center center;
}
.news-item h3 {
	font-size: 16px;
}
/* news show */
.news-show .content-title h1 {
	text-align: center;
}
.news-show-text p {
	margin: 10px 0;
}
.news-show-text iframe {
	width: 100% !important;
	max-width: 600px !important;
	height: 360px !important;
}
.news-show-img-wrapper {
	display: block;
	text-align: center;
}
.news-show-img-wrapper img {
	max-width: 100%;
	height: auto !important;
	margin: 10px auto;
}
.text-center code {
	display: block;
	text-align: center;
	font-family: mregular;
}

/* great-kaz-teacher */
.great-kaz-teacher
.content-title p {
	color: var(--green);
	max-width: 990px;
	margin: 15px auto 0;
	text-align: center;
}
.gkt-wrapper {
	grid-gap: 20px;
	margin-top: 50px;
}
.gkt-item {
	height: 100%;
	max-width: unset;
	margin: 0 auto;
}
.gkt-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.gkt-item:hover::before {
	opacity: 1;
	visibility: visible;
}
.gkt-item img {
	height: 100%;
}
/* gkt show */
.gkt-show
.content-title {
	text-align: center;
}
.gkt-show
.content-title img {
	width: 220px;
}

/* national winner */
.national-winner-wrapper,
.nw-name-n-fact,
.nw-fact-item {
	display: flex;
}
.national-winner-wrapper {
	justify-content: center;
	align-items: center;
	color: var(--green);
}
.national-winner-photo img {
	width: 100%;
}
.national-winner-info {
	margin-left: 30px;
}
.national-winner-info p {
	font-style: italic;
	max-width: 480px;
}
.nw-name-n-fact {
	align-items: flex-end;
	margin-bottom: 15px;
}
.nw-name-n-fact h1 {
	font-family: mbold;
}
.nw-fact {
	max-width: 370px;
	position: relative;
	border: 1px solid var(--green);
	margin-left: 30px;
}
.nw-fact h3 {
	text-transform: uppercase;
	background-color: #dddfdf;
	color: var(--white);
	text-align: center;
	font-size: 16px;
	padding: 5px 0;
}
.nw-fact-item-wrap {
	padding: 20px;
}
.nw-fact-item {
	justify-content: space-between;
	align-items: center;
}
.nw-fact-item:first-child {
	margin-bottom: 20px;
}
.nw-fact-item h5 {
	font-family: mbold;
	font-size: 12px;
	text-transform: uppercase;
}
.nw-fact-item span {
	margin-left: 40px;
	background-color: #f9b515;
	padding: 6px 10px;
	color: var(--white);
	font-family: mbold;
	font-size: 20px;
}
/* nw addition info */
.nw-addition-info {
	max-width: 960px;
	margin: 20px auto;
}
.nw-addition-info .content-title {
	text-align: center;
	margin-bottom: 20px;
}
.nw-addition-info p {
	font-size: 15px;
}
.nw-addition-info-text p {
	margin-bottom: 20px;
}
.nw-addition-info-row {
	max-width: 960px;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 30px;
}
.nw-ai-row-item {
	margin: 3px;
	max-height: 230px;
}
.nw-ai-row-item img {
	max-height: 230px;
}
.nw-addition-info-achievements {
	position: relative;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 30px 20px 50px;
	background-color: #f7f7f7;
	border-top: 2px solid var(--green);
	border-bottom: 2px solid var(--green);
}
.nw-addition-info-achievements::before,
.nw-addition-info-achievements::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--yellow);
}
.nw-addition-info-achievements::before {
	top: -7px;
}
.nw-addition-info-achievements::after {
	bottom: -7px;
}
.nw-ai-achievements-text p {
	color: var(--green);
}
.nw-ai-letters {
	background-color: var(--white);
	border: none;
}
.nw-ai-letters::before,
.nw-ai-letters::after {
	display: none;
}
.nw-ai-authority {
	margin-top: 0;
}
.nw-ai-students-achievements {
	
}
.nw-ai-sa-wrapper {
	display: flex;
	justify-content: center;
}
.nw-ai-sa-item {
	width: 100%;
	max-width: 396px;
	min-height: 156px;
	position: relative;
	background-color: var(--yellow);
	margin: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px 50px;
	color: var(--white);
}
.nw-ai-sa-item h1 {
	text-align: center;
	text-transform: uppercase;
}
.nw-ai-sa-item span {
	font-family: mbold;
	font-size: 50px;
}

/* croudsrc */
.croudsrc-wrap {
	max-width: 800px;
	margin: 50px auto 0;
	display: flex;
}
.croudsrc-left {
	position: relative;
}
.croudsrc-arrows img {
	position: absolute;
	right: -100px;
	width: 110px;
}
.croudsrc-arrow-1 {
	top: 60px;
}
.croudsrc-arrow-2 {
	top: 140px;
}
.croudsrc-item {
	border: 1px solid var(--orange);
	border-radius: 6px;
	padding: 15px;
	max-width: 315px;
	margin: 20px 0;
}
.croudsrc-item p {
	text-transform: uppercase;
	font-family: mbold;
	color: var(--orange);
}
.croudsrc-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 120px;
}
.croudsrc-right h2 {
	font-family: mblack;
	font-weight: normal;
	text-transform: uppercase;
	color: var(--orange);
	font-size: 20px;
}
.croudsrc-right a {
	display: block;
	text-align: center;
	margin-top: 20px;
	background-color: var(--green);
	border-radius: 6px;
	padding: 15px;
	color: var(--white);
	font-family: mmedium;
	font-size: 14px;
	text-transform: uppercase;
}

/* crowdfunding */
.crowdfund-text {
	margin-top: 30px;
}
.crowdfund-text span {
	font-family: mbold;
	color: var(--dark);
}
.crowdfund-box-wrap {
	max-width: 650px;
	margin: auto;
	margin-top: 40px;
}
.crowdfund-box-wrap div {
	background-color: var(--green);
	padding: 10px 15px;
	text-align: center;
}
.crowdfund-box-wrap div span {
	color: var(--white);
	font-size: 18px;
}
.crowdfund-box-wrap p {
	font-size: 14px;
	font-style: italic;
	color: var(--green);
	text-align: center;
	margin-top: 10px;
}

/* national philanthropist */
.nat-club-phil .croudsrc-arrows img {
	top: 60px;
	right: -130px;
}
.nat-club-phil .croudsrc-right {
	margin-left: 150px;
}
.nat-club-phil .croudsrc-right a {
	margin-top: 0;
}
.nat-club-phil .croudsrc-item p {
	font-size: 11px;
}

/* indep judges */
.independent-judges {
	margin-top: 40px;
}
.independent-judges-wrapper {
	text-align: center;
}
.indep-judges-wrap {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.indep-judges-item {
	margin: 20px 15px;
	width: 100%;
	max-width: 280px;
}
.indep-judges-photo {
	width: 180px;
	height: 180px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}
.indep-judges-photo img {
	width: 180px;
}
.indep-judges-info h2 {
	font-size: 18px;
	text-transform: uppercase;
	font-family: mbold;
	color: var(--green);
	margin-top: 15px;
}
.competition-winners
.indep-judges-info a,
.indep-judges-info p {
	font-size: 11px;
	line-height: 16px;
	font-style: italic;
	color: var(--green);
	margin-top: 8px;
}

/* indep judges page */
.indep-judges-page
.content-title {
	margin-top: 50px;
}

/* national finalists */
.national-finalists
.content-title {
	margin-top: 0;
}
.national-finalists
.indep-judges-item {
	position: relative;
	margin: 10px;
	padding: 10px;
	border-radius: 10px;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.national-finalists
.indep-judges-item:hover {
	background: #00808014;
} 
.national-finalists
.indep-judges-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* finalist info */
.finalist-info {
	max-width: 1060px;
	margin: 0 auto;
}
.finalist-info-main {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0 40px;
	padding: 20px 0 0 50px;
}
.finalist-info-main::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	z-index: -1;
	width: 280px;
	height: 250px;
	background-image: url('../img/oui.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.finalist-info-main-photo {
	margin: 0;
	margin-right: 30px;
	border: 1px solid #e6f0f0;
}
.finalist-info-main-text {
	max-width: 350px;
	margin-top: auto;
}
.finalist-info-main-text h2  {
	font-family: asylm;
	font-size: 38px;
	color: var(--green);
	line-height: 40px;
}
.finalist-info-main-text p {
	font-style: italic;
	margin-top: 10px;
	font-size: 14px;
	line-height: 20px;
}

.finalist-info-block {
	display: flex;
	margin-bottom: 20px;
}
.fi-block-item-wrap:first-child {
	margin-right: 20px;
}
.fi-block-item-wrap div {
	margin-bottom: 10px;
}
.fi-block-item-wrap p {
	font-size: 15px;
	text-align: justify;
}
.fi-block-item {
	padding: 4px 10px;
	background-color: #f4f4f4;
}

/* english page */
.english-page {
	padding: 60px 0;
}
.english-page 
.container {
	max-width: 1000px;
}
.english-page p {
	text-align: justify;
	font-size: 15px;
}
.english-page-logo {
	display: flex;
	align-items: baseline;
	margin-bottom: 20px;
}
.english-page-logo
.content-title {
	margin-left: 30px;
	margin-bottom: 0;
}
.english-page-about div:first-child	{
	width: 320px;
}
.english-page-about img {
	width: 100%;
}
.english-page-about div:last-child	{
	width: 100%;
}
.english-about-box {
	background-color: var(--green);
	color: var(--white);
	margin-left: 0 !important;
	margin-top: 30px;
	text-align: center;
	padding: 20px;
}
.english-about-box h4 {
	font-family: mmedium;
	font-weight: normal;
	line-height: 26px;
}
.english-about-box p {
	text-align: center;
	font-size: 14px;
	line-height: 26px;
}
.english-icon-wrap p {
	text-align: center;
}

.footer-english-socials {
	display: flex;
}
.footer-english-socials li:last-child {
	margin-left: 30px;
}

/* presentation */
.presentation-video {
	position: relative;
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.presentation-video:hover::before {
	background-color: rgba(0,0,0,0.6);
}
.presentation-video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.presentation-video img {
	width: 100%;
}
.presentation-video img:last-child {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 41px;
}

/* banner */
.banner,
.presentation {
	margin-top: 30px;
}
.banner img {
	width: 100%;
}

/* program */
.program-pdf {
	margin: 30px auto;
}
.program-pdf img {
	width: 100%;
	max-width: 800px;
}

/* Scroll top */
.scroll-up {
	position: fixed;
	bottom: 2.5em;
	right: 1%;
	background: #dadada;
	display: none;
	cursor: pointer;
	z-index: 9;
	opacity: 0.6;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
	border-radius: 5px;
}
.scroll-up:hover {
	opacity: 1;
}
.scroll-up span {
	font-size: 3em;
	padding: 0.2em;
	color: var(--green);
}
.scroll-up [class*=" icon-"], .scroll-up [class^=icon-] {
	font-family: icomoon!important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1140px) {
	/* teacher-status */
	.status-item-text {
		width: 50%;
		margin-left: 20px;
	}

	/* socials block */
	.main-fixed-social {
		margin-top: -1px;
	}
	/* news ticker */
	.news-ticker {
		width: 300px;
	}
	.news-ticker a {
		font-size: 12px;
	}

	/* news */
	.news-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}

	/* national winner */
	.nw-ai-row-item,
	.nw-ai-row-item img {
		max-height: 220px;
	}
}
@media (max-width: 960px) {
	nav ul {
		display: none;
	}
	.navbar-toggle-link {
		opacity: 1;
		visibility: visible;
	}
	.menu-icon {
		display: block;
	  line-height: 30px;
	  font-size: 24px;
	  box-sizing: border-box;
	  padding: 10px;
	  color: var(--dark);
	  cursor: pointer;
	  margin-left: auto;
	}
	.logo img {
		width: 130px;
	}
	.navbar,
	.navbar-search-wrapper,
	.navbar-options {
		height: 50px;
	}
	.navbar-logo {
		position: absolute;
    top: 80px;
    left: 0;
    z-index: 5;
    flex-direction: column;
    background: var(--green);
    height: unset;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
	}
	.navbar-logo li {
		padding: 4px 20px;
	}
	.navbar-logo--toggle {
		top: 50px;
		opacity: 1;
		visibility: visible;
	}

	/* news ticker */
	.fixed-news {
		display: none;
	}

	/* terms n conditions */
	.terms__intro {
		flex-direction: column;
	}
	.terms__intro-left,
	.terms__intro-right {
		width: 100%;
		margin-left: 0;
		margin-top: 15px;
	}
	.term__post-wrap {
		flex-direction: column;
		margin-top: 10px;
	}
	.term__post-wrap div,
	.term__post-wrap div:nth-child(2),
	.term__post-wrap div:nth-child(3) {
		width: 100%;
		margin: 0;
		margin-top: 5px;
	}

	/* national about */
	.national-about-wrap {
		flex-direction: column;
	}
	.national-about-wrap div:first-child {
		text-align: center;
	}
	.national-about-wrap div:last-child {
		margin-left: 0;
		margin-top: 10px;
	}

	/* national winner */
	.nw-name-n-fact {
		flex-direction: column;
		align-items: unset;
	}
	.nw-fact {
		margin-left: 0;
		margin-top: 10px;
	}
	/* nw addition info */
	.nw-addition-info-row {
		max-width: 458px;
		margin: 0 auto 30px;
		justify-content: center;
		flex-wrap: wrap;
	}

	/* winner */ 
	.winners-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}

	/* indep judges */
	.indep-judges-wrap {
		flex-wrap: wrap;
	}
	.indep-judges-item {
		width: calc(50% - 30px);
		max-width: unset;
	}

	/* english page */
	.english-page-logo {
		flex-direction: column;
	}
	.logo img {
		width: unset;
	}
	.english-page-logo
	.content-title h1 {
		font-size: 30px;
	}
	.english-page-logo .content-title {
		margin-left: 0;
		margin-top: 20px;
	}
	.english-page-about div:first-child	{
		width: 100%;
	}
	.english-page-about img {
		width: 100%;
		max-width: 300px;
	}
}
@media (max-width: 840px) {
	/* main */
	.main-wrapper {
		padding-left: 0;
		text-align: center;
	}

	/* winner history */
	.winner-history-wrapper {
		flex-direction: column;
	}
	.wh-info {
		width: 100%;
		margin: auto;
	}
	.wh-text {
		width: 100%;
		margin-left: 0;
		margin-top: 15px;
	}

	/* main pwc */
	.main-pwc-wrapper {
		flex-direction: column;
	}
	.main-pwc-right {
		margin-left: 0;
		margin-top: 20px;
	}

	/* grid */
	.grid-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-wrapper .grid-item:nth-child(3) {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.grid-wrapper-2 {
		grid-template-columns: 1fr 1fr;
	}

	/* about */
	.about-wrapper {
		grid-template-columns: 1fr;
	}
	.about-item-wrap .about-item__text {
		margin-top: 20px;
	}
	.about-item__video {
		margin: 20px auto;
	}
	.about-item-wrap:first-child {
		margin-right: 0;
	}

	/* FAQ */
	.accordion-wrapper {
		width: 100%;
	}
	.accord-info {
		padding-left: 15px;
	}

	/* methodology */
	.block-quote {
		margin-top: 20px;
	}

	/* teacher-status */
	.status-item-wrap {
		flex-direction: column;
	}
	.status-item-img,
	.status-item-text {
		width: 100%;
	}
	.status-item-text {
		margin-left: 0;
		margin-top: 20px;
	}

	/* national teacher status */
	.national-ts-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
	}

	/* national winner */
	.national-winner-wrapper {
		flex-direction: column;
	}
	.national-winner-info {
		margin-left: 0;
		margin-top: 6px;
	}
	.nw-name-n-fact h1 {
		text-align: center;
	}
	.nw-fact {
		margin: 10px auto 0;
	}
	.national-winner-info p {
		max-width: unset;
	}
	/* nw addition info */
	.nw-ai-sa-wrapper {
		flex-wrap: wrap;
	}

	/* news */
	.news-wrapper {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
	}
}
@media (max-width: 768px) {
	/* national criteria */
	.criteria-grid {
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 15px;
	}

	/* finalist info */
	.finalist-info-block {
		flex-direction: column;
	}
	.fi-block-item-wrap:first-child {
		margin: 0;
	}

	/* footer */
	.footer-wrapper {
		flex-direction: column;
		padding-left: 10px;
	}
	.footer-item ul {
		margin-top: 8px;
	}

	/* Scroll top */
	.scroll-up {
    bottom: 1em;
    right: 1em;
	}
}
@media (max-width: 600px) {
	/* grid */
	.grid-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.grid-wrapper .grid-item:nth-child(3) {
		grid-column-start: unset;
		grid-column-end: unset;
	}
	.grid-wrapper-2 {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
	}

	/* about */
	.aw-block .about-item__video, .aw-block .about-item__img {
		margin: 12px 0;
	}

	/* terms and conditions */
	.terms-list {
		flex-direction: column;
	}
	.terms-list__number span {
		text-align: left;
		padding-left: 15px;
	}
	.terms__selection--desktop {
		display: none;
	}
	.terms__selection--mob {
		display: block;
	}

	/* fixed socials */
	.main-fixed-social {
		height: 90px;
	}
	.fixed-social {
		width: 100%;
		flex-direction: column;
	}
	.fixed-link-block,
	.fixed-link-block-2,
	.fixed-social-block {
		width: 100%;
		height: 40px;
		margin-top: 4px;
		-webkit-clip-path: unset;
		clip-path: unset;
		margin-right: 0;
		overflow: unset;
	}
	.fixed-social-block {
		padding: 7px 14px;
		text-align: center;
	}
	.fixed-link-block a,
	.fixed-link-block-2 a {
		position: unset;
		margin-left: 0;
	}
	.fixed-social-block a {
		padding: 0 14px;
	}
	/* news ticker */
	.main-fixed-social .fixed-social, 
	.fixed-news {
		position: relative;
	}
	.fixed-news {
		height: 90px;
		display: flex;
		flex-direction: column;
	}
	.fixed-news-block {
		width: 100%;
		height: 40px;
		padding: 6px;
		margin-top: 5px;
		clip-path: unset;
	}
	.fixed-news-block a {
		max-width: unset;
	}
	.news-ticker {
		top: unset;
		left: unset;
		width: 100%;
		height: 40px !important;
		margin-top: 5px;
		bottom: 0;
		background-color: #f2f2f2;
		padding: 0 5px;
	}
	.news-ticker ul li {
		height: 40px !important;
	}
	/* addition page fixed socials */
	.border-top {
		padding: 120px 0 70px;
	}
	.border-top .fixed-social {
		top: -120px;
	}

	/* winner history */
	.winner-history-wrapper {
		margin-top: 120px
	}

	/* national criteria */
	.criteria-icon-wrap {
		flex-direction: column;
		align-items: center;
	}
	.criteria-oneblock {
		padding: 10px 20px;
	}

	/* national teacher status */
	.national-ts-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	/* winner */ 
	.winners-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	/* croudsrc */
	.croudsrc-wrap {
		flex-direction: column;
	}
	.croudsrc-arrows {
		display: none;
	}
	.croudsrc-item {
		margin: 20px auto;
	}
	.croudsrc-right,
	.nat-club-phil .croudsrc-right {
		margin-left: 0;
	}
	.croudsrc-right h2 {
		text-align: center;
	}

	/* indep judges */
	.indep-judges-item {
		width: 100%;
	}

	/* finalist info */
	.finalist-info-main {
		flex-direction: column;
		padding-left: 0;
		margin-bottom: 30px;
	}
	.finalist-info-main::before {
		left: 50%;
		-webkit-transform: translate(-50%);
		transform: translate(-50%);
	}
	.finalist-info-main-photo {
		margin-right: 0;
	}
	.finalist-info-main-text {
		margin-top: 20px;
		text-align: center;
	}
}
@media (max-width: 500px) {
	/*.main {
		background-image: url('../img/main-bg-mob.jpg');
		background-position: unset;
	}*/
	.main-wrapper h1:last-child {
		margin-top: -10px;
	}
	.search-wrap {
		margin-right: 50px;
	}
	.main-wrapper {
		padding-top: 190px;
	}
	.main-wrapper h1 {
		font-size: 55px;
		line-height: 60px;
	}

	/* Content title */
	.about-item__info h1,
	.content-title h1,
	.about-item__text span {
		line-height: 34px;
	}

	/* teacher-status */
	.status-item-text ul {
		padding-left: 0;
	}

	/* national about */
	.national-about-wrap div:first-child img {
		width: 100%;
	}

	/* national criteria */
	.criteria-otbor-wrap::before,
	.criteria-otbor-wrap::after {
		width: 130px;
	}
	.criteria-otbor {
		padding: 20px;
	}

	/* national winner */
	.nw-fact {
		width: 100%;
	}
	.nw-fact-item-wrap {
		padding: 12px;
	}
	.nw-fact-item span {
		margin-left: 15px;
		font-size: 16px;
	}
	/* nw addition info */
	.nw-ai-row-item, 
	.nw-ai-row-item img {
		max-height: 150px;
	}
	.nw-ai-letters {
		padding: 30px 10px 50px;
	}
	.nw-ai-achievements-text p {
		text-align: justify;
	}
	.nw-ai-sa-item {
		max-width: unset;
		margin: 10px auto;
		padding: 30px 20px;
	}

	/* auditors */
	.auditors-stages {
		padding: 30px 0;
	}
	.auditors-stages-desktop {
		display: none;
	}
	.auditors-stages-mob {
		display: block;
	}

	/* winner */ 
	.winners-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}

	/* main pwc */
	.main-pwc-left a {
		font-size: 20px;
	}

	/* footer */
	.sendmail-subscribe {
		flex-direction: column;
	}
	.sendmail-subscribe button {
		margin-left: 0;
		margin-top: 10px;
	}
	/* author */
	.author {
    flex-direction: column;
    text-align: center;
	}
	.author div:nth-child(1) {
		margin-bottom: 10px;
	}

	/* great-kaz-teacher */
	.gkt-item {
		max-width: 300px;
	}
}