/*
Theme Name: marathon
Description: Wordpress Theme for Marathon Roofing &amp; Services
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: marathon
*/

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
	overflow-x: hidden;
}

body{
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	background: #fff;
	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: 1200px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 1072px;
	}

	.row > *{
		padding-left: 18px;
		padding-right: 18px;
	}
}

:root {
	--orange: #E86925;
	--orange-dark: #D05614;
	--dark-blue: #1A4665;
	--text-grey: #C2C1C1;
}

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

.btn-wrapper{
	position: relative;
}

.btn, a.btn,
.btn:visited, a.btn:visited{
	display: inline-block;
	text-decoration: none!important;
	letter-spacing: 0;
	padding: 12px 63px;
	border-radius: 0;
	font-size: 16px;
	outline: none;
	position: relative;
	z-index: 1;
	font-weight: 500;
	width: 100%;
}

.btn-primary{
	position: relative;
	background: var(--orange);
	color: #fff!important;
	border: none;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
	background: var(--orange-dark);
	border: none;
	box-shadow: none;
}

.btn-readmore,
a.btn-readmore{
	color: #000;
	border: 2px solid var(--orange);
	background: #fff;
}

.btn-readmore:hover,
a.btn-readmore:hover{
	border: 2px solid var(--orange-dark);
}

@media screen and (min-width: 992px){
	.btn, a.btn,
	.btn:visited, a.btn:visited{
		width: auto;
	}
}

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

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 12px 0;
	z-index: 3;
	background: var(--dark-blue);
	color: #fff;
	transition: all ease .3s;
	box-shadow: 0 9px 9px  rgb(6 21 50 / 17%);
}

header .logo img{
	height: 48px;
}

@media screen and (min-width: 992px) {
	header{
		box-shadow: 0 17px 17px rgb(6 21 50 / 17%);
	}

	header .logo img{
		height: 70px;
	}

	header .btn-primary{
		float: right;
	}

	header .holder{
		align-items: center;
	}
}

/* ~~~ NAV ~~~ */

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

.navbar-nav .menu-item a{
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
	display: block;
    padding: 15px 0 13px;
	margin: 0 15px;
	border-bottom: 1px solid #fff;
}

.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-menu-item a,
.navbar-nav > .current-page-ancestor a,
.navbar-nav > .current-menu-parent > a{
	color: var(--text-grey);
}

#navbarSupportedContent{
	position: fixed;
	top: 72px;
	left: 0;
	width: 80%;
	height: calc(100vh - 72px);
	background: var(--dark-blue);
	padding-top: 30px;
	z-index: 10;
}

#navbarSupportedContent .contacts{
	margin: 20px 15px 0;
	color: #C2C1C1;
	text-transform: uppercase;
}

#navbarSupportedContent .contacts .phone{
	margin-bottom: 5px;
}

#navbarSupportedContent .contacts a{
	color: #C2C1C1;
	text-decoration: none;
}

.navbar-toggler{
	padding: 0;
	border: 0;
    border-radius: 0!important;
    text-align: center;
    position: absolute;
	top: 12px;
    right: 6px;
    z-index: 9;
}

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

.navbar-toggler-icon{
	background: none!important;
	width: auto;
	height: auto;
}

.navbar-toggler-icon .icon-bar{
	display: block;
	width: 24px;
    height: 1px;
    margin: 0 auto 6px;
    background: #fff;
    border-radius: 1px;
}

.navbar-toggler-icon .icon-bar:last-child{
	margin-bottom: 0;
}

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

.close{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	top: 20px;
    right: 20px;
	z-index: 9999;
	border: 0;
	background: transparent;
}

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

/* ~~~ SUB MENU ~~~ */

.menu-item:hover ul.sub-menu{
	display: block;
}

.menu-item.menu-item-has-children::after{
	top: 50%;
	width: 10px;
	height: 7px;
	background-size: inherit;
	margin-top: -2px;
	right: 5px;
}

