* {
	box-sizing: border-box;
}

body {
	font-family: "Istok Web";
	font-size: 16px;
	line-height: 1.4;
	color: #222525;
}

.container,
.alignwide {
	width: 90vw;
	max-width: 1280px;
	margin: 0 auto;
}

img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin-top: 0;
	margin-bottom: 20px;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 130px;
	height: 35px;
	font-family: "Montserrat";
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	text-align: center;
	transition: .2s;
	border-radius: 4px;
	cursor: pointer;
}

.btn-green {
	background-color: #078080;
}

.btn-green:hover {
	background-color: #08a3a3;
}

.btn-red {
	background-color: #F45D48;
}

.btn-red:hover {
	background-color: #f56d5a;
}

h1,
h2,
h3,
h4,
h5,
h6 {	
	font-family: "Montserrat";
	font-weight: 700;
}

h1 {
	margin-top: 40px;
	font-size: 28px;
}

h2 {
	margin-top: 40px;
	font-size: 24px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

h3,
h4 {
	margin-top: 20px;
}

h5,
h6 {
	margin-top: 0;
}

h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 15px;
}

main {
	padding-bottom: 40px;
}

main ul {
	list-style-type: none;
	margin: 20px 0;
	padding: 0;
}

main ul li {
	margin-bottom: 10px;
	padding-left: 15px;
	position: relative;
}

main ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: #087F8C;
}

main ol {
	margin: 20px 0;
	padding-left: 20px;
}

main ol li {
	max-width: 1240px;
	margin-bottom: 10px;
}

main p a,
main ul a,
main ol a {
	color: #078080;
	text-decoration: underline;
}

@media (min-width: 720px) {
	body {
		font-size: 18px;
	}

	.btn {
		width: 150px;
		height: 44px;
		border-radius: 6px;
		font-size: 14px;
	}

	h2,
	h3,
	h4,
	h5,
	h6 {
		margin-bottom: 20px;
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		margin-top: 60px;
		margin-bottom: 26px;
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 18px;
	}

	h6 {
		font-size: 16px;
	}

	main ul li {
		padding-left: 17px;
	}

	main ul li:before {
		top: 9px;
	}

	main {
		padding-bottom: 60px;
	}
}

header {
	position: relative;
	background-color: #F8F5F2;
	font-family: "Montserrat";
}

