html {
    height: 100%;
    min-height: 100%;
}
body {
	position: relative;
	min-height: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
}

/** MISC **/
::selection {
	background: rgba(21, 148, 228, 0.3);
}
::-moz-selection {
	background: rgba(21, 148, 228, 0.3);
}
a {
	color: #368af1;
	outline: none;
}
a:hover,
a:focus {
	color: #1e5ead;
	outline: none;
}
h1, h2, h3, h4 {
    font-weight: 900;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}
.color-firm {
	color: #368af1;
}
.color-grey {
	color: #999;
}
.link-solid {
	color: #368af1;
	text-decoration: none;
    border-bottom: 1px solid #ccc;
}
.link-solid:hover {
	text-decoration: none;
    border-bottom: 1px solid #368af1;
}
.link-dashed {
	color: #368af1;
	text-decoration: none;
    border-bottom: 1px dashed #ccc;
}
.link-dashed:hover {
	text-decoration: none;
    border-bottom: 1px dashed #368af1;
}
.slow-pulse {
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property: all;
	transition-property: all;
}
.form-control {
	height: 2.375rem;
    padding: .5rem 1rem;
    border-radius: 1.2rem;
    font-size: .875rem;
    line-height: 1rem;
    color: #333;
}
.form-control.has-shadow {
	box-shadow: inset .25rem .25rem .3rem 0 rgba(20, 85, 140, .3);
}
.form-control:focus,
.custom-file-input:focus~.custom-file-label {
	border-color: rgba(22, 116, 206, .6) !important;
    box-shadow: 0 0 0.3rem 0.1rem rgba(14, 94, 173, .5);
}
.custom-file-input:focus~.custom-file-label:after {
    border-color: #fdd835;
}
.custom-file-label {
	overflow: hidden;
}
.custom-file-label:after {
    content: "Выбрать";
}
.btn {
	padding: .5rem 1rem;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1rem;
	border-radius: 0;
	border-radius: 2rem;
}
button:focus,
.btn:hover,
.btn:focus {
	outline: none;
	box-shadow: none;
}
.btn svg {
	margin: 0 .75rem 0 0;
	font-size: 1rem;
	line-height: 1rem;
}
.btn:hover svg {
	-webkit-animation: tada .5s;
    animation: tada .5s;
}
.btn-bordered {
	padding: .75rem 1rem;
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff;
}
.btn-bordered:hover,
.btn-bordered:focus {
    background: #fff !important;
    color: #368af1 !important;
    border: 1px solid #fff;
}
.btn-bordered[disabled],
.btn-bordered[disabled]:hover,
.btn-bordered[disabled]:focus {
	color: #368af1 !important;
	background: #fff !important;
	opacity: .8;
}
.btn-firm {
	position: relative;
	padding: .75rem 1rem;
	color: #fff !important;
    text-decoration: none;
	background: #ffb200 !important;
}
.btn-firm:hover,
.btn-firm:focus {
    background: #ff8100 !important;
}
.btn-firm[disabled],
.btn-firm[disabled]:hover,
.btn-firm[disabled]:focus {
	color: #ff8100 !important;
	background: #ff8100 !important;
	opacity: .8;
}
.btn-firm:after {
    display: none;
    content: "";
    width: 1rem;
    height: 1rem;
    background-image: url('../images/ajax-loader-firm-16.gif');
    background-repeat: no-repeat;
    position: absolute;
    right: 48%;
    top: .75rem;
}
.btn-firm[disabled]:after {
	display: block;
}
.btn-firm.success[disabled] {
	color: #fff;
}
.btn-firm.success[disabled]:after {
	display: none;
}
.btn-grey {
	background: #ddd !important;
	padding: .75rem 1rem;
    color: #000 !important;
	border-radius: 1rem;
    text-decoration: none;
}
.btn-grey:hover,
.btn-grey:focus {
    background: #ccc !important;
}
.checkbox,
.radio {
    vertical-align: top;
    width: 17px;
    height: 17px;
    margin: 0 3px 0 0;
}
.checkbox + label,
.radio + label {
    cursor: pointer;
}
.checkbox:not(checked),
.radio:not(checked) {
    position: absolute;
    opacity: 0;
}
.checkbox:not(checked) + label,
.radio:not(checked) + label {
    position: relative;
    padding: 0 0 0 30px;
    font-size: .875rem;
    font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	-webkit-transition-duration:0.3s;
	transition-duration:0.3s;
	-webkit-transition-property: all;
	transition-property: all;
}
.checkbox:hover:not(checked) + label:hover,
.radio:hover:not(checked) + label:hover {
	color: rgba(255, 255, 255, 1);
}
.checkbox:hover:checked + label:hover,
.radio:hover:checked + label:hover {
    color: #fff;
}
.checkbox:not(checked) + label:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(48, 82, 50, 0.2);
    background: #FFF;
}
.radio:not(checked) + label:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(48, 82, 50, 0.2);
    border-radius: 50%;
    background: #FFF;
}
.checkbox:not(checked) + label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: #fff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
    opacity: 1;
    transition: all .2s;
}
.checkbox:not(checked) + label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: #fff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
    opacity: 1;
    transition: all .2s;
}
.radio:not(checked) + label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
    opacity: 1;
    transition: all .2s;
}
.checkbox:hover:not(checked) + label:hover:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: #ffb200;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
    opacity: 1;
    transition: all .2s;
}
.radio:hover:not(checked) + label:hover:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffb200;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
    opacity: 1;
    transition: all .2s;
}
.radio.warning:not(checked) + label:after {
    background: #ffd87c;
}
.checkbox:checked + label:after,
.radio:checked + label:after {
    background: #ff8100;
}
.checkbox:checked + label,
.radio:checked + label {
    color: #fff;
}
.checkbox:hover:checked + label:hover:after,
.radio:hover:checked + label:hover:after {
    background: #ff8100;
}
.checkbox:focus + label:before,
.radio:focus + label:before {
	border-color: rgba(22, 116, 206, .6);
    box-shadow: 0 0 0.3rem 0.1rem rgba(14, 94, 173, .5);
}
.form-check {
    padding-left: 0;
}
.form-check-inline .form-check-input {
    position: relative;
    display: none;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
}
.owl-theme .owl-dots .owl-dot span {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    border-radius: 1rem;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #368af1;
}
.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
    top: calc(50% - 1.5rem);
    left: 2rem;
    height: 3rem;
    font-size: 3rem;
    line-height: 3rem;
}
.owl-carousel .owl-nav button.owl-prev:before {
	content: "\f053";
	position: relative;
	font-family: "FontAwesome";
}
.owl-carousel .owl-nav button.owl-next {
	position: absolute;
    top: calc(50% - 1.5rem);
    right: 2rem;
    height: 3rem;
    font-size: 3rem;
    line-height: 3rem;
}
.owl-carousel .owl-nav button.owl-next:before {
	content: "\f054";
	position: relative;
	font-family: "FontAwesome";
}
.owl-theme .owl-nav [class*=owl-],
.owl-theme .owl-nav [class*=owl-]:before {
    background: transparent;
    color: #ddd;
    text-decoration: none;
	-webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color;
    transition-property: color;
}
.owl-theme .owl-nav [class*=owl-]:hover,
.owl-theme .owl-nav [class*=owl-]:hover:before {
    background: transparent;
    color: #368af1;
    text-decoration: none;
}
.owl-theme .owl-stage,
.owl-theme.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.form-control.loading {
	background-image: url('/images/wave.svg?v=1.2');
    background-repeat: repeat-x;
    background-size: 75%;
	animation-name: wave;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.36, 0.6, 0.59, 0.33);
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
@keyframes wave {
    0% {
        background-position-y: -30%;
        background-position-x: 0%;
    }
    100% {
        background-position-y: 25%;
        background-position-x: 500%;
    }
}