.menu-item:hover ul.sub-menu li.menu-item{
	padding: 8px 12px!important;
	position: relative;
	z-index: 1;
}

.menu-item ul.sub-menu li.menu-item:hover a{
	text-decoration: underline;
}	

.menu-item ul.sub-menu li.menu-item a{
	font-size: 14px;
	font-weight: 500;
}

#menu-mainmenu > .menu-item.menu-item-has-children > a{
	position: relative;
}

.menu-item ul.sub-menu{
	display: none;
	list-style: none;
	margin: 0;
}

@media screen and (min-width: 992px){	
	#navbarSupportedContent{
		position: static;
		background: transparent;
		padding-top: 0;
		justify-content: center;
		height: auto;
	}

	.navbar-nav .menu-item a{
		padding: 0 15px;
		margin: 0;
		border-bottom: 0;
	}

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

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

	.navbar-expand-lg,
	.navbar-expand-lg .navbar-nav,
	.navbar-expand-lg .navbar-collapse{
		justify-content: space-between;
	}
	
	#navbarSupportedContent .close{
		display: none;
	}

	.menu-item ul.sub-menu{
		position: absolute;
		top: 22px;
		left: inherit;
		border-radius: 0;
		width: 250px;
		padding: 46px 0 12px;
	}
	
	.menu-item ul.sub-menu::before{ 
		content: ' ';
		display: block;
		position: absolute;
		top: 38px;
		left: 0;
		background: rgba(255, 255, 255, .1);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		width: 100%;
		height: calc(100% - 38px);
	}

	.menu-item ul.sub-menu li.menu-item a{
		color: #000;
	}
}

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

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

object{
	pointer-events: none;
}

h1, .h1, h2, .h2{
	font-size: 24px;
	font-weight: 600;
	font-family: "Nunito Sans", sans-serif;
	margin-bottom: 20px;
}

h1.entry-title{
	margin-bottom: 25px;
}

h3, .h3{
	font-size: 20px;
	font-weight: 600;
}

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

h5, .h5{
	font-size: 20px;
	font-weight: 600;
}

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

a{
	color: var(--dark-blue);
	text-decoration: underline;
}

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

p{
	margin-bottom: 1.5em;
}

#content{
	padding-top: 95px;
	position: relative;
}

body.home #content{
	padding-top: 72px;
}

.dark-blue-bg{
	background: var(--dark-blue);
	color: #fff;
}

.breadcrumbs{
	font-size: 16px;
	font-weight: 500;
	color: var(--text-grey);
	margin-bottom: 25px;
}

.breadcrumbs a{
	color: #000;
	text-decoration: none;
}

.breadcrumbs .separator{
	color: transparent;
    position: relative;
    font-size: 0;
	padding: 0 12px;
}

.breadcrumbs .separator::before{
	content: ' ';
	display: inline-block;
	width: 6px;
	height: 12px;
	background: url(imgs/separator.svg) no-repeat 0 0;
	background-size: 100%;
}

section,
.section{
	position: relative;
}

article h3:not(:first-child){
	margin-top: 40px;
	margin-bottom: 20px;
}

article h4{
	font-size: 20px;
	font-weight: 500;
}

article p{
	line-height: 1.4em;
	margin-bottom: 1.2em;
}

article *:last-child{
	margin-bottom: 0;
}
	
article ul, 
article ol{
	padding-left: 24px;
}

@media screen and (min-width: 992px){
	h1, .h1, h2, .h2{
		font-size: 36px;
	}

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

	#content{
		padding-top: 140px;
	}

	body.home #content{
		padding-top: 94px;
	}

	.breadcrumbs{
		margin-bottom: 40px;
	}

	article h3:not(:first-child){
		margin-bottom: 25px;
	}

	article h4{
		font-size: 16px;
	}
}

/* ~~~ UTP ~~~ */

#utp{
	height: calc(100vh - 72px);
	color: #fff;
	margin-bottom: 80px;
}