.header-top,
.header-main {
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.custom-logo-link {
	width: 60%;
}

.header-country {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.header-country img {
	width: 24px;
	margin-right: 8px;
}

.menu-toggle {
  width: 30px;
  height: 22px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #078080;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-toggle span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-toggle span:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-toggle.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  left: 0;
}

.menu-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 22px;
  left: 0;
}

.header-main nav {
	display: none;
	position: absolute;
	width: 100vw;
	bottom: 0;
	left: 0;
	transform: translateY(100%);
	padding: 30px 5%;
	background-color: #F8F5F2;
	z-index: 1000;
	font-weight: 700;
}

.header-main .home-link {
	display: block;
	width: 24px;
}

header ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.header-main nav li {
	margin-top: 15px;
	transition: .2s;
}

.header-main nav li:hover {
	color: #078080;
}

.header-main nav ul ul {
	margin-left: 30px;
}

header .search-form {
	display: none;
	position: relative;
	width: 80%;
	max-width: 300px;
}

header .search-form input {
	width: 100%;
	height: 30px;
	padding: 0 30px 0 15px;
	border: none;
	background-color: #fff;
	border-radius: 6px;
	outline: none;
	font-family: "Istok Web";
	font-size: 14px;
	font-weight: 400;
}

header .search-form button {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: transparent;
	border: none;
	display: flex;
	align-items: center;
	outline: none;
	cursor: pointer;
}

.header-main.search-opened .search-form {
	display: block;
}

.header-main.search-opened .search-btn {
	display: none;
}

@media (min-width: 720px) {
	.header-main .home-link {
		margin-right: 40px;
	}

	.header-top,
	.header-main {
		height: 70px;
	}

	.custom-logo-link {
		width: 400px;
	}

	.header-country img {
		width: 32px;
		margin-right: 16px;
	}

	header .search-form {
		width: 250px;
	}

	header .search-form input {
		width: 100%;
		height: 35px;
		padding: 0 30px 0 15px;
		border: none;
		background-color: #fff;
		border-radius: 6px;
	}

	header .search-form button {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 30px;
		height: 30px;
		background-color: transparent;
		border: none;
		display: flex;
		align-items: center;
		outline: none;
	}
}

@media (min-width: 1200px) {
	.menu-toggle {
		display: none;
	}

	.header-main nav {
		display: flex;
		align-items: center;
		height: 100%;
		position: static;
		width: auto;
		transform: none;
		padding: 0;
		background-color: transparent;
	}

	.header-main nav li {
		position: relative;
		margin-top: 0;
		margin-right: 36px;
		transition: .2s;
		height: 100%;
		cursor: pointer;
	}

	.header-main nav li a {
		display: flex;
		align-items: center;
		height: 100%;
	}

	.header-main nav ul {
		display: flex;
		height: 100%;
		font-size: 14px;
	}

	.header-main nav ul ul {
		display: none;
		position: absolute;
		left: -10px;
		bottom: 0;
		transform: translateY(100%);
		width: 287px;
		height: auto;
		margin-left: 0;
		padding: 24px 24px 4px;
		background-color: #fff;
		font-family: "Istok Web";
		font-size: 16px;
		font-weight: 400;
		border-radius: 6px;
		z-index: 1000;
	}

	.header-main nav ul ul li {
		margin-right: 0;
		margin-bottom: 16px;
		height: auto;
	}

	.header-main nav li:hover li {
		color: #222525;
	}

	.header-main nav li:hover ul {
		display: block;
	}

	.header-main .menu-item-has-children {
		position: relative;
		padding-right: 19px;
	}

	.header-main .menu-item-has-children:after {
		content: "\f0d7";
		position: absolute;
		top: 27px;
		right: 0;
		font-family: "Font Awesome 5 Free";
		font-size: 14px;
		font-weight: 700;
		line-height: 1;
	}
}

footer {
	padding: 50px 0;
	background-color: #078080;
	font-size: 14px;
	color: #fff;
	text-align: center;
}

footer .logo {
	display: block;
	margin: 0 auto 30px;
	width: 300px;
	max-width: 100%;
}

footer .col {
	margin-top: 30px;
}

footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	line-height: 2;
}

.footer-top {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #067070;
}

footer .copyright,
footer .disclaimer {
	margin-bottom: 10px;
}

.footer-technical ul {
	display: flex;
	justify-content: center;
}

.footer-technical li {
	position: relative;
	margin-right: 20px;
}

.footer-technical li:last-child {
	margin-right: 0;
}

.footer-technical li:first-child:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -10px;
	width: 1px;
	height: 15px;
	background-color: #fff;
}

