h1, h2, h3, p {
	max-width: 600px;
	text-align: center;
	margin: 0 auto;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}
.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 100;
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.footer a {
	
}

a {
	text-decoration: none!important;
}


a:hover {
	text-decoration: none;
}

.arrows {
	position: fixed;
	width: 100%;
	bottom: 4em;
	z-index: 999;
}

.container {
	padding-left: 2em !important;
	padding-right: 2em !important;
	z-index: 2;
	position: relative;
}

.wrap {
	max-width: 960px;
}

.center {
	width: 100%;
}

.test-1, .test-2, .test-3, .test-4, .test-5,  .test-6,  .test-7,  .test-8,  .test-9,  .test-10 {
	height: 100%;
} 

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-wrapper {
	position: relative;
	z-index: 2;
}


.swiper-slide {
	position: relative;
}

.transparent-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	z-index: 1;
	/* -webkit-backdrop-filter: saturate(180%) blur(10px); */
    /* backdrop-filter: saturate(180%) blur(10px); */
}

.bg-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 125%;
	height: 100%;
	z-index: 0;
	background-size: cover;
	background-position: center center;
	
}

ul.checkbox {
  list-style-type: none;
  margin: 0 !important;
  /* padding: 0 !important; */
  padding: 0 !important;
  text-align: center;
  
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
	-webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

ul.checkbox:after {
	display: block;
	content: '';
	clear: both;
}

.checkbox li {
  display: block;
  /* display: inline-block; */
  float: left;
  margin-right: 1em;
  width: 192px;
}
.checkbox li:last-child {
  margin-right: 0;
}


.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox label {
	display: block;
	position: relative;
	cursor: pointer;
	margin: 0 !important;
	width: 100%;
}

.checkbox div.label {
	margin-top: 1em;
}

.checkbox label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  /* border: 1px solid #28a745; */
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
  z-index: 1;
}

.checkbox label .choose-bg-image {
  height: 192px;
  width: 192px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  background-size: cover;
  background-position:  center center;
  border-radius: 8px;
}

.checkbox :checked + label {
  border-color: #ddd;
}

.checkbox :checked + label:before {
  content: "✓";
  background-color: #28a745;
  transform: scale(1);
}

.checkbox :checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
  z-index: -1;
}

.checkbox :checked + label .choose-bg-image {
	transform: scale(0.9);
	/* box-shadow: 0 0 5px #333; */
	z-index: -1;
   	background-color: rgba(255,255,255,0.1);
	border: 4px solid #28a745;
}

ul.radio {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Custom labels: the container */
.checkcontainer {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

/* Hide the browser's default checkbox */
.checkcontainer input {
  	position: absolute;
	  opacity: 0;
cursor: pointer;}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
    left: 10px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Create a custom radio button */
.radiobtn{
	display: none;
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
	transition: .3s;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .radiobtn{
	background-color: #ccc;
	transition: .3s;
}

/* When the radio button is checked, add a blue background */
.checkcontainer input:checked ~ .radiobtn{
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkcontainer input:checked ~ .radiobtn:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.checkcontainer .radiobtn:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}



ul.radiobox {
  list-style-type: none;
  margin: 0 !important;
  /* padding: 0 !important; */
  padding: 0 !important;
  text-align: center;
  
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
	-webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

ul.radiobox:after {
	display: block;
	content: '';
	clear: both;
}

.radiobox li {
  display: block;
  /* display: inline-block; */
  float: left;
  margin-right: 1em;
  width: 192px;
  margin-top: 1em;
}
.radiobox li:last-child {
  margin-right: 0;
}

.radiobox input[type="radio"] {
  display: none;
}

.radiobox label {
	display: block;
	position: relative;
	cursor: pointer;
	margin: 0 !important;
	width: 100%;
}

.radiobox div.label {
	margin-top: 1em;
}

.radiobox label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  /* border: 1px solid #28a745; */
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
  z-index: 1;
}

.radiobox label img {
  height: 192px;
  width: 192px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

.radiobox label .choose-bg-image {
  height: 192px;
  width: 192px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  background-size: cover;
  background-position:  center center;
  border-radius: 8px;
  
  /* border-top: 1px solid rgba(255,255,255,0.1); */
  /* border-right: 2px solid #666; */
  /* border-bottom: 2px solid #666; */
  /* border-left: 1px solid rgba(255,255,255,0.1); */
	/* backdrop-filter: blur(4px); */
	/* background-color: rgba(255,255,255,0.1); */
}

.radiobox :checked + label {
  border-color: #ddd;
}

.radiobox :checked + label:before {
  content: "✓";
  background-color: #28a745;
  transform: scale(1);
}

.radiobox :checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
  z-index: -1;
}

.radiobox :checked + label .choose-bg-image {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
  z-index: -1;
  /* filter: grayscale(0); */
  /* filter: grayscale(1); */
  	background-color: rgba(255,255,255,0.1);
}

.prev, .next, .submit {
	padding-left: 2em !important;
	padding-right: 2em !important;
}

.next.required {
	color: rgba(255,255,255,0.25);
	border-color: rgba(255,255,255,0.25);
	pointer-events: none;
}

.form-control {
	line-height: 48px !important;
	height: 48px !important;
	color: rgba(255,255,255,0.9) !important;
	background: rgba(255,255,255,0.2) !important;
	border: 0 !important;
	box-shadow: 0 0 0 0.1rem transparent !important;
	backdrop-filter: blur(20px);
}

.form-control:focus {
	box-shadow: 0 0 0 0.1rem rgba(255 255 255 / 25%) !important;
}

::placeholder {
  color: rgba(255,255,255,0.5) !important;
}

.radio label {
	display: block;
	background: rgba(255,255,255,0.4);
	box-shadow: 0 0 0 0.1rem transparent !important;
	margin: 1rem 0;
	padding: 0.5rem 1rem;
	border-radius: 4px;
}

/* .radio :checked + .radio .checkcontainer { */
	/* background: #fff !important; */
/* } */


.radio .text-center {
	text-align: left !important;
}

.btn-primary {
	background: #9a816d !important;
	border-color: #9a816d !important;
}

.btn-primary:hover {
	background: #746152 !important;
	border-color: #746152 !important;
}

/* language */

.language .dropdown{
	position: absolute;
	overflow: hidden;
	top: calc(1em + 0.5em);
	height: 0;
	transition: .2s
}
#lang_form{
	margin:7px 0;
}
#lang_form:hover .dropdown{
	height: 50px;
	transition: .2s;
	margin: 8px 0 0 0;
}
.language .lang_button{
	display: block;
	width: 24px;
	height: 16px;
	background-size: 24px 16px;
	border: 0;
	padding: 0;
	outline: 0;
	cursor:pointer;
	margin: 0;
	color: transparent;
}
.language .dropdown .lang_button{
	margin: 0.5em 0 0.5em 0;
}
.language #ru{
	background-image: url(../img/russia.png);
}
.language #en{
	background-image: url(../img/eng.png);
}
.language #fr{
	background-image: url(../img/flag_fr.png);
}
/* language end */


small.text-muted {
	color: #bbb!important;
}