.utp-slider .slide{
	height: calc(100vh - 72px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0;
}

.utp-slider .slick-dots{
	position: relative;
	z-index: 2;
	width: auto;
	left: 6px;
	bottom: 60px;
	text-align: left;
}

.utp-slider .slick-dots li,
.utp-slider .slick-dots li button{
	width: 40px;
	height: 2px;
}

.utp-slider .slick-dots li button{
	padding: 0;
	border-radius: 0;
	background-color: var(--text-grey);
}

.utp-slider .slick-dots li.slick-active button{
	background-color: var(--dark-blue);
}

.utp-content{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 80px;
}

#utp h1{
	font-size: 36px;
	font-weight: 800;
	text-transform: uppercase;
}

#utp h2{
	line-height: 1.36em;
	margin-bottom: 38px;
}

#utp .pre-title{
	font-size: 20px;
	margin-bottom: 5px;
}

.blur-box{
	display: inline-block;
	position: relative;
	padding: 25px 30px;
	width: 100%;
}

.blur-box::before{
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 0;
}

.blur-box-content{
	position: relative;
    z-index: 1;
}

@media screen and (min-width: 992px){
	#utp{
		height: calc(100vh - 94px);
		justify-content: center;
		margin-bottom: 80px;
	}

	.utp-content{
		justify-content: center;
		padding-bottom: 0;
	}

	.utp-slider .slide{
		height: calc(100vh - 94px);
	}

	.utp-slider .slick-dots{
		width: 360px;
		left: calc(((100% - 1072px) / 2) + 12px);
	}

	.utp-slider .slick-dots li,
	.utp-slider .slick-dots li button{
		width: 60px;
		height: 4px;
	}

	#utp h1{
		font-size: 64px;
	}

	#utp .pre-title{
		font-weight: 600;
	}
}

/* Стилі для iOS */
@media only screen and (max-device-width: 567px) and (-webkit-min-device-pixel-ratio: 2) {
    /* Додайте ваші стилі тут */
	h1, .h1, h2, .h2{
		font-family: "Montserrat", sans-serif;
	}
	
	#utp h1{
		font-weight: 700;
	}
}

/* ~~~ ABOUT ~~~ */

.icon-items{
	display: flex;
    flex-wrap: wrap;
    align-items: self-start;
    justify-content: space-between;
	margin-top: 25px;
}

.icon-items .item{
	min-width: 120px;
	width: 120px;
	text-align: center;
	margin: 0 15px 45px;
}

.icon-items .item .icon{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #E86925;
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 auto;
}

.icon-items .item .title{
	font-size: 20px;
	font-weight: 500;
	margin-top: 20px;
	line-height: 1.2em;
}

.page-thumb{
	margin-top: 30px;
}

@media screen and (max-width: 576px) {
	.product-main .page-thumb{
		margin-top: 0;
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 992px) {
	.page-thumb{
		margin-top: 0;
	}
}

/* ~~~ BENEFITS ~~~ */

#benefits{
	padding: 30px 0;
	margin-bottom: 75px;
}

#benefits h2{
	margin-bottom: 35px;
}

#benefits ul{
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

#benefits ul li{
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 30px;
	position: relative;
	padding-left: 50px;
}

#benefits ul li::before{
	content: ' ';
	display: block;
	position: absolute;
	top: -7px;
	left: 0;
	width: 36px;
	height: 36px;
	background: url(imgs/check-circle.svg);
}

#benefits ul li:last-child{
	margin-bottom: 0;
}

#benefits .photo{
	margin-top: 20px;
}

@media screen and (min-width: 992px) {
	#benefits{
		padding: 100px 0;
	}

	#benefits h2{
		margin-top: 20px;
		margin-bottom: 50px;
	}

	#benefits ul li{
		font-size: 20px;
		font-weight: 500;
	}
}

/* ~~~ SERVICE ~~~ */

#service{
	padding-bottom: 75px;
}

#service .photo{
	margin-bottom: 30px;
}