.footer-images {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-images img {
	width: auto;
	margin-top: 30px;
}

@media (min-width: 720px) {
	footer {
		padding: 60px 0;
		font-size: 16px;
	}

	.footer-images {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 30px;
	}

	.footer-images img {
		margin-top: 0;
		margin-right: 30px;
	}

	.footer-images img:last-child {
		margin-right: 0;
	}
}

@media (min-width: 960px) {
	footer {
		text-align: left;
	}

	.footer-top {
		display: flex;		
		align-items: flex-start;
		justify-content: space-between;
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	footer .logo {
		margin: 0;
	}

	footer .col {
		margin-top: 6px;
	}

	footer h6 {
		font-size: 14px;
	}

	footer .copyright,
	footer .disclaimer {
		font-size: 14px;
	}

	.footer-technical ul {
		display: flex;
		justify-content: flex-start;
		font-size: 14px;
	}

	.footer-images {
		justify-content: flex-start;
		margin-top: 20px;
	}
}

@media (min-width: 1300px) {
	.footer-top {
		justify-content: flex-start;
	}

	.footer-top .col:nth-child(2) {
		margin-left: 40px;
	}

	.footer-top .col:nth-child(3) {
		margin-left: 140px;
	}

	.footer-top .col:nth-child(4) {
		margin-left: 140px;
	}
}

.wp-block-blocks-hero {
	margin-bottom: 40px;
	padding: 20px 5% 30px;
	background: #F8F5F2;
}

.wp-block-blocks-hero h1 {
	margin-top: 0;
}

.wp-block-blocks-content-table {
	margin-top: 40px;
	max-width: 620px;
	padding: 20px;
	background: #F8F5F2;
	border-radius: 6px;
}

.wp-block-blocks-content-table .arrow {
	width: 20px;
	margin: 0 auto;
	text-align: center; 
	cursor: pointer;
}

.wp-block-blocks-content-table.opened .arrow {
	transform: rotate(180deg);
}

@media (min-width: 720px) {
	.wp-block-blocks-content-table .arrow {
		margin: 10px auto 0;
	}
}

.wp-block-blocks-content-table h2 {
	margin-top: 0;
}

.wp-block-blocks-content-table ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	max-height: 230px;
	overflow: hidden;
}

.wp-block-blocks-content-table.opened ul {
	max-height: none;
}

.wp-block-blocks-content-table ul::-webkit-scrollbar {
  width: 4px;
}

.wp-block-blocks-content-table ul::-webkit-scrollbar-thumb {
  background-color: #CBC8C4;
  border-radius: 50px;
}

.wp-block-blocks-content-table li {
	position: relative;
	width: 420px;
	max-width: 100%;
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
	color: #078080;
	transition: .2s;
	border-radius: 6px;
}

.wp-block-blocks-content-table li a {
	display: block;
	padding: 6px 9px 6px 25px;
	color: inherit;
	text-decoration: none;
}

.wp-block-blocks-content-table li:before {
	content: "\f0da";
	position: absolute;
	top: 6px;
	left: 13px;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 700;
	width: auto;
	height: auto;
	background-color: transparent;
}

.wp-block-blocks-content-table li:hover {
	background-color: #078080;
	color: #fff; 
}

@media (min-width: 1422px) {
	.wp-block-blocks-hero {
		margin-bottom: 60px;
		padding: 20px calc((100% - 1280px)/2) 50px;
		background: #F8F5F2;
	}

	.wp-block-blocks-content-table {
		margin-top: 60px;
		padding: 30px;
	}

	.wp-block-blocks-content-table ul::-webkit-scrollbar {
	  width: 6px;
	}

	.wp-block-blocks-content-table li {
		font-size: 16px;
	}

	.wp-block-blocks-content-table li a {
		padding: 12px 18px 12px 35px;
	}

	.wp-block-blocks-content-table li:before {
		top: 13px;
		left: 15px;
		font-size: 14px;
	}
}

.wp-block-blocks-provider {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	background-color: #F8F5F2;
}

.wp-block-blocks-provider img {
	width: 260px;
	max-width: 95%;
}

@media (min-width: 782px) {
	.wp-block-blocks-provider {
		margin-bottom: 0;
	}
}

.wp-block-quote {
	margin: 20px 0;
	padding: 27px 20px 26px;
	background-color: #F8F5F2;
	border-left: 4px solid #078080;
	border-radius: 6px;
}

.wp-block-quote p {
	margin-bottom: 10px;
}

.wp-block-quote p:last-child {
	margin-bottom: 0;
}

.wp-block-quote cite {
	font-family: "Montserrat";
	font-size: 14px;
	font-weight: 700;
	color: #087F8C;
	font-style: normal;
}

.wp-block-blocks-pros h2,
.wp-block-blocks-pros h3,
.wp-block-blocks-pros h4,
.wp-block-blocks-cons h2,
.wp-block-blocks-cons h3,
.wp-block-blocks-cons h4 {
	margin-top: 0;
}

.wp-block-blocks-pros li,
.wp-block-blocks-cons li {
	padding-left: 25px;
}

.wp-block-blocks-pros li:before,
.wp-block-blocks-cons li:before {
	top: 3px;
	width: 14px;
	height: 14px;
	background-image: url(img/check.svg);
	background-size: cover;
	background-color: transparent;
}

.wp-block-blocks-cons li:before {
	background-image: url(img/cross.svg);
}

@media (min-width: 720px) {
	.wp-block-blocks-pros li:before,
	.wp-block-blocks-cons li:before {
		width: 16px;
		height: 16px;
	}
}

.wp-block-blocks-steps {
	padding: 10px 20px 30px;
	background-color: #F8F5F2;
	border-radius: 6px;
}

.wp-block-blocks-steps p {
	margin-bottom: 0;
}

.wp-block-blocks-steps .wp-block-columns {
	margin-bottom: 0;
}

@media (min-width: 720px) {
	.wp-block-blocks-steps {
		padding: 10px 30px 30px;
	}
}

.wp-block-blocks-filed-under {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
}

.wp-block-blocks-filed-under:before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 14px;
	height: 14px;
	background-image: url(img/filed-under.svg);
	background-size: cover;
}

