:root {

  --accent-color-hover: #ff6e00; 
  --accent-color: #ff8b00;

  --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;

}

.slider{
  z-index: 0 !important;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
}

.banner-slider, .slide{
  height: 500px
}


@media screen and (max-width: 480px) {
    .slider{
      display: none;
    }
}

.seo{
  display: none;
}

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: auto;
  max-width: 390px;
  margin-bottom: 10px;
	padding: 10px;
	font-size: 15px;
	border-radius: 5px;
	background: #ffe2dc;
	text-align: center;
  color: #000;
	display: none;
}
.form-msg.ok{
  background: #84e9ba;
}
.form-msg.active{
	display: inherit;
}

.btn,
input[type='submit']{
	background: -webkit-linear-gradient(309deg, #ff9920, #ff4d09 100%);
	background: -o-linear-gradient(309deg, #ff9920, #ff4d09 100%);
	background: linear-gradient(39deg, #ff9920, #ff4d09 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: 1050px;
	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;

}

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;	
}

.title{
	font-weight: 600;
}

.adress-item, .adress-item *{
  cursor: pointer !important;
}

.banner .container .text .adress-item span .local{
    display: block;
    font-size: 14px;
    color: #e4e4e4;
    font-weight: 100;
    padding-left: 30px;
    margin-top: -4px;
}


.navigation{
    margin: auto;
    max-width: 1050px;
    padding: 0 15px;
    color: #adadad;
}

.navigation a{
  color: #adadad;
  font-size: 15px;
  transition: 0.2s;
}

.navigation a:hover{
  color: #000;
}

.navigation a.active{
  color: #000;
}





@media screen and (min-width: 767px) {
    .banner.toppadding{
        margin-top: 55px;
    }
}














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

	
}




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

	body{
		font-size: 16px;
	}

}




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

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

	.youtube .play {
	    background-size: 75px 75px;
	}
	
	
}



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

	body{
		font-size: 18px;
	}

	.only-big-desktop{
		display: initial;
	}

	.title{
		font-weight: 600;
		font-size: 50px;
		line-height: 1.25;
	}

}



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


	
}








/*============= Modal =============*/

.modal{
    display: none;
}

.modal.active,
.modal-speaker.active{
    display: initial !important;
}

.modal-bg{
    position: absolute;
    background: rgba(0,0,0,0.75);
    top:0px;
    width: 100%;
    z-index: 9998;
    height: 100%;
}

.modal-container{
    position: fixed;
    padding-top: 0;
    top: 10px;
    width: 100vw;
    overflow: auto;
    z-index: 9998;
    height: 100vh;
}

.modal-body{
    max-width: 700px;
    margin: auto;
    position: relative;
    padding: 40px 55px 20px;
    width: 100%;
    display: table;
    background: #fff;
    top: 0px;
    margin-bottom: 10px;
}

.modal-body .modal-close{
    position: absolute;
    right: 0;
    cursor: pointer !important;
    top: 0;
    width: 25px;
    margin: 10px;
    height: 25px;
    background: url(../img/icon/close.svg) center center;
    background-size: cover;
}

.modal-body h2 {
    margin-top: 0;
    font-size: 21px;
    text-align: left;
  }

.modal-body h3{
    padding: 25px;
    text-align: center;
    max-width: 500px;
    margin: auto;
}

.modal-body .form{
  padding: 20px;
  background: #f5f5f5;
}

.modal-body .form-first{
  display: table;
  margin: auto;
}

.modal-body .btn-set{
    display: grid;
    grid-gap: 15px;
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
    grid-template-columns: 1fr 1fr;
}

.modal-body .btn-set a *{
    cursor: pointer !important;
}

.modal-body .btn-set a{
    border: none !important;
}

.modal-body .btn-set .fb-messenger{
    width: 100%;
    background: #7e409e;
    transition: 0.2s;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: center;
}

.modal-body .btn-set .fb-messenger:hover{
    background: #a447d4;
}

.modal-body .btn-set .fb-telegram{
    justify-content: center;
    width: 100%;
    background: #15aaf5;
    transition: 0.2s;
    display: flex;
    align-items: center;
}