.service-feature-image{
	height: 460px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin: 0 0 80px;
}

.service-items{
	margin: 50px 0;
}

.service-items .item{
	margin-bottom: 50px;
}

.service-items .item .photo{
	margin-bottom: 15px;
}

.service-items .item .photo img{
	width: 100%;
}

.service-items .item h3{
	margin-bottom: 7px;
}

.service-items .item h3 a{
	text-decoration: none;
	color: #000;
}

.service-items .item .btn-readmore{
	width: 100%;
}

.process{
	background-color: var(--dark-blue);
	color: #fff;
	padding: 25px 0;
}

.process h2{
	margin-bottom: 25px;
}

.process-items .item{
	display: flex;
}

.process-items .item .number{
	font-family: "Nunito Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	min-width: 25px;
	line-height: 1;
}

.process-items .item h3{
	font-size: 20px;
	font-weight: 500;
}

@media screen and (min-width: 992px) {
	#service::before{
		content: ' ';
		display: block;
		position: absolute;
		bottom: -480px;
		right: 55px;
		width: 300px;
		height: 878px;
		background: url('imgs/graphic-design.svg') no-repeat 0 0;
		background-size: cover;
	}

	.service-feature-image{
		background-position: 50% 50%;
		margin: 5px 0 100px;
	}

	.service-items{
		margin: 35px -12px 30px;
	}

	.service-items .item{
		position: relative;
		height: 511px;
		width: 320px;
		margin: 0 auto 35px;
	}

	.service-items .item .photo img{
		width: auto;
	}

	.service-items .item .btn-readmore{
		position: absolute;
		bottom: 0;
		left: 0;
	}

	#service .photo{
		margin-bottom: 0;
	}

	#service .entry{
		position: relative;
		height: 100%;
	}

	#service .entry .btn{
		position: absolute;
		bottom: 0;
	}

	.process{
		padding: 100px 0;
	}

	.process h2{
		margin-bottom: 45px;
	}

	.process-items .item h3{
		font-weight: 600;
	}

	.process-items .item p{
		margin-bottom: 1.2em;
	}

	.process-items .item .number{
		font-size: 36px;
		min-width: 36px;
	}
}

/* ~~~ PRODUCTS ~~~ */

#products{
	background: url(imgs/solar-panels.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	height: 640px;
	padding-top: 30px;
	margin-bottom: 75px; 
}

.product-items{
	margin: 75px 0;
	background: url(imgs/products-bg.jpg) no-repeat 0 0;
	background-size: cover;
	padding: 30px 15px;
	color: #fff;
}

.product-items .blur-box{
	padding: 25px 10px;
}

.product-items .icon-items{
	margin-top: 0;
	padding: 5px 0 10px;
}

@media screen and (max-width: 576px) {
	.product-main .col-md-6:first-child{
		order: 2;
	}

	.product-main .col-md-6:last-child{
		order: 1;
	}
}

.infoblocks .row:not(:last-child){
	margin: 75px 0;
}

.infoblocks img{
	margin: 30px 0;
}

.infoblocks h3:not(:first-child){
	margin-top: 30px;
}

.infoblocks ul,
.infoblocks ol{
	margin-bottom: 30px;
}

.icon-items .item a{
	text-decoration: none;
	color: #000;
}

.product-items .icon-items .item a{
	text-decoration: none;
	color: #fff;
}

@media screen and (min-width: 992px) {
	#products{
		height: 680px;
		padding: 100px 0 0 0;
	}

	.product-items{
		margin: 100px 0;
		padding: 112px 0;
	}

	.icon-items{
		margin: 50px 0;
	}

	.product-items .blur-box{
		padding: 25px 30px;
	}

	.product-items .icon-items{
		justify-content: flex-start;
		gap: 50px 0;
	}

	.product-items .icon-items .item{
		min-width: 25%;
		margin: 0;
	}

	.product-items .icon-items .item .title{
		width: 120px;
		margin: 20px auto 0;
	}

	.infoblocks{
		margin-top: 75px;
	}

	.infoblocks .row:nth-child(even) .col-md-6:first-child{
		order: 2;
	}

	.infoblocks .row:nth-child(even) .col-md-6:last-child{
		order: 1;
	}

	.infoblocks img{
		margin: 0;
	}
}