@media (min-width: 720px) {
	.wp-block-blocks-filed-under {
		padding-left: 28px;
		font-size: 16px;
	}

	.wp-block-blocks-filed-under:before {
		width: 16px;
		height: 16px;
	}
}

table {
	width: 100%;
	border: 1px solid #F8F5F2;
	border-collapse: collapse;
}

table th {
	font-weight: 700;
	background: #F8F5F2;
	border-left: 1px solid #DBD4CE;
	border-right: 1px solid #DBD4CE;
}

table td {
	font-size: 14px;
	border: 1px solid #F8F5F2;
}

table th,
table td {
	padding: 13px 20px 12px;
}

table a {
	color: #078080;
}

@media (min-width: 720px) {
	table td {
		font-size: 16px;
	}
}

.wp-block-blocks-question {
	position: relative;
	margin-bottom: 20px;
	margin-left: 25px;
	padding: 16px;
	background-color: #F8F5F2;
	border-radius: 10px 10px 10px 4px;
}

.wp-block-blocks-question:before {
	content: "";
	position: absolute;
	top: 0;
	left: -25px;
	width: 18px;
	height: 18px;
	background-image: url(img/question.svg);
	background-size: cover;
}

.wp-block-blocks-question h2,
.wp-block-blocks-question h3,
.wp-block-blocks-question h4,
.wp-block-blocks-question h5 {
	margin-top: 0;
	margin-bottom: 10px;
}

.wp-block-blocks-question p:last-child {
	margin-bottom: 0;
}

@media (min-width: 720px) {
	.wp-block-blocks-question {
		margin-left: 40px;
	}

	.wp-block-blocks-question:before {
		left: -40px;
		width: 24px;
		height: 24px;
	}
}

.wp-block-blocks-contributor {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.wp-block-blocks-contributor .photo {
	width: 70px;
	height: 70px;
	margin-right: 20px;
}

.wp-block-blocks-contributor .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.wp-block-blocks-contributor h5 {
	margin: 0;
	color: #078080;
}

.wp-block-blocks-contributor .info span {
	font-size: 14px;
}

@media (min-width: 720px) {
	.wp-block-blocks-contributor .info span {
		font-size: 16px;
	}
}

.breadcrumbs {
	padding: 30px 0 20px;
	font-size: 14px;
	background: #F8F5F2;
}

.breadcrumbs a {
	color: #078080;
}

.page-404 {
	background: #F8F5F2;
}

.error-404 {	
	font-family: "Montserrat";
	font-weight: 700;
	font-size: 144px;
	text-align: center;
}

@media (min-width: 720px) {
	.content-404 .container {
		display: flex;
	}

	.error-404 {
		margin-left: 30px;
		font-size: 100px;
	}
}

@media (min-width: 960px) {
	.error-404 {
		margin-left: 114px;
		font-size: 144px;
	}
}

.custom-search-results {
	margin-top: 50px;
}

.custom-search-results a {
	color: #078080;
}

.custom-search-results a:hover {
	text-decoration: underline;
}