/** HEADER **/
.header {
	height: 100vh;
	margin: 0 0 2rem;
	padding: 1.5rem 0;
	overflow: hidden;
}
.header.main {
	margin: 0;
	padding: 0;
	background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}
.header.main .header-top {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1.5rem 0;
	z-index: 1000;
}
.header.main.fixed .header-top {
	background: rgb(19,190,209);
	background: -moz-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
	background: -webkit-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
	background: linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13bed1', endColorstr='#185abd',GradientType=1 );
	box-shadow: 0 0 1rem 0 rgba(11, 61, 119, .3);
}
.header.main .header-top .header-logo,
.header.main .header-top .header-logo .logo,
.header.main .header-top .header-info {
	height: 2rem;
}
.header.main .header-top .header-logo .logo svg {
	width: auto;
	height: 1.5rem;
    margin: .25rem 0 !important;
}
.header.main .header-top .header-logo .logo svg path {
	fill: #368af1;
	fill-rule: nonzero;
}
.header.main.fixed .header-top .header-logo .logo svg path {
	fill: #fff !important;
}
.header.main .header-top .header-logo .descr,
.header.main .header-top .header-info .header-email,
.header.main .header-top .header-info .header-phone {
    line-height: 2rem;
    color: #fff;
	text-decoration: none;
}
.header.main .header-top .header-logo .descr {
	animation: toBlack 2s 2s linear both;
	color: #fff;
}
.header.main.fixed .header-top .header-logo .descr {
	color: #fff !important;
}
.header.main .header-top .header-info .header-email svg,
.header.main .header-top .header-info .header-phone svg {
    font-size: 0.75rem;
    margin: 0 .5rem 0 0;
    vertical-align: baseline;
	color: rgba(255, 255, 255, 0.6);
	-webkit-transition: 0.2s ease-in;
	-moz-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}