/* ~~~ CLIENTS ~~~ */

#clients{
    margin-bottom: 75px;
}

#clients .client-item:not(:last-child){
	margin-bottom: 50px;
}

#clients .client-item .photo{
	margin-bottom: 20px;
}

#clients .client-item .photo img{
	width: 100%;
}

.client-feature-image{
	height: 640px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin: 0 12px 80px;
}

.client-item .btn{
	width: 100%;
}

@media screen and (min-width: 992px) {
	#clients .client-item{
		margin-bottom: 0;
	}

	.client-feature-image{
		height: 680px;
		background-position: 50% 50%;
		margin: 5px 0 100px;
	}

	#clients .client-item .photo img{
		width: auto;
	}
}

/* ~~~ CTA ~~~ */

#contact-us .container{
	background: url(imgs/cta-bg-mob.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
    height: 100%;
    background-size: cover;
	padding-top: 30px;
	max-width: 1048px;
}

.cta{
	position: relative;
	height: 640px;
}

body:not(.home) .cta{
	margin-top: 65px;
}

body.archive .cta{
	margin-top: 15px;
}

@media screen and (min-width: 992px) {
	body.home .cta::before{
		content: ' ';
		display: block;
		position: absolute;
		bottom: -380px;
		right: 55px;
		width: 300px;
		height: 878px;
		background: url('imgs/graphic-design.svg') no-repeat 0 0;
		background-size: cover;
		z-index: -1;
	}

	.cta{
		height: auto;
	}

	.cta .container{
		padding: 35px;
	}

	#contact-us .container{
		background: url(imgs/cta-bg.jpg);
	}
}

.contact-block{
	margin-bottom: 30px;
}

.contact-block h2{
	margin-bottom: 15px;
}

.contact-photo{
	margin-bottom: 25px;
}

.contact-photo img{
	width: 100%;
}

.contact-block a{
	color: #000;
	text-decoration: none;
	font-weight: 500;
}

@media screen and (min-width: 992px) {
	.contact-block{
		margin-bottom: 50px;
	}

	.contact-photo{
		margin-bottom: 0;
	}

	.contact-photo img{
		width: auto;
	}

	.contact-block a{
		font-size: 20px;
	}
}

.single .thumb{
	margin-bottom: 80px;
}

.single .thumb img{
	width: 100%;
}

.news-wrapper .item .post-meta{
	display: flex;
    justify-content: flex-start;
    align-items: flex-end;
	margin-top: 10px;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 500;
}

.post-views{
	margin-left: 35px;
}

.post-views.entry-meta>span.post-views-icon.dashicons{
	width: 22px;
	height: 16px;
	background: url(imgs/icon-eye.svg);
	background-size: cover;
	margin-top: -3px;
}

.post-views.entry-meta>span.post-views-icon.dashicons::before{
	content: ' ';
}

.news-wrapper .col-md-4:not(:last-child) .item{
	margin-bottom: 75px; 
}

.news-wrapper .item .thumb img{
	width: 100%;
}

@media screen and (min-width: 992px) {
	.single .thumb{
		margin-bottom: 100px;
	}

	.news-wrapper .item .thumb img{
		width: auto;
	}

	body.page-id-65 .entry-row .col-md-6:last-child{
		position: relative;
	}

	body.page-id-65 .entry-row .col-md-6:last-child::before{
		content: ' ';
		display: block;
		position: absolute;
		bottom: 50px;
		right: 0;
		width: 300px;
		height: 878px;
		background: url('imgs/graphic-design.svg') no-repeat 0 0;
		background-size: cover;
		z-index: -1;
	}
}

