html, body {
	margin: 0;
	padding: 0;
	font-family: "proxima-nova", sans-serif;
	font-size: 19px;
	overflow-anchor: none;
	overflow-x: hidden;
	scrollbar-gutter: overlay;
}






/* For Webkit browsers (Chrome, Safari, Opera) */
.scrollable-element::-webkit-scrollbar {
  width: 12px; /* Set a width for vertical scrollbar */
  height: 12px; /* Set a height for horizontal scrollbar */
}

.scrollable-element::-webkit-scrollbar-track {
  background-color: transparent; /* Make the scrollbar track transparent */
}

.scrollable-element::-webkit-scrollbar-thumb {
  background-color: #888; /* Style the scrollbar thumb (draggable handle) */
  border-radius: 999px; /* Optional: adds rounded corners */
}

/* For Firefox */
.scrollable-element {
  scrollbar-width: thin; /* Make the scrollbar thinner */
  scrollbar-color: #888 transparent; /* Set thumb color first, then track color */
}







/* Color styles */
.blue-dark {
	color: #08466F;
}
.blue-light {
	color: #045A8C;
}
.orange-dark {
	color: #D06A28;
}
.orange-light {
	color: #EC8A33 !important;
}
.gray-dark {
	color: #6E757B;
}
.gray-light {
	color: #A8ACAF;
}
.gray-med {
	color: #898E92;
}
.off-white {
	color: #CEDAE2;
}







/* Fonts */
h1, h2, h3, h4, h5 {
	color: #08466F;
	letter-spacing: -1px;
}

h1 {
	font-size: 52px;
}

h2 {
	font-size: 36px;
	font-weight: 700;
}

h3 {
	font-size: 28px;
	font-weight: 600;
}
h4 {
	font-size: 24px;
	font-weight: 600;
}
.shadow {
	text-shadow: 2px 2px 4px #000000;
}




/* Buttons */
.btn-primary {
	background: #EC8A33;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 12px 24px;
	border: none;
	border-radius: 0;
	color: white;
	font-size: 17px;
	cursor: pointer;
	display: inline-block;
  	width: fit-content;

	/* size of the cuts */
	clip-path: polygon(
	0 0,
	calc(100% - 8px) 0,
	100% 8px,
	100% 100%,
	8px 100%,
	0 calc(100% - 8px)
	);
}
.btn-primary:hover {
	background: #D06A28;
}






/* Navigation */
.navbar {
	padding: 16px 48px;
	background-color: rgba(0, 0, 0, 0.3);
	max-width: 1920px;
	transition: background-color 0.2s ease;
}

.navbar.scrolled {
	background-color: rgba(0, 0, 0, 0.5);
}

.navbar-collapse {
	flex-grow: unset;
}

.navbar-brand img {
	height: 72px;
	width: auto;
}

.navbar-nav {
	margin-right: 20px;
}

.nav-link {
	display: block;
	font-size: 17px;
	color: #FFFFFF;
	margin-right: 20px;
}

.nav-link:hover {
	color: #FFC18B;
	text-decoration: underline;
	text-decoration-thickness: 6px;
	text-underline-offset: 14px;
}

.nav-active {
	text-decoration-color: #EC8A33 !important;
	text-decoration: underline;
	text-decoration-thickness: 6px;
	text-underline-offset: 14px;
}




/* Headers */

.hero h1 {
	color: #FFFFFF;
	margin-bottom: 30px;
}

.hero p {
	color: #FFFFFF;
	margin-bottom: 40px;
}

.v-parent {
	display: flex;
  	flex-direction: column;
}
.v-child {
	flex: 1;
  	display: flex;
  	flex-direction: column;
  	justify-content: center; /* vertical center */
}







/* Blocks */
.side-block {
	max-width: 620px;
}
.side-image {
	width: 650px;
	height: auto;
}

.hero-content {
	width: 540px;
	margin-left: 100px;
	padding-bottom: 60px;
}
.hero {
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
	background-position: center;
	max-width: 1920px;
	height: 800px;	
}
.hero-home {
	background-image: url("../img/hero-home.webp");
}
.hero-pm {
	background-image: url("../img/hero-pm.webp");
}
.hero-services {
	background-image: url("../img/hero-services.webp");
}
.hero-homeowners {
	background-image: url("../img/hero-homeowners.webp");
}
.hero-maintenance {
	background-image: url("../img/hero-maintenance.webp");
}
.hero-maintenance-home {
	background-image: url("../img/hero-maintenance.webp");
}
.hero-contact {
	background-image: url("../img/hero-contact.webp");
}
.hero-about {
	background-image: url("../img/hero-about.webp");
}
.mt160 {
	margin-top: 160px;
}
.mb160 {
	margin-bottom: 160px;
}
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 30px;
}



