/*
Theme Name: intellekt
Author: support@goodwebstudio.com
Author URI: https://goodwebstudio.com/
Description: Wordpress Theme for Intellekt Brovary
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: intellekt
*/

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body{
	color: #F0F0F0;
	font-family: "Roboto Flex", sans-serif;
	font-weight: 300;
	background: #1d1d1d;
	font-feature-settings: 'pnum' on, 'lnum' on;
}

@media screen and (min-width: 576px) and (max-width: 1365px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 96%;
	}
}

@media screen and (min-width: 1366px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 1300px;
	}
}

/* ~~~~~~~ BTNS ~~~~~~~ */

button{
	outline: none;
	box-shadow: none;
}

.btns-wrapper{
	position: relative;
}

.btn, a.btn,
.btn:visited, a.btn:visited{
	display: inline-block;
	border: none;
	text-decoration: none;
	letter-spacing: 0;
	padding: 15px 24px;
	border-radius: 0;
	font-size: 16px;
	outline: none;
	position: relative;
	z-index: 1;
}

.btn-primary{
	position: relative;
	background: #00A3FF;
	color: #000!important;
	border-radius: 8px;
	font-weight: 500;
}

.btn-secondary{
	position: relative;
	background: #fff;
	color: #000!important;
	border-radius: 8px;
	font-weight: 500;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus{
	background: #4EBDFB;
	border: none;
}

.btn-callback{
	border: 0;
	outline: none;
	color: #00A3FF;
	text-decoration: underline;
	padding: 0;
	font-size: 14px;
	margin-top: 6px;
}

.btn-callback:hover{
	color: #00A3FF;
	text-decoration: none;
}

#back-to-top-btn{
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	padding: 0;
	border: none;
	background: url(imgs/to-top.svg) no-repeat 0 0;
	cursor: pointer;
	border-radius: 50%;
	z-index: 9999;
	opacity: .8;
}
  
#back-to-top-btn:hover{
	opacity: 1;
}

@media screen and (min-width: 992px){
	.btn-callback{
		font-size: 16px;
		margin-top: 0;
	}
}

/* ~~~~~~~ HEADER ~~~~~~~ */

header{
	width: 100%;
	padding: 15px 0;
	z-index: 3;
	transition: all ease .3s;
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	background: #1d1d1d;
}

.header-action{
	display: flex;
}

header .btn-wrapper .callback-btn{
	border: 0;
	background-color: transparent;
	color: #fff;
}

header.sticky{
	background: #202020;
}

header.sticky .header{
	padding-top: 0;
}

.header .contact{
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #444;
	padding-top: 10px;
	margin-top: 13px;
}

.header .contact a{
	font-weight: 500;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
}

header .logo-wrap{
	max-width: 74px;
}

.social a{
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 14px;
}

.social a:last-child{
    margin-right: 0;
}

.social a::before{
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.social a.instagram::before{
    background-image: url(imgs/icon-instagram.svg);
}

.social a.tiktok::before {
    background-image: url(imgs/icon-tiktok.svg);
}

.messengers-btns{
	position: fixed;
	bottom: 0;
	left: 10px;
	z-index: 2;
	height: 41px;
}

.messengers-btns a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
    position: relative;
    
	width: 50px;
    height: 41px;
    border-radius: 10px 10px 0 0;
	background: #eee;
}

.messengers-btns a:not(:last-child){
	margin-right: 20px;
}

