/*
 * Normalize css for SB-dev sites
 * File based on:
 * ! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css 
*/

/* Document */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
article,
aside,
address,
footer,
header,
nav,
section,
figcaption,
figure,
main,
details,
menu {
  display: block;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
audio,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  color: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button:active,
button:focus{
  outline: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
a[disabled],
button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: .5;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  display: inline-block;
  vertical-align: baseline;
}
textarea {
  overflow: auto;
  resize: vertical;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}
template,
[hidden] {
  display: none;
}

input,
textarea{
  box-sizing: border-box;
  max-width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: #999999;
}

input:valid,
input:invalid,
textarea:valid,
textarea:invalid,
input:focus,
textarea:focus{
  outline: none;
}
input,
textarea{
  width: 100%;
}
[type='radio'],
[type='checkbox'],
[type='submit'],
[type='file']{
  width: auto;
}
/**
 * general grid layout for theme
*/
/* 
 * .col- (extra small devices: < 576px)
 * .col-sm- (small devices: >= 576px)
 * .col-md- (medium devices: >= 768px)
 * .col-lg- (large devices: >= 992px)
 * .col-xl- (xlarge devices: >= 1200px)
*/
.container{
	max-width: 1600px; 
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}
.row{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.col,
[class*='col-']{
	padding: 0 15px;
	box-sizing: border-box;
	min-height: 1px;
	width: 100%;
}
.col{
	flex-grow: 1;
	flex-basis: 0;
	max-width: 100%;
}

[class*='-push-'],
[class*='-pull-']{
	position: relative;
}

.col-1{width: 8.333%;}
.col-push-1{left: 8.333%;}
.col-pull-1{left: -8.333%;}

.col-2{width: 16.666%;}
.col-push-2{left: 16.666%;}
.col-pull-2{left: -16.666%;}

.col-3{width: 25%;}
.col-push-3{left: 25%;}
.col-pull-3{left: -25%;}

.col-4{width: 33.333%;}
.col-push-4{left: 33.333%;}
.col-pull-4{left: -33.333%;}

.col-5{width: 41.666%;}
.col-push-5{left: 41.666%;}
.col-pull-5{left: -41.666%;}

.col-6{width: 50%;}
.col-push-6{left: 50%;}
.col-pull-6{left: -50%;}

.col-7{width: 58.333%;}
.col-push-7{left: 58.333%;}
.col-pull-7{left: -58.333%;}

.col-8{width: 66.666%;}
.col-push-8{left: 66.666%;}
.col-pull-8{left: -66.666%;}

.col-9{width: 75%;}
.col-push-9{left: 75%;}
.col-pull-9{left: -75%;}

.col-10{width: 83.333%;}
.col-push-10{left: 83.333%;}
.col-pull-10{left: -83.333%;}

.col-11{width: 91.666%;}
.col-push-11{left: 91.666%;}
.col-pull-11{left: -91.666%;}

.col-12{width: 100%;}

@media screen and (min-width: 576px){
	.col-sm-1{width: 8.333%;}
	.col-sm-2{width: 16.666%;}
	.col-sm-3{width: 25%;}
	.col-sm-4{width: 33.333%;}
	.col-sm-5{width: 41.666%;}
	.col-sm-6{width: 50%;}
	.col-sm-7{width: 58.333%;}
	.col-sm-8{width: 66.666%;}
	.col-sm-9{width: 75%;}
	.col-sm-10{width: 83.333%;}
	.col-sm-11{width: 91.666%;}
	.col-sm-12{width: 100%;}
	.col-sm{
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
	}

	.col-sm-push-1{left: 8.333%;}
	.col-sm-push-2{left: 16.666%;}
	.col-sm-push-3{left: 25%;}
	.col-sm-push-4{left: 33.333%;}
	.col-sm-push-5{left: 41.666%;}
	.col-sm-push-6{left: 50%;}
	.col-sm-push-7{left: 58.333%;}
	.col-sm-push-8{left: 66.666%;}
	.col-sm-push-9{left: 75%;}
	.col-sm-push-10{left: 83.333%;}
	.col-sm-push-11{left: 91.666%;}

	.col-sm-pull-1{left: -8.333%;}
	.col-sm-pull-2{left: -16.666%;}
	.col-sm-pull-3{left: -25%;}
	.col-sm-pull-4{left: -33.333%;}
	.col-sm-pull-5{left: -41.666%;}
	.col-sm-pull-6{left: -50%;}
	.col-sm-pull-7{left: -58.333%;}
	.col-sm-pull-8{left: -66.666%;}
	.col-sm-pull-9{left: -75%;}
	.col-sm-pull-10{left: -83.333%;}
	.col-sm-pull-11{left: -91.666%;}
}
@media screen and (min-width: 769px){
	.col-md-1{width: 8.333%;}
	.col-md-2{width: 16.666%;}
	.col-md-3{width: 25%;}
	.col-md-4{width: 33.333%;}
	.col-md-5{width: 41.666%;}
	.col-md-6{width: 50%;}
	.col-md-7{width: 58.333%;}
	.col-md-8{width: 66.666%;}
	.col-md-9{width: 75%;}
	.col-md-10{width: 83.333%;}
	.col-md-11{width: 91.666%;}
	.col-md-12{width: 100%;}
	.col-md{
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
	}

	.col-md-push-1{left: 8.333%;}
	.col-md-push-2{left: 16.666%;}
	.col-md-push-3{left: 25%;}
	.col-md-push-4{left: 33.333%;}
	.col-md-push-5{left: 41.666%;}
	.col-md-push-6{left: 50%;}
	.col-md-push-7{left: 58.333%;}
	.col-md-push-8{left: 66.666%;}
	.col-md-push-9{left: 75%;}
	.col-md-push-10{left: 83.333%;}
	.col-md-push-11{left: 91.666%;}

	.col-md-pull-1{left: -8.333%;}
	.col-md-pull-2{left: -16.666%;}
	.col-md-pull-3{left: -25%;}
	.col-md-pull-4{left: -33.333%;}
	.col-md-pull-5{left: -41.666%;}
	.col-md-pull-6{left: -50%;}
	.col-md-pull-7{left: -58.333%;}
	.col-md-pull-8{left: -66.666%;}
	.col-md-pull-9{left: -75%;}
	.col-md-pull-10{left: -83.333%;}
	.col-md-pull-11{left: -91.666%;}
}
@media screen and (min-width: 992px){
	.col-lg-1{width: 8.333%;}
	.col-lg-2{width: 16.666%;}
	.col-lg-3{width: 25%;}
	.col-lg-4{width: 33.333%;}
	.col-lg-5{width: 41.666%;}
	.col-lg-6{width: 50%;}
	.col-lg-7{width: 58.333%;}
	.col-lg-8{width: 66.666%;}
	.col-lg-9{width: 75%;}
	.col-lg-10{width: 83.333%;}
	.col-lg-11{width: 91.666%;}
	.col-lg-12{width: 100%;}
	.col-lg{
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
	}

	.col-lg-push-1{left: 8.333%;}
	.col-lg-push-2{left: 16.666%;}
	.col-lg-push-3{left: 25%;}
	.col-lg-push-4{left: 33.333%;}
	.col-lg-push-5{left: 41.666%;}
	.col-lg-push-6{left: 50%;}
	.col-lg-push-7{left: 58.333%;}
	.col-lg-push-8{left: 66.666%;}
	.col-lg-push-9{left: 75%;}
	.col-lg-push-10{left: 83.333%;}
	.col-lg-push-11{left: 91.666%;}

	.col-lg-pull-1{left: -8.333%;}
	.col-lg-pull-2{left: -16.666%;}
	.col-lg-pull-3{left: -25%;}
	.col-lg-pull-4{left: -33.333%;}
	.col-lg-pull-5{left: -41.666%;}
	.col-lg-pull-6{left: -50%;}
	.col-lg-pull-7{left: -58.333%;}
	.col-lg-pull-8{left: -66.666%;}
	.col-lg-pull-9{left: -75%;}
	.col-lg-pull-10{left: -83.333%;}
	.col-lg-pull-11{left: -91.666%;}
}
@media screen and (min-width: 1201px){
	.col-xl-1{width: 8.333%;}
	.col-xl-2{width: 16.666%;}
	.col-xl-3{width: 25%;}
	.col-xl-4{width: 33.333%;}
	.col-xl-5{width: 41.666%;}
	.col-xl-6{width: 50%;}
	.col-xl-7{width: 58.333%;}
	.col-xl-8{width: 66.666%;}
	.col-xl-9{width: 75%;}
	.col-xl-10{width: 83.333%;}
	.col-xl-11{width: 91.666%;}
	.col-xl-12{width: 100%;}
	.col-xl{
		flex-grow: 1;
		flex-basis: 0;
		max-width: 100%;
	}

	.col-xl-push-1{left: 8.333%;}
	.col-xl-push-2{left: 16.666%;}
	.col-xl-push-3{left: 25%;}
	.col-xl-push-4{left: 33.333%;}
	.col-xl-push-5{left: 41.666%;}
	.col-xl-push-6{left: 50%;}
	.col-xl-push-7{left: 58.333%;}
	.col-xl-push-8{left: 66.666%;}
	.col-xl-push-9{left: 75%;}
	.col-xl-push-10{left: 83.333%;}
	.col-xl-push-11{left: 91.666%;}

	.col-xl-pull-1{left: -8.333%;}
	.col-xl-pull-2{left: -16.666%;}
	.col-xl-pull-3{left: -25%;}
	.col-xl-pull-4{left: -33.333%;}
	.col-xl-pull-5{left: -41.666%;}
	.col-xl-pull-6{left: -50%;}
	.col-xl-pull-7{left: -58.333%;}
	.col-xl-pull-8{left: -66.666%;}
	.col-xl-pull-9{left: -75%;}
	.col-xl-pull-10{left: -83.333%;}
	.col-xl-pull-11{left: -91.666%;}
}
@font-face {
  font-family: 'SegoeUI';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Segoe UI'), local('Segoe UI Regular'),
    url('/assets/fonts/SegoeUI/SegoeUI.woff2') format('woff2'),
    url('/assets/fonts/SegoeUI/SegoeUI.woff') format('woff'),
    url('/assets/fonts/SegoeUI/SegoeUI.ttf') format('truetype'),
    url('/assets/fonts/SegoeUI/SegoeUI.eot#iefix') format('embedded-opentype'),
    url('/assets/fonts/SegoeUI/SegoeUI.svg') format('svg');
}
@font-face {
  font-family: 'SegoeUI';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Segoe-UI-Semibold'), local('Segoe UI Semibold'),
    url('/assets/fonts/SegoeUI/SegoeUI-Semibold.woff2') format('woff2'),
    url('/assets/fonts/SegoeUI/SegoeUI-Semibold.woff') format('woff'),
    url('/assets/fonts/SegoeUI/SegoeUI-Semibold.ttf') format('truetype'),
    url('/assets/fonts/SegoeUI/SegoeUI-Semibold.eot#iefix') format('embedded-opentype'),
    url('/assets/fonts/SegoeUI/SegoeUI-Semibold.svg') format('svg');
}

html{
  font-size: 16px;
}

body{
    font-family: Arial;
    font-weight: 400;
    margin: 0;
    color:#292929;
    min-width: 303px;
}

@media (max-width: 767px){
  html{
    font-size: 14px;
  }
}

img{
  max-width: 100%;
  height: auto;
  border-style: none;
}

p{
  margin:0 0 .5em;
}

a{
  color:#fff;
  text-decoration: none;
  transition-property: color, background-color, border-color;
  transition-duration: .3s;
}

@media (min-width: 992px){
  a:hover,
  a:focus{
    color:#0073ab;
  }
}
/**/


.btn{
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    font-weight: 600;
    padding: 18px 50px;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    border: none;
    max-width:100%;
    white-space:nowrap;
    overflow:hidden;
    text-transform: uppercase;
    transition-property: color, background-color;
    transition-duration: .3s;
}
@media (max-width: 768px){
  .btn{
    font-size: 24px;
    padding: 13px;
  }
}
@media screen and (max-width: 575px){
    .btn{
        display: block;
        width: 100%;
        justify-content: center;
    }
}

.btn-main{
  color:#fff;
  background-color: #ff8900;
  border-radius: 10px;
}

@media (min-width: 992px){
  .btn-main:hover,
  .btn-main:focus{
    color:#fff;
    background-color: #0073ab;
  }
}

/** */
.container {
  max-width: 1200px;
}
.seo-block .container{
  text-align: justify;
}
.container .block {
    padding: 0 15px;
    box-sizing: border-box;
}

button.page-top{
    background-color: #292929;
    border-radius: 50%;
}

.block-space{
  /*padding: 6vw 0;*/
  padding: 120px 0 100px;
}
@media (max-width: 991px){
  .block-space{
    padding: 60px 0;
  }
}
@media (max-width: 768px){
  .block-space{
    padding: 40px 0;
  }
}

.block-header{
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  max-width: 1200px;
  padding: 0 15px;
  margin:0 auto 15px;
}
@media (max-width: 991px){
  .block-header{
    font-size: 42px;
  }
}
@media (max-width: 768px){
  .block-header{
    font-size: 28px;
  }
}

.header,
.btn,
.banner .inner .sub-title.second,
.conditions .unit,
.you-get .text,
.options table,
.options__mobile ul,
.options__mobile .toggle-btn,
.feedback .inner .content,
.form input,
.seo-block,
.footer a{
  font-family: 'SegoeUI';
}

@media (min-width: 992px){
  .underline{
    position: relative;
    display: inline-block;
    z-index: 1;
    padding:0 .1em;
  }
  .underline:before{
    content:'';
    position: absolute;
    bottom:0;
    left: 0;
    height: 25px;
    width: 100%;
    background-color: #ff8900;
    z-index: -1;
  }
}

.img-as-bg{
  position: relative;
}
.img-as-bg .bg-img{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.img-as-bg .bg-img img{
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

/**
 * header
*/
.header{
  font-weight: 600;
  color:#fff;
  padding: 20px 0;
  position: absolute;
  top: 0;
  left:0;
  width: 100%;
  z-index: 1;
}
.header .row{
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.header .right{
  display: flex;
}
.header .right>a{
  font-size: 24px;
  line-height: 1;
  margin-right: 30px;
  display: flex;
  align-items: center;
}
.header .right>a:last-child{
  margin-right: 0;
}
.header .icon{
  padding: 8px;
  border-radius: 50%;
  background-color: #fff;
  color:#5b8e8a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .text{
  margin-left: 5px;
}
@media (max-width: 1200px){
  .header .right>a{
    margin-right: 10px;
  }
}
@media (max-width: 991px){
  .header .right .mail,
  .header .phone .text{
    display: none;
  }
}

/**
 * Banner
*/
.banner{
  min-height: 100vh;
  /*background-image: url('/assets/img/banner.jpg');*/
  /*background-size: cover;*/
  /*background-position: top center;*/
  display: flex;
  align-items: flex-end;
}
.banner .container{
  flex-basis: 100%;
  position: relative;
}
.banner .inner{
  color:#fff;
  text-align: center;
  padding: 100px 0;
}
.banner .inner p{
  line-height: 1;
}
.banner .inner .title{
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.banner .inner .sub-title.first{
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.banner .inner .sub-title.second{
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 768px){
  .banner{
    min-height: auto;
  }
  .banner .inner{
    text-align: center;
    padding: calc(60px + 108px) 0 30px;
  }
  .banner .inner .title{
    font-size: 27px;
  }
  .banner .inner .sub-title.first,
  .banner .inner .sub-title.second{
    font-size: 20px;
  }
  .banner .inner .sub-title.second{
    margin-bottom: 60px;
  }
  .banner .hide-mobile{
    display: none;
  }
}

/**
 * conditions
*/
.conditions{}

.conditions .row{
  margin: 100px 0 -50px;
}
.conditions .row>div{
  margin: 50px 0;
}

.conditions .underline:before{
  background-color:#00bd52;
  /*height: .5em;*/
}
.conditions .text{
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  margin-top: 15px;
}
.conditions .img{
  width:130px;
  height: 130px;
  margin: auto;
}
.conditions .img img{
  object-fit: contain;
}

@media (max-width: 991px){
  .conditions .row{
    margin: 25px 0 -25px;
  }
  .conditions .row>div{
    margin: 25px 0;
  }
}
@media (max-width: 768px){
  .conditions .img{
    height: 80px;
    width: 80px;
  }
  .conditions .text{
    font-size: 18px;
  }
}

/**
 * 
*/
.call-to-action{
  /*background-image: url('/assets/img/call-to-action.jpg');*/
  /*background-size: cover;*/
  /*background-position: top left;*/
}
.call-to-action .container{
  position: relative;
}
.call-to-action p{
  color:#fff;
}
.call-to-action .block-header{
  margin-bottom: 0;
}
.call-to-action .sub-title{
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0;
}
.btn-container{
  margin-top: 55px;
}

@media (min-width: 992px){
  .call-to-action .block-header{
    font-size: 80px;
  }
  .call-to-action .inner,
  .call-to-action .block-header {
    text-align: right;
  }
  .call-to-action .underline:before{
    height: .375em;
  }
  .call-to-action .sub-title{
    /*padding-left: 8%;*/
  }
}
@media (max-width: 991px){
  .call-to-action{
    padding-top: 115px;
  }
  .call-to-action .inner{
    text-align: center;
  }
  .call-to-action .block-header {
    font-size: 32px;
  }
  .call-to-action .sub-title{
    font-size: 30px;
  }
  .call-to-action .sub-title span{
    display: block;
    font-size: 24px;
  }
}


/**
 * you-get
*/
.you-get{}

.you-get .underline:before{
  /*height: .5em;*/
  background-color: #00bd52;
}

.you-get .row{
  margin-bottom: -30px
}
.you-get .row>div{
  margin-bottom: 30px;
}

.you-get .number{
  font-size: 60px;
  font-weight: 900;
  color:#00bd52;
  margin-bottom: 15px;
}
.you-get .text{
  font-size:24px;
  font-weight: 600;
}
@media (min-width: 991px){
  .you-get .header-titles{
    margin-bottom:100px;
  }
}
@media (max-width: 768px){
  .you-get .number{
    font-size: 40px;
  }
  .you-get .text{
    font-size: 18px;
  }
}
@media (max-width: 475px){
  .you-get .row>div{
    width:100%;
    display: flex;
    align-items: center;
  }
  .you-get .number{
    margin-bottom: 0;
    margin-right: 20px;
  }
}

/**
 * options
*/
.options{}

.options__desktop .container{
  overflow-x: auto;
}

.options .header-titles,
.you-get .header-titles,
.conditions .header-titles{
  text-align: center;
  margin-bottom: 100px;
}
.options .underline:before{
  /*height: .5em;*/
}
.options .sub-title,
.you-get .sub-title,
.conditions .sub-title{
  font-size: 37px;
  font-weight: 900;
  margin-bottom: 0;
}
@media (max-width: 786px){
  .options .header-titles,
  .you-get .header-titles,
  .conditions .header-titles{
    margin-bottom: 10px;
  }
}

@media (min-width: 992px){
  .options__mobile{
    display: none;
  }
}
@media (max-width: 991px){
  .options__desktop{
    display: none;
  }
}

@media (max-width: 786px){
  .options .header-titles{
    margin-bottom: 40px;
  }
  .options .sub-title,
  .you-get .sub-title,
  .conditions .sub-title{
    font-size: 18px;
  }
}

.options table{
  font-size: 14px;
  line-height: 1.2;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: 943px;
}

.options table tr td:nth-child(odd){
  background-color: #f5f5f5
}
.options table tr td:nth-child(even){
  background-color: #ededed
}

.options thead tr td{
  padding: 15px 10px;
}
.options thead tr:first-child td{
  padding-top:30px;
}
.options thead tr:last-child td{
  padding-bottom: 30px;
}
.options thead td:first-child{
  padding-left: 30px;
}
.options thead ul{
  font-size: 16px;
}

.options tbody td{
  padding: 6px 10px;
}
.options tbody td:first-child{
  padding-left: 30px;
}
.options tbody td:nth-child(n+2){
  text-align: center;
}

.options tfoot td{
  padding: 30px 10px;
  text-align: center;
}

.options table ul{
  margin: 0;
  padding-left: 20px;
}
.options table ul li{
  display: table;
  width:100%;
  list-style-type: none;
  margin-bottom: 6px;
}
.options table ul li:before{
    content: '\2022';
    font-size: 30px;
    line-height: 0;
    width: 20px;
    display: table-cell;
    position: relative;
    top: .2em;
}
.options table ul li:last-child{
  margin-bottom: 0;
}

.options .text{
  font-family: Arial;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 0;
}
.options .amount{
  font-family: Arial;
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}
.options .old-price{
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: line-through;
  color:#939393;
  margin: 10px 0 0;
}

.options .bold{
  font-size: 18px;
  font-weight: 600;
}
.options .btn{
  padding: 12px 40px;
  font-size: 18px;
}

/** */
.options p.green,
.options ul.green li:before{
  color:#00bd52;
}
.options p.orange,
.options ul.orange li:before{
  color:#ff8900;
}
.options__desktop .icon{
  font-size: 8px;
  color:#fff;
  padding: 5px;
  border-radius: 50%;
  display: inline-block;
  width: calc(1em + 2px);
}
.options .icon.default,
.options .btn.default:not(:hover){
  background-color: #292929;
}
.options .icon.green,
.options .btn.green:not(:hover){
  background-color: #00bd52;
}
.options .icon.orange,
.options .btn.orange:not(:hover){
  background-color: #ff8900;
}

@media (max-width: 768px){
  .options .text{
    font-size: 18px;
  }
}

/**
 * options__mobile
*/
.options__mobile{}


.options__mobile .row{
  margin: 0 -7.5px;
  margin-bottom: -15px;
  justify-content: center;
}
.options__mobile .block{
  flex-basis: 290px;
  width: 33.333%;
  max-width: 435px;
  flex-grow: 1;
  padding: 0 7.5px;
  margin-bottom: 15px;
  display: flex;
}
.options__mobile .block .inner{
  padding: 30px 20px;
  background-color: #ededed;
  display: flex;
  flex-direction: column;
}
.options__mobile .btn-container{
  margin-top: 20px;
  text-align: center;
}

.options__mobile .toggle-block{
  flex-grow: 1;
}
.options__mobile .toggle-block .toggle-content{
  display: none;
}
.options__mobile .toggle-block .toggle-btn{
  font-weight: 600;
  text-align: center;
  display: block;
  cursor: pointer;
}

.toggle__open .toggle-btn .icon{
  transform: rotate(180deg);
}



/**
 * feedback
*/
.feedback{}

.feedback .block-header{
  margin-bottom: 80px;
}
.feedback .underline:before{
  /*height: .5em;*/
  background-color: #00bd52;
}

.feedback .sb-slider{
  max-width: calc(770px + 80px);
  margin: auto;
}
.feedback .slick-slide{
  height:auto;
}
.feedback .slick-slide .inner{
  margin: 40px;
  padding: 40px;
  box-shadow: 0px 0px 40px 0px rgba(88, 88, 88, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.feedback .inner p{
  margin-bottom: 0;
}

.feedback .slide-header{
  display: flex;
  align-items: center;
}
.feedback .slide-header img{
  padding-right: 30px;
  margin: unset;
}
.feedback .slide-header .title{
  font-size: 24px;
  font-weight: 900;
}
.feedback .slide-header .sub-title{
  font-size: 18px;
}

.feedback .content{
  margin-top: 10px;
}
.feedback .content p{
  margin-bottom: 10px;
}
.feedback .content p:last-child{
  margin-bottom: 0;
}

.feedback .slide-footer{
  margin-top: 20px;
}
.feedback .slide-footer .author{
  font-size: 18px;
  font-weight: 900;
}
.feedback .slide-footer .author-position{
  font-size: 14px;
}

/** - */
.feedback .slick-dots{
  bottom: 0;
}
.feedback .slick-dots li button:before{
  width:14px;
  height: 14px;
  background-color: #949494;
}

/** - */
@media (max-width: 991px){
  .feedback .block-header{
    margin-bottom: 20px;
  }
}

@media (max-width: 768px){
  .feedback .block-header span{
    display: none;
  }
  .feedback .sb-slider{
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 40px;
  }
  .feedback .slick-slide .inner{
    margin: 15px;
    padding: 15px;
  }
  .feedback .slide-header .sub-title{
    font-size: 14px;
  }
  .feedback .slide-footer .author{
    font-size: 16px;
  }
}


/**
 * form
*/
.form{
  padding-top: 0;
}

.form .header-titles{
  margin-bottom: 100px;
}
.form .underline:before{
  /*height: .4em;*/
}
.form .sub-title{
  font-size: 37px;
  font-weight: 900;
  text-align: center;
}

.form form{
  max-width: 770px;
  margin: auto;
}
.form .block{
  margin-bottom: 15px;
}
.form input{
  padding: 10px 30px;
  font-size: 24px;
  border-color: #dddddd;
  background-color: #fff;
  transition:box-shadow .3s;
}
.form input:focus{
  box-shadow: 0px 0px 40px 0px rgba(88, 88, 88, 0.1);
}


.form .footer{
  text-align: center;
  margin-top: 50px;
}
.form .footer .btn{
  font-size: 30px;
}

input::-webkit-input-placeholder{
  color: #b7b7b7;
  font-weight: 600;
}
input::-moz-placeholder{
  color: #b7b7b7;
  font-weight: 600;
}
input:-ms-input-placeholder{
  color: #b7b7b7;
  font-weight: 600;
}
input:-moz-placeholder{
  color: #b7b7b7;
  font-weight: 600;
}

.form-response{
  text-align: center;
  font-size: 24px;
  color: #00bd52;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 768px){
  .form .header-titles{
    margin-bottom: 40px;
  }
  .form .sub-title{
    font-size: 20px;
  }
  .form input{
    font-size: 18px;
  }
  .form .footer .btn{
    font-size: 24px;
  }
}

/**
 * seo-block
*/
.seo-block{
  font-size: 14px;
  line-height: 1.429;
  padding-top: 0;
}


/**
 * footer
*/
.site-footer{
  color:#fff;
  padding: 50px 0;
  background-color: #292929;
}

.site-footer .row{
  margin-bottom: -30px;
}
.site-footer .row>div{
  margin-bottom: 30px;
}

.site-footer a{
  color:#fff;
}

.site-footer .wtitle{
  margin-bottom: 20px;
  font-weight: 900;
}
.site-footer .link{
  font-size: 14px;
  margin-bottom: 15px;
}
@font-face {
  font-family: 'fontello';
  src: url('/assets/fonts/fontello/fontello.woff2') format('woff2'),
       url('/assets/fonts/fontello/fontello.woff') format('woff'),
       url('/assets/fonts/fontello/fontello.ttf') format('truetype'),
       url('/assets/fonts/fontello/fontello.eot#iefix') format('embedded-opentype'),
       url('/assets/fonts/fontello/fontello.svg#fontello') format('svg');
  font-display:swap;
  font-weight: normal;
  font-style: normal;
}

.icon:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mail:before { content: '\e800'; }
.icon-mobile:before { content: '\e801'; }
.icon-ok:before { content: '\e802'; }
.icon-up-open-mini:before { content: '\e807'; }
.icon-down-dir:before { content: '\f142'; }
.icon-facebook:before { content: '\f30c'; }
/**
 * back-to-top button
*/
.page-top {
    text-align: center;
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    padding: 0;
    border: none;
    background-color: #cca876;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s 0s, visibility 0s .3s;
}
.page-top.visible,
.page-top.fade-out {
    transition: opacity .3s 0s, visibility 0s 0s;
}
.page-top.visible {
    visibility: visible;
    opacity: 1;
}
.page-top.fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.page-top span:before{
    display: inline-block;
    font-weight: 900;
    color: white;
}
.page-top:hover{
    opacity: 1;
}
@media only screen and (min-width: 1024px) {
    .page-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
    }
    .page-top span:before{
        line-height: 60px;
    }
}
/**
 * css for slick slider
*/


/* ===========general============ */

.sb-slider{
    margin-bottom: 60px;
    max-width: 100%;
}
.sb-slider:not(.slick-initialized){
    display: flex;
    justify-content: center;
}
.sb-slider.slick-initialized .slick-slide{
    display: flex;
}
.sb-slider .slick-track{
    display: flex;
}

.sb-slider:not(.slick-initialized):not(.slider__ad),
.sb-slider:not(.slider__ad) .slick-list{
    /*margin-left:25px;*/
    /*margin-right: 25px;*/
}
.sb-slider .slick-slide{
    box-sizing: border-box;
    position: relative;
    padding-right: 8px;
    padding-left: 8px;
    outline: none;
    /*height: auto;*/
    float: none;

    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sb-slider .inner{
    width:100%;
}
.slick-slide a{
    width:100%;
}
.slick-slide img{
    display: block;
    margin: auto;
    padding: 0;
}
/* ============================ */


.slider__lightbox .slick-slide{
    cursor:pointer;
}

/* Arrows */
.slick-prev,
.slick-next{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 0;

    display: block;

    width:40px;
    height: 100%;

    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{
    /*opacity: 1;*/
    background-color: #cc9076;
    color: #fff;
}

.slick-prev:before,
.slick-next:before{
    font-family: 'fontello';
    font-size: 25px;
    line-height: 1;

    /*opacity: .75;*/
    color: #9f9f9f;
    background-color: #f2f3f8;
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: color, background-color;
    transition-duration: .3s;
}

.slick-prev{
    left:0;
}
.slick-prev:before{
    content: '\e801';
}

.slick-next{
    right: 0;
}
.slick-next:before{
    content: '\e806';
}

/* Dots */

.slick-dots{
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    bottom: -40px;
    display: flex;
    justify-content: center;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    background-color: #9f9f9f;
}
.slick-dots li button:before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    /*border: 2px solid #0073ab;*/
    border-radius: 50%;
    transition: background, opacity;
    transition-duration: .3s;
    background-color: #f2f3f8;
}

.slick-dots li.slick-active button:before{
    background-color: #2b2f40;
    /*opacity:.6;*/
}

/* END dots */

@media (min-width: 1250px){
    .slick-prev{
        left:-4vw;
    }
    .slick-next{
        right:-4vw;
    }
}

/* *
 * default Slider styles
 * !!!!don't change!!!!
 * cna be changed only with slider update
*/
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
