/* полоса прокрутки (скроллбар) */
::-webkit-scrollbar {
    width: 5px; /* ширина для вертикального скролла */
    height: 8px; /* высота для горизонтального скролла */
    background-color: #495678;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 0;
    box-shadow: inset 1px 1px 10px #f3faf7;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #253861;
}

/* Стрелки */

::-webkit-scrollbar-button:vertical:start:decrement {
    background-color: #495678;
    display:none;
}

::-webkit-scrollbar-button:vertical:end:increment {
    background-color: #495678;
    display:none;
}

::-webkit-scrollbar-button:horizontal:start:decrement {
    background-color: #495678;
    display:none;
}

::-webkit-scrollbar-button:horizontal:end:increment {
    background-color: #495678;
    display:none;
}
html {
    position: relative;
    min-height: 100%;
}
body {
    padding-top:110px;
    margin-bottom: 185px;
    font-family: 'Roboto', sans-serif;
	min-width:320px;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 185px;
    background-color: #f5f5f5;
    background:#495678;
}
img {
    max-width:100%;
}
h1 {
    font-size: 72px;
    font-weight: 300;
    padding:0px;
    margin:50px 0;
}
h2 {
    font-size: 48px;
    font-weight: 300;
    padding:0px;
    margin:50px 0;
}
h5 {
    font-size: 36px;
    font-weight: 300;
    padding:0px;
    margin:50px 0;
}
h5.modal-title {
    font-size:24px;
    margin:10px 0;
}
p {
    font-size:18px;
    line-height:1.5;
	text-align:left;
}
.listSection {
    padding-bottom:70px;
}
.container {
    max-width:1024px;
}
.flexBoxes {
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width:100%;
    max-width:180px;
}
.center {
    text-align:center;
}

header {
	background:#f5f5f5;
	-webkit-box-shadow: 0px 7px 9px -3px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px 7px 9px -3px rgba(34, 60, 80, 0.2);
	box-shadow: 0px 7px 9px -3px rgba(34, 60, 80, 0.2);
	padding:5px 0;
}
.videoBlock {
    max-width:100%;
    margin:100px 0 50px;
}
.flexSectionSoc {
    display:flex;
    justify-content:center;
    margin:50px 0;
}
.flexSectionSoc a {
    display:block;
    width:50px;
    height:0px;
    overflow:hidden;
    padding-top:50px;
    margin:0px 10px;
    transition:.8s;
}
.flexSectionSoc a:hover {
    transition: 0.2s ease transform;
    transform: scale(0.8) translate(-5%, -5%);
}
.flexSectionSoc a.icon-wt {
    background:url('../img/icon-wt.svg') 0 0 no-repeat;
    background-size:100%;
}
.flexSectionSoc a.icon-tg {
    background:url('../img/icon-tg.svg') 0 0 no-repeat;
    background-size:100%;
}
.flexSectionSoc a.icon-vk {
    background:url('../img/icon-vk.svg') 0 0 no-repeat;
    background-size:100%;
}
.flexSectionSoc a.icon-vb {
    background:url('../img/icon-vb.svg') 0 0 no-repeat;
    background-size:100%;
}
.topPhone a {
    color:#000;
    font-size:18px;
    text-decoration:none;
    font-weight:bold;
}
.t-small {
    font-size:10px;
    width:100%;
    max-width:40%;
    padding-top:30px;
    color:#fff;
}
.t-small a {
	text-decoration:underline !important;
	color:#fff;
}
.t-small a:hover {
	cursor:pointer;
	text-decoration:none !important;
}
.buttonLink {
    background:#495678;
    border:solid 1px;
    transition:.8s;
}
.buttonLink:hover, .linkBtn:hover, .sectionForm button:hover {
    color:#495678;
    background:transparent !important;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #495678;
    border-color: #495678;
    box-shadow: none;
}
.linkBtn, .sectionForm button  {
    padding:10px 0;
    text-align:center;
    display:block;
    width:100%;
    max-width:220px;
    background:#495678;
    border:solid 1px;
    color:#fff;
    font-size:18px;
    line-height:1;
    margin:20px auto;
    text-decoration:none;
    transition:.8s;
    position: relative;
}
.owl-carousel {
    position:relative;
    overflow: hidden;
}
.owl-prev {
    position:absolute;
    left:-100%;
    top:40%;
    transition:.8s;
}
.owl-next {
    position:absolute;
    right:-100%;
    top:40%;
    transition:.8s;
}
.owl-carousel:hover .owl-prev {
    left:0px;
}
.owl-carousel:hover .owl-next {
    right:0px;
}
.owl-next span, .owl-prev span {
    font-size: 80px;
    padding: 0px 40px 10px;
    
    line-height: 1;
    color:#fff;
    background: rgb(73 86 120 / 40%);
}
.owl-next:hover span, .owl-prev:hover span {
    background: #495678;
}
.sectionForm {
    display:block;
    width:100%;
    max-width:600px;
    margin:30px auto 50px;
}
.modal-body .sectionForm {
    margin-bottom:0px;
}
.sectionForm input[type="text"] {
    width:100%;
    margin-bottom:20px;
    padding:10px 12px;
    font-size:18px;
    line-height:1.2;
    background:#fff;
    border:1px solid #999;
}
.sectionForm input[type="text"].error {
	border:1px solid red;
}
.modal .btn-close {
    position:absolute;
    right:12px;
    top:12px;
}
.modal-body {
    padding-top:25px;
}
.centerBlock {
	position:relative;
	overflow:hidden;
	padding:100px 0;
}
.centerBlock img {
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
}
.centerBlock:before {
	content:'';
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background:rgb(0 0 0 / 40%);
	z-index: 2;
}
.centerBlock h1 {
	position: relative;
    z-index: 10;
    color: #000;
    background: rgb(255 255 255 / 70%);
    padding: 30px 15px;
}
input[name="surname"] {
	display:none;
}
#vk_comments {
	margin:50px 0;
}
.bgTitle  {
	background:url('../img/center-fon.jpg') top center no-repeat;
	background-size:cover;
}
.bgTitle img {
	display:none;
}
.clock {
	font-size: 48px;
	display: flex;
    justify-content: center;
	    font-weight: 300;
}
#promokod {
	font-weight:bold;
}
.clock div {
	margin:0px 5px;
}
.owl-dots, .owl-dots.disabled {
	display:none !important;
}
.videoBlock a {
	display:none !important;
}

.advantBlock {
	display:flex;
	justify-content:space-between;
	padding:30px 0;
}
.elemAdvant {
	width:100%;
	max-width:24%;
	
}
.elemAdvant img {
	display:block;
	margin:0px auto 10px;
}
.elemAdvant b {
	font-size:16px;
	line-height:1.5;
	display:block;
	text-align:center;
}
.elemAdvant span {
	font-size:13px;
	line-height:1.5;
	display:block;
	text-align:center;
}
.privacy_policy{
    text-align: center;
    font-size: 13px;
}