body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
}

body > *, .mainContainer {
    position: relative;
}

.mainContainer.darkGray {
    background-color: #333;
    color: white;
}

.mainContainer.darkGray h1,
.mainContainer.darkGray h2,
.mainContainer.darkGray h3,
.mainContainer.darkGray h4,
.mainContainer.darkGray h5 {
    color: white;
}

body > div:nth-of-type(2n) {
    background-color: #f3f3f3;
}

body.modalActive {
    overflow: hidden;
}

body .modalWindow {
    display: none;
}

body.modalActive .modalWindow.active {
    display: block;
}

h1, h2, h3, h4, h5 {
    font-family: 'Russo One', sans-serif;
    letter-spacing: .05em;
    margin: 0;
}

h1, h2 {
    text-align: center;
    margin: 0 0 1em 0;
}

h1 {
    font-size: 4em;
}

h2 {
    font-size: 3em;
    color: #696969;
}

h3 {
    font-size: 2.5em;
}


h2.white {
    color: #fff;
}

h1 i, h2 i, h3 i {
    font-size: 0.7em;
    font-weight: 400;
}

h4 {
    font-size: 2em;
    font-weight: 400;
    margin: 0 0 0.5em 0;
}

h5 {
    font-size: 1.4em;
    margin-bottom: 0.4em;
}

h1.black, h2.black, h3.black {
    color: black;
}

.middleForm {
    margin-top: 3em;
}

hr {
    margin: 2em 0;
}

@media screen and (max-width: 450px) {
    body {
        font-size: 11px;
    }
}

p {
    margin: 0 0 1em 0;
}

ul.featureList {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-weight: 700;
    font-size: 1.5em;
}

ul.featureList li {
    margin: 16px 0;
    padding: 5px;
    padding-left: 1.5em;
    position: relative;

}

ul.featureList li:before {
    content: '✔';
    position: absolute;
    left: 5px;
    color: #f00;
}

ul.featureList label {
    color: #f00;
    margin: 0 10px 0 0;
    display: inline-block;
}

ul.featureList span {
    display: inline-block;
    font-size: 0.75em;
    line-height: 1.8em;
}

ul.featureList.small {
    font-size: 1em;
}

ul.featureList.small li {
    margin: 0 0 2px 0;
    padding: 0;
    padding-left: 1.5em;
}

.intro .centralColumn > h1 {
    margin: 3em 0 1em 0;
}

.intro ul.featureList li {
    background-color: rgba(37, 51, 51, 0.6);
    border-left: rgb(73, 102, 102) 2px solid;
    border-top: rgb(73, 102, 102) 2px solid;
    border-right: rgb(92, 128, 128) 2px solid;
    border-bottom: rgb(92, 128, 128) 2px solid;
}

ul {
    padding: 0 0 0 25px;
    list-style: none;
}

ul li {
    margin: .2em 0;
}

ul li:before {

}

ul.dashList {
    list-style: none;
}

ul.dashList li:before {
    content: "-";
    margin-right: 0.28em;
}

.bigText {
    font-size: 1.6em;
    text-align: left;
}

.bigText .label {
    font-size: 1.8em;
    display: block;
}

.mainContainer form {
    background-color: #fff;
    padding: 30px;
    color: #000;
    max-width: 260px;
}

body.landing input, body.landing textarea {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    margin: 0 0 1.5em 0;
    padding: 0 0.8em;
}

body.landing textarea {
    padding: .8em;
    min-height: 5em;
}

body.landing input:focus, body.landing textarea:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    outline: thin dotted \9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(82, 168, 236, .6);
}

label.required:after {
    content: '*';
    color: #FF3503;
}

button {
    color: #FFFFFF;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    background: #0abc90;
    border: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0.6em 0 0 0;
    font-size: 1.2em;
    cursor: pointer;
}

button:disabled {
    background-color: #FF3503;
    cursor: not-allowed;
}

button.big {
    font-size: 1.6em;
    padding: 13px 28px;
    width: auto;
}

button.big.wide {
    width: 80%;
}

button:active {
    -moz-transform: scale(0.97);
    -webkit-transform: scale(0.97);
    -o-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
}

span.red {
    color: #ff0000;
}

.block {
    background: #888 no-repeat center center;
    background-size: cover;
}