.messengers-btns a::before{
	content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.messengers-btns a.viber::before {
    background-image: url(imgs/icon-viber.svg);
}

.messengers-btns a.telegram::before {
    background-image: url(imgs/icon-telegram.svg);
}

.location{
	display: inline-block;
	text-align: center;
	background: none;
	border: 0;
	color: #00A3FF;
	text-decoration: underline;
	outline: none;
}

@media screen and (max-width: 576px) {
	.location{
		width: 150px;
		position: absolute;
	    top: 10px;
		left: 50%;
		margin-left: -75px;
		font-size: 14px;
	}

	.location span{
		display: none;
	}

	.location picture{
		display: inline-flex;
		width: 34px;
		height: 34px;
		border-radius: 50%;
		border: 1px solid #444;
		align-items: center;
		justify-content: center;
	}

	header.sticky .contact{
		display: none;
	}
}

@media screen and (min-width: 768px) {
	header{
		background: transparent;
	}
	
	header.sticky .top-header{
		display: none;
	}

	.messengers-btns{
		width: 41px;
		left: inherit;
		bottom: inherit;
		top: 42%;
		right: 0;
	}

	.messengers-btns a{
		display: block;
		width: 41px;
		height: 50px;
		border-radius: 10px 0 0 10px;
	}

	.messengers-btns a:not(:last-child){
		margin-right: 0;
		margin-bottom: 10px;
	}
}

/* ~~~ NAV ~~~ */

.navbar{
	padding: 0;
	position: relative;
	z-index: 2;
}

.navbar-nav .menu-item a{
	color: #444;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	display: block;
    padding: .5em 1.5em;
}

.navbar-nav .menu-item a:hover,
.navbar-nav .menu-item a:focus,
.navbar-nav .menu-item a:active,
.navbar-nav .menu-item a.active,
.navbar-nav .current-page-ancestor a{
	color: #00A3FF
}

#navbarSupportedContent{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f0f0f0;
	border-radius: 25px;
	padding-top: 5rem;
	z-index: 10;
}

#navbarSupportedContent::after{
	content: ' ';
	display: block;
	position: absolute;
    bottom: -80px;
    left: 50%;
    margin-left: -72px;
    width: 144px;
    height: 292px;
	background: url(imgs/gear.svg) no-repeat 0 0;
	transform: rotate(270deg);
}

.navbar-toggler{
	padding: 0;
    text-align: center;
    position: absolute;
    top: -5px;
    right: 5px;
    z-index: 9;
    line-height: .8;
    width: 34px;
}

.navbar-toggler:focus{
	box-shadow: none;
}

.navbar-toggler-icon{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background: none!important;
	width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #666;
}

.navbar-toggler-icon .icon-bar{
	display: block;
    width: 15px;
    height: 1px;
	margin: 2px auto;
    background: #fff;
}

.navbar-toggler .text{
	font-size: 14px;
    color: #00A3FF;
    display: inline-block;
    margin-left: -1px;
	text-decoration: underline;
}

.navbar-collapse.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

.close{
	width: 17px;
	height: 17px;
	text-align: center;
	position: absolute;
	top: 20px;
    right: 20px;
	z-index: 9999;
	border: none;
}

.close::before{
	content: '';
	position: absolute;
	width: 17px;
	height: 17px;
	top: 0;
    left: 0;
	background: url(imgs/close.svg) 50% 50% no-repeat;
	border: 0;
	outline: none;
	box-shadow: none;
	z-index: 9999;
}

@media screen and (min-width: 992px){	
	.header > .container > .row{
		align-items: center;
	}

	.header-right{
		text-align: right;
	}

	header .logo-wrap{
		max-width: 96px;
	} 

	.header{
		padding-top: 15px;
	}

	.header .contact{
		border-top: 0;
		padding-top: 0;
	}

	#navbarSupportedContent{
		position: static;
		background: transparent;
		padding-top: 0;
	}

	#navbarSupportedContent::after{
		content: none;
	}

	.navbar-nav .menu-item a{
		padding: 0 1.4em;
		color: #C0C0C0;
	}

	.navbar-nav .menu-item:first-child a{
		padding-left: 0;
	}

	.navbar-nav .menu-item:last-child a{
		padding-right: 0;
	}

	.horizontal-menu{
		border-bottom: 1px solid #444;
		padding-bottom: 15px;
	}

	.horizontal-menu nav,
	.horizontal-menu nav .navbar-nav,
	.horizontal-menu nav .navbar-collapse{
		justify-content: center;
	}
	
	#navbarSupportedContent .close{
		display: none;
	}
}