.header.main .header-top .header-info .header-email:hover svg,
.header.main .header-top .header-info .header-phone:hover svg {
	color: rgba(255, 255, 255, 1);
	margin: 0 .5rem .2rem 0;
}
.header .header-language > button {
	float: left;
    padding: 0;
    margin: 0;
	line-height: 2rem;
	color: #fff;
	background: transparent;
    border: none;
	cursor: pointer;
}
.header .header-language > button:after {
    content: none;
}
.header .header-language > button:hover {
	color: rgba(255, 255, 255, .8);
}
.header .header-language > button img {
	float: left;
    width: 1.5rem;
    margin: .25rem .75rem .25rem 0;
}
.header .dropdown-menu {
	min-width: 10rem;
	left: unset;
    right: 0;
	margin: 0;
	padding: 0;
	border: none;
}
.header .dropdown-menu .dropdown-item {
    font-size: 1rem;
    padding: .25rem 1.25rem;
}
.header .dropdown-menu a:first-child {
	border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.header .dropdown-menu a:last-child {
	border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.header .dropdown-menu a.active,
.header .dropdown-menu a.active:hover {
	background: #ffb200;
	color: #333;
}
.header .dropdown-menu a img {
	width: 1.5rem;
	height: 1.5rem;
	margin: 0 .75rem 0 0;
}
.header .dropdown-menu a:hover {
	background: rgba(253, 216, 53, 0.5);
}
@keyframes toBlack {
  0% { color: #fff;}
  100% { color: #333;}
}

/** HEADER-CONTENT **/
.header.main .header-content {
	position: relative;
    height: 100%;
	min-height: 100%;
}
.header.main .header-content .container, 
.header.main .header-content .container .row {
    height: 100%;
	min-height: 100%;
}
.header.main .header-content .img-main img {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}
.header.main .header-content .h1 {
	margin-top: -2rem;
    font-size: 2.75rem;
	color: #fff;
}
.header.main .header-content .h5 {
	color: #fff;
}
.header.main .header-content .btn-firm {
    padding: 1rem 1rem;
	font-size: 1.1rem;
    text-decoration: none;
	text-shadow: 0 0 0.25rem rgba(107, 77, 8, .5);
}
.header.main .header-content .btn-firm[disabled],
.header.main .header-content .btn-firm[disabled]:hover,
.header.main .header-content .btn-firm[disabled]:focus {
	text-shadow: none;
}
.header.main .header-content .btn-firm svg {
    font-size: .875rem;
	text-shadow: 0 0 0.25rem rgba(107, 77, 8, .6);
}
.header.main .header-content .btn-firm:hover svg {
	-webkit-animation: flip .5s;
    animation: flip .5s;
}
.header.main .header-content .scroll-downs {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    left: 0;
    margin: auto;
    width: 1.7rem;
    height: 3rem;
    opacity: 1;
}
.header.main.fixed .header-content .scroll-downs {
    opacity: 0 !important;
}
.header.main .header-content .mousey {
    width: .25rem;
    padding: .25rem .6rem;
    height: 2rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    opacity: 0.3;
    box-sizing: content-box;
}
.header.main .header-content .scroller {
    width: .25rem;
    height: .5rem;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}

/** SECTION **/
section {
    -webkit-transition: background-size 0.2s ease-in-out;
}
section > .container {
    opacity: 0;
}
section h2 {
	text-transform: uppercase;
}

/** ABOUT **/
.about {
	padding: 6rem 0 8rem;
}
.about .h5 {
	font-size: 1.5rem;
    line-height: 2.25rem;
    color: #333;
}

/** ADVANTAGES **/
.advantages {
	padding: 7rem 0 4rem;
    background: #f6f6f6;
}

/** WEB STEPS **/
.web-steps {
	padding: 6rem 0;
}

/** BITRIX **/
.bitrix {
	padding: 6rem 0 8rem;
	background: #14bfef;
	background: -moz-linear-gradient(45deg, #149eef 0%,#14bfef 100%);
	background: -webkit-linear-gradient(45deg, #149eef 0%,#14bfef 100%);
	background: linear-gradient(45deg, #149eef 0%,#14bfef 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#149eef', endColorstr='#14bfef',GradientType=1 );
	color: #fff;
}
.bitrix h2 {
	color: #fff;
}

/** BITRIX STEPS **/
.bitrix-steps {
	padding: 6rem 0;
}

/** ORDER **/
.order {
	padding: 6rem 0 7rem;
	background: #fff;
	background-image: url('/images/bg_order.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 50% 50%;
}
.order .h2 {
	line-height: 2.5rem;
}

/** CASES **/
.cases {
	padding: 7rem 0 6rem;
}

/** BRIEF **/
.brief {
	padding: 6rem 0 25rem;
	background: rgb(19,190,209);
	background: -moz-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
	background: -webkit-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
	background: linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13bed1', endColorstr='#185abd',GradientType=1 );
}
.brief .h1,
.brief .h5 {
	color: #fff;
}
.brief .h5 {
	line-height: 2rem;
}

/** ORDER FORM **/
.order-form .h3 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
}
.order-form .h3 .title-link {
    color: #fff;
	text-decoration: none;
	border-bottom: 1px dashed rgba(255, 255, 255, .5);
	cursor: help;
}
.order-form .h3 .title-link:hover {
	border-bottom: 1px dashed rgba(255, 255, 255, 1);
}
.order-form .title-descr {
	font-size: .75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.order-form .form-control {
    height: auto;
    padding: .75rem .75rem;
    border-radius: 1.25rem;
    border: none;
    font-size: .875rem;
    line-height: 1rem;
    color: #333;
    text-align: center;
}
.order-form .btn-firm {
	font-size: 1rem;
    text-decoration: none;
	text-shadow: 0 0 0.25rem rgb(107 77 8);
}
.order-form .btn-firm[disabled],
.order-form .btn-firm[disabled]:hover,
.order-form .btn-firm[disabled]:focus {
	text-shadow: none;
}
.order-form .btn-firm svg {
    font-size: .875rem;
	text-shadow: 0 0 0.25rem rgba(107, 77, 8, .6);
}

/** FOOTER **/
.footer {
    position: absolute;
    bottom: 0;
	left: 0;
	width: 100%;
	padding: 5rem 0 4rem;
    background: transparent;
    background-image: url('/images/bg_footer.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}
.footer .footer-logo {
	width: 100%;
}
.footer .footer-phone {
	font-size: 2rem;
    color: #666;
	text-decoration: none;
}
.footer .footer-phone:hover {
    color: #333;
}
.footer .footer-phone svg {
    font-size: 1.25rem;
    vertical-align: 0;
}
.footer .policy {
	text-decoration: none;
}


/** MODAL **/
.modal .modal-content {
    border: none;
    border-radius: 2rem;
}
.modal .modal-content .modal-header {
    justify-content: center;
    padding: 1.2rem 1.5rem;
	border-bottom: none;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}
.modal .modal-content .modal-body {
	padding: 0 1.5rem 1.5rem;
    font-size: .875rem;
}
#orderModal.modal .modal-content .modal-body {
	padding: 0 1.5rem 2.5rem;
}
.modal .modal-content .close {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    opacity: 1;
}
.modal .modal-content .close:hover {
	-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.modal .modal-content .close span {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2rem;
    color: #fff;
    text-shadow: none;
    opacity: .75;
}
.modal .modal-content .close:hover span,
.modal .modal-content .close:focus span {
    color: #fff;
    opacity: 1;
}
.modal .modal-content .close:not(:disabled):not(.disabled):focus,
.modal .modal-content .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}
.modal .checkbox:not(checked) + label,
.modal .radio:not(checked) + label {
	color: #333;
}
.modal .checkbox:not(checked) + label,
.modal .radio:not(checked) + label,
.modal .checkbox:hover:not(checked) + label:hover,
.modal .radio:hover:not(checked) + label:hover {
	color: #333;
}
.modal .checkbox:focus + label:before,
.modal .radio:focus + label:before,
.modal .form-control:focus,
.modal .custom-file-input:focus~.custom-file-label {
    border-color: rgba(255, 130, 0, .2) !important;
    box-shadow: 0 0 .3rem .1rem rgba(255, 130, 0, .5) !important;
}
.modal svg.fa-check-circle {
    font-size: 4rem;
    color: #28a1e7;
}
.fade2 {
    transform: scale(.5);
    opacity: 0;
    transition: all .3s linear;
}
.fade2.show {
    opacity: 1;
    transform: scale(1);
}

/* JIVOSITE */
jdiv[class*="leaf_"] > jdiv {
background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2240%22%20viewBox%3D%220%200%2032%2040%22%3E%0A%20%20%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23ffb200%22%20d%3D%22M0%200h9.02L32%2033.196V40H0z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%2328a1e7%22%20d%3D%22M9%200c3.581.05%2023%205.426%2023%2033.08v.03C18.922%2030.751%209%2019.311%209%205.554V0z%22%20fill-opacity%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%2328a1e7%22%20d%3D%22M9%200c3.581.05%2023%205.426%2023%2033.08v.03C18.922%2030.751%209%2019.311%209%205.554V0z%22%20fill-opacity%3D%220.7%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A") !important;
}



@media screen and (max-width: 767px) {
html {
    height: auto;
    min-height: 100%;
}
body {
    height: auto;
    min-height: 100%;
    font-size: .875rem;
}
h1 {
    font-size: 2rem;
}
.h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.4rem;
}
h3 {
    font-size: 1.5rem;
}
.h3 {
    font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}
.h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.2rem;
}
.btn-firm {
    font-size: .875rem;
}
.form-control {
    height: auto;
    padding: .5rem 1rem;
    line-height: 1.5rem;
}
.checkbox:not(checked) + label,
.radio:not(checked) + label {
    text-align: left;
    font-size: .875rem;
    color: #333;
}
.owl-carousel .owl-stage-outer {
    margin: 0 0 2rem;
}
.owl-carousel .owl-nav button.owl-prev {
    top: unset;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-nav button.owl-next {
    top: unset;
    bottom: 0;
    right: 0;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-item img {
    width: 75%;
    margin: 0 auto;
}

.header {
    height: auto;
	background: rgb(19,190,209);
	background-image: -moz-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%) !important;
	background-image: -webkit-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%) !important;
	background-image: linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13bed1', endColorstr='#185abd',GradientType=1 );
}
.header.main .header-top {
	position: fixed;
    margin: 0 0 3rem;
    padding: 1rem 0;
    z-index: 1000;
}
.header.main.fixed .header-top {
	background: #1689dc !important;
}
.header.main .header-top .header-logo {
    height: auto;
}
.header.main .header-top .header-logo .logo,
.header.main .header-top .header-logo .logo svg {
    height: 1.5rem;
}
.header.main .header-top .header-logo .logo svg path {
    fill: #fff;
}
.header.main .header-top .header-logo .descr {
    width: 100%;
	line-height: .75rem;
    text-align: center;
}
.header.main .header-top .header-info {
    height: auto;
    width: 100%;
}
.header.main .header-top .header-info .header-email,
.header.main .header-top .header-info .header-phone {
	display: block;
    margin: 0;
    line-height: 2rem;
    font-size: 1rem;
    text-align: center;
}
.header.main .header-top .header-info .header-email svg,
.header.main .header-top .header-info .header-phone svg {
    vertical-align: 0;
}
.header.main .header-top .header-info .header-email {
    margin-right: 0;
}
.header .dropdown-menu {
	min-width: 10rem;
}

.header .header-language > button img {
    margin: .25rem 0;
}
.header .dropdown-menu a img {
    width: 1rem;
    height: 1rem;
    margin: 0 .5rem 0 0;
}
.header.main .header-content {
    height: auto;
    min-height: 100%;
	padding: 6rem 0 0;
    margin-top: 0;
}
.header.main .header-content .h1 {
    margin-top: 0;
    font-size: 2.1rem;
	-webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.header.main .header-content .h5 {
    font-size: 1.1rem;
	-webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.header.main .header-content .img-main img {
	opacity: 1 !important;
}
.header.main .header-content .btn-firm {
    width: 100% !important;
	-webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.about {
    padding: 4rem 0;
}
.about .h5 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.advantages {
    padding: 4rem 0 2rem;
}
.advantages img {
    width: 75%;
    margin: 0 auto 0 !important;
}

.web-steps {
    padding: 4rem 0 3rem;
}
.web-steps .h3 {
	font-size: 1.25rem;
}
.web-steps .h1 {
	font-size: 1.75rem;
}

.bitrix {
    padding: 4rem 0 4rem;
}
.bitrix .btn {
    width: 100% !important;
}

.bitrix-steps {
    padding: 4rem 0;
}
.bitrix-steps .h3 {
	font-size: 1.25rem;
}
.bitrix-steps .h1 {
	font-size: 1.75rem;
}

.order {
    padding: 2rem 0 4rem;
    background-image: none;
	background: rgb(19,190,209);
    background: -moz-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
    background: -webkit-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
    background: linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13bed1', endColorstr='#185abd',GradientType=1 );
}
.order .h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #fff;
}
.order .checkbox:not(checked) + label,
.order .radio:not(checked) + label {
    color: #fff;
}

.cases {
    padding: 4rem 0 2rem;
}

.brief {
    padding: 4rem 0 18rem;
}
.brief .h1 {
    font-size: 1.75rem;
}
.brief .h5 {
    font-size: 1.2rem;
    line-height: 1.75rem;
}
.brief .order-form .h3,
.brief .order-form .title-descr {
    color: #fff;
}
.brief .checkbox:not(checked) + label,
.brief .radio:not(checked) + label {
    color: #fff;
}

.order-form .h3 {
	color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
}
.order-form .title-descr {
    color: #fff;
}
.order-form .btn-firm {
    width: 100% !important;
}

.footer {
    padding: 3rem 0 4rem;
    background-size: auto 100%;
    background-position: top center;
}
.footer .footer-phone {
    font-size: 1.5rem;
}
.footer .footer-phone svg {
    font-size: .875rem;
}

#orderModal .modal-dialog-centered {
    align-items: start;
}
.modal .modal-content .close {
    top: 1rem;
    right: 1rem;
}
.modal .modal-content .close span {
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.modal .modal-content .close span {
    color: rgba(0, 0, 0, 0.3);
}
#orderModal.modal .modal-content .modal-body {
    padding: 0 1.5rem 1.5rem;
}
}


@media screen and (min-width: 768px) and (max-width: 991px) {
html {
    height: auto;
    min-height: 100%;
}
body {
    height: auto;
    min-height: 100%;
    font-size: .75rem;
}
h1 {
    font-size: 2rem;
}
.h1 {
    font-size: 1.5rem;
}
h2 {
    font-size: 1.4rem;
}
h3 {
    font-size: 1rem;
}
.h3 {
    font-size: 1.25rem;
}
h4 {
	font-size: 1rem;
}
.h4 {
    font-size: 1rem;
}
h5 {
    font-size: .875rem;
}
.h5 {
    font-size: .875rem;
}
.btn {
    font-size: .75rem;
}
.btn-firm {
	padding: .5rem;
    font-size: .75rem;
}
.btn-bordered {
    padding: .5rem .5rem;
}
.form-control {
    height: auto;
    padding: .5rem 1rem;
	font-size: .75rem;
    line-height: 1rem;
}
.checkbox:not(checked) + label,
.radio:not(checked) + label {
    text-align: left;
    font-size: .75rem;
    color: #333;
}
.owl-carousel .owl-stage-outer {
    margin: 0 0 2rem;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0rem;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-item img {
    width: 100%;
    margin: 0 auto;
}

.header {
    height: auto;
	background: rgb(19,190,209);
	background-image: -moz-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%) !important;
	background-image: -webkit-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%) !important;
	background-image: linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13bed1', endColorstr='#185abd',GradientType=1 );
}
.header.main .header-top {
	position: fixed;
    margin: 0 0 3rem;
    padding: 1rem 0;
    z-index: 1000;
}
.header.main.fixed .header-top {
	background: #1689dc !important;
}
.header.main .header-top .header-logo {
    height: auto;
}
.header.main .header-top .header-logo .logo,
.header.main .header-top .header-logo .logo svg {
    height: 1rem;
	margin: 0 !important;
}
.header.main .header-top .header-logo .logo svg path {
    fill: #fff;
}
.header.main .header-top .header-logo .descr {
	width: 100%;
    font-size: .6rem;
    line-height: 1rem;
	animation: none;
}
.header.main .header-top .header-info {
    height: auto;
}
.header.main .header-top .header-info .header-email,
.header.main .header-top .header-info .header-phone {
	display: block;
    margin: 0;
    font-size: .75rem;
	line-height: 1rem;
    text-align: center;
}
.header.main .header-top .header-info .header-email svg,
.header.main .header-top .header-info .header-phone svg {
    vertical-align: 0;
	font-size: 0.5rem;
}
.header.main .header-top .header-info .header-email {
    margin-right: 0;
}
.header .header-language > button {
    padding: 0;
    margin: 0;
    line-height: 1rem;
    font-size: .75rem;
}
.header .dropdown-menu a img {
    width: 1rem;
    height: 1rem;
    margin: 0 .5rem 0 0;
}
.header .dropdown-menu {
    min-width: 7rem;
}
.header .dropdown-menu .dropdown-item {
    font-size: .75rem;
    padding: .25rem .75rem;
}
.header .header-language > button img {
	width: 1rem;
    margin: 0 .25rem 0 0;
}
.header.main .header-content {
    height: auto;
    min-height: 100%;
	padding: 6rem 0 2rem;
    margin-top: 0;
}
.header.main .header-content .h1 {
    margin-top: 0;
	font-size: 1.25rem;
    line-height: 1.5rem;
	-webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.header.main .header-content .h5 {
    font-size: .75rem;
	-webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.header.main .header-content .img-main img {
	opacity: 1 !important;
}
.header.main .header-content .btn-firm {
    width: auto !important;
	padding: .75em 1rem !important;
    font-size: .75rem;
	-webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.header.main .header-content .scroll-downs {
    display: none !important;
}

.about {
    padding: 3rem 0;
}
.about .h5 {
	font-size: 1rem;
    line-height: 1.5rem;
}

.advantages {
    padding: 3rem 0 1rem;
}
.advantages img {
    width: 100%;
    margin: 0 auto 0 !important;
}

.web-steps {
    padding: 3rem 0;
}
.web-steps .h3 {
	font-size: 1rem;
}
.web-steps .h1 {
	font-size: 1.25rem;
}

.bitrix {
    padding: 3rem 0;
}

.bitrix-steps {
    padding: 3rem 0;
}
.bitrix-steps .h3 {
	font-size: 1rem;
}
.bitrix-steps .h1 {
	font-size: 1.25rem;
}

.order {
    padding: 2rem 0;
    background-image: none;
	background: rgb(19,190,209);
    background: -moz-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
    background: -webkit-linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
    background: linear-gradient(45deg, rgb(19,190,2090) 0%,rgb(24 90 189) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13bed1', endColorstr='#185abd',GradientType=1 );
}
.order .h2 {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #fff;
}
.order .checkbox:not(checked) + label,
.order .radio:not(checked) + label {
    color: #fff;
}

.cases {
    padding: 3rem 0 2rem;
}

.brief {
    padding: 2rem 0 16rem;
}
.brief .h1 {
    font-size: 1.5rem;
}
.brief .h5 {
	font-size: 1rem;
    line-height: 1.5rem;
}
.brief .order-form .h3,
.brief .order-form .title-descr {
    color: #fff;
}
.brief .checkbox:not(checked) + label,
.brief .radio:not(checked) + label {
    color: #fff;
}

.order-form .h3 {
	color: #fff;
    font-size: 1rem;
    line-height: 1.25rem;
}
.order-form .title-descr {
    color: #fff;
}
.order-form .form-control {
    padding: .5rem;
    font-size: .75rem;
    line-height: .75rem;
}
.order-form .btn-firm {
    width: 100% !important;
    font-size: .75rem;
}

.footer {
    padding: 2rem 0 3rem;
    background-size: cover !important;
    background-position: top center;
}
.footer .footer-phone {
    font-size: 1.5rem;
}
.footer .footer-phone svg {
    font-size: .875rem;
}
.footer .footer-logo {
    height: auto;
}

.modal .modal-content .close {
    top: -1rem;
    right: -1rem;
}
.modal .modal-content .modal-body {
    padding: 0 1rem 1.75rem;
    font-size: .75rem;
}
.modal .modal-content .close span {
    font-size: 1.5rem;
    line-height: 1.5rem;
}
#orderModal.modal .modal-content .modal-body {
    padding: 0 1.5rem 1.5rem;
}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
html {
    height: auto;
    min-height: 100%;
}
body {
    height: auto;
    min-height: 100%;
    font-size: .875rem;
}
h1 {
    font-size: 2rem;
}
.h1 {
    font-size: 1.75rem;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.25rem;
}
.h3 {
    font-size: 1.25rem;
}
h4 {
	font-size: 1rem;
}
.h4 {
    font-size: 1rem;
}
h5 {
    font-size: .875rem;
}
.h5 {
    font-size: .875rem;
}
.btn {
    font-size: .875rem;
}
.btn-firm {
	padding: .5rem;
    font-size: .875rem;
}
.btn-bordered {
    padding: .5rem .5rem;
}
.form-control {
    height: auto;
    padding: .5rem 1rem;
	font-size: .875rem;
    line-height: 1rem;
}
.form-control.has-shadow {
    box-shadow: none;
}
.checkbox:not(checked) + label,
.radio:not(checked) + label {
    text-align: left;
    font-size: .875rem;
}
.owl-carousel .owl-stage-outer {
    margin: 0 0 2rem;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0rem;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-item img {
    width: 100%;
    margin: 0 auto;
}

.header {
    height: auto;
}
.header.main .header-top {
	position: fixed;
    margin: 0 0 3rem;
    padding: 1.25rem 0;
    z-index: 1000;
}
.header.main.fixed .header-top {
	background: #1689dc !important;
}
.header.main .header-top .header-logo {
    height: auto;
}
.header.main .header-top .header-logo .logo,
.header.main .header-top .header-logo .logo svg {
    height: 1.5rem;
	margin: 0 !important;
}
.header.main .header-top .header-logo .descr {
	width: 100%;
    font-size: .75rem;
    line-height: 1.5rem;
}
.header.main .header-top .header-info {
    height: auto;
}
.header.main .header-top .header-info .header-email,
.header.main .header-top .header-info .header-phone {
	display: block;
    margin: 0;
    font-size: .875rem;
	line-height: 1.5rem;
    text-align: center;
}
.header.main .header-top .header-info .header-email svg,
.header.main .header-top .header-info .header-phone svg {
    vertical-align: 0;
	font-size: 0.75rem;
}
.header.main .header-top .header-info .header-email {
    margin-right: 0;
}
.header .header-language > button {
    padding: 0;
    margin: 0;
    line-height: 1.5rem;
    font-size: .875rem;
}
.header .dropdown-menu {
    min-width: 8rem;
}
.header .dropdown-menu .dropdown-item {
    font-size: .875rem;
    padding: .25rem 1rem;
}
.header .dropdown-menu a img {
    width: 1rem;
    height: 1rem;
    margin: 0 .5rem 0 0;
}
.header .header-language > button img {
	width: 1rem;
    margin: .25rem .25rem .25rem 0;
}
.header.main .header-content {
    height: auto;
    min-height: 100%;
	padding: 6rem 0 4rem;
    margin-top: 0;
}
.header.main .header-content .h1 {
    margin-top: 0;
	font-size: 1.5rem;
    line-height: 2rem;
	-webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.header.main .header-content .h5 {
    font-size: .875rem;
	-webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.header.main .header-content .btn-firm {
    width: auto !important;
	padding: .75em 1rem !important;
    font-size: .875rem;
	-webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.header.main .header-content .scroll-downs {
    display: none !important;
}

.about {
    padding: 4rem 0;
}
.about .h5 {
	font-size: 1.1rem;
    line-height: 1.75rem;
}

.advantages {
    padding: 4rem 0 2rem;
}
.advantages img {
    width: 100%;
    margin: 0 auto 0 !important;
}
.advantages .h5 {
    font-size: 1rem;
}

.web-steps {
    padding: 4rem 0;
}
.web-steps .h3 {
	font-size: 1.25rem;
}
.web-steps .h1 {
	font-size: 1.5rem;
}

.bitrix {
    padding: 4rem 0;
}

.bitrix-steps {
    padding: 3rem 0;
}
.bitrix-steps .h3 {
	font-size: 1rem;
}
.bitrix-steps .h1 {
	font-size: 1.5rem;
}

.order {
    padding: 3rem 0;
}
.order .h2 {
    font-size: 1.1rem;
    line-height: 1.75rem;
}

.cases {
    padding: 3rem 0 2rem;
}

.brief {
    padding: 3rem 0 18rem;
}
.brief .h1 {
    font-size: 1.5rem;
}
.brief .h5 {
	font-size: 1rem;
    line-height: 1.5rem;
}
.brief .order-form .h3,
.brief .order-form .title-descr {
    color: #fff;
}
.brief .checkbox:not(checked) + label,
.brief .radio:not(checked) + label {
    color: #fff;
}

.order-form .h3 {
	color: #fff;
    font-size: 1rem;
    line-height: 1.25rem;
}
.order-form .title-descr {
    color: #fff;
}
.order-form .form-control {
    padding: .5rem;
    font-size: .875rem;
    line-height: .875rem;
}
.order-form .btn-firm {
    font-size: .875rem;
}

.footer {
    padding: 2rem 0 3rem;
    background-size: cover !important;
    background-position: top center;
}
.footer .footer-phone {
    font-size: 1.5rem;
}
.footer .footer-phone svg {
    font-size: .875rem;
}
.footer .footer-logo {
    height: auto;
}

.modal .modal-content .close {
    top: -1rem;
    right: -1rem;
}
.modal-title {
    font-size: 1rem;
}
.modal .modal-content .modal-body {
    padding: 0 1.25rem 1.75rem;
    font-size: .875rem;
}
.modal .modal-content .close span {
    font-size: 1.5rem;
    line-height: 1.5rem;
}
#orderModal.modal .modal-content .modal-body {
    padding: 0 1.75rem 2.5rem;
}
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
html {
    height: auto;
    min-height: 100%;
}
body {
    height: auto;
    min-height: 100%;
    font-size: .875rem;
}
h1 {
    font-size: 2rem;
}
.h1 {
    font-size: 1.75rem;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.25rem;
}
.h3 {
    font-size: 1.25rem;
}
h4 {
	font-size: 1rem;
}
.h4 {
    font-size: 1rem;
}
h5 {
    font-size: .875rem;
}
.h5 {
    font-size: .875rem;
}
.btn {
    font-size: .875rem;
}
.btn-firm {
	padding: .5rem;
    font-size: .875rem;
}
.btn-bordered {
    padding: .5rem .5rem;
}
.form-control {
    height: auto;
    padding: .5rem 1rem;
	font-size: .875rem;
    line-height: 1rem;
}
.form-control.has-shadow {
    box-shadow: none;
}
.checkbox:not(checked) + label,
.radio:not(checked) + label {
    text-align: left;
    font-size: .875rem;
}
.owl-carousel .owl-stage-outer {
    margin: 0 0 2rem;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0rem;
    height: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}
.owl-carousel .owl-item img {
    width: 100%;
    margin: 0 auto;
}

.header {
    height: auto;
}
.header.main .header-top {
	position: fixed;
    margin: 0 0 3rem;
    padding: 1.25rem 0;
    z-index: 1000;
}
.header.main.fixed .header-top {
	background: #1689dc !important;
}
.header.main .header-top .header-logo {
    height: auto;
}
.header.main .header-top .header-logo .logo,
.header.main .header-top .header-logo .logo svg {
    height: 1.5rem;
	margin: 0 !important;
}
.header.main .header-top .header-logo .descr {
	width: 100%;
    font-size: .75rem;
    line-height: 1.5rem;
}
.header.main .header-top .header-info {
    height: auto;
}
.header.main .header-top .header-info .header-email,
.header.main .header-top .header-info .header-phone {
	display: block;
    margin: 0;
    font-size: .875rem;
	line-height: 1.5rem;
    text-align: center;
}
.header.main .header-top .header-info .header-email svg,
.header.main .header-top .header-info .header-phone svg {
    vertical-align: 0;
	font-size: 0.75rem;
}
.header.main .header-top .header-info .header-email {
    margin-right: 0;
}
.header .header-language > button {
    padding: 0;
    margin: 0;
    line-height: 1.5rem;
    font-size: .875rem;
}
.header .dropdown-menu a img {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 .75rem 0 0;
}
.header .dropdown-menu {
    min-width: 9rem;
}
.header .dropdown-menu .dropdown-item {
    font-size: .875rem;
    padding: .25rem 1rem;
}
.header .header-language > button img {
	width: 1rem;
    margin: .25rem .25rem .25rem 0;
}
.header.main .header-content {
    height: auto;
    min-height: 100%;
	padding: 6rem 0 4rem;
    margin-top: 0;
}
.header.main .header-content .h1 {
    margin-top: 0;
	font-size: 1.75rem;
    line-height: 2.25rem;
	-webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.header.main .header-content .h5 {
    font-size: .875rem;
	-webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.header.main .header-content .btn-firm {
    width: auto !important;
	padding: .75em 1rem !important;
    font-size: .875rem;
	-webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.header.main .header-content .scroll-downs {
    display: none !important;
}

.about {
    padding: 4rem 0 5rem;
}
.about .h5 {
    font-size: 1.25rem;
    line-height: 1.85rem;
}

.advantages {
    padding: 4rem 0 2rem;
}
.advantages img {
    width: 100%;
    margin: 0 auto 0 !important;
}
.advantages .h5 {
    font-size: 1rem;
}

.web-steps {
    padding: 4rem 0;
}
.web-steps .h3 {
	font-size: 1.25rem;
}
.web-steps .h1 {
	font-size: 1.5rem;
}

.bitrix {
    padding: 4rem 0 5rem;
}

.bitrix-steps {
    padding: 3rem 0 4rem;
}
.bitrix-steps .h3 {
	font-size: 1.25rem;
}
.bitrix-steps .h1 {
	font-size: 1.5rem;
}

.order {
    padding: 3rem 0;
}
.order .h2 {
	font-size: 1.2rem;
    line-height: 1.85rem;
}

.cases {
    padding: 3rem 0 2rem;
}

.brief {
    padding: 3rem 0 18rem;
}
.brief .h1 {
    font-size: 1.75rem;
}
.brief .h5 {
	font-size: 1rem;
    line-height: 1.5rem;
}
.brief .order-form .h3,
.brief .order-form .title-descr {
    color: #fff;
}
.brief .checkbox:not(checked) + label,
.brief .radio:not(checked) + label {
    color: #fff;
}

.order-form .h3 {
	color: #fff;
	font-size: 1.25rem;
    line-height: 1.5rem;
}
.order-form .title-descr {
    color: #fff;
}
.order-form .form-control {
    padding: .5rem;
    font-size: .875rem;
    line-height: .875rem;
}
.order-form .btn-firm {
    font-size: .875rem;
}

.footer {
    padding: 2rem 0 3rem;
    background-size: cover !important;
    background-position: top center;
}
.footer .footer-phone {
    font-size: 1.5rem;
}
.footer .footer-phone svg {
    font-size: .875rem;
}
.footer .footer-logo {
    height: auto;
}

.modal .modal-content .close {
    top: -1rem;
    right: -1rem;
}
.modal-title {
    font-size: 1rem;
}
.modal .modal-content .modal-body {
    padding: 0 1.25rem 1.75rem;
    font-size: .875rem;
}
.modal .modal-content .close span {
    font-size: 1.5rem;
    line-height: 1.5rem;
}
#orderModal.modal .modal-content .modal-body {
    padding: 0 1.75rem 2.5rem;
}
}

@media screen and (min-width: 1400px) {
}