/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

body {
	background: #fff;
	font-size: 22px;
	line-height: 32px;
	color: #000;
	margin: 0;
	padding: 0;
	word-wrap: break-word !important;
	font-family: 'Open Sans', sans-serif;
}

h1 {
	font-size: 60px;
	text-align: center;
	color: #FFF;
}

h3 {
	font-size: 30px;
	line-height: 34px;
	text-align: center;
	color: #FFF;
}

h3 a {
	color: rgb(23, 164, 235) !important;
}

a {
	color: rgb(23, 164, 235) !important;
	text-decoration: none;
}

h1 {
	margin-top: 100px;
	text-align: center;
	font-size: 60px;
	line-height: 70px;
	font-family: 'Bree Serif', 'serif';
}

#container {
	margin: 0 auto;
	max-width: 890px;
}

p {
	text-align: center;
}

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav {
	margin: 0;
	padding: 0;
	background-color: rgba(23, 23, 23, 1);
	z-index: 990;
	position: fixed;
	top: 0;
	box-shadow: 0 1px 3px rgb(0 0 0 / 0%);
	transition: background-color .3s linear;
	width: 100%;
	height: 80px;
}

nav.change_mob {
	height: 170px;
}

#logo {
	display: block;
	padding: 0 30px;
	float: left;
	font-size: 20px;
	line-height: 80px;
}

#logo img {
	width: 200px;
}


nav:after {
	content: "";
	display: table;
	clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding: 0;
	margin-right: 50px;
	margin-top: 25px;
	list-style: none;
	position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display: inline-block;
	float: left;
	background-color: #254441;
}

/* Styling the links */
nav a {
	display: inline-block;
	color: #FFF;
	font-size: 17px;
	text-decoration: none;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute;
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px;
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
	display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
	width: 170px;
	float: none;
	display: list-item;
	position: relative;
}

nav ul ul ul li {
	position: relative;
	top: -60px;
	left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li>a:after {
	content: ' +';
}

li>a:only-child:after {
	content: '';
}

@media only screen and (max-width: 980px) {
	.content {
		width: 90%;
	}
}

@media only screen and (max-width: 568px) {
	h1 {
		padding: 25px 0px;
	}

	h1 span {
		display: block;
	}
}

@media only screen and (max-width: 480px) {
	section {
		max-width: 90%;
	}
}

@media only screen and (max-width: 360px) {
	h1 {
		font-size: 20px;
	}

	label {
		padding: 5px 0px;
	}

	#logo {
		font-size: 20px;
	}
}

@media only screen and (max-width: 320px) {
	h1 {
		padding: 20px 0px;
	}
}


/* Media Queries
--------------------------------------------- */


.t-container {
	max-width: 760px;
	padding-top: 105px;
	margin: 0 auto;
}

.t_form {
	padding: 0 20px;
}


.t-input-title {
	display: block;
	vertical-align: middle;
	height: 100%;
	padding-right: 10px;
	padding-bottom: 5px;
	font-size: 20px;
	line-height: 1.55;
	font-weight: 300;
	color: #000;
}

.t-input {
	margin: 0;
	font-size: 100%;
	height: 60px;
	padding: 0 20px;
	font-size: 16px;
	line-height: 1.33;
	width: 100%;
	border: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
	border-radius: 0;
	color: #000000;
	border: 1px solid #000000;
}

.form_input {
	margin-bottom: 25px;
}

.un_phone_pad {
	margin-bottom: 40px;
}

.t-textarea {
	font-size: 100%;
	height: 60px;
	padding: 10px 20px;
	font-size: 16px;
	line-height: 1.33;
	width: 100%;
	border: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
	border-radius: 0;
	color: #000000;
	border: 1px solid #000000;
	resize: none;
	height: 102px;
}

.checkbox {
	margin-bottom: 0.2em;
}