.modal-body .btn-set .fb-telegram:hover{
    background: #0088CC;
}

.modal-body .btn-set .fb-telegram .img{
    background: url('../img/icon/telegram-black.svg') no-repeat center center;
    background-size: contain;
    width: 25px;
    height: 22px;
    filter: invert(1);
    margin-right: 10px
}

.modal-body .btn-set .fb-messenger .img{
    background: url('../img/icon/viber-black.svg') no-repeat center center;
    background-size: contain;
    width: 25px;
    height: 22px;
    filter: invert(1);
    margin-right: 10px;
}

.modal-body p{
    text-align: left;
    width: 100%;
    display: table;
    margin-top: 20px;
    margin-bottom: 20px;
}

.modal-body input{
  border-bottom:1px solid #505050;
}
.modal-body input:active, .modal-body input:focus {
    border-color: var(--accent-color);
}

.tool{
    padding: 15px;
    margin: auto;
    display: table;
    font-size: 14px;
    max-width: 400px;
    text-align: center;
    border: 2px solid #ffd22c;
}



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

  .modal-body {
      padding: 20px 15px 20px;
      height: 100vh;
  }
  .modal-container {
      padding-top: 0px;
      top: 0;
  }
  .modal-body .btn-set{
    grid-template-columns: 1fr;
  }

  .modal-body .form{
    padding: 0px;
    background: transparent;
  }

  .navigation{
    display: none;
  }

}






/*============= Top header =============*/

.top-menu{
  background: #343434;
  padding: 0;
}

.top-header.fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
}

.top-menu .container{
  display: flex;
  justify-content: flex-end;
}

.top-menu.only-desktop{
  display: none;
}

.top-menu a{
  color: #fff;
  transition: 0.2s;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 10px 27px;
}

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

.top-header{
    background: #ffffff;
    padding: 0;
    z-index: 4;
}

.top-header .container {
    display: grid;
    grid-template-columns: 130px 1fr 60px;
    align-items: center;
}

.top-header .container > a{
  color: #000;
  overflow: hidden;
}

.top-header .logo{
    background: url(../img/logo.png) no-repeat center;
    background-size: contain;
    max-height: calc(100% - 10px);
    margin: 5px 0;
    margin-left: -20px;
    height: 35px;
    max-width: 120px;
    display: grid;
    align-items: center;
    width: 100%;
}

.top-header .menu{
    position: absolute;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.75);
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    display: none;
    opacity: 0;
}

@keyframes menubg {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.top-header .menu.active{
    display: inherit;
    opacity: 1;
    animation: 0.2s menubg;
}

.top-header .menu .nav{
    background: #fff;
    transform: translateX(110%);
    height: 100vh;
    overflow-y: auto;
    width: 80%;
    transition: 0.2s;
}

.top-header .menu .nav .btn{
    display: table;
    max-width: 220px;
    height: 20px;
    color: #fff !important;
    font-weight: 500;
    padding: 10px;
    margin: 0;
    margin-top: 5px;
}

.top-header .menu .nav .icon-set{
    display: flex;
    width: 70px;
    align-items: center;
    margin-right: 10px;
}

.top-header .menu .nav .icon-set a{
  padding: 0;
}

.top-header .menu .nav .icon-set img{
    height: 20px;
    width: 35px;
}

.top-header .menu.active .nav{
    transform: translateX(26%);
    animation: 0.5s menuslide;
}

@keyframes menuslide {
    0%{
        transform: translateX(110%);
    }
    100%{
        transform: translateX(26%);
    }
}

.top-header .menu .nav a{
    padding: 15px 30px;
    color: #000;
    font-size: 19px;
    display: block;
}

.top-header .menu .nav a.telegram-btn{
  color: #fff !important;
  transition: 0.2s;
}

.top-header .menu .nav a.telegram-btn:hover{
  background: var(--telegram-color-hover);
  border-color: var(--telegram-color-hover)
}

.top-header a.active{
	color: var(--accent-color) !important;
}

.top-header .menu .nav a:hover{

}

.top-header .menu .nav .lang{

}

.top-header .info{
    z-index: 1005;
    right: 0;
    top: 0;
    padding: 9px 0;
}

.top-header .info .menu-icon{
    width: 70px;
    height: 50px;
    padding: 10px;
    cursor: pointer;
}

.top-header .info .menu-icon .img{
    background: url(../img/icon/burger.svg) no-repeat center;
    background-size: contain;
    height: 100%;
}

.top-header .info .menu-icon.active{
    transition-delay: 0.5s;
}

.top-header .info .menu-icon.active .img{
    background: url(../img/icon/close.svg) no-repeat center;
}









.bullet{

}

.bullet > h3{
    text-align: center;
    font-size: 30px;
}

.bullet .container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
}