/* Built for Property Managers */
.built-for {
	margin-top: 160px;
}
.built-for ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1rem;
  height: 1rem;
  background: url("../icons/tick-03.svg") no-repeat center / contain;
}





/* What you can expect */
.bg-svg-top {
	margin-top: 160px;
	padding: 0;
}
.bg-svg-bottom {
	margin-bottom: 160px;
	margin-top: -2px;
}
.what-to-expect {
	padding: 20px 0;
	background-color: #F0F4F6;
	margin-top: -1px;
	text-align: center;
}
.what-to-expect .title {
	margin-bottom: 40px;
}
.what-to-expect .cards {
	padding: 10px;
}
.what-to-expect .cards h3 {
	margin: 18px 0;
}







/* Services we offer */
.we-offer .custom-images{
	margin-top: 50px;
}
.accordion-item, .accordion-collapse {
	border: none;
}
.accordion-button, .accordion-button:not(.collapsed) {
	background-color: #FFFFFF;
	border: none;
	box-shadow: none;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
	background-image: url("../icons/arrow-up.svg");
	background-size: 24px;
}

.we-offer button img {
	margin-right: 24px;
}

.we-offer .accordion-body {
	margin-left: 118px;
	padding: 0;
}

.custom-images {
  position: relative;
  min-height: 395px; /* adjust to your image height */
}

.custom-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.custom-image.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.custom-image img {
  width: 100%;
  height: auto;
  display: block;
}






/* Why Wolf */
.why-wolf {
	margin-top: -1px;
	text-align: center;
	padding: 20px 0;
	background-color: #F0F4F6;
}
.hero-title {
  position: relative;
  overflow: hidden;
}

#rotating-text {
  display: inline-block;
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}
#rotating-text.is-out {
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.98);
}
#rotating-text.is-in {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}








/* Testimonials */
.testimonial {
  transition: filter 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
  filter: blur(0px);
  opacity: 1;
  transform: translateY(0);
  position: relative;
  min-height: 260px;
}

.testimonial.is-changing {
  filter: blur(10px);
  opacity: 0.35;
  transform: translateY(8px);
}

.testimonial img,
.testimonial p,
.testimonial span {
  transition: inherit;
}

.testimonial p {
	font-size: 24px;
	font-weight: 600;
	font-style: italic;
}
.testimonial img {
	position: absolute;
	height: 60px;
	bottom: 0;
	right: 0;
}






/* Brands */
.brands {
	margin-top: 160px;
}
.brands .title {
	max-width: 680px;
	margin: 0 auto;
}
.brands,
.logos {
  position: relative;
  overflow: hidden;
  background: #fff;
}






/* left + right white fade */
.brands::before,
.brands::after,
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

.logos {
	margin-top: 20px;
}

.logo_items {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: scrollLogos 45s linear infinite;
}

.logo_items img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}







/* Optional: pause on hover */
.logos:hover .logo_items {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}







/* Service Area Map */
.service-area-map {
	margin-top: 160px;
	height: 800px;
	background-color: #B8B8B8;
	padding: 0;
}

.service-area-map li {
	margin-bottom: 10px;
}

.service-area-map ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1rem;
  height: 1rem;
  background: url("../icons/tick-03.svg") no-repeat center / contain;
}

.service-area-map .map-wrap {
  position: relative;
}

.service-area-map #map {
  width: 100%;
  height: 800px;
}

