:root {

  --accent-color-hover: #3da3f9; 
  --accent-color: #68baff;

  --messenger-color: #3b5998;
  --messenger-color-hover: #4c72c2;
  --telegram-color: #0088cc;
  --telegram-color-hover: #00a7fa;
  --whatsapp-color: #075E54;
  --whatsapp-color-hover: #128C7E;
  --viber-color: #4f43af;
  --viber-color-hover: #7f6bf4;

}

html{
    overflow-x: hidden;
    position: relative;
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    margin: auto;
    font-family: 'Rubik', serif;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    max-width: 2000px;
    background: #fafafa;
    min-height: 100vh;
}

body.fixed{
    position: fixed;
}

*{
    box-sizing: border-box;
    outline: none !important;
}

form{
  font-size: 16px;
  overflow: hidden;
  position: relative;
  padding-bottom: 5px;
}

input{
    border: none;
  border-bottom: 1px solid #e3ebff;
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0;
  color: #526288;
  height: 40px;
  transition: 0.2s;
    width: 100%;
    max-width: 350px;
    margin-bottom: 10px;
    font-size: 16px;
}

input:active,
input:focus{
    border-color: var(--accent-color);
}

input.error{
    background: #ffe2dc !important;
}

.form-msg{
  margin-bottom: 10px;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    background: #ffe2dc;
    text-align: center;
    display: none;
}
.form-msg.success{
  background: #84e9ba;
}
.form-msg.active{
    display: inherit;
}