/* ~~~~~~~~~~~~~~~~ END OF HEADER ~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~ CONTENT ~~~~~~~~~~~~~~~~~ */

object{
	pointer-events: none;
}

h1, .h1, h2, .h2{
	font-size: 24px;
	font-weight: 600;
}

h1.entry-title{
	margin-top: 180px;
}

h3, .h3{
	font-size: 21px;
}

h4, .h4{
	font-size: 21px;
}

h5, .h5{
	font-size: 19px;
}

h6, .h6{
	font-size: 18px;
}

a, a:link, a:visited, a:active{
	color: #00A3FF;
	text-decoration: underline;
}

a:hover, a:focus{
	text-decoration: none;
}

a,
button{
	text-underline-offset: 4px;
}

p{
	margin-bottom: 1.2em;
}
	
@media screen and (min-width: 992px){
	h1, .h1, h2, .h2{
		font-size: 32px;
	}
}

.section{
	position: relative;
}

.box-bordered{
	border-radius: 25px;
	border: 1px solid #444;
}

/* ~~~ UTP ~~~ */

#utp{
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 180px;
	padding-bottom: 45px;
	margin-bottom: 50px;
	background: rgb(21,21,21);
	background: linear-gradient(90deg, rgba(21,21,21,1) 0%, rgba(34,34,34,1) 100%);
}

#utp h1{
	font-size: 50px;
	line-height: 100%;
}

#utp h1 span{
	display: block;
	font-size: 24px;
	line-height: 1.2em;
	font-weight: 300;
	margin-top: 12px;
}

#utp .subtitle{
	font-size: 20px;
	margin-bottom: 35px;
	max-width: 420px;
}

.utp-img{
	position: relative;
	text-align: center;
	margin: 35px 0;
}

.utp-img::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -150px;
	left: 50%;
	margin-left: -150px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: #00A3FF;
	box-shadow: 0px 0px 65px 20px rgba(0,162,255,0.9);
}

.utp-img img{
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 300px;
}

#utp .btns-wrapper{
	text-align: center;
}

.short-advants{
	position: relative;
	padding: 25px 20px 25px 35px;
	background: transparent;
	border-radius: 25px;
	margin-top: 50px;
}

.short-advants .item{
	position: relative;
	z-index: 1;
	color: #F0F0F0;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	padding-left: 60px;
	line-height: 42px;
}

.short-advants .item:last-child{
	margin-bottom: 0;
}

.short-advants::after{
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(imgs/pattern.png) 0 0 repeat;
	border-radius: 25px;
	mix-blend-mode: overlay;
}

.short-advants .item::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 42px;
	height: 42px;
	background: url(imgs/icon-check.svg) no-repeat 0 0;
}

@media screen and (min-width: 992px){
	#utp{
		padding-top: 180px;
		padding-bottom: 60px;
		margin-bottom: 0;
	}
	
	#utp .container .row{
		align-items: center;
	}

	#utp h1{
		font-size: 60px;
		margin-bottom: 35px;
		line-height: 130%;
	}

	#utp h1 span{
		font-size: 32px;
		margin-top: -5px;
	}

	#utp .subtitle{
		margin-bottom: 45px;
	}

	.utp-img{
		text-align: right;
		margin: 0;
	}

	.utp-img::before{
		content: ' ';
		display: block;
		position: absolute;
		top: 50%;
		margin-top: -210px;
		right: 28px;
		margin-right: 0;
		width: 420px;
		height: 420px;
		border-radius: 50%;
		background: #00A3FF;
		box-shadow: 0px 0px 125px 25px rgba(0,162,255,0.9);
	}

	.utp-img img{
		max-width: 478px;
	}

	#utp .btns-wrapper{
		text-align: left;
	}

	.short-advants{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 22px 110px;
		background: transparent;
		border-radius: 25px;
		margin-top: 45px;
	}
	
	.short-advants .item{
		position: relative;
		z-index: 1;
		color: #F0F0F0;
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 0;
		position: relative;
		padding-left: 54px;
		line-height: 42px;
	}
}