.bullet-item{
    padding: 0 15px;
}

.bullet-item h4{
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}

.bullet-item span{
    font-size: 16px;
}

.bullet .credit{
    max-width: 1020px;
    margin: auto;
    width: 100%;
    padding: 20px 30px 30px;
    background: #fff;
    display: grid;
    align-items: center;
    margin-top: 40px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    color: #000;
    grid-template-columns: 350px 1fr;
}

.bullet .credit .img img{
    max-height: 200px;
    width: auto;
}

.bullet .credit .text{
    
}

.bullet .credit .text h3{
    font-weight: bold;
}

.bullet .credit .text p{
    
}





.consult{

}

.consult h3{
    text-align: center;
    font-size: 30px;
}

.consult .container{
    display: grid;
    grid-template-columns: 1fr 430px;
}

.consult .container .text{
    padding: 0 40px;
}  

.consult .container .text p{
    margin: 0;
    margin-bottom: 10px;
}  

.consult .container .text span{
    font-size: 16px;
    margin: 5px 0;
    display: table;
}  

.consult .container .text .btn-set{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}  

.consult .container .text .btn-set .btn{
    margin-top: 10px;
}  

#modal-remont h2 .price{
  display: inline-block;
}









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


	
}



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

  .top-header .container{
    padding: 0 10px;
  }

  .modal-body h2 {
      margin-top: 30px;
  }
  .modal-body .btn-set a {
    margin-top: 0;
  }
  .top-header .menu .nav{
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .top-header .menu .nav a{
    font-size: 17px;
  }

  .top-header .menu .nav .btn{
    margin-bottom: 40px;
  }

  .top-header{
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .top-header .info .menu-icon{
      width: auto;
      height: 30px;
      padding: 0 10px;
  }

  .top-header .info .menu-icon .img{
      background: url(../img/icon/burger.svg) no-repeat right center;
      background-size: contain;
  }

  .top-header .info .menu-icon.active .img{
      background: url(../img/icon/close.svg) no-repeat right center;
      background-size: contain;
  }

  .top-header .info .header-lang{
      display: none;
  }

}



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



}




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

  .top-header .info .menu-icon{
    float: right;
  }

}




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

  .top-menu.only-desktop{
    display: block;
  }

	.top-header .container {
        display: grid;
        grid-template-columns: 150px 1fr 0px;
        max-width: 1050px;
    }

    .top-header .menu {
        position: relative;
        background: transparent;
        height: auto;
        display: inherit;
        opacity: 1;
    }

    .top-header .menu .nav {
        display: flex;
        justify-content: flex-end;
        transform: none;
        height: auto;
        width: 100%;
    }

    .top-header .menu .nav .main-menu{
      display: flex;
      justify-content: flex-end;
    }

    .top-header .menu .nav a {
        padding: 15px 18px;
        color: #000000;
        font-weight: 400;
        font-size: 16px;
        display: inherit;
        transition: 0.2s;
    }


    .top-header .menu .nav a.telegram-btn{
      padding: 5px 10px;
      margin: 10px;
      border-radius: 5px;
      margin-right: 0;
    }

    .top-header .menu .nav a:hover{
        color: var(--accent-color);
    }

    .top-header .info .menu-icon{
        display: none;
    }

}



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

  .top-menu a:last-of-type{
    padding-right: 0;
  }
	
}






@media screen and (max-width: 480px) {
  .top-header .menu .nav .icon-set{
    display: none;
  }
  .top-header .menu .nav .btn{
    margin-left: 20px;
    margin-top: 15px;
  }
  .top-header .menu .nav .main-menu{
      display: grid;
    }
  
}