.btn,
input[type='submit']{
    background: -webkit-linear-gradient(309deg, #6fb6ff, #4d71d6 100%);
    background: -o-linear-gradient(309deg, #6fb6ff, #4d71d6 100%);
    background: linear-gradient(39deg, #6fb6ff, #4d71d6 100%);
    color: #fff;
    text-align: center;
    padding: 15px;
    width: 100%;
    height: 55px;
    max-width: 350px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Rubik';
    margin-top: 20px;
    line-height: 1.5;
    display: block;
}

.btn, .btn *,
input[type='submit'] *{
    cursor: pointer !important;
}

.btn:hover,
input[type='submit']:hover{
    color: #fff;
    transition: 0.2s;
    background: -webkit-linear-gradient(309deg, #ff4d09, #ff9920 100%);
    background: -o-linear-gradient(309deg, #ff4d09, #ff9920 100%);
    background: linear-gradient(39deg, #ff4d09, #ff9920 100%);
}

.btn.transparent{
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color); 
    line-height: 1.2;
}

.btn.transparent:hover{
    color: #fff;
    background: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
}

.disabled{
    pointer-events: none !important;
    cursor: default !important;
    opacity: 0.95 !important;
}

section{
    padding-bottom: 30px;
    padding-top: 30px;
    position: relative;
}

img{
    width: 100%;
    max-width: 960px;
}

h1, h2, h3, h4{
    font-family: 'Rubik', serif;
    font-weight: normal;
}

p, span, h1, h2, h3, h4, li, div{
    cursor: default !important;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

a, a *{
    cursor: pointer !important;
    text-decoration: none;
}

a{
    text-decoration: none;
    color: var(--accent-color);
    transition: 0.2s;
}

a:hover{
    color: var(--accent-color-hover);
}

ol {
    padding: 0;
    counter-reset: list;
}

ol li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    list-style: none;
}

ol li:before {
    counter-increment: list;
    content: counter(list) ". ";
    position: absolute;
    top: 0px;
    left: 15px;
}

.only-big-desktop,
.only-desktop{
    display: none;
}
.only-mobile{

}

.container{
    margin: auto;
    max-width: 1150px;
    padding: 0 15px;
    position: relative;
}

.video-box{
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-box iframe, 
.video-box object, 
.video-box embed {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1);
    top: 0px;
}

.map iframe{
    width: 100%;
    height: 100%;
}

span.underline{
    font-weight: 500;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

a.underline{
    color: #000;
    font-weight: 500;
    border-bottom: 2px dashed var(--accent-color);
    padding-bottom: 2px;
    transition: 0.2s;
}

a.underline:hover{
    color: var(--accent-color);
}

.telegram-btn{
    color: #fff;
    border: 1px solid transparent;
    border-color: var(--telegram-color);
    background: var(--telegram-color);
    transition: 0.2s;
}

.telegram-btn.transparent{
    color: var(--telegram-color);
    border-color: var(--telegram-color);
    background: transparent;
    transition: 0.2s;
}

.telegram-btn.default{
    color: #222;
    border-color: #222;
    background: transparent;
    transition: 0.2s;
}

.telegram-btn:hover,
.telegram-btn.transparent:hover,
.telegram-btn.default:hover{
    color: #fff;
    border-color: var(--telegram-color);
    background: var(--telegram-color);
    transition: 0.2s;   
}

.messenger-btn{
    color: #fff;
    border: 1px solid transparent;
    border-color: var(--messenger-color);
    background: var(--messenger-color);
    transition: 0.2s;
}

.messenger-btn.transparent{
    color: var(--messenger-color);
    border-color: var(--messenger-color);
    background: transparent;
    transition: 0.2s;
}

.messenger-btn.default{
    color: #222;
    border-color: #222;
    background: transparent;
    transition: 0.2s;
}

.messenger-btn:hover,
.messenger-btn.transparent:hover,
.messenger-btn.default:hover{
    color: #fff;
    border-color: var(--messenger-color);
    background: var(--messenger-color);
    transition: 0.2s;   
}

.whatsapp-btn{
    color: #fff;
    border: 1px solid transparent;
    border-color: var(--whatsapp-color);
    background: var(--whatsapp-color);
    transition: 0.2s;
}

.whatsapp-btn.transparent{
    color: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    background: transparent;
    transition: 0.2s;
}

.whatsapp-btn.default{
    color: #222;
    border-color: #222;
    background: transparent;
    transition: 0.2s;
}

.whatsapp-btn:hover,
.whatsapp-btn.transparent:hover,
.whatsapp-btn.default:hover{
    color: #fff;
    border-color: var(--whatsapp-color);
    background: var(--whatsapp-color);
    transition: 0.2s;   
}

.viber-btn{
    color: #fff;
    border: 1px solid transparent;
    border-color: var(--viber-color);
    background: var(--viber-color);
    transition: 0.2s;
}

.viber-btn.transparent{
    color: var(--viber-color);
    border-color: var(--viber-color);
    background: transparent;
    transition: 0.2s;
}

.viber-btn.default{
    color: #222;
    border-color: #222;
    background: transparent;
    transition: 0.2s;
}

.viber-btn:hover,
.viber-btn.transparent:hover,
.viber-btn.default:hover{
    color: #fff;
    border-color: var(--viber-color);
    background: var(--viber-color);
    transition: 0.2s;   
}

.top-header{
    background: #ffffff;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.top-header .container{
    display: flex;
    justify-content: space-between;
}

.top-header .logo{
    background: url(../img/logo.png) no-repeat center;
    background-size: contain;
    height: 50px;
    max-width: 170px;
    display: grid;
    align-items: center;
}

.top-header .info{
    z-index: 1005;
    right: 0;
    top: 0;
    max-width: 500px;
    padding: 9px 0;
    align-items: center;
    display: flex;
    grid-gap: 15px; 
}

.top-header .info .phone a{
    padding: 5px 15px;
    color: #000;
}

.banner{

}

.banner .img{
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.banner .img img{
    width: 100%;
    max-width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
}

.banner h1{
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 50px;
}

.banner .container > p{
    text-align: center;
    font-size: 22px;
    margin-top: 5px;
}

.product-box{
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f1f1f1;
    grid-gap: 1px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.08);
}

.product-item{
    background: #fff;
    padding: 0 15px 15px;
}

.product-item h3{
    text-align: center;
}

.product-item li{
    margin: auto;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 50px;
    max-width: 120px;
}

.bazis{
    width: 100%;
    max-width: 800px;
    display: table;
    margin: auto;
    color: #b3b2b2;
    padding: 10px 0;
}

.btn-set{
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
}

.btn-set .btn{
    margin: auto;
}

.box{
    max-width: 800px;
    margin: auto;
}

.box h3{
    font-size: 22px;
    max-width: 369px;
}

.bullet, .price{
    padding-top: 0;
}

.bullet-box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;    
    grid-row-gap: 20px;
}

.bullet-item{
    text-align: left;
}

.bullet-item .num{
    font-size: 33px;
    font-weight: bold;
}

.bullet-item p{
    margin-top: 0;
    font-size: 15px;
}


.price .container{
    max-width: 830px;
    margin: auto;
}

.price h2{
    margin-bottom: 20px;
}

.price-table{
    display: flex;
    overflow-x: auto;
}

.price-table .service{
    
}

.price-table .service li{
    padding: 10px 30px;
    list-style: none;
    border-bottom: 1px solid #f5f5f5;
    background-color: white;
}

.price-table .service li:nth-of-type(1){
    font-weight: bold;
}

.price-table .product-col{
    background-color: white;
    width: 100%;
    transition: 0.2s;
    min-width: 180px;
}

.price-table .product-col:hover{
    background: #ececec;
    transition: 0.2s;
}

.price-table .product-col li{
    padding: 10px 30px;
    list-style: none;
    border-bottom: 1px solid #f5f5f5;
}

.price-table .product-col li:nth-of-type(1){
    font-weight: bold;
}

.offer .form{
    padding: 40px;
    background: #383838;
    border-radius: 20px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.08);
}

.offer{
    max-width: 830px;
    margin: auto;    
    padding-top: 0;
}

.offer .form{
    display: flex;
    align-items: center;
}

.offer .form input{
    height: 55px;
    background: white;
    margin-right: 15px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.offer .form .submit{
    height: 55px;
    margin: 0;
    margin-bottom: 10px;
}

.gallery .container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
}

.contacts{
    margin-top: 0px;
    margin-bottom: 40px;
}
.contacts .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-gap: 40px; 
}
.contacts .container .contact-info h3 {
    margin-top: 0;
    line-height: 1.2;
    text-align: left;
    font-weight: 600;
}
.contacts .container .contact-info .time {
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: left;
}
.callback > p{
    font-size: 16px;
    text-align: left;
}
.callback > a{
    color: #000;
}








@media screen and (max-width: 480px) {

    .banner {
        padding-top: 70px;
    }

    .banner .img{
        height: auto;
    }

    .banner .img img {
        position: relative;
    }

    .top-header .logo {
        display: none;
    }

    .top-header .info {
        padding: 4px 0;
    }

    .top-header .info .phone{
        width: 160px;
    }

    .top-header .info .map{
        width: 280px;
        padding: 0 10px;
    }

    .contacts h2 {
        padding: 0 15px;
    }

    .top-header .info .phone a {
        padding-left: 0;
    }

    .banner h1 {
        text-align: center;
        font-size: 26px;
    }

    .banner .container > p {
        text-align: center;
        font-size: 16px;
        margin-top: 5px;
    }

    .product-box {
        grid-template-columns: 1fr 1fr;
    }

    .contacts .container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contacts .container .map{
        height: 300px;
    }

    .btn-set {
        grid-gap: 10px;
    }

    .bullet, .price{
        padding-top: 0;
    }

    .bullet-box {
        grid-template-columns: 1fr;
        grid-gap: 0px;
    }

    .bullet-item {
        text-align: left;
    }

    .bullet-item .num {
        font-size: 22px;
    }
    .offer .form {
        padding: 20px;
        display: grid;
    }
    .gallery .container {
        grid-template-columns: 1fr;
    }


}




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

    .only-mobile{
        display: none;
    }
    .only-desktop{
        display: initial;
    }

}