/* для элемента input c type="checkbox" */
.custom-checkbox>input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox>span {
	display: inline-flex;
	align-items: center;
	user-select: none;
	font-weight: 300;
	color: #000;
	font-size: 15px;
	line-height: 1.55;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox>span::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #000;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
	border-color: #000;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox>input:not(:disabled):active+span::before {
	border-color: #000;
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox>input:focus:not(:checked)+span::before {
	border-color: #000;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox>input:checked+span::before {
	border-color: #000;

	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox>input:disabled+span::before {
	background-color: #000;
}

.reg_rule {
	display: inline;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 300;
}

.input-error {
	border: 1px solid red;

}

.input__wrapper {
	width: 100%;
	position: relative;
	margin: 15px 0;
	text-align: center;
}

.input__file {
	opacity: 0;
	left: 0;
	visibility: hidden;
	position: absolute;
}

.input__file-icon-wrapper {
	height: 60px;
	width: 60px;
	margin-right: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-right: 1px solid #fff;
}

.input__file-button-text {
	line-height: 1;
	margin-top: 1px;
}

.input__file-button {
	width: 100%;
	max-width: 230px;
	height: 45px;
	background: #000;
	color: #fff;
	font-size: 0.925rem;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-radius: 3px;
	cursor: pointer;
}

.field__wrapper {
	width: 100%;
	position: relative;
	margin: 15px 0;
	text-align: center;
}

.field__file {
	opacity: 0;
	visibility: hidden;
	position: absolute;
}

.field__file-wrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.field__file-fake {
	height: 60px;
	width: calc(100% - 130px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 15px;
	border: 1px solid #c7c7c7;
	border-radius: 3px 0 0 3px;
	border-right: none;
}

.field__file-button {
	width: 130px;
	height: 60px;
	background: #000;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
}

.t-submit {
	text-align: center;
	height: 60px;
	border: 0 none;
	font-size: 16px;
	padding-left: 60px;
	padding-right: 60px;
	-webkit-appearance: none;
	font-weight: 700;
	white-space: nowrap;
	background-image: none;
	cursor: pointer;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	color: #fff;
	background-color: #000;
}

.t_form__submit {
	display: block;
	text-align: center;
	vertical-align: middle;
	height: 100%;
	margin-top: 30px;
	margin-bottom: 10px;
}

.footer_o {
	padding-top: 15px;
	padding-bottom: 0px;
	background-color: #000;
}

.footer_o_text {
	font-size: 24px;
	opacity: .7;
	padding-top: 40px;
	padding-bottom: 40px;
	text-align: center;
}

.footer_w_text {
	color: #dedede;
	padding: 40px 20px;
	font-size: 14px;
	line-height: 1.55;
	text-align: center;
}

.horizontalline {
	background-color: #ffffff;
	opacity: 0.1;
}

.footer_h_text {
	max-width: 1200px;
	margin: 0 auto;
}

.footer_tr_text {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

.footer_t_text {
	display: table;
	table-layout: fixed;
	width: 100%;
	margin: 80px auto;
}

.wp_footer_t_text {
	display: table-cell;
	transition: opacity ease-in-out 0.2s;
	padding: 10px;
}

.wp_footer_icon_text {
	width: 40px;
	position: relative;
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
}

.t460__svg {
	display: block;
	width: 100%;
	height: 100%;
}

.container_gamb {
	display: none;
	cursor: pointer;
	position: absolute;
	top: 40px;
	left: 40px;
	transform: translate(-50%, -50%);
}

@media only screen and (max-width: 467px) {
	.container_gamb {
		display: block;
	}

	#logo {
		display: block;
		padding: 0 30px;
		float: none;
		font-size: 20px;
		line-height: 80px;
		text-align: center;
	}

	nav ul {
		float: none;
		padding: 0;
		margin-right: 0;
		margin-top: 25px;
		list-style: none;
		position: relative;
		text-align: center;
		display: none;
	}

	.change_ul {
		display: block;
	}


}

.bar1_gamb,
.bar2_gamb,
.bar3_gamb {
	width: 35px;
	height: 5px;
	background-color: #fff;
	margin: 6px 0;
	transition: 0.4s;
}

/* Rotate first bar */
.change_gamb .bar1_gamb {
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
}

/* Fade out the second bar */
.change_gamb .bar2_gamb {
	opacity: 0;
}

/* Rotate last bar */
.change_gamb .bar3_gamb {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}

.error-message {
	font-size: .85rem;
	color: red;
	height: 0;
}


.select-wrapper {
	margin: auto;
	max-width: 600px;
	width: calc(100% - 40px);
}

.select-pure__select {
	align-items: center;
	background: #ffff;
	color: #000000;
	border: 1px solid #000000;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	justify-content: left;
	min-height: 60px;
	position: relative;
	transition: 0.2s;
	width: 100%;
}

.select-pure__options {
	color: #000000;
	border: 1px solid #000000;
	display: none;
	left: 0;
	max-height: 221px;
	overflow-y: scroll;
	position: absolute;
	top: 50px;
	width: 100%;
	z-index: 5;
}

.select-pure__select--opened .select-pure__options {
	display: block;
}

.select-pure__option {
	background: #fff;
	border-bottom: 1px solid #e4e4e4;
	box-sizing: border-box;
	min-height: 44px;
	line-height: 25px;
	padding: 10px;
}

.select-pure__option--selected {
	color: #e4e4e4;
	cursor: initial;
	pointer-events: none;
}

.select-pure__option--hidden {
	display: none;
}

.select-pure__selected-label {
	background: #5e6264;
	border-radius: 4px;
	color: #fff;
	cursor: initial;
	display: inline-block;
	margin: 5px 10px 5px 0;
	padding: 5px 10px;
}

.select-pure__selected-label:last-of-type {
	margin-right: 0;
}

.select-pure__selected-label i {
	cursor: pointer;
	display: inline-block;
	margin-left: 7px;
}

.select-pure__selected-label i:hover {
	color: #e4e4e4;
}

.select-pure__autocomplete {
	background: #f9f9f8;
	border-bottom: 1px solid #e4e4e4;
	border-left: none;
	border-right: none;
	border-top: none;
	box-sizing: border-box;
	font-size: 16px;
	outline: none;
	padding: 10px;
	width: 100%;
}

.change_sel {
	border: 1px solid red;
}

.iti__flag {
	background-image: url("/str/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
	.iti__flag {
		background-image: url("/str/img/flags@2x.png");
	}
}