/* ~~~ ABOUT ~~~ */

h2{
	position: relative;
	padding-left: 50px;
	margin-bottom: 25px;
	min-height: 65px;
	display: flex;
	align-items: center;
}

h2::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 33px;
	height: 65px;
	background: url(imgs/title-gear.svg) no-repeat 0 0;
}

.gadget-icons{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 30px 25px;
	margin-top: 40px;
	margin-bottom: 35px;
}

.gadget-icons .item{
	min-width: 50%;
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 115%;
	margin-bottom: 20px;
}

.gadget-icons .item .icon{
	margin-bottom: 8px;
}

section picture img{
	border-radius: 25px;
}

section .entry ul{
	padding-left: 0;
}

section .entry ul li{
	position: relative;
	padding-left: 24px;
	list-style: none;
	font-weight: 500;
	line-height: 1.4;
}

section .entry ul li:not(:last-child){
	margin-bottom: 16px;
}

section .entry ul li::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #00A3FF;
}

section .entry .sp-wrap-default,
section .entry .sp-wrap-default .sp-body{
	background: none!important;
	border: none!important;
	padding: 0;
}

section .entry .sp-wrap-default .sp-head{
	background: none;
	text-decoration: underline;
	color: #00A3FF;
	font-weight: 500;
	padding: 0;
    margin: 0 0 15px 0;
}

section .entry .sp-wrap-default .spdiv{
	color: #00A3FF;
}

@media screen and (min-width: 992px) {
	section .entry .sp-wrap-default .sp-head{
		font-size: 18px;
	}
	
	#about{
		padding-top: 110px;
	}

	#about h2::before{
		top: 6px;
	}

	h2{
		margin-bottom: 35px;
	}

	#about .col-md-5{
		padding-right: 40px;
	}

	.gadget-icons{
		margin-top: 55px;
		padding: 12px 45px 10px;
		margin-bottom: 42px;
	}

	.gadget-icons .item{
		min-width: inherit;
		text-align: center;
		font-weight: 500;
		font-size: 14px;
		line-height: 115%;
		margin-bottom: 0;
	}

	section .entry{
		font-size: 18px;
	}
}

/* ~~~ REPAIR ~~~ */

#repair{
	margin-bottom: 60px;
}

#repair .item{
	padding: 35px 25px;
	color: #f0f0f0;
	margin-bottom: 35px;
}

#repair .item .title{
	display: flex;
    align-items: center;
    justify-content: flex-start;
	margin-bottom: 25px;
}

#repair .item h3{
	font-weight: 600;
	font-size: 22px;
	line-height: 115%;
	color: #00a3ff;
	margin-bottom: 0;
}

#repair .item .title span{
	display: inline-flex;
    align-items: center;
    justify-content: center;
	min-width: 60px;
    width: 60px;
    height: 60px;
    border: 2px solid #00A3FF;
    border-radius: 50%;
	font-weight: 600;
    font-size: 42px;
	color: #00a3ff;
    line-height: 140%;
	margin-right: 20px;
}

#repair .item p{
	font-weight: 200;
}

#repair .btns-wrapper{
	text-align: center;
}

@media screen and (min-width: 992px){
	#repair{
		margin-bottom: 90px;
	}

	#repair .item{
		height: 380px;
		margin-bottom: 0;
	}

	#repair .btns-wrapper{
		margin-top: 65px;
	}

	#repair .item p{
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* ~~~ CHANGE ~~~ */

#change{
	margin-bottom: 60px;
}

#change .box-bordered{
	padding: 40px 15px;
}

#change .entry{
	max-width: 560px;
	margin: 30px 0;
}

