html,body,div,p,h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,form,fieldset,caption,
table,tr,td,th,address,blockquote,img {
	margin:0;
	padding:0;
}

img, fieldset, object {
	border:none;
}

*, *:after, *:before {
	flex:1 0 auto; /* safari bugfix */
	box-sizing:border-box;
}

button, label {
	cursor:pointer;
}

html, body {
	height:100%;
}

ul, li, a {
    list-style: none;
    text-decoration: none;
    color: inherit;
}

p {
    padding-bottom: 0.5rem;
}

body, button, input, table, textarea, select {
	font:normal 1rem/1.5 "Poppins",arial,helvetica,sans-serif;
}

button {
    background-color: darkorchid;
    border: none;
    color: white;
    border-radius: 0.5rem;
    padding: 0.2rem 1rem;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

button:hover, a:hover {
    text-decoration: underline;
}

.pagewrapper {
    max-width: 1200px;
    margin: auto;
}

#services h2, #process h2, #contact h2 {
    text-align: center;
    padding-top: 3.5rem;
}

#services h2 + p, #process h2 + p, #contact h2 + p {
    text-align: center;
    padding: 2rem 0;
}

#services .grid {
    display: grid;
    padding-top: 1rem;    
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    text-align: center;
    
    justify-items: center;
}

#services .grid .box {
    max-width: 16rem;
    border-radius: 2rem;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2),
    -2px -2px 2px 1px rgba(0, 0, 0, 0.2);
}

#services .grid h3 {
    text-transform: uppercase;
    background-color: rgb(174, 116, 202);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    padding: 0.5rem;
}

#services ul {
    padding: 1rem;
}

#services button {
    margin-bottom: 1rem;
}

#services .grid h3 + p {
    font-size: 2rem;
    padding-top: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(240, 248, 255, 0.267);
    height: 5rem;
    padding-left: 1rem;
    position: sticky;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2)
}

.title {
    display: block;
    text-transform: uppercase;
}

header img {
    object-fit: contain;
    height: inherit;
}

header ul {
    display: flex;
    text-transform: uppercase;
    flex-wrap: wrap;
    background-color: rgba(240, 248, 255, 0.667);
    margin-left: -1rem;
    padding-left: 1rem;
    backdrop-filter: blur(10px);
}

header a {
    font-weight: 600;
}

header a:hover {
    text-decoration-line: underline;
    text-decoration-thickness: 0.2rem;
}

#hero {
    background-image: url("background.png");
    height: 25rem;
    padding: 4rem 0 0 4rem;
}

#hero .box {
    border: 1px solid white;
    padding: 1.5rem;
    max-width: 25rem;
    text-shadow: -0.25em -0.125em 0.5em #FFF,
		0.25em -0.125em 0.5em #FFF,
		0.25em 0.125em 0.5em #FFF,
		-0.25em 0.125em 0.5em #FFF;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    background-color: rgba(240, 248, 255, 0.267);
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2)
}

#hero .box h2 + p {
    font-style: italic;
}

#process .grid {
    display: grid;
    padding-top: 1rem;    
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    text-align: center;
    justify-items: center;
}

.steps {
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2),
    -2px 0px 2px 1px rgba(0, 0, 0, 0.2);
    width: 10rem;
    border-radius: 2rem;
    background: linear-gradient(hsla(0, 87%, 72%, 1), hsla(263, 59%, 52%, 0.53));
}

.steps h3 {
    background: hsla(263, 59%, 52%, 1);
    color: whitesmoke;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.steps p {
    padding: 1rem;
    font-weight: 600;
}

#contact .box {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

#contact .details p {
    padding: 1rem;
}

.map {
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    #process .grid, #services .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    #process .grid, #services .grid {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 3rem;
    }
    #hero {
        padding: 3rem 0 0 1rem;
    }

}