body {
	margin: 0;
	background: rgb(123,123,123);
	background: linear-gradient(180deg, rgba(123,123,123,1) 0%, rgba(239,239,239,1) 50%);
	font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
h1, p {
	margin: 0;
}
svg {
	display: block;
}
.set-width-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.5em;
}
.logo {
	width: 60%;
}
header {
	background-color: white;
	margin-top: 40px;
	position: relative;
	text-align: right;
	background-blend-mode: multiply;
	position: relative;
	overflow: hidden;
}

.tools {
	height: 110%;
	top: -5%;
	position: absolute;
	z-index: 1;
	left: 0;
}
.intro {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	padding: 30px 1.5em;
	width: 60%;
}
@media only screen and (max-width: 900px) {
	header {
		margin: 0 0 0 -1.5em;
		width: calc(100% + 3em);
	}
	.logo {
		width: 90%;
	}
	.tools {
  		display: none;
	}
	.intro {
		width: 100%;
	}

}
.intro h1 {
    font-size: 50px;
    
}
.intro-description {
    font-size: 20px;
    margin: 30px 0 5px;
}


.phone-wrap {
    margin-top: 1.7em;
    display: grid;
    justify-items: center;
}
.phone-icon {
    height: 43px;
    width: 43px;
}
.phone-icon svg {
	width: 100%;
	height: 100%;
}
.phone-text {
    font-size: 16px;
    font-weight: 100;
    margin: 0px 0 10px;
}
.phone-numbers-wrap {
	font-family: Arial;
	font-size: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    justify-content: center;
    gap: 0 40px;
}
.phone-number {
	text-decoration: none;
	color: black;
}

main {
	padding: 40px 0px;
}
.cards-wrap {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
	grid-gap: 40px;
}
.card {
	background-color: white;
}
.card img {
	width: 100%;
}
.card h1 {
    font-size: 30px;
    /*font-weight: 100;*/
}
.card h1,
.card p {
	margin: 10px;
}
.card p {
	font-size: 18px;
}
footer {
	text-align: center;
    color: white;
    padding: 20px 0;
    background-color: #7b7b7b;
}
footer a {
	text-decoration: none;
	color: inherit;
}