#change .btns-wrapper{
	text-align: center;
	margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
	#change{
		margin-bottom: 90px;
	}

	#change .box-bordered{
		padding: 40px 45px;
	}
		
	#change picture img{
		float: right;
	}

	#change .btns-wrapper{
		margin-top: 30px;
		margin-bottom: 0;
		text-align: left;
	}

	#change .entry{
		margin: 0;
	}
}

/* ~~~ BUY ~~~ */

#buy{
	margin-bottom: 60px;
}

#buy .box-bordered{
	padding: 40px 15px;
}

#buy .entry{
	margin-top: 30px;
}

#buy .btns-wrapper{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
	#buy{
		margin-bottom: 90px;
	}

	#buy .box-bordered{
		padding: 40px 45px;
	}

	#buy h2,
	#buy .entry{
		margin-left: 45px;
	}

	#buy .entry{
		margin-top: 0;
	}

	#buy .btns-wrapper{
		margin-left: 45px;
		margin-top: 30px;
		text-align: left;
		margin-bottom: 0;
	}
}

/* ~~~ CONSULT FORM ~~~ */

#consult-form{
	background: url(imgs/form-bg.jpg) no-repeat 0 0;
	background-size: cover;
	padding: 60px 0;
	margin-bottom: 60px;
}

#consult-form h2{
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 24px;
	line-height: 115%;
	color: #f0f0f0;
	padding: 0;
}

#consult-form h2::before{
	content: none;
}

#consult-form .form-wrapper{
	max-width: 645px;
	margin: 40px auto 0;
}

@media screen and (min-width: 992px) {
	#consult-form{
		padding: 90px 0;
		margin-bottom: 90px;
	}

	#consult-form h2{
		font-size: 32px;
	}
}

/* ~~~ REVIEWS ~~~ */

.reviews-wrapper{
	background: #F0F0F0;
	border-radius: 25px;
	padding: 30px 15px 30px;
	margin-top: 10px;
}

@media screen and (min-width: 992px) {
	.reviews-wrapper{
		padding: 40px 25px 30px;
	}
}

/* ~~~ FOOTER ~~~ */

footer{
	position: relative;
	margin-top: 60px;
	padding-bottom: 50px;
}

.footer > .container > .row{
	border-top: 1px solid #444;
	padding-top: 40px;
}

footer h3{
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: #00a3ff;
	margin-top: 30px;
	margin-bottom: 12px;
}

footer a,
footer a:link{
	color: #fff;
	text-decoration: none;
}

footer a.email{
	text-decoration: underline;
}

footer .logo{
	margin-bottom: 20px;
}

footer .footer-text{
	margin-bottom: 20px;
	font-size: 14px;
}

.map,
.map iframe{
	border-radius: 25px;
}

footer .map{
	margin: 30px 0 20px;
}

footer nav ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.subfooter .items{
	display: flex;
    align-items: center;
    justify-content: flex-start;
}

.subfooter .items > *{
	font-size: 14px;
	margin-right: 25px;
}

.subfooter a,
footer nav a{
	color: #fff!important;
	text-decoration: underline!important;
}

@media screen and (min-width: 992px){
	footer{
		margin-top: 90px;
		padding-bottom: 35px;
	}

	footer .footer-text{
		font-size: 16px;
	}

	footer h3{
		margin-top: 0;
	}

	footer .map{
		margin: 0;
	}

	footer nav ul{
		margin: 0 0 0 30px;
	}
}

/* ~~~ FORM STYLES ~~~ */

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]), textarea{
	font-size: 15px;
	padding: 14px 15px 13px;
	box-shadow: none;
	display: inline-block;
	margin-bottom: 18px;
	width: 100%;
	border: 1px solid #bbb;
	background: rgba(240,240,240,.3);
	color: #fff;
	border-radius: 10px;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus, textarea:focus{
	background: #fff;
	border: 1px solid #00a3ff;
	outline: none;
	box-shadow: none;
}

#consult-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus, #consult-form textarea:focus{
	background: rgba(240,240,240,.3);
}

