/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* GLOBAL */
html {
    height: auto;
    position: relative;
    width: 100%;
}

body{
    font-family: 'Rubik', sans-serif;
    height: auto;
    position: relative;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    color: #000000;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

*, *::before, *::after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.tabs .head li a, .button, .text-style{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.full{
    width: 100%;
    height: auto;
    position: relative;
}

.container{
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 1190px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: relative;
    overflow: hidden;
}

.button {
    font-weight: 400;
    font-size: 23px;
    text-align: center;
    line-height: 23px;
    padding: 21px 20px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    min-width: 390px;
}

.button.smaller{
    min-width: 220px;
    font-size: 14px;
    line-height: 14px;
    padding: 13px 20px;
}

.button.orange {
    color: #000000;
    background-color: #faa21b;
}

.button.orange:hover {
    color: #faa21b;
    background-color:  #000000;
}

.button.blue {
    color: #ffffff;
    background-color: #4267b2;
}

.button.blue:hover {
    color: #faa21b;
    background-color:  #000000;
}


.frow{
    position: relative;
    overflow: hidden;
    width: 100%;
}

.frow.smaller{
    padding-left: 55px;
    padding-right: 75px;
}


.frow + .frow{
    margin-top: 29px;
}

input.text-style{
    font-family: 'Rubik', sans-serif;
   font-weight: 500;
   font-size: 14px;
   color: #4c4c4c;
   display: block;
   width: 100%;
   line-height: 1.1;
   padding-top: 9px;
   padding-bottom: 9px;
   padding-left: 0px;
   padding-right: 0px;
   border: 0px solid transparent;
   border-bottom: 1px solid #e5e5e5;
   background: #fff;
   outline: none;
   -webkit-border-radius: 0px;
   border-radius: 0px;
   text-align: left;
}

input.text-style::-webkit-input-placeholder {
   opacity: 1;
   font-family: 'Rubik', sans-serif;
   font-weight: 500;
   font-size: 14px;
   color: #4c4c4c;
   line-height: 1.1;
}

input.text-style:-moz-placeholder { /* Firefox 18- */
   opacity: 1;
   font-family: 'Rubik', sans-serif;
   font-weight: 500;
   font-size: 14px;
   color: #4c4c4c;
   line-height: 1.1;
}

input.text-style::-moz-placeholder {  /* Firefox 19+ */
   opacity: 1;
   font-family: 'Rubik', sans-serif;
   font-weight: 500;
   font-size: 14px;
   color: #4c4c4c;
   line-height: 1.1;
}

input.text-style:-ms-input-placeholder {
   opacity: 1;
   font-family: 'Rubik', sans-serif;
   font-weight: 500;
   font-size: 14px;
   color: #4c4c4c;
   line-height: 1.1;
}  


.frow span.label,
.frow label{
    display: block;
    width: 100%;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #4c4c4c;
    margin-bottom: 3px;
}

input.text-style.error{
    border-bottom: 1px solid #ff0000;
}

.frow.left{
    float: left;
    width: calc( 57%  - 10px );
}

.frow.right{
    float: right;
    width: 43%;
    margin-top: 0;
}


input.text-style:hover, input.text-style:focus{
    border-bottom: 1px solid #faa21b;
}

.frow  + .frow.checkbox-line{
    margin-top: 26px;
}

.frow.checkbox-line{
    padding: 10px 0;
}

.checkbox-line input[type=checkbox]{
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
}

.checkbox-line  .check-label{
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    display: block;
    width: 100%;
    padding-left: 50px;
    position: relative;
    cursor: pointer;
}

.checkbox-line  .check-label::before{
    content: "";
    display: block;
    position: absolute;
    left: 19px;
    top: 3px;
    width: 20px;
    height: 20px;
    z-index: 3;
    background-color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;

}

.checkbox-line  .check-label::after{
    content: "";
    display: block;
    position: absolute;
    left: 24px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #94c121;
    z-index: 4;
    opacity: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.checkbox-line  input[type=checkbox]:checked +  .check-label::after, .checkbox-line  input[type=checkbox]:checked + label + .check-label::after{
    opacity: 1;
}

.checkbox-line  input[type=checkbox].error  +  label + .check-label::before{
    border: 2px solid #ff0000;
}

.checkbox-line  .check-label a{
    color: inherit;
    text-decoration: none;
}

.checkbox-line  .check-label a:hover{
    color: #fff;
}

.checkbox-line  .check-label:hover{
    opacity: 0.7;
}

}

.nice-select .list { max-height: 200px; overflow-y: auto; width: 100%; }

.nice-select{
    width: 100%;
    float: none;
    font-weight: 400;
    font-size: 14px;
    color: #7e797a;
    border: 2px solid #FFF;
    background: #FFF;
    border-radius: 10px;
    text-align: center;
    padding-right: 18px;
    height: 46px;
}

.nice-select:hover, .nice-select:focus {
    border: 2px solid #94c121;
}

.nice-select.error{
     border: 2px solid #ff0000;
}

.nice-select .list{
    font-weight: 400;
    font-size: 14px;
    color: #7e797a;
    border: 2px solid #fff;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}

.nice-select > span{
    width: 100%;
    text-align: center;
    display: block;
    font-size: 22px;
    overflow: hidden;
}

.nice-select::after {
    display: none;
}

.nice-select .option{
    text-align: center;
}


#thanks{
    font-weight: 400;
    text-align: left;
    display: none;
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    color: #c23c83;
}


.form-tit{
    font-size: 24px;
    color: #fdd704;
    font-weight: 700;
    text-align: center;
    padding-bottom: 5px;
}

.top{
    position: relative;
    padding: 20px 0 76px;
    height: auto;
    background: url(/lp/commune/img/img1.jpg) no-repeat center center transparent;
    background-size: cover;
}

.top .logo{
    padding: 0px 0;
    text-align: center;
}

.top .logo img{
    max-width: 60%;
}

.top .tit{
    font-weight: 500;
    color: #fff;
    font-size: 90px;
    line-height: 1.25;
    text-align: center;
    padding: 0 0 0;
    margin-top: -10px;
}

.tabSec{
    position: relative;
    padding: 0px 0 0px;
    height: auto;
    background: url(/lp/commune/img/img2.jpg) no-repeat center center transparent;
    background-size: cover;
}

.tabSec .tabs{
    width: 100%;
    position: relative;
}

.tabs .head{
    background-color: #dad3d3;
    padding: 28px 50px;
    overflow: hidden;
    -webkit-border-bottom-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.tabs .head li{
    display: inline-block;
    float: left;
    width: 25%;
    text-align: CENTER;
}

.tabs .head li a{
    font-size: 30px;
    color: #000000;
    text-decoration: none;
}

.tabs .head li a.active, .tabs .head li a:hover{
    color: #813189;
}

.tabs .tabsBoxes{
    position: relative;
    display: block;
    width: 100%;
    padding: 60px 0 20px;
}

.tabs .tabsBoxes .tb{
    position: relative;
    width: 100%;
    text-align: center;
    line-height: 42px;
    font-size: 35px;
    display:  none;
}

.tabs .tabsBoxes .tb p + p{
    margin-top: 42px;
}

strong{
    font-weight: 700;
}

.viol{
    font-weight: 500;
    color: #813189;
}

.patrons{
    padding: 40px 0;
}

.patrons  .pboxes{
    position: relative;
    overflow: hidden;
}


.patrons  .pboxes .box{
    float: left;
    width: 50%;
    min-height: 100px;
    text-align: center;
}

.patrons .stit{
    font-weight: 400;
    color: #000000;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
}

.patrons  .logos{
    width: 100%;
    text-align: center;
    padding: 40px 0 0;
}

.patrons  .logos img{
    height: 74px;
}

.patrons  .logos  a + a{
    margin-left: 9%;
}

.patrons .but{
    text-align: center;
    padding-top: 37px;
}

section.top .but{
    text-align: center;
    padding-top: 37px;
}

section.top .but a{
    background: #813189;
    color: white;
}

.iconsTxt{
    padding: 41px 0 0;
    background-color: #813189;
}

.iconsTxt .stit{
    font-size: 40px;
    color: #fffeff;
    line-height: 1.2;
    text-align: center;
    font-weight: 400;
}

.iconsTxt .iboxes{
    padding: 88px 0 0;
    overflow: hidden;
}

.iconsTxt .iboxes .box{
    float: left;
    width: calc( ( 100% - 120px ) / 4 );
    margin-left: 40px;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.iconsTxt .iboxes .box:nth-child(4n+1){
    margin-left: 0;
}

.iconsTxt .iboxes .box .icon{
    position: relative;
    padding-bottom: 20px;
}

.butAgend{
    text-align: center;
    padding: 44px 0;
}

.cert{
    background-color: #efefef;
    text-align: center;
    padding: 30px 0;
}

.cert .txt{
    font-size: 30px;
    color: #000000;
    line-height: 1.2;
    padding: 17px 120px;
}

.aboutSb{
    background-color: #ba3982;
    padding: 57px 0 42px;
    color: #fff;
}

.aboutSb .stit{
    font-size: 40px;
    line-height: 1.2;
    color: #fffeff;
    text-align: center;
}

.aboutSb .iboxes{
    position: relative;
    overflow: hidden;
    padding: 49px 0;
}

.aboutSb .iboxes .box{
    float: left;
    width: calc(  ( 100% -  80px ) / 3 );
    min-height: 50px;
    text-align: center;
    font-size: 26px;
    color: #fffeff;
    line-height: 1.2;
}

.aboutSb .iboxes .box + .box{
    margin-left: 40px;
}

.formSec{
    position: relative;
    padding: 100px 0 50px;
    background-color: #efefef;
}

.formBox{
    padding: 37px 57px 30px;
    background: #fff;
    margin: 0 auto;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 2px 3px 15px 0px rgba(0, 0, 0, 0.2); 
    box-shadow: 2px 3px 15px 0px rgba(0, 0, 0, 0.2); 
    max-width: 560px;
}

.formBox .ftit{
    font-weight: 500;
    color: #4c4c4c;
    font-size: 24px;
    line-height: 1.2;
}

.frows{
    position: relative;
    width: 100%;
    padding-top: 36px;
}

.formBox .frow.submit{
    text-align: center;
}

label.error,
ul.errors li
{
    font-size: 12px;
    color: #ff0000;
}

.formSec  .container{
    overflow: initial;
}

.persons{
    padding: 57px 0;
}

.persons .stit{
    font-size: 29px;
    color: #c23c83;
    line-height: 1.2;
    text-align: center;
}

.pboxes2{
    position: relative;
    text-align: center;
    padding-top: 63px;
}

.pboxes2 .box{
    display: inline-block;
    width: 120px;
    height: 150px;
    text-align: center;
    margin-bottom: 10px;
}

.pboxes2 .box  + .box{
    margin-left: 5px;
}

.pboxes2 .box .name{
    font-size: 13px;
    color: #c23c83;
    margin-top: -7px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.pboxes2 .box .func{
    font-size: 12px;
    color: #9d9d9c;
    position: relative;
    z-index: 2;
}

.pboxes2 .box .img{
    position: relative;
    z-index: 1;
}

.pboxes2 .box img{
    max-width: 100%;
}

.footBottom{
    position: relative;
    padding: 5px 0;
}

.footBottom .container{
    border-top: 1px solid #e5e5e5;
    padding-top: 49px;
    padding-bottom: 49px;
    overflow: hidden;
}

.footBottom  .col-left{
    font-size: 22px;
    color: #978e93;
    line-height: 1.2;
    width: 30%;
    float: left;
    padding-top: 20px;
}

.footBottom  .col-right{
    width: 70%;
    float: right;
}

.footBottom  .col-right img{
    float: left;
    margin-right: 50px;
    margin-bottom: 30px;
}



.agendTit{
    font-size: 40px;
    line-height: 60px;
    color: #000000;
}

.agendTit strong{
    font-weight: 500;
}

.agend{
    padding: 49px 0;
}

.agend-list{
    position: relative;
    padding-top: 98px;
}

.agend-list > li{
    background-color: #fff;
    -webkit-border-radius: 26px;
    border-radius: 26px;
    overflow: hidden;
    padding: 7px 0;
}

.agend-list > li.blank{
    background-color: transparent;
    padding: 0 0 0px;
}

.agend-list > li .date{
    float: left;
    width: 25%;
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    padding-left: 30px;
    line-height: 1.4;
}

.agend-list > li .info{
    float: right;
    width: calc( 75% - 30px ) ;
    padding-right: 30px;
    text-align: left;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.4;
}

.agend-list > li + li{
    margin-top: 12px;
}


.agend-list > li.blank .info{
    line-height: 1.4;
}

.tb-3 .agendTit{
    padding-top: 18px;
}

.priceInfoBox{
    margin: 97px 0 83px;
     background-color: #fff;
    -webkit-border-radius: 26px;
    border-radius: 26px;
    overflow: hidden;
    padding: 20px 20px;
}

.priceInfoBox .price1{
    text-align: center;
}

.priceInfoBox .price1 span{
    display: inline-block;
    position: relative;
    font-size: 36px;
    color: #000000;
    font-weight: 400;
    padding: 0px 20px;
}

.priceInfoBox .price1 span::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ff0000;
    z-index: 3;
    left: 0;
    top: 27px;
    transform: rotate(-5deg);
}

.priceInfoBox .price2{
    text-align: center;
    position: relative;
    font-size: 36px;
    color: #000000;
    font-weight: 400;
}

.priceInfoBox .price2 strong{
    font-weight: 700;
    color: #813189;
    font-size: 40px;
}

.tabs .tabsBoxes .tb .priceInfoBox  p + p{
    margin-top: 12px;
}

.priceAdded{
    text-align: center;
    font-size: 30px;
}

.priceList{
    display: block;
    width: 100%;
    position: relative;
    margin-top: 22px;
    margin-bottom: 60px;
}

.priceList li{
    position: relative;
    padding:  38px 24px 42px;
    overflow: hidden;
    background: url(/lp/commune/img/img3b.png) no-repeat right 20% center transparent;
    background-size: 30% auto;
}

.priceList li + li{
    margin-top: -19px;
}

.priceList li::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 20px;
    background: #fff;
    left: 0px;
    top: 0px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
}


.priceList li::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 20px;
    background: #fff;
    left: 0px;
    bottom: 0px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.priceList li .info{
    float: left;
    width: 50%;
    font-size: 24px;
    line-height: 1.5;
    color: #000;
    text-align: left;
    font-weight: 300;
}

.priceList li .info strong{
    font-weight: 500;
}

.priceList li.graph{
    background: url(/lp/commune/img/img3.png) no-repeat right 20% center transparent;
    background-size: 30% auto;
}

.tb-4  .agendTit{
    margin-top: -7px;
}

.agendTit .thin{
    font-weight: 300;
    font-size: 36px;
}

.tb-4  .photo{
    display: block;
    text-align: center;
    margin:  63px 0 34px;
}

.tb-4  .photo img{
    max-width: 100%;
}

.tb-4  .map{
    display: block;
    text-align: center;
    margin: 0px 0 39px;
}

.tb-4  .map img{
    max-width: 100%;
}

.roadBox{
    position: relative;
    padding: 0 90px;
    margin-bottom: 60px; 
}

.roadBox .inn{
     background: #fff;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    padding: 27px 30px 60px;
    text-align: center;
}

.roadBox h3{
    font-size: 30px;
    font-weight: 700;
}

.roadBox .imgBus{
    text-align: center;
    padding: 37px 0 10px;
}

.roadBox .info{
    font-size: 30px;
    font-weight: 400;
    margin-top: -10px;
    
}

.roadBox .info  + .imgBus{
    padding-top: 60px;
}

.roadBox .info strong{
    font-weight: 500;
}

.roadBox .info .thin{
    font-weight: 300;
}

.patrons .logos a{
    pointer-events: none;
}

.patrons .logos a img{
    margin-bottom: 25px;
}

.ud-tit{
    border-bottom: 1px solid #4c4c4c;
    padding-bottom: 10px;
    font-weight: 500;
    color: #4c4c4c;
}

.addMoreUsers{
    text-align: center;
}

/*
body{
    background: url(/lp/commune/img/scr4.jpg) no-repeat center top #1e70b7;
}

body > section{
    opacity: 0.5;
}
*/


.customCheckbox  .checkboxLabel.transparent::before{
    background-color: transparent;
}

.customCheckbox  .error + .checkboxLabel::before {
    border-color: #f40d33;
}

.customCheckbox  .checkboxLabel:hover::before{
    border-color: #cccccc;
}

.customCheckbox  .checkboxLabel::after{
    content: "";
    display: block;
    position: absolute;
    left: 3px;
    top: 0px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #b3b3b3;
}

.customCheckbox  .checkboxLabel.transparent::after{
    top: -1px;
   /* background-color: #FFF;*/
}

.customCheckbox  .checkboxLabel:hover::after{
    background-color: #a6a6a6;
}

.customCheckbox input[type=checkbox]:checked + .checkboxLabel::after, .customCheckbox input[type=checkbox]:checked + label + .checkboxLabel::after{
    background-color: #fff;
    left: 17px;
}

.customCheckbox input[type=checkbox]:checked + .checkboxLabel::before, .customCheckbox input[type=checkbox]:checked + label + .checkboxLabel::before{
    background-color: #ba3982;
    border-color: transparent;
}

.customCheckbox input[type=checkbox]:checked + .checkboxLabel:hover::before, .customCheckbox input[type=checkbox]:checked + label + .checkboxLabel:hover::before{
    background-color: #b0357b;
}

.customCheckbox input[type=checkbox]:checked + .checkboxLabel.transparent::before, .customCheckbox input[type=checkbox]:checked + label + .checkboxLabel.transparent::before{
    background-color: transparent;
    border: solid 1px #e5e5e5;
}

.customCheckbox input[type=checkbox]:checked + .checkboxLabel.transparent:hover::before, .customCheckbox input[type=checkbox]:checked + label + .checkboxLabel.transparent:hover::before{
    opacity: 0.8;
}

.customCheckbox.checked .checkboxLabel::before{
     background-color: #ba3982;
    border-color: transparent;
}

.customCheckbox.checked  .checkboxLabel::after{
    background-color: #fff;
    left: 17px;
}

.customCheckbox .checkboxLabel {
    font-size: 14px;
    color: #4c4c4c;
    font-weight: 400;
    position: relative;
    padding-left: 48px;
    cursor: pointer;
    line-height: 16px;
    text-transform: none;
}
.customCheckbox .checkboxLabel::before {
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    height: 16px;
    border-radius: 8px;
    background-color: #ffffff;
    border: solid 1px #e5e5e5;
    left: 0;
    top: -2px;
}
input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}
.customCheckbox input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
}

.customCheckbox.checked .checkboxLabel::before {

    background-color: #ba3982;
    border-color: transparent;

}

.btn-del {
	color: red;
	float: right;
}


@media screen and (max-width: 1189px) {
   .top{
      padding: 60px 0;
   }
    
   .top .tit{
       font-size: 40px;
   }
   
   .top .logo img {
        max-width: 200px;
    }
    
    .tabs .head li a {
        font-size: 20px;
    }
    
    .tabs .tabsBoxes{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .tabs .tabsBoxes .tb{
        line-height: 28px;
        font-size: 22px;
    }
    
    .tabs .tabsBoxes .tb p + p {
        margin-top: 20px;
    }
    
    .patrons .stit{
        font-size: 22px;
    }
    
    .patrons .logos img {
        height: 54px;
    }
    
    .patrons .but{
        padding-top :20px;
    }
    
    .button{
        min-width: 270px;
        padding: 12px 20px;
        font-size: 18px;
        line-height: 23px;
    }
    
    .iconsTxt .stit {
        font-size: 28px;
    }
    
    .iconsTxt .iboxes{
        padding-top: 50px;
    }
    
    .iconsTxt .iboxes .box{
        font-size: 16px;
    }
    
    .cert .txt{
        padding-left: 0;
        padding-right: 0;
    }
    
    .cert .txt {
        font-size: 22px;
    }
    
    .aboutSb .stit {
        font-size: 30px;
    }
    
    .aboutSb .iboxes{
        padding: 25px 0;
    }
    
    .aboutSb .iboxes .box{
        font-size: 22px;
    }
    
    .agendTit {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .agend{
        padding: 0;
    }
    
    .agend-list{
        padding-top: 40px;
    }
    
    .agend-list > li .date, .agend-list > li .info{
        font-size: 18px; 
    }
    
    .tb-3 .agendTit {
        padding-top: 0px;
    }
    
    .priceInfoBox {
        margin: 40px 0 39px;
    }
    
    .priceInfoBox .price1 span{
        font-size: 24px;
    }
    
    .priceInfoBox .price1 span::before {
        top: 14px;
    }
    
    .priceInfoBox .price2{
        font-size: 24px;
        line-height: 1.5;
    }
    
    .priceInfoBox .price2 strong{
        font-size: 26px;
    }
    
    .priceAdded{
        font-size: 22px;
    }
    
    .priceList li .info{
        font-size: 18px;
    }
    
    .agendTit .thin{
        font-size: 18px;
    }
    
    .tb-4 .photo{
        margin: 40px 0;
    }
    
    .roadBox h3 {
        font-size: 24px;
    }
    
    .roadBox .imgBus{
        padding: 30px 20px;
    }
    
    .roadBox .info {
        font-size: 22px;
    }
    
    .roadBox .info + .imgBus {
        padding-top: 40px;
    }
    
    .roadBox .inn{
        padding-bottom: 33px;
    }
    
    .roadBox{
        margin-bottom: 30px;
    }
    
    .roadBox{
        padding-left: 30px;
        padding-right: 30px;
    }
    
}    

@media screen and (max-width: 899px) {
    .tabs .head li a {
        font-size: 15px;
    }
    
    .patrons .logos a{
        display: block;
    }
    
    .patrons .logos a + a {
        margin-left: 0;
    }
    
    .footBottom .col-right img{
        height: 60px;
    }
    
}

@media screen and (max-width: 599px) {
    .top .logo img {
        max-width: 150px;
    }
    
    .top .tit {
        font-size: 28px;
        padding-top: 25px;
    }
    
    .tabs .head{
        padding: 10px 20px;
    }
    
    .tabs .head li{
        float: none;
        width: 100%;
        padding: 10px 0;
    }
    
    .tabs .tabsBoxes .tb {
        line-height: 24px;
        font-size: 18px;
    }
    
    .patrons .pboxes .box{
        float: none;
        width: 100%;
    }
    
    
    
    .patrons .logos a + a{
        margin-top: 20px;
    }
    
    .patrons .logos{
        padding: 30px 0;
    }
    
    .iconsTxt .stit {
        font-size: 20px;
    }
    
    .iconsTxt .iboxes {
        padding-top: 40px;
    }
    
    .iconsTxt .iboxes .box{
        width: 100%;
        margin-left: 0px;
    }
    
    .cert .txt {
        font-size: 20px;
    }
    
    .aboutSb .stit {
        font-size: 24px;
    }
    
    .aboutSb .iboxes .box{
        float: none;
        width: 100%;
        font-size: 18px;
    }
    
    .aboutSb .iboxes .box + .box {
        margin-left: 0px;
        margin-top: 30px;
    }
    
    .formSec{
        padding: 50px 0;
    }
    
    .formBox{
        padding: 30px;
    }
    
    .persons .stit {
        font-size: 24px;
    }
    
    .persons {
        padding: 40px 0;
    }
    
    .pboxes2{
        padding-top: 30px;
    }
    
    .footBottom .col-left{
        float: none;
        width: 100%;
        padding-top: 0;
    }
    
    .footBottom .col-right {
        width: 100%;
        float: none;
        padding-right: 0;
        padding-top: 20px;
    }
    
    .footBottom .col-right img {
        height: 70px;
    }
    
    
    
    .footBottom .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .agend-list > li .date, .agend-list > li .info{
        width: 100%;
        padding-right: 30px;
        padding-left: 30px;
    }
    
    .agend-list > li .info{
        font-size: 16px;
    }
    
    .priceList li .info{
        float: none;
        width: 100%;
    }
    
    .priceList li.graph, .priceList li{
        background-image: none;
    }
    
    .priceList{
        margin-bottom: 20px;
    }
    
    .roadBox .info {
        font-size: 18px;
    }
    
    .roadBox {
        padding-left: 0px;
        padding-right: 0px;
    }
    
}