.block.noise {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#accce5+0,ffffff+50,accce5+100 */
    background: #accce5; /* Old browsers */
    background: -moz-linear-gradient(left, #accce5 0%, #ffffff 50%, #accce5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #accce5 0%, #ffffff 50%, #accce5 100%); /* Chrome10-25,Safari5.1-6 */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAJ90lEQVRoQ23ajU1UXRCH8b0VECxBS8ASsAQsAUvAErAELAFLwBKwBCwBS8A8k/e3mZh3E3N37zlnznzPfwaP5+fni48fP54uLy9PNzc38+zf7e3tqff39/en79+/n56enk5//vw5ffv27XR3d3fq0/sfP36cHh8fT79//553nb26upq1r1+/Dp2fP3/OWrTa9+XLl6HXvtaiEe3WP3/+PHteXl5mX+e7s0/3fPr0ae6P1+447u7uLvoRgf5FsN8d6hmx3rf5/fv3c+nDw8MQbK39Md331jrXekz1iQFMta/LoxMjMdm7aPf+3bt3c5dzv379Oiun/dGK9nEcs7+7j9vb2wtaj+GkbiHiMRPBmGtPGurZnuvr67PAz8/PQ7QnBcRUZxPKeQxlWcrBfOfSMGX1pHHKQq9n5xPouLm5uYixXqa1tINYB7u0CzN5jBCyvWkjQdrTv9b3+y1odDGQUK11L5fMSn2i314WT9PRjb71zsR8VhkBZuU/l4hAm5k+jXdxRFvr43s+TqCY6T2/TzCmJmAWciY6XLZzMZXGKQ2thGVFwnD37j4uLy8vIpzmBGTaifGIxNjWcMRiorU+EW1vGmyt9zHfExOdF9jRa727UlLP1qKR5fsXg9w6S+wEwDq5eHSP6+vrscD/+XcX7ThI0MzGHfqdsLKX4Ow9k2d+McCaMSW75YYUQBm5bEJ0fwLJgL3jGTzheHp6umC+Lu3Qhw8fxpy9Z0Ix0sVdELMx2l4BJT3GIDdMw51J8GjLOjESjdbbnyAyWPvKSLJRT3GZMqIlo40LkaZn0kY0pjoUUwgJ8oTiWrTb3t5xv+0WaLUnpmM2Ad0TMykihVCmWBIfCSxDtScX6nO8vb1NIYuRtJ4vd4iGIq4mdKGcH1NdonApRJiMTi7Rv87FsKyTcO3v/Ovr6zAvbuxLEZ2NDqV2zno8TxrNAlKkTMT3uiChOtSFaS4Gab31vr+9vY3mEc8lEkzeFxvRErxlqO02KnSalam25dBmNcJMJY7h/Cpt5HsySM8IpwnxAXbQeGtp0MVytGIY3b53h+yTqySkuiF9ggnduy0dTzGcouMjAc+VOBdKG5lDWot4l9E+QcAKvti6lNoa31aUurRPzLS240msqMhqC+t1v7OShsq86R4vLy8DJbq0S6Qw7iLNJWSXAVzSoCwFq0iV3AP0SHvtiYaCxCIpQVBmwe3nUjV6Kblz3OwIjcZEDEZk+6/sJMPw+SwgY6R58CPCkCoXAD+kQlADWpWCpV70oq+GtCc3BfTiM7dKiQMlVErSAWZpA/MyCY0IdIWlQIZr+DIMA24kRMqSmcQLRYlFVuwuWQhITAgZqu+TRmNu+6TC00VppsNd3AUxvDF9mij4O5+ZFaBoSINScpZKOfw7xYHe7efzsiHf1zewPAHie6BEhzUW+WqaaXGbMU2kmS6PINAH/4gB6JT2oyu4E0RGAT80PAkXw+3dDMtg4gTqjccBjKVRaE/67HfEpE51IqF2NwYCxDz83oUbr/RdoyNWNFDRlxqjwcUoSr0RF+3vfgW0fSMA/7JI+2lL96Vqig++qP0EDdQS0HlrU0BLywAfpXRH3gAZi5Xtvp2hsNYnBhxk3oh0SOCCuLsvlvd7ghr6VHka5ocsFS4pmEVBdJA7pZRp2t+nDNTdubHa1NoZSuisbGAywdpT9czvdEubcZhJs9FvVoA6uydlyf87+/3bobVPxhJP0eyT4Ak0SeH+/n4KGdyhwQCfBWlWiKFiQ/9AYIHLrdISpmOy7zJO2gQL4CGwIvfrnn5vYNnv7u4DcqtXU8hENlPu0g91RhBOVwtosDV9Qd8jnka50sY+vTMuMW7JlzUrAtcegTvQ+TjOMaJpOl5fX8cCMbAtIRfzNShU0QG/4aMsZy+Nd8YYRdrbXVXCyoA6P+4htvJzvQE4ziLT1F9dXZ3hdMREuMAzI4oZBSviuiuBHqNaUGmQFjVEPeGh9naHapymTSRAbvEEnca4QI/WNPWPj4/TkWn9NOsskGX6lBU0KQhp2lVa8GI3Lzos6RQUlqqLKcowdlGpxUvvgcHtUlPIskCmTGsRle9JT2OmBiCtjBLzaXpP2Uw34JhotF/bqDXVzXXeJMLAgIsqpoYH6s0ZJZeFmA4ecqgLIoiRNN8//an2ESzARJrpDDCmb4jenguxGHgMDcNE2kwWV+AobwK7qYTUBQftuYwhL6KsxWI0wu8hSdkLlIhxcQVaE8AY0+BsfPZ0Ogdv58yddg/e3eNCzKUYweEJlFX67btiAg7EoDQMtMFUKcbFYHlPNQH8NixQg2QelZhieypwYus4nU4XuiEBGyPbJxUN1jCEbY9UmZ8bs5vhgBLStEYEklWcwIXWCSHzdAcIksX6rvBNQ5MAMRZRhUrr2MVtNglg2tbTrLwsBbYulSZETU5rAjA6XFErusc4+o6Y1gQliL8rcPUNMKcn1s5JfzGhaVAtYaAOS6f+8MC9MM+X5fgN1/csCRqNYbPO0qo/YChmqnPCq+rROQdxhHRaTNYiRGr8ro+NYety9R6NaPxVbZ1U93BH1hXAXEeBSgkJE13KpERpeoL44eFhChktAXEaFC6wOy29c2falzayjDjwm2/bhxkTakMC8EGK3ZV8TwlTln7DAGHQKFCmwJgPQZRdiCl9apcwtXqwocKeLfV+98rcsifsH1DrY0rOUu6Wkdpv8DxQIjRq3K1QyDL5Or+O2Xwa4AOTswDApp3c6VE7yQpwlLZSMoBeWydYZ7gm7VOW1DtYSPbJDZRyQSIDSGu5iXzcU39gEJaAtKXn1fj0mwJiWL2QpbK8ZkktYAFjfe+NcaYnjuh2I038DmjwYHdVcnLEQQ6YSMFRFGEpYNF0bmOftGsSranpqZ5IvVkjQaI5LtQXcx3m79CuARoRtcCojyv1HtCLCf1D+/QMCWXMoj/Y+3Ir0wn9N7Qajd1zi4NpaNoUg22wSdbJ1xSWf3GPoZQCBeNzFQ2ONtBfaaJHMJZNidzDNDyldFYmMkMCS4qfyULM4QCNYYS2YfjeK0KyRszxV3VCAVJtd/WlLHfpCWS76O+GRtMfj7q/zs5YZZtzNzQqsqA0k4c4acQ8acPf3E8Bk9/BdZYDPUAVwiigrbMKHERxIP2MFvfsnvnaCMfL6RHufSYEzORxM1TTDdVYq5mb+qNgSpKezXsUJj1Dezpb/VA4d5rWSM1/NUgDMSQWaAIi3eNE/62gC2k8pjsDVvBZWEnvYCyjEhs1ylhodi+B1QS0/CcQtWfqgEzAnzO1lGZqp0uDJjEFQe6JRGf02MCbuODXPcWcaXjMmcJFv9jR7cVwcRYfLBmsmCzUJYqOcbnso0ZIcQZOGpkIt0eB0+j4S4uGvPcxJ4406TKczBKdGOz9/rudpqZ7o23g9hdEwqxm4T61NwAAAABJRU5ErkJggg==") center center repeat,
    linear-gradient(to right, #accce5 0%, #ffffff 50%, #accce5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#accce5', endColorstr='#accce5', GradientType=1); /* IE6-9 */
}

.block .title {
    font-size: 2.5em;
    padding: 1.5em 0;
    font-weight: 700;
    text-align: left;
}

.halfWidth {
    width: 46%;
    padding: 0 2%;
    min-width: 280px;
    float: left;
}

.halfWidth.leftAlign {
    text-align: left;

}

.halfWidth.rightAlign {
    text-align: right;
}

.flexColumn {
    width: calc(100% - 320px - 0.5em);
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 280px;
    display: inline-block;
    vertical-align: top;
}

.singleColumn {
    width: 320px;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}

.singleColumn img {
    width: 320px;
}

@media screen and (max-width: 720px) {
    .flexColumn {
        display: block;
        width: 100%;
    }

    .singleColumn {
        display: block;
        margin: auto;
    }
}

.multiColumn {
}

.multiColumn:after {
    content: "";
    display: block;
    clear: both;
}

.centralColumn {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4em 20px;
    position: relative;
    z-index: 100;
}

.bold {
    font-weight: 400;
    font-size: 1.4em;
    line-height: 1.4em;
}

header {
    padding: 20px 0;
    background-color: #fff;
    min-height: 50px;
}

header .centralColumn {
    padding: 0 20px;
}

header .info {
    display: inline-block;
}

header .contacts {
    float: right;
    text-align: right;
    position: relative;
    z-index: 100;
}

.logo {
    float: left;
    margin: 0 20px 0 0;
    width: 120px;
    height: 50px;
}

header:after {
    content: "";
    display: block;
    clear: both;
}

.tile_back {
    color: #fff;
    background: #111 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAABBUlEQVQY0wXB21bCMBBA0ZNJG+gFFVYryxf8/w/zWSms0Fxm4t7ufPn4qaVQ1ei8p5RMHwKHcCDGyDAMiBdkOB6IrxfiQFUZx5FalMfzgTVDvOBwyDiO3L5v7CmRc+K+bTgHasrlfEacAxpSSqX3HbfvGyJC6ANmytf1i5QSZg2zhvze/0g509RYlgVrxrquPJ8bKWdUK2pKZ1XZ7n+IeGKMXD+vbI87KRW8F3IpOKBTVVQN1cK6ruxpJ/QBB8S44zsPgLTWAMdlWSil0lrjeByYphkRgQbNQMR55mnEAzVnnDWaKvN04vz+hu88Ke/I22nGVHm9EgANiDGiNTPNJ0I40Heef5/TloXftPuHAAAAAElFTkSuQmCC');
}

.tile_back * {
    color: #fff;
}

.svgIcon {

}

.svgIcon.x80 {
    height: 80px;
    width: 80px;
}

.svgIcon.centerIcon {
    display: block;
    margin: 0 auto;
}

.intro, .outtro {
    background: #000 center bottom;
    background-size: cover;
    color: #fff;
}

.outtro h2 {
    margin: 3em 0 0 0;
    color: #fff;
}

.outtro span {
    color: #f00;
}

.outtro form {
    margin: 2em auto;
    text-align: left;
}

.biggerText {
    font-size: 1.2em;
}

ul.rare li {
    margin: 1em 0;
}

.title {
    font-size: 1.7em;
    font-weight: 300;
    text-align: center;
}

.title.bleft {
    font-weight: 700;
    text-align: left;
    margin-bottom: 1em;
}

.title.white {
    color: #fff;
}

.intro button {
    margin: 1em 0 0 0;
}

.main_features .threeColumn {
    text-align: center;
}

.main_features .threeColumn .title {
    color: #FF0505;
    margin: 1em 0 0 0;
}

.main_features .threeColumn svg {
    display: inline-block;
    width: 128px;
}

.about {
    background-color: #fff;
}

.about .halfWidth {
    font-size: 1.2em;
}

.halfWidth img {
    width: 100%;
}

.blackLayer {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.calc {
    color: #fff;
    background-size: cover;
}

.law h3 {
    text-align: center;
}

.law .halfWidth {
    font-size: 16px;
}

.typesOfAdvertising {
    background-color: #fff;
}

.fourColumns {
    display: inline-block;
    width: calc(25% - 20px);
    margin: 0 0 0 -.28em;
    vertical-align: top;
    padding: 10px;
    min-width: 110px;
}

.fourColumns:first-of-type {
    margin-left: 0;
}

.threeColumn {
    display: inline-block;
    width: 33%;
    margin: 0 0 0 -.28em;
    vertical-align: top;
}

.threeColumn:first-of-type {
    margin-left: 0;
}

.threeQuarterColumn {
    width: 73%;
    padding: 0 10px;
}

.line {
    text-align: center;
    position: relative;
    margin-top: 3em;
}

.line:first-of-type {
    margin-top: 1em;
}

.line:after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
    height: 1px;
}

.product {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin: 0.5em 5px 4em 5px;
    padding: 0;
}

.product, .product img, .product button {
    width: 320px;
}

.product.fullWidth, .product.fullWidth img, .product.fullWidth button {
    width: 100%;
}

.price {
    font-weight: 700;

    width: 100%;
    font-size: 2em;
    margin: 0.5em 0;
    color: #f00;
}

.product .price {
    text-align: center;
}

.product .description .price {
    font-size: 12px;
    text-align: left;
}

.product .price .old-price {
    color: #f00;
    text-decoration: line-through;
}

.productName, .productDescription {
    padding: 0 10px;
}

.productName {
    font-size: 1.3em;
    font-weight: 700;
    margin: .4em 0;
    min-height: 2.6em;
    text-align: center;
}

.product img ~ .productName {
    text-align: left;
}

.productDescription {
    font-weight: 400;
    overflow: hidden;
}

.bottomBlock {
    position: absolute;
    bottom: 0;
}

.hidden {
    display: none;
}

.benefits {
    fill: #ffb617;
    background-color: #fff;
}

.benefits .centerIcon {
    width: 80px;
    height: 80px;
}

.benefits .centralColumn {
    text-align: center;
}

.benefits .centralColumn .fourColumns {
    text-align: left;
}

.smallTitle {
    color: rgb(105, 105, 105);
    font-family: "russo one", sans-serif;
    font-size: 1.2em;
    padding: .5em 0;
}

.action {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7198b5+0,fdb348+100 */
    background: #7198b5;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #7198b5 0%, #fdb348 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #7198b5 0%, #fdb348 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #7198b5 0%, #fdb348 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7198b5', endColorstr='#fdb348', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.BrightHeader {
    font-size: 3em;
    color: #fff;
}

.action .centralColumn {
    background: no-repeat right bottom;
}

.action .title {
    text-align: left;
    padding: 10px 0 20px 0;
}

.calc {
    background: no-repeat fixed;
}

.euro2018 {
    background: no-repeat;
    background-size: cover;
    color: #fff;
}

.euro2018 .textContainer {
    margin: 2em 0 0 0;
}

.euro2018 form {
    float: right;
    margin: 0 2em 10px 4em;
}

.euro2018 p {
    margin: 0 0 2em 0;
}

.whyUs {
    background-color: #fff;
}

.whyUs h3 {
    text-align: center;
}

.ourAdvantage {
    margin: 2em 0 0 0;
    min-height: 100px;
}

.ourAdvantage img {
    width: 96px;
    float: left;
}

.ourAdvantage .title {
    text-align: left;
}

.ourAdvantage .description {
    margin-left: 116px;
}

.portfolio {
    text-align: center;
}

.portfolio img {
    max-height: 200px;
    overflow: hidden;
}

img.lazy {
}

.review {
    margin: 0 0 2em 0;
    color: #000;
    min-height: 160px;
}

.review img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    float: left;
    margin: 0 10px 0 0;
}

.review .details {
    margin: 0 0 0 138px;
}

.review .name {
    color: #000;
    font-size: 1.4em;
    font-weight: 700;
}

.review .position {
    font-size: 1.25em;
    font-weight: 700;
}

.review .reviewText {
    display: block;
    padding: 10px;
    margin: 10px 0 10px;
    line-height: 1.3em;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

body > div:nth-of-type(2n+1) .reviewText {
    background-color: #f3f3f3;
}

.review.newReviewForm {
    display: none;
}

.mainContainer.map {
    height: 60vh;
    min-height: 480px;
    position: relative;
}

.mainContainer .backgroundMap {
    height: 100%;
    min-height: 480px;
}

.mainContainer .floatBlock {
    position: absolute;
    top: 50%;
    margin: -256px 0 0 0;
    height: 400px;
    left: 10%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 900px) {
    .mainContainer.map {
        height: auto;
    }

    .mainContainer .floatBlock {
        position: relative;
        top: auto;
        margin: 0;
        left: auto;
        height: auto;
    }

    .mainContainer .floatBlock .singleColumn {
        margin: 0 auto;
        display: block;
    }
}

.mainContainer .floatBlock h4 {
    text-align: center;
}

footer {
    background: #1f1f1f;
    color: white;
}

footer .title {
    text-align: left;
    color: #fff;
    margin: 0 0 1em 0;
    font-size: 1.5em;
    font-weight: 700;
}

footer a {
    color: white;
    text-decoration: none;
}

footer .social a {
    color: #3288e6;
}

footer .social a:hover {
    color: #225b99;
}

i.OK {
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: #0abc90;
}

i.OK:before {
    content: '\2714';
    font-size: 40px;
    position: absolute;
    color: #fff;
    top: 2px;
    left: 7px;
}

.modalWindow {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
}

.modalWindow .modalInner {
    position: relative;
    z-index: 2000;
    background-color: #fff;
    width: calc(100% - 60px);
    max-width: 400px;
    padding: 20px;
    margin: 10px auto;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
}

.modalWindow .title {
    font-size: 18px;
    margin: 0 0 1em 0;
}

.modalWindow .title, .feedbackForm .closeButton {
    font-size: 18px;
}

.modalWindow .closeButton {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #121212;
    cursor: pointer;
    font-weight: 700;
}

.modalWindow .closeButton:hover {
    color: #000;
    text-shadow: 1px 1px #ff0000;
}

.modalWindow form {
    max-width: 100%;
    padding: 0;
}

.modalWindow form textarea {
    resize: none;
    height: 120px;
}

.modalWindow .message {
    margin: 1em 0;
    font-size: 1.4em;
    text-align: center;
}

.modalWindow button.close {
    margin: 20px 0 0 0;
}

@media (max-width: 930px) {
    header .info {
        display: none;
    }
}

@media (max-width: 747px) {
    h1 {
        font-size: 3em;
    }

    h3 {
        font-size: 2em;
    }

    .halfWidth {
        margin: 30px auto;
        float: none;
        width: auto;
    }
}

@media (max-width: 680px) {
    .product {
        margin: 1em auto;
    }
}

@media (max-width: 660px) {

    footer.contacts .threeColumn a {
        float: left;
    }

    footer.contacts .threeColumn {
        display: block;
        width: 280px;
        margin: 1em auto;
    }

    footer.contacts .threeColumn i {
        margin: 0 1em 0 0;
        width: 32px;
        height: 32px;
        padding: 15px;
    }

    footer.contacts .threeColumn .title {
        font-size: 0.8em;
        text-align: left;
        height: 32px;
        margin: 1em 0;
        padding: 15px 0;
    }

    footer.contacts .threeColumn.address .title {
        padding-top: 0;
        padding-bottom: 30px;
    }
}

@media (max-width: 510px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.6em;
    }

    header .logo {
        position: absolute;
        opacity: 0.5;
        z-index: 1;
        top: 0;
    }

    .action .centralColumn {
        background: none !important;
    }

    .euro2018 form {
        float: none;
        margin: 1em auto;
    }

    .threeColumn {
        display: block;
        width: 280px;
        margin: 1em auto;
    }

    .threeColumn:first-of-type {
        margin-left: auto;
    }

    .review .details {
        margin: 0;
    }

    .threeQuarterColumn {
        width: auto;
    }

    .title {
        font-size: 1.4em;
    }

    .product .name {
        min-height: initial;
    }

    .product .description {
        min-height: initial;
    }
}

.op-animate {
    -webkit-animation-name: op-animate;
    -webkit-animation-duration: 2000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: op-animate;
    -moz-animation-duration: 2000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: op-animate;
    -ms-animation-duration: 2000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: op-animate;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes op-animate {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes op-animate {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes op-animate {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

@keyframes op-animate {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}