@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

/*
#business
#phone
07721920338
tsrlandscapes@hotmail.comaddress
-----------------
12 Giffard Terrace
Henley-in-arden
West Midlands
B955HQ
------------------
landscaping
landscapers
#serviceone
#servicetwo
#servicethree
#servicefour
#servicefive
------------------
#date
#domain
------------------
<img src="media/images/logo.png" alt="">
 */
:root{
	--dark: #262626;
	--medium: #000044;
	--light: #60a5a5;
	--light80: #60a5a580;
	--light1a: #F3F3F4;
	--accent: #60a5a5;
	--mainfont: 'Manrope', sans-serif;
	--titlefont: 'Manrope', sans-serif;
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.row.expanded {
	position: relative;
	z-index: 1;
}

body{
	font-family: var(--mainfont);
}

h1{
	font-size: calc(1rem + 3.385vw);
	color: #ffffff;
	line-height: 120%;
	font-weight: 500;
	margin-bottom: calc(1rem + 2.500vw);	
}
h2{
	font-size: calc(1rem + 1.042vw);
	color: var(--dark);
	line-height: 120%;
	font-weight: 500;
	margin-bottom: calc(1rem + 1.667vw);
}
h3{
	font-size: calc(1rem + 0.208vw);
	color: var(--dark);
	line-height: 180%;
	font-weight: 600;
	margin-bottom: calc(1rem + 0.417vw);
}

p{
	font-size: 1rem;
	color: var(--dark);
	line-height: 180%;
	font-weight: 500;
	margin-bottom: calc(1rem + 1.250vw);
}



strong{
	color: var(--accent);
	font-weight: 500;
}

.dark h2{
	color: #ffffff;
}

.dark h3{
	color: #ffffff;
}

.dark p{
	color: #ffffff;
}

@media screen and (max-width: 64em) {
	h1{
		font-size: 2.5rem;	
	}
	h2{
		font-size: 1.75rem;
	}
	h3{
		font-size: 1.25rem;
	}

	p{
		font-size: 1rem;
	}
}
@media screen and (max-width: 40em) {

}

/* Colours */

.light-bg{
	background-color: var(--light1a);
}

.dark-bg{
	background-color: var(--dark);
}
/* Spacing */

.no-pad{
	padding-left: 0;
	padding-right: 0;
}

@media screen and (max-width: 64em) {
	.no-pad-medium{
		padding-left: 0;
		padding-right: 0;
	}
	.no-pad-left-medium{
		padding-left: 0;
	}

	.no-pad-right-medium{
		padding-right: 0;
	}
}
@media screen and (max-width: 40em) {
	.no-pad-small{
		padding-left: 0;
		padding-right: 0;
	}
	.no-pad-left-small{
		padding-left: 0;
	}

	.no-pad-right-small{
		padding-right: 0;
	}
}



.no-pad-left{
	padding-left: 0;
}

.no-pad-right{
	padding-right: 0;
}

.pad-lr-large{
	padding-left: calc(1rem + 5.833vw);
	padding-right: calc(1rem + 5.833vw);
}

.pad-tb-large{
	padding-top: calc(1rem + 6.667vw);
	padding-bottom: calc(1rem + 6.667vw);
}

.offset-padding-right{
	margin-right: calc(-1rem + -5.833vw);
}

@media screen and (max-width: 40em) {
	.pad-lr-small{
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

/* Images */
.img-container{
	height: 100%;
	width: 100%;
}

.img-container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
}

/* Gallery */

.gallery .columns{
	padding: 1rem 0;
	border-radius: 1rem;
}

.gallery .columns img{
	border-radius: 1rem;
}


@media screen and (max-width: 64em) {
	.img-container{
		height: 20rem;
		width: 100%;
	}
}

/* Buttons */

.btn-link{
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	font-size: 0.875rem;
	font-family: 'Manrope';
	font-weight: 600;
	line-height: 180%;
}

.btn-full{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	padding: 1rem 1.5rem;
	background-color: var(--accent);
	border-radius: 2.5rem;
	transition: all 0.75s;
}

.btn-full::after{
	content:'';
	position: absolute;
	transform: translateY(72%);
	width: 13.2rem;
	height: 13.2rem;
	border-radius: 50%;
	background-color: #ffffff;
	transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-full:hover::after{
	transform: translateY(0%);
}

.btn-full:hover span{
	transform: translateY(-130%);
}



.btn-full:hover{
	background-color: #ffffff;
}

.btn-full-text-container{
	display: block;
	position: relative;
	overflow: hidden;
	z-index: 999;
}

.btn-full-text-container span{
	display: block;
	transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-full-text-container span::after{
	content: attr(data-text);
	display: block;
	position: absolute;
	top: 130%;
	color: var(--dark);
	transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-outline{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	padding: 1rem 1.5rem;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
	border-radius: 2.5rem;
	transition: all 0.75s;
}

.btn-outline::after{
	content:'';
	position: absolute;
	transform: translateY(72%);
	width: 13.2rem;
	height: 13.2rem;
	border-radius: 50%;
	background-color: #ffffff;
	transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-outline:hover::after{
	transform: translateY(0%);
}

.btn-outline:hover span{
	transform: translateY(-130%);
}



.btn-outline:hover{
	background-color: #ffffff;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 1.0);
}

.btn-outline-text-container{
	display: block;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-outline-text-container span{
	display: block;
	transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-outline-text-container span::after{
	content: attr(data-text);
	display: block;
	position: absolute;
	top: 130%;
	color: var(--dark);
	transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Form */

.myform{
	overflow: auto;
	width: 100%;
	padding: 0;
	position: relative;
}

.myform label{
	float: left;
	display: block;
	font-size: 12px;
	position: relative;
	padding: 0;
	text-transform: uppercase;
	color: #ffffff;
	opacity: 0.6;
	font-weight: 700;
	width: 100%;
	margin: 0.5rem 0;
}

.myform input, .myform select, .myform textarea{
	width: 100%;
	color: #ffffff;
	padding: 10px 0;
	background-color: rgba(0,0,0,0.0);
	border: 0;
	font-weight: 600;
	border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.myform textarea{
	min-height: 150px;
	border-radius: 1rem;
	padding-left: 1rem;
	border: solid 1px rgba(255, 255, 255, 0.2);
}
.myform option{
	color: var(--dark)!important;
}

.myform option:disabled{
	opacity: 0.2;
}

input[type=submit]{
	color: white!important;
	font-size: 0.875rem;
	display: inline-block;
	border: solid 1px rgba(255, 255, 255, 0.2);
	border-radius: 2.5rem;
	cursor: pointer;
	width: initial;
	padding: 1rem 1.5rem;
	line-height: 180%;
	transition: ease 0.3s;
	margin-top: 1rem;
}

input[type=submit]:hover{
	color: var(--dark)!important;
	background-color: #ffffff;
	border-color: #ffffff;
}

.myform input:focus, .myform textarea:focus, .myform select:focus{
	border-bottom: 1px solid rgba(255, 255, 255, 1.0);
	outline: none!important;
	transition: ease 0.3s;
}

.myform textarea:focus{
	border: 1px solid rgba(255, 255, 255, 1.0);
}

::-webkit-input-placeholder { color: #ffffff!important;font-weight: 600;}
::-moz-placeholder { color: #ffffff!important;font-weight: 600;}
:-ms-input-placeholder { color: #ffffff!important;font-weight: 600;}
:-moz-placeholder { color: #ffffff!important;font-weight: 600;}

/* Nav */
.top-bar{
	display: flex;
	position: relative;
	z-index: 1;
}

.top-bar-right{
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.logo-container{
	margin-right: calc(1rem + 7.500vw);
}

.logo-container{
	display: inline-block;
	padding: 1rem 0;
	
	border-radius: 0 0 2rem 2rem;
}

.logo-container img{
	max-height: 170px;
}

@media screen and (max-width: 64em) {
	.logo-container{
		display: inline-block;
		margin-right: 1rem;
	}
}
@media screen and (max-width: 40em) {
	.home-header .btn-link .btn-full{
		display: none;
	}
}




nav ul{
	display: flex;
}

nav ul li{
	padding: 1rem 1.25rem;
	list-style: none;
}

nav ul li span{
	display: block;
	position: relative;
	overflow: hidden;
}

nav ul li a{
	display: block;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

a.active{
	color: #ffffff;
}
a.active::before{
  content: '';
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
}

nav ul li a::after{
	content: attr(data-text);
	display: block;
	position: absolute;
	top: 130%;
	color: #ffffff;
}

nav ul li span:hover > a{
	transform: translateY(-130%);
}

.sub{
  position: absolute;
  display: none;
}

.sub .active{
	display: block;
}

.sub li{
  padding: 0.5rem 0;
}

.sub li a{
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: arial;
}

.toggle-sub > .active-sub{
  display: block;
}

.toggler{
	display: none;
}

@media screen and (max-width: 64em) {
	nav{
		position: fixed;
		top: 0px;
		left: -100%;
		display: flex;
		align-items: center;
		height: 100vh;
		width: 100vw;
		opacity: 0;
		z-index: 999999;
		padding: 0 1.15rem;
		overflow: hidden;
		-webkit-transition: 0.5s cubic-bezier(0.76, 0, 0.24, 1);
		-o-transition: 0.5s cubic-bezier(0.76, 0, 0.24, 1);
		transition: 0.5s cubic-bezier(0.76, 0, 0.24, 1);
		background-color: var(--dark);
		pointer-events: none;
	}

	nav ul{
		flex-direction: column;
		align-items: baseline;
	}

	nav ul li a{
		font-size: 1.5rem;
		font-weight: 600;
		
	}

	.shownav{
		opacity: 1;
		pointer-events: auto;
		left: 0;
	}

	.top-bar-right{
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}

	.sub{
	  position: relative;
	  display: none;
	}

	.toggler{
		display: flex;
		justify-content: flex-end;
		height: 100%;
		width: 3rem;
		margin-left: 1rem;
		z-index: 9999999;
		font-size: 2rem;
		color: #ffffff;
		cursor: pointer;
		padding: 1rem 0;
	}
}

/* Header */
@media screen and (max-width: 64em) {
	.home-header .btn-link{
		z-index: 20;
	}
}


.home-header{
	padding-top: calc(1rem + 0.833vw);
	background-color: var(--dark);
	position: relative;
}

.home-header::before {
	position: absolute;
	content: '';
	z-index: 0;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	background: url(../images/slide1.jpg) no-repeat center;
	background-size: cover;
	pointer-events: none;
}


.header-text{
	padding-top: calc(1rem + 5.833vw);
	padding-bottom: calc(1rem + 2.500vw);
	position: relative;
	z-index: 1;
}

.header-text p{
	margin-bottom: calc(1rem + 2.500vw);
	position: relative;
	z-index: 1;
}

.main-carousel{
	width: 100%;
	height: calc(1rem + 35.625vw);
	border-radius: 15px;
	overflow: hidden;
}

.carousel-cell{
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-position: center;
	margin: 0px;
}

.carousel-cell img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bottom-bar{
	padding: calc(1rem + 2.917vw) 0;
	display: flex;
	justify-content: flex-end;
}

.slider-controls{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.current-number{
	display: inline-block;
	font-size: calc(1rem + 1.250vw);
	color: #fff;
}

.current-amount{
	color: #fff;
	padding-right: 0.75rem;
	font-weight: 600;
}

.progress-bar{
	display: inline-block;
	width: 6rem;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.18);
}

.progress{
	height: 1px;
	width: 0;
	background-color: #ffffff;
}

.next-button{
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	padding-left: .75rem;
	cursor: pointer;
}

/* Intro */

.home-services-list{
	display: flex;
	justify-content: flex-end;
}

.home-services-list ul{
	width: 100%;
	columns: 2;
	list-style: none;
	margin-top: -0.5rem;
}

.home-services-list ul li{
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--light1a);
}

.home-services-list ul li a{
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	font-size: calc(1rem + 0.208vw);
	font-weight: 600;
	color: var(--dark);

}

.home-services-list ul li a::after{
	content: '→';
	position: relative;
}

@media screen and (max-width: 40em) {
	.home-services-list ul{
		width: 100%;
		columns: 1;
		list-style: none;
		margin-top: 1rem;
	}
}

/* Why choose us */

.why-choose-us{
	background-color: var(--light1a);
}


.wcu-card{
	padding: calc(1rem + 0.833vw);
	background-color: #ffffff;
	border-radius: 1.25rem;
}

.wcu-card-one{
	margin-bottom: 1rem;
}
.wcu-card-two{
	margin-right: 0.5rem;
}
.wcu-card-three{
	margin-left: 0.5rem;
}

@media screen and (max-width: 64em) {
	.wcu-card-two{
		margin-right: 0;
		margin-bottom: 1rem;
	}
	.wcu-card-three{
		margin-left: 0;
	}
}

.wcu-card a{
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--accent);
}

.wcu-card i {
	color: var(--accent);
}

/* Contact banner */

.contact-banner{
	display: flex;
	justify-content: center;
	background-color: var(--dark);
	text-align: center;
}

.contact-banner .btn-link{
	padding: 0 0.5rem;
}

@media screen and (max-width: 40em) {
	.contact-banner a:first-of-type{
		padding-bottom: 1rem;
	}
}

/* Footer */

footer{
	background-color: var(--dark);
}

footer h3{
	position: relative;
}

footer h3::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: calc(-0.5rem + -0.275vw);
	width: 20%;
	height: 0.05rem;
	background-color: var(--accent);
}

footer p{
	opacity: 0.6;
	margin-bottom: initial;
}

footer i{
	text-decoration: none;
	color: var(--accent);
}

footer ul{
	list-style: none;
}

footer ul li{
	padding-bottom: 0.3rem;
}

footer ul li a{
	text-decoration: none;
	color: #ffffff;
	opacity: 0.6;
	font-weight: 500;
	font-size: 0.875rem;
}

footer ul li a:hover{
	opacity: 1;
}

.seo-bar{
	display: flex;
	justify-content: flex-end;
}

.footer-top{
	padding-bottom: 2rem;
}

.footer-bottom{
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom a{
	color: #ffffff;
	text-decoration: none;
	font-size: 0.875rem;
	opacity: 0.6;
}

/* Services Page */

main ol{
	counter-reset: my-counter;
	margin-bottom: calc(1rem + 0.417vw);
	columns: 2;
}

main ol li{
	font-size: 1rem;
	font-weight: 500;
	color: var(--dark);
	display: flex;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--dark);
	line-height: 180%;
	counter-increment: my-counter;
}

main ol li::before{
	content: ".0" counter(my-counter) " - ";
	color: var(--accent);
	margin-right: 0.25rem;
}

.op-card{
	background-color: var(--light1a);
	border-radius: 1rem;
}

.op-img-container{
	height: calc(1rem + 11vw);
}

.op-img-container img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 1rem 1rem 0 0;
}

@media screen and (max-width: 64em) {
	.op-card{
		margin-bottom: 1rem;
	}
	.op-img-container{
		display: none;
	}

	.op-img-container img{
		display: none;
	}
}

.op-content{
	padding: 3rem;
}

.op-icon{
	color: var(--accent);
	font-size: 2rem;
	display: flex;
	justify-content: flex-end;
}

.op .btn-link{
	margin-top: 1rem;
}

/* Testimonials */

blockquote{
	overflow: hidden;
	position: relative;
	background-color: var(--light1a);
	border-radius: 1rem;
	padding: 3rem;
	margin-bottom: 1rem;
}

blockquote .review-icon{
	position: absolute;
	right: -2%;
	bottom: -5%;
	font-size: 10rem;
	line-height: 0;
	color: var(--accent);
	opacity: 0.2;
}

blockquote p:last-of-type{
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--accent);
	margin-bottom: 0;
}