/* ~~~ FOOTER ~~~ */

footer{
	position: relative;
	background: var(--dark-blue);
	color: var(--text-grey);
	margin-top: 75px;
	padding-top: 30px;
}

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

footer .logo img{
	height: 48px;
}

footer .bbb-logo{
	float: right;
    margin-top: -80px;
}

footer .bbb-logo img{
	border-radius: 7px;
}

footer h2,
footer h3{
	color: #fff;
}

footer h3{
	margin-bottom: 12px;
}

footer a{
	color: var(--text-grey);
	text-decoration: none;
}

footer a:hover{
	color: #fff;
}

footer nav ul{
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	font-weight: 500;
}

footer nav{
	margin-bottom: 25px;
}

footer nav ul li{
	margin-bottom: 5px;
}

.subscribe-wrapper{
	padding-bottom: 30px;
	border-bottom: 1px solid #C2C1C1;
	margin-bottom: 30px;
}

footer .phone{
	margin-top: 10px;
}

footer .phone,
footer .phone a,
footer .email a{
	color: #fff;
}

.subfooter{
	margin-top: 30px;
	padding-bottom: 30px;
	color: #fff;
}

.subfooter .container .row .col-12{
	padding-top: 30px;
	border-top: 1px solid #C2C1C1;
}

@media screen and (min-width: 992px){
	footer{
		padding-top: 70px;
	}

	footer .container{
		position: relative;
	}

	footer nav{
		margin-bottom: 0;
	}

	footer .bbb-logo{
		float: none;
		margin: 0;
		position: absolute;
		top: 0;
        right: 12px;
	}

	.subfooter .container .row .col-12{
		padding-top: 50px;
	}

	.subfooter{
		padding-bottom: 50px;
	}
}

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

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]), textarea{
	font-size: 16px;
	padding: 10px 15px;
	box-shadow: none;
	display: inline-block;
	margin-bottom: 20px;
	width: 100%;
	border: 1px solid #fff;
	background: transparent;
	color: #000;
	border-radius: 0;
}

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

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

::-webkit-input-placeholder{color: var(--text-grey);}
::-moz-placeholder{color: var(--text-grey);}
:-moz-placeholder{color: var(--text-grey);}
:-ms-input-placeholder{color: var(--text-grey);}

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

@media screen and (min-width: 992px) {
	.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;
	}

	.subscribe-form{
		max-width: 664px;
	}

	.subscribe-form .btn{
		width: 320px;
	}
}

/* ~~~ 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;
	align-items: top;
	user-select: none;
}

.wpcf7-acceptance label::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #111;
	margin-top: 2px;
    margin-right: 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
}

.wpcf7-acceptance label a{
	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: #C10000;
	font-size: 12px;
	font-weight: normal;
	display: block;
	position: absolute;
	top: -5px;
	right: 15px;
}

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

.wpcf7 form .wpcf7-response-output{
	margin: 0;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]).wpcf7-not-valid, textarea.wpcf7-not-valid{
	border: 1px solid #C10000;
}

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

.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{
	padding-right: 0!important;
}

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

.modal-dialog{
	width: 96%;
	max-width: 642px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 8% auto;
	background: var(--dark-blue);
	color: #fff;
	color: var(--text-grey);
}

.modal-dialog a{
	color: #fff;
}

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

.modal-content .btn{
	margin-top: 10px;
}

.modal-header{
	border: none;
}

.modal-body{
	margin: 0 15px;
	padding: 0 4% 20px;
}

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

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

.modal-full{
	width: 100%!important;
	max-width: 100%;
	height: 100%;
	background: rgba(255,255,255,1);
	top: 0;
	left: 0;
}

.modal-body .btn{
	width: 100%;
	margin-top: 18px;
}

.contact-form-title h2{
	text-align: center;
	color: #fff;
}

@media screen and (min-width: 992px) {
	.modal-body{
		padding: 0 10% 20px;
	}
}

/* ~~~ 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;
}