textarea{
	min-width: 100%;
	width: 100%;
	max-width: 100%;
	min-height: 139px;
	height: 139px;
	max-height: 139px;
}

::-webkit-input-placeholder{color: #fff;}
::-moz-placeholder{color: #fff;}
:-moz-placeholder{color: #fff;}
:-ms-input-placeholder{color: #fff;}

:focus::-webkit-input-placeholder{color: transparent}
:focus::-moz-placeholder {color: transparent}
:focus:-moz-placeholder{color: transparent}
:focus:-ms-input-placeholder{color: transparent}

.inputs-row .item.has-btn{
	text-align: center;
}

@media screen and (min-width: 992px) {
	textarea{
		min-height: 110px;
		height: 110px;
		max-height: 110px;
	}
	
	.inputs-row{
		display: flex;
		justify-content: space-between;
	}
	
	.inputs-row .item{
		padding: 0 10px;
		width: 100%;
	}
	
	.inputs-row .item:first-child{
		padding-left: 0;
	}
	
	.inputs-row .item:last-child{
		padding-right: 0;
	}

	.inputs-row .item.has-btn{
		text-align: right;
	}
}

/* ~~~ CUSTOM ACCEPTANCE ~~~ */

.wpcf7-acceptance{
	display: inline-block;
	font-size: 15px;
	margin-bottom: 20px;
	text-align: left;
}

.wpcf7-acceptance span.wpcf7-list-item{
	margin: 0;
}

.custom-checkbox{
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.wpcf7-acceptance label{
	font-size: 14px;
	display: inline-flex;
	user-select: none;
}

.wpcf7-acceptance label::before{
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #bbb;
	border-radius: 5px;
	margin-top: 2px;
    margin-right: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 80%;
	background-color: #f0f0f0;
}

.wpcf7-acceptance label a{
	color: #fff;
	text-decoration: underline!important;
}

label.has-cheked-input::before{
	background-image: url("imgs/accept-check.svg");
}

/* ~~~ SOME CF7 STYLES HERE ~~~ */

div.wpcf7-response-output {
	margin: 1em 0.5em 1em;
	padding: 0.2em 1em;
	font-size: 12px;
	line-height: 1.2em;
	text-align: center;
	clear: both;
}

div.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	margin: 0;
	padding: 0;
	border: 0;
}

.wpcf7-form-control-wrap {
	position: relative;
}

span.wpcf7-not-valid-tip {
	color: #f00;
	font-size: 12px;
	font-weight: normal;
	display: block;
	position: absolute;
	top: -10px;
	right: 10px;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
	position: absolute;
	top: 20%;
	left: 20%;
	z-index: 100;
	border: 1px solid #ff0000;
	background: #fff;
	padding: .2em .8em;
}

.grecaptcha-badge,
.cky-btn-revisit-wrapper{
	opacity: 0;
	visibility: hidden;
}

.wpcf7 input[name="order-item"],
.wpcf7-spinner{
	display: none !important;
}

.wpcf7 p{
	margin-bottom: 0;
}

/* ~~~ SLICK THEME.CSS HERE ~~~ */

/* Arrows */
.slick-prev,
.slick-next{
	font-size: 0;
    line-height: 0;
    position: absolute;
    top: 55%;
    width: 33px;
	height: 16px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
	z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover::before,
.slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before{
    opacity: 1;
}

.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before{
    opacity: .6;
	filter: grayscale(1);
}

.slick-prev::before,
.slick-next::before{
    content: '';
	display: block;
	position: absolute;
	width: 33px;
	height: 16px;
	top: 0;
	left: 0;
	background-image: url(imgs/arrow.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev::before{
	transform: scale(-1,1);
}

.slick-prev{
	left: 10px;
}

.slick-next{
    right: 10px;
}

.slick-slide img{
	margin: 0 auto;
}

@media screen and (min-width: 992px){	
	.slick-prev,
	.slick-next{
		top: 50%;
	}
	
	.slick-prev{
		left: -15px;
	}

	.slick-next{
		right: -15px;
	}
}

/* Dots */

.slick-dots{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li{
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
	border-radius: 50%;
	padding: 5px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: #6c6c6c;
}

.slick-dots li button:hover{
    background: #9b9b9b;
}

.slick-dots li.slick-active button{
    background: #0071ce;
}


@media screen and (min-width: 992px){
	.slick-dots{
		width: 110px;
		left: 275px;
	}
}

/* ~~~ MODAL STYLES ~~~ */

body.modal-open{
	overflow: visible!important;
	padding-right: 0!important;
}

.modal-body form{
	text-align: center;
}

.modal-dialog{
	width: 90%;
	max-width: 640px;
	border-radius: 25px;
	box-shadow: none;
	margin: 5% auto;
	background: url(imgs/gear.svg) 0 50% no-repeat #f0f0f0;
	color: #444;
}

.modal-small .modal-dialog{
	max-width: 529px;
}

.modal-content{
	border: none;
	box-shadow: none;
	background: transparent;
}

.modal-header{
	border: none;
}

.modal-body{
	margin: 0 15px;
	padding: 0 1rem 20px;
}

.modal-content .form-title{
	font-size: 21px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.modal input{
	margin-bottom: 15px!important;
}

.modal textarea{
	margin-bottom: 10px!important;
}

.modal div.wpcf7-response-output{
	text-align: center;
}

.modal-form-title{
	font-weight: 600;
	font-size: 22px;
	line-height: 120%;
	text-align: center;
	color: #00a3ff;
	margin-bottom: 25px;
}

.modal input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]), .modal textarea{
	font-size: 14px;
	line-height: 160%;
	color: #444;
	padding: 12px 15px 13px;
}

.modal ::-webkit-input-placeholder{color: #444;}
.modal ::-moz-placeholder{color: #444;}
.modal :-moz-placeholder{color: #444;}
.modal :-ms-input-placeholder{color: #444;}

.modal .wpcf7-acceptance label a{
	color: #444;
}

@media screen and (max-width: 576px) {
	.modal-large .modal-dialog{
		width: 100%;
		max-width: 100%;
		margin-top: 0;
	}

	.info-wrapper > div:not(:last-child){
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 992px) {
	.modal .inputs-row.last-row p{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.modal-small  .modal-body{
		padding: 0 80px 20px;
	}

	.info-wrapper{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.info-wrapper > div{
		margin-bottom: 0;
	}

	.info-wrapper > div:not(:last-child){
		margin-right: 20px;
	}

	.info-wrapper > .address{
		max-width: 236px;
		font-weight: 500;
		line-height: 120%;
		color: #202020;
	}

	.info-wrapper > .map{
		min-width: 500px;
		width: 500px;
		border: 1px solid #bbb;
		border-radius: 25px;
	}

	.info-wrapper > .map iframe{
		border-radius: 25px;
	}

	.modal-large .modal-dialog .modal-body{
		padding: 0 1rem 40px;
	}
}

@media screen and (min-width: 1366px) {
	.modal-large .modal-dialog{
		max-width: 1300px;
	}

	.info-wrapper > .map iframe{
		height: 360px;
	}
}

/* ~~~ WP DEFAULT STYLES ~~~ */

img.size-full, img{
	width: auto;
	height: auto;
	max-width: 100%;
}

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
    margin: auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float:left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float:left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pagination h2.screen-reader-text{
	display: none;
}

.nav-links .page-numbers{
	font-size: 17px;
	display: inline-block;
	background: #0099cc;
	color: #fff;
	text-decoration: none;
	padding: 5px 10px;
}

.nav-links .page-numbers:hover{
	background: #f7941c;
}

.nav-links .current,
.nav-links .current:hover{
	background: none;
	color: #323232;
}

/* ~~~ WP DEFAULT GALLERY ~~~ */

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}