.service-area-map .left-panel {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 680px;
	height: 100%;
	padding: 24px;
	background-image: url("../img/map-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
	background-position: left top;
}

.service-area-map .left-panel div {
	margin-left: 30%;
	margin-top: 120px;
	max-width: 360px;
}







/* Footer CTA Block */
.footer-cta { 
	background-image: url("../img/footer-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
	background-position: center;
	padding: 200px 0 260px 0;
	text-align: center;
}
.call-cta {
	display: block;
	margin: 40px 0;
}
.footer-cta h2 {
	color: #FFFFFF;
	display: inline-block;
}
.footer-cta h3 {
	color: #FFFFFF;
	display: inline-block;
}







/* Footer */
.footer-top {
	margin-top: -100px;
	padding: 0;
}

.footer {
	background-color: #222222;
	color: #FFFFFF;
	padding: 40px 0 40px 0;
}

.footer .logo-white {
	height: 72px;
	margin-bottom: 50px;
}

.footer-left {
	width: 33%;
}
.footer-left img {
	margin-bottom: 30px;
}
.footer-left p, .footer-center a{
	font-size: 16px;
	font-weight: 200;
	margin: 0 10px;
}
.footer a {
	color: #FFFFFF;
	text-decoration: none;
}
.footer a:hover {
	color: #FFC18B;
}

.footer-center {
	height: 100%;
	text-align: center;
}
.footer-center p {
	margin-bottom: 30px;
}
.footer-right{
	width: 33%;
	text-align: right;
}
.footer .footer-center ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer ul li {
	display: inline-block;
}
.footer-right .cta {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	margin-bottom: 62px;
}

.footer-right .cta img {
	display: inline-block;
	margin-right: 16px;
}
.footer-right .cta div {
	display: block;
}
.footer-right p, .footer-right a {
	margin: 0;
}
.footer-right p {
	font-size: 17px;
}
.footer-right .cta a {
	font-weight: 700;
	font-size: 20px;
}
.social {
	margin-bottom: 28px;
}
.social a {
	margin-left: 12px;
}
.social img {
	height: 24px;
	width: auto;
}





/* Solution */
.solution {
	margin-top: 160px;
}
.solution .left-block, .solution .right-block {
	padding: 40px 20px 20px 40px;
}
.solution .left-block {
	background-color: #FAF0E9;
	background-image: url("../img/solution-arrow.svg");
	background-repeat: no-repeat;
	background-size: fit;
	background-attachment: scroll;
	background-position: right center;
}
.solution .right-block {
	background-color: #E6EEF3;
	position: relative;
}
.solution .right-block .call-out {
	position: absolute;
	top: -40px;
	right: 20px;
}
.solution h2 {
	margin-bottom: 20px;
}
.solution ul, .included ul {
	list-style: none;
  	padding-left: 0;
}
.solution ul li, .included ul li{
	position: relative;
	padding-left: 28px;
	margin-bottom: 8px;
}
.solution ul li::before, .included ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("../icons/cancel-02.svg") no-repeat top 2px center / contain;
}
.solution .left-block ul li::before, .included .left-block ul li::before{
	background: url("../icons/cancel-02.svg") no-repeat top 2px center / contain;
}
.solution .right-block ul li::before, .included .right-block ul li::before{
	background: url("../icons/tick-03.svg") no-repeat top 2px center / contain;
}

.solution li {
	margin-bottom: 12px;
}






/* Scale */
.scale {
	margin-top: -98px;
	background-image: url("../img/scalable-support.webp");
	background-repeat: no-repeat;
	background-size: fit;
	background-attachment: scroll;
	background-position: right center;
	padding: 300px 0 300px 0;
	text-align: center;
	color: #FFFFFF;
}
.scale h2 {
	color: #FFFFFF;
	margin-bottom: 30px;
}
.scale p {
	max-width: 490px;
	margin: 0 auto;
}
.pm-why {
	margin-top: -100px;
}






/* Icluded Title */
.included {
	margin: 160px auto 80px auto;
}
.included .title h2 {
	margin-bottom: 40px;
}
.included .title {
	max-width: 700px;
	margin: 0 auto 40px auto;
	text-align: center;
}
.included .blocks {
	padding: 40px;
}
.included .blocks h3 {
	text-align: center;
	margin-bottom: 30px;
}
.included .left-block {
	background-color: #E6EEF3;
}
.included .right-block {
	background-color: #FAF0E9;
}





/* Maintenance */
.we-offer {
	padding: 20px 0;
	margin-top: 160px;
	text-align: center;
}
.we-offer .title {
	margin: 0 auto 40px auto;
	max-width: 740px;
	text-align: center;
}
.we-offer .cards {
	padding: 10px;
}
.we-offer .cards h3 {
	margin: 18px 0;
}




/* About us */
.hero-about {
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
	background-position: center;
	max-width: 1920px;
	height: 600px;	
}
.hero-content-about {
	text-align: center;
}
.about-block {
	margin-top: 160px;
}
.about-block-end {
	margin-top: 160px;
	margin-bottom: 160px;
}


/* RESPONSIVE */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/* All */

.navbar-toggler {
    border: none;
    background: transparent !important;
    width: 42px;
    height: 42px;
    overflow: visible;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFF;
    margin: 6px 0;
    transition: all 0.2s ease;
    transform-origin: center;
}

.navbar-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar:has(.navbar-collapse.collapsing),
.navbar:has(.navbar-collapse.show) {
    background-color: rgba(0, 0, 0, 0.8);
    padding-bottom: 20px;
}

/* Large */
@media screen and (max-width: 1200px) {
	.navbar {
		padding-right: 0px;
	}
	.nav-link {
		margin-right: 0;
	}
	.navbar-toggler:focus, .navbar-toggler:focus-visible {
		border: none;
		box-shadow: none;
	}
	.navbar-nav {
		text-align: center;
		margin: 16px auto 0 auto;
	}
	.navbar .btn {
		margin: 12px auto;
		display: block;
	}
}


/* Medium */
@media screen and (max-width: 992px) {

}



/* Small */
@media screen and (max-width: 768px) {
	.navbar {
		padding: 6px 12px;
	}
	.navbar-brand img {
		height: 48px;
	}
}


/* Extra Small */
@media screen and (max-width: 576px) {


	/* Fonts */
	body {
		font-size: 17px;
	}

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 24px;
		font-weight: 700;
	}

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


	/* Global */
	.hero-content {
		width: 100%;
		margin: 0;
		padding: 40px 20px 20px 20px;
		text-align: center;
	}

	.hero-content a {
		display: block;
		margin: 20px auto 0 auto;
	}

	.hero {
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: scroll;
		background-position: center;
		max-width: 100%;
		height: 520px;	
	}
	.side-image {
		max-width: 100%;
		margin-bottom: 20px;
	}

	/* Heros */
	.hero-home {
		background-image: url("../img/mobile/hero-home.webp");
	}

	.hero-pm {
		background-image: url("../img/mobile/hero-pm.webp");
	}

	.hero-services {
		background-image: url("../img/mobile/hero-services.webp");
	}

	.hero-about {
		background-image: url("../img/mobile/hero-about-us.webp");
		height: 360px;
	}
	.hero-about .hero-content {
		margin-top: 40px;
	}
	.hero-homeowners {
		background-image: url("../img/mobile/hero-homeowners.webp");
		height: 360px;
	}
	.hero-maintenance {
		background-image: url("../img/mobile/hero-maintenance.webp");
		height: 360px;
	}
	.hero-maintenance-home {
		background-image: url("../img/mobile/hero-maintenance-home.webp");
		height: 360px;
	}
	.hero-contact {
		background-image: url("../img/mobile/hero-contact.webp");
		height: 360px;
	}
	.footer-home {
		background-image: url("../img/mobile/footer-home.webp");
	}

	/* Homepage */
	.built-for {
		margin: 40px auto 36px auto;
	}
	.bg-svg-top {
		margin-top: 40px;
	}
	.bg-svg-bottom {
		margin-bottom: 40px;
	}
	.what-to-expect .title {
		margin: 20px auto;
	}
	.what-to-expect .carousel-item img {
		width: 86px;
		height: auto;
	}
	.what-to-expect .carousel-item p {
		max-width: 260px;
		margin: 0 auto;
	}
	.what-to-expect .carousel-indicators [data-bs-target] {
	  width: 10px;
	  height: 10px;
	  background-color: #D9D9D9;
	}
	.carousel-indicators .active {
		background-color: #EC8A33 !important;
	}
	.we-offer {
		padding: 0 16px;
		margin-top: 80px;
	}
	.custom-images {
		max-width: 100%;
		min-height: 330px;
	}
	.we-offer .custom-images {
		margin-top: 0;
	}
	.accordion-button img {
		width: 48px;
		height: auto;
		margin-right: 12px;
	}
	.accordion-body {
		padding-top: 0;
		padding-bottom: 0;
	}
	#rotating-text {
		max-width: 360px;
	}
	.testomonials {
		margin-top: 80px;
	}
	.testimonial {
		margin-top: 20px;
		padding: 0 20px;
		min-height: 300px;
	}
	.testimonial div {
		position: relative;
	}
	.testimonial p {
		font-size: 20px;
		line-height: 140%;
	}
	.testimonial img {
		position: relative;
		height: 36px;
		margin-left: auto;

	}
	.testimonials {
		margin-top: 60px;
	}
	.testimonials .actions {
		display: block;
		margin: 0 auto;
		text-align: center !important;
	}
	.testimonial span {
		line-height: 100%;
	}

	.brands {
		margin-top: 80px;
	}
	.service-area-map {
		margin-top: 60px;
		padding: 140px 0 100px 0;
		height: unset;
		background-attachment: scroll;
		color: #FFFFFF;

		background-image:
			url("../img/mobile/shape-top.svg"),
			url("../img/mobile/shape-bottom.svg"),
			linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
			url("../img/mobile/map.webp");

		background-position:
			top center,
			bottom -5px center,
			center center,
			center center;

		background-repeat:
			no-repeat,
			no-repeat,
			no-repeat,
			no-repeat;

		background-size:
			cover,
			cover,
			500px,
			500px;
	}
	.service-area-map h2 {
		color: #FFFFFF;
	}
	.service-area-map ul {
		margin: 20px 0 30px 25%;
	}
	.service-area-map ul li:before {
		background: url("../icons/tick-03-white.svg") no-repeat top 2px center / contain;
	}

	.footer-cta {
		padding: 140px 0 180px;
		margin-top: 80px;
	}
	.footer-cta img {
		display: block;
		margin: 12px auto;
	}
	.footer {
		text-align: center;
	}
	.footer .locations {
		font-weight: 600;
		margin: 0 20px 30px 20px;
	}
	.footer .cta {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		margin: 0 auto 30px auto;
	}

	.footer .cta img {
		display: inline-block;
		margin-right: 16px;
	}
	.footer .cta div {
		display: block;
	}
	.footer p, .footer-right a {
		margin: 0;
	}
	.footer p {
		font-size: 17px;
	}
	.footer .cta a {
		font-weight: 700;
		font-size: 20px;
	}
	.footer .btn {
		margin-bottom: 30px;
	}
	.footer .social {
		margin-bottom: 40px;
	}
	.footer .social ul {
		list-style: none;
		margin-left: 0;
	}
	.footer ul li {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	.footer ul li:before {
		background-image: none;
	}
	.social a {
		margin: 0;
		padding: 0 12px;
	}
	.social img {
		width: 36px;
		height: auto;
	}
	.legal-links {
		margin-bottom: 40px;
	}
	.legal-links a {
		display: block;
		width: 100%;
	}
	.legal-links li {
		display: block !important;
		margin-bottom: 12px !important;
	}
	.footer .disclaimer p {
		font-size: 15px !important;
		text-align: left;
	}
	.footer .logo-white {
		height: 60px;
		width: auto;
	}

	/* Property Managers */
	.solution {
		margin-top: 40px;
	}
	.solution .left-block {
    background-color: #FAF0E9;
    background-image:
			url("../img/mobile/shape-top.svg"),
    	url(../img/mobile/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    background-position:
			top center,
			bottom center;
    padding: 60px 20px;
  }
  .solution .right-block {
  	background-image:
			url("../img/mobile/shape-bottom.svg");
		background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    padding: 40px 20px 80px 20px;
  }
  .solution .call-out {
  	top: -60px !important;
    right: 20px;
  }
  .solution .call-out img {
  	width: 64px;
  	height: auto;
  }
  .solution h2 {
  	text-align: center;
  }
  .what-to-expect {
  	background-color: #FFFFFF;
  	margin-top: 60px;
  }
  .scale {
  	margin-top: -47px;
  }
  .scale {
  	background-size: 1100px;
  }
  .pm-why {
  	padding: 0;
  }
  .why-wolf {
  	padding: 40px 0 30px 0;
  }
  .about-block {
  	margin-top: 60px;
  }
  .about-block-end {
  	margin-top: 60px;
  	margin-bottom: 60px;
  }
  .included {
  	margin-top: 60px;
  }
  .included .title {
  	margin-bottom: 0px;
  }
  .included .title h2 {
  	margin-bottom: 12px;
  }
  .included .blocks h3 {
  	margin-bottom: 12px;
  }
  .contact {
  	margin-top: 30px;
  }
  .contact hr {
  	margin: 40px 40px 20px 40px;
  }
}







