@charset "UTF-8";

/* 
Theme Name: United Carpet Cleaning
Theme URI:
Author:
Author URI: 
Description:
Version: 1.0
*/

/* Colors
------------------------------ */

:root {
    --main-color: #0D3B66;
    --light-color: #f5f7f9;
    --sub-color: #808b98;
    --highlight: #F95738;
    --yellow: #fbd92a;
    --red: #E41115;
    --green: #54bf52;
    --google: #db4437;
    --main-color-rgb: 13, 59, 102;
    --light-color-rgb: 245, 247, 249;
    --sub-color-rgb: 128, 139, 152;
    --highlight-rgb: 250, 88, 56;
    --red-rgb: 228, 17, 21;
    --green-rgb: 84, 191, 82;
}

/* Global
------------------------------ */

html, body {
    position: relative;
    margin: 0;
	padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
	font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    color: var(--main-color);
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    display: block;
    text-decoration: none;
}
label {
    position: relative;
}
a {
    cursor: pointer;
    text-decoration: none;
}
p {
    line-height: 1.625em;
    color: var(--sub-color);
}
button {
    font-family: 'Montserrat';
}
.container {
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: 1500px;
    box-sizing: border-box;
}
.section-container {
    position: relative;
    padding: 100px 150px;
    box-sizing: border-box;
}
.text-highlight {
    color: var(--highlight);
}
.split-container {
    position: relative;
    display: grid;
    grid-template-columns: auto 375px;
    grid-column-gap: 30px;
}
.title-part {
    position: relative;
    margin-bottom: 50px;
}
.title-part h2 {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--highlight);
    font-weight: 700;
}
.title-part h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 400;
}
.input-container {
    position: relative;
    width: 100%;
}

/* CTA Buttons styling
------------------------------ */

.cta-button {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    border-radius: 12px;
    line-height: 58px;
    border: 1px solid;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}
.cta-button span {
    font-weight: 400;
}
.cta-button.highlight {
    border-color: var(--highlight);
    color: var(--highlight);
    background-color: unset;
}
.cta-button.highlight:hover {
    color: #fff;
    background-color: var(--highlight);
}
.cta-button.highlight-filled {
    border-color: var(--highlight);
    color: #fff;
    background-color: var(--highlight);
}
.cta-button.highlight-filled:hover {
    border-color: #fff;
    color: var(--highlight);
    background-color: #fff;
}
.cta-button.white {
    border-color: #fff;
    color: #fff;
}
.cta-button.white:hover {
    color: var(--highlight);
    border-color: #fff;
    background-color: #fff;
}

/* Input styling
------------------------------ */

.input-container input[type="text"], 
.input-container textarea {
    width: 100%;
    padding: 17.75px;
    margin-top: 0;
    font-size: 18px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid;
    border-radius: 12px;
    box-sizing: border-box;
}
.input-container label {
    position: absolute;
    top: 0;
    left: 18px;
    font-size: 18px;
    line-height: 60px;
    color: var(--highlight);
    pointer-events: none;
}
.input-container.active label {
    display: none;
}
.input-container textarea {
    resize: none;
    height: 100%;
}

/* Input Light */
.input-container.light input[type="text"],
.input-container.light textarea {
    border-color: var(--light-color);
    color: var(--sub-color);
    background-color: var(--light-color);
}
.input-container.light label {
    color: var(--sub-color);
}
.input-container.light input[type="text"]:focus,
.input-container.light textarea:focus {
    border-color: var(--highlight);
    color: var(--main-color);
    background-color: #fff;
}
.input-container.light.validInput input[type="text"],
.input-container.light.validInput textarea {
    border-color: rgba(var(--green-rgb), .1);
    background-color: rgba(var(--green-rgb), .1);
}
.input-container.light.validInput input[type="text"]:focus,
.input-container.light.validInput textarea:focus {
    border-color: var(--green);
    background-color: #fff;
}
.input-container.light.invalidInput input[type="text"],
.input-container.light.invalidInput textarea {
    border-color: rgba(var(--red-rgb), .1);
    background-color: rgba(var(--red-rgb), .1);
}
.input-container.light.invalidInput input[type="text"]:focus,
.input-container.light.invalidInput textarea:focus {
    border-color: var(--red);
    background-color: #fff;
}

/* Content
------------------------------ */

.section-content {
    position: relative;
    min-height: 500px;
}
.section-content hr {
    border-color: var(--sub-color);
}
.section-content blockquote {
    margin: 0;
    padding: 30px;
    border-left: 2px solid var(--highlight);
    background-color: var(--light-color);
}
.section-content blockquote :last-child {
    margin-bottom: 0;
}
.section-content ul {
    list-style: none;
}
.section-content li {
    position: relative;
	line-height: 1.625em;
}
.section-content a {
    font-weight: 700;
    color: var(--highlight);
}
.section-content ul li::before {
    position: absolute;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    left: -31px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--highlight);
}

/* Logo
------------------------------ */

.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}
.logo-top {
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
    color: var(--main-color);
}
.logo-bottom {
    margin-top: -7px;
    color: var(--highlight);
}

/* Header
------------------------------ */

.header {
    position: relative;
    z-index: 4;
}
.header .container {
    display: flex;
    align-items: center;
    height: 100px;
    /* max-width: 1700px; */
    padding: 0 30px;
}
.header-logo {
    color: #fff;
}
.header-contact {
    line-height: 48px;
}
.header-mobile {
    display: none;
    font-size: 24px;
    margin-left: auto;
    margin-right: 30px;
    cursor: pointer;
    color: #fff;
}
.mobile-phone {
    display: none;
    font-size: 24px;
    color: var(--main-color);
}
.mobile-phone:hover {
    color: var(--highlight);
}
.header-menu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
    grid-template-columns: repeat( auto-fit, 1fr );
}
.header-link {
    margin-left: 20px;
    vertical-align: middle;
}
.header-link a {
    display: inline-block;
    color: #fff;
}
.header-link a:hover{
    color: var(--main-color);
}
.phone-text {
    font-size: 17px;
    font-style: italic;
    color: var(--main-color);
}
.phone-number {
    font-size: 21px;
    font-weight: 700;
    color: #FFF;
}

/* Mobile menu
------------------------------ */

.mobile-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
}
.mobile-navigation {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: var(--main-color);
}
.mobile-container {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;;
}
.mobile-exit {
    display: flex;
    align-items: center;
    height: 64px;
}
.mobile-exit i {
    margin-left: 30px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}
.mobile-exit i:hover {
    color: var(--highlight);
}
.mobile-menu {
    position: relative;
    height: 100%;
    overflow: auto;
    padding: 15px;
    box-sizing: border-box;
}
.mobile-menu ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-menu li {
    display: flex;
    justify-content: center;
}
.mobile-menu li a {
    display: inline-block;
    padding: 15px;
    margin: auto;
    font-size: 24px;
    /* border-right: 2px solid var(--highlight); */
    box-sizing: border-box;
    /* font-weight: 700; */
    color: #fff;
    /* background-color: var(--light-color); */
}
.mobile-menu li a:hover {
    color: var(--highlight);
}
.mobile-contact {
    padding: 30px;
    box-sizing: border-box;
}
.mobile-contact .cta-button {
    width: 100%;
    margin: auto;
    text-align: center;
    box-sizing: border-box;
}

/* Active Menu */
.mobile-overlay.active {
    display: unset;
}

/* Hello
------------------------------ */

.hello {
    position: relative;
    padding-bottom: 100px;
    /* background-color: var(--main-color); */
}
.hello .section-container {
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 750px;
    /* overflow: hidden; */
    background-color: var(--main-color);
}
.hello-content {
    position: relative;
    height: 100%;
    max-width: 650px;
    z-index: 3;
}
.hello-content h1 {
    margin: 0;
    margin-bottom: 30px;
    font-size: 50px;
    color: #fff;
}
.hello-content p {
    position: relative;
    max-width: 400px;
    margin: 0;
    margin-bottom: 40px;
    padding-left: 30px;
    color: #fff;
}
.hello-content p::before {
    position: absolute;
    content: " ";
    height: 100%;
    left: 0;
    border-left: 2px solid var(--highlight);
}
.hello-background {
    position: absolute;
    top: -100px;
    right: 0;
    height: calc(100% + 100px);
    width: 60%;
    background-color: var(--highlight);
}
.hello-image {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.hello-image::before {
    position: absolute;
    content: " ";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgb(var(--main-color-rgb));
    background: -moz-linear-gradient(90deg, rgba(var(--main-color-rgb) ,1) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(var(--main-color-rgb),1) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(var(--main-color-rgb),1) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#ffffff",GradientType=1); 
}

/* Mini Hello
------------------------------ */

.mini-hello {
    position: relative;
    padding-bottom: 100px;
}
.mini-hello .section-container {
    background-color: var(--main-color);
}

/* Services
------------------------------ */

.services {
    position: relative;
    background-color: var(--light-color) ;
}
.services .title-part {
    text-align: center;
}
.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 30px;
}
.service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    background-color: #fff;
}
.service-image {
    position: relative;
    padding-top: calc((2/3) * 100%);
    background-color: var(--sub-color);
}
.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.service-content {
    position: relative;
    display: flex;
    height: 100%;
    padding: 30px;
    flex-direction: column;
    box-sizing: border-box;
}
.service-item h3 {
    margin: 0;
    margin-bottom: 10px;
}
.service-item p {
    margin: 0;
    margin-bottom: 30px;
}
.service-item .section-cta {
    margin-top: auto;
}

/* About Home
------------------------------ */
.about {
    position: relative;
}
.about .section-container {
    /* padding-top: 0; */
}
.about .title-part {
    text-align: center;
}
.why-container {
    position: relative;
    display: grid;
    grid-row-gap: 15px;
}
.why-item {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--light-color);
}
.why-icon {
    position: relative;
    height: 60px;
    width: 60px;
    flex-shrink: 0;
    margin-right: 15px;
    background-color: var(--highlight);
}
.why-icon i {
    width: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    color: #fff;
}
.why-text {
    font-size: 16px;
    font-weight: 700;
}

/* Safety
------------------------------ */

.safety {
    position: relative;
    background-color: var(--highlight);
}
.safety .section-container {
    padding: 72px 100px;
    text-align: center;
}
.safety-text {
    margin: 0;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
}
.safety-text strong {
    font-weight: 700;
}

/* Location Home
------------------------------ */

.location {
    position: relative;
}
.location .section-container {
    /* padding-top: 0; */
}
.location .title-part {
    text-align: center;
}
.location-container {
    position: relative;
    display: grid;
    grid-template-columns: 275px auto;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    min-height: 550px;
}
.location-info {
    position: relative;
}
.location-title {
    margin: 0;
    margin-bottom: 30px;
}
.info-block {
    margin-bottom: 30px;
}
.info-block:last-child {
    margin-bottom: 0;
}
.info-block p {
    margin: 0;
}
.info-block a {
    font-weight: 400;
    color: var(--highlight);
}
.info-title {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--main-color);
}
.info-zips {
	line-height: 1.625em;
    color: var(--sub-color);
}
.location-map {
    position: relative;
    background-color: var(--light-color);
}
.location-map iframe {
    height: 100% !important;
    width: 100% !important;
}
.location-map::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


/* Reviews Carousel
------------------------------ */

.reviews-carousel {
    position: relative;
    background-color: var(--highlight);
}
.reviews-carousel .title-part {
    text-align: center;
}
.reviews-carousel .title-part h2 {
    color: var(--main-color);
}
.reviews-carousel .title-part h3 {
    color: #fff;
}
.reviews-carousel .reviews-container {
    position: relative;
    display: grid;
    grid-template-columns: 60px auto 60px;
    column-gap: 30px;
}
.reviews-carousel .review {
    width: 100%;
    padding: 0;
    margin-top: 0;
    background-color: unset;
}
.reviews-carousel .review-quote {
    display: none;
}
.reviews-carousel .review-stars {
    text-align: center;
}
.reviews-carousel .review p {
    text-align: center;
    color: #fff;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}
.reviews-carousel .review-stars i {
    font-size: 24px;
}
.reviews-carousel .review-info {
    margin: 0;
    padding: 0;
    flex-direction: column;
    justify-content: center;
}
.reviews-carousel .review-icon {
    margin-right: 0;
    margin-bottom: 15px;
}
.reviews-carousel .review-title {
    text-align: center;
    color: var(--main-color);
}
.reviews-carousel .review-name {
    font-size: 18px;
    color: #fff;
}
.button-container {
    display: flex;
    align-items: center;
}
.reviews-button {
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.reviews-button i {
    line-height: 60px;
    font-size: 32px;
    color: #fff;
}

/* FAQs
------------------------------ */

.faqs {
    position: relative;
    background-color: var(--light-color);
}
.faqs .section-container {
    /* padding-top: 0; */
}
.faqs .title-part {
    text-align: center;
}
.faqs-container {
    position: relative;
    display: grid;
    grid-row-gap: 30px;
}
.faq-item {
    position: relative;
    overflow: hidden;
    background-color: var(--light-color);
    background-color: #fff;
}
.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
}
.faq-item.active .faq-question {
    color: #fff;
    background-color: var(--highlight);
}
.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}
.faq-button {
    position: relative;
    /* border: 2px solid var(--main-color); */
    margin-left: 30px;
    color: var(--main-color);
    cursor: pointer;
}
.faq-button:hover {
    /* color: #fff; */
    /* background-color: var(--main-color); */
}
.faq-button::before {
    position: relative;
    content: "\f067";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
    font-size: 16px;
    text-align: center;
}
.faq-item.active .faq-button::before {
    content: "\f068";
    color: #fff;
}
.faq-answer {
    position: relative;
    display: none;
    padding: 30px;
    /* padding-top: 0; */
}
.faq-answer p {
    margin: 0;
}

/* Page Content
------------------------------ */

.page-content {
    position: relative;
}
.page-content .section-content {
    margin: auto;
    max-width: 840px;
}

/* Contact Page
------------------------------ */

.contact {
    position: relative;
}
.contact form {
    display: flex;
    height: 100%;
    flex-flow: column;
}
.contact .form-inputs {
    display: flex;
    align-content: baseline;
    flex-wrap: wrap;
    flex-grow: 1;
    margin-bottom: 30px;
}
.contact form .section-cta {
    /* margin-top: 15px; */
}
.contact-split {
    display: grid;
    grid-template-columns: 275px auto;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
}
.contact .input-container {
    max-height: 60px;
    width: 100%;
    margin-bottom: 15px;
    flex-grow: 0;
}
#contact-email, #contact-phone {
    width: calc(50% - 7.5px);
}
#contact-email {
    margin-left: 15px;
}
#contact-message {
    margin-bottom: 0;
    max-height: unset;
    height: 225px;
}
#subject-field {
    display: none;
}

/* Posts
------------------------------ */

.posts {
    position: relative;
}
.posts-grid {
    position: relative;
    display: grid;
    margin: auto;
    max-width: 840px;
    grid-row-gap: 30px;
}
.posts-item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.posts-image {
    position: relative;
    padding-bottom: calc(100% * (2/3));
    overflow: hidden;
    background-color: var(--light-color);
}
.posts-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.posts-container {
    position: relative;
}
.posts-title {
    display: block;
}
.posts-title a {
    text-decoration: none;
    color: var(--main-color);
}
.posts-title a:hover {
    color: var(--highlight);
}
.posts-date {
    font-weight: 700;
    color: var(--main-color);
}
.posts-navigation {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: auto;
    margin-top: 50px;
    max-width: 840px;
}
.posts-nav a {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    line-height: 58px;
    border: 1px solid var(--highlight);
    border-radius: 12px;
    font-weight: 700;
    color: var(--highlight);
}
.posts-nav a:hover {
    color: #fff;
    background-color: var(--highlight);
}

/* Article
------------------------------ */

.article {
    position: relative;
}
.article-main {
    margin: auto;
    max-width: 840px;
}
.article-title {
	
}
.article-image img {
	display: block;
    height: 100%;
    width: 100%;
}
.article-categories a {
    color: var(--highlight);
}

/* Footer
------------------------------ */

.footer {
    position: relative;
    background-color: var(--main-color);
    min-height: 500px;
}
.footer p {
    color: var(--sub-color);
}
.footer .section-container {
    padding-bottom: 0;
}
.footer-items {
    position: relative;
    display: grid;
    padding-bottom: 100px;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(var(--sub-color-rgb), 0.5);
}
.footer-title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.footer-block {
    padding: 30px;
    background-color: rgba(var(--sub-color-rgb), .1);
}
.footer-block p a {
    font-weight: 400;
    color: var(--highlight);
}
.footer-block p a:hover {
    color: #fff;
}
.footer-list {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-list li {
    margin-bottom: 5px;
}
.footer-list li:last-child {
    margin-bottom: 0;
}
.footer-list a {
    color: var(--sub-color);
}
.footer-list a:hover {
    color: var(--highlight);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    font-size: 16px;
}
.footer-bottom p {
    margin: 0;
}
#footer-copyright {
    color: #fff;
}

/* 404
------------------------------ */

.not-found a {
    color: var(--highlight);
}

/* Home Reviews
------------------------------ */

.home-reviews {
    position: relative;
    background-color: var(--light);
}
.home-reviews .title-part {
    text-align: center;
}
.reviews-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
    column-gap: 30px;
}
.review {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px; 
    margin-top: 30px;
    background-color: var(--light-color);
}
.review-quote {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    background-color: var(--highlight);
}
.review p {
    margin: 0;
    margin-bottom: 25px;
    font-size: var(--font-sm);
}
.reviews-grid .review:last-child {
    display: none;
}
.review-info {
    position: relative;
    display: flex;
    margin-top: auto;
    margin-left: -30px;
    margin-right: -30px;
    padding: 30px 30px 0px 30px;
    align-items: center;
    border-top: 1px solid var(--light-border);
}
.review-icon {
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
    height: 50px;
    width: 50px;
    border-radius: 100%;
}
.review-icon::before {
    position: absolute;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    color: #fff;
}
.review-icon.google {
    background-color: var(--google);
}
.review-icon.google::before {
    content: "\f1a0";
}
.review-name {
    margin-bottom: 3px;
    font-size: 16px;
    color: var(--main-color);
}
.review-title {
    font-size: 14px;
    color: var(--sub-color);
}
.review-stars {
    margin-bottom: 15px;
}
.review-stars i {
    color: var(--yellow);
}

/* Media Queries
------------------------------ */

@media screen and (max-width: 1250px) {
    .section-container {
        padding: 100px;
    }
}

@media screen and (max-width: 1050px) {
    .section-container {
        padding: 75px 50px;
    }
    .split-container {
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }
    .why-container {
        grid-column-gap: 15px;
        grid-template-columns: 1fr 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-items {
        padding-bottom: 75px;
    }
}

@media screen and (max-width: 960px) {
    .header-menu {
        position: absolute;
        display: none;
    }
    .header-mobile {
        display: unset;
    }
    .location-container {
        grid-template-columns: 1fr;
    }
    .location-map {
        height: 600px;
    }
    .footer-items {
        grid-row-gap: 30px;
        grid-template-columns: 1fr 1fr;
    }
    #contact-email, #contact-phone {
        width: 100%;
    }
    #contact-email {
        margin-left: 0;
    }
    #footer-contact {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .location-container .location-info {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-column-gap: 30px;
    }
}

@media screen and (max-width: 720px) {
    .section-container {
        padding: 50px 30px;
    }
    .header {
        position: fixed;
        width: 100%;
        background-color: #fff;
    }
    .header .container {
        flex-direction: row-reverse;
        height: 64px;
        justify-content: space-between;
        box-shadow:
        0 0.8px 2.2px rgba(0, 0, 0, 0.008),
        0 1.9px 5.3px rgba(0, 0, 0, 0.012),
        0 3.6px 10px rgba(0, 0, 0, 0.015),
        0 6.5px 17.9px rgba(0, 0, 0, 0.018),
        0 12.1px 33.4px rgba(0, 0, 0, 0.022),
        0 29px 80px rgba(0, 0, 0, 0.03);
    }
    .header-logo {
        transform: scale(.65);
    }
    .header-contact {
        display: none;
    }
    .mobile-phone {
        display: unset;
    }
    .header-mobile {
        margin: 0;
        color: #1b2f45;
    }
    .header-mobile:hover {
        color: var(--highlight);
    }
    .hello {
        padding-bottom: 0;
    }
    .hello .section-container {
        min-height: 500px;
    }
    .hello-background {
        display: none;
    }
    .hello-content h1 {
        font-size: 30px;
    }
    .mini-hello {
        padding-bottom: 0;
    }
    .hello, .mini-hello {
        border-bottom: 4px solid var(--highlight);
        padding-top: 64px;
    }
    .why-container {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-split {
        grid-template-columns: 1fr;
    }
    #contact-email, #contact-phone {
        width: calc(50% - 7.5px);
    }
    #contact-phone {
        margin-right: 7.5px;
    }
    #contact-email {
        margin-left: 7.5px;
    }
    .footer-items {
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }
    #footer-contact {
        grid-column-start: unset;
        grid-column-end: unset;
    }
    #contact-message {
        height: 300px;
    }
    .posts-title a {
        font-size: 30px;
    }
    .section-content h1 {
        font-size: 30px;
    }
    .location-info {
        display: grid !important;
        grid-column-gap: 30px !important;
        grid-template-columns: repeat(2, auto) !important;
    }
    .safety .section-container {
        padding: 72px 30px !important;
        text-align: center;
    }
    .safety-text {
        font-size: 28px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-carousel .reviews-container {
        grid-template-columns: auto;
    }
    .reviews-carousel .reviews-button {
        display: none;
    }
}

@media screen and (max-width: 550px) {
    #contact-email, #contact-phone {
        width: 100%;
    }
    #contact-email {
        margin-left: 0;
    }
    #contact-phone {
        margin-right: 0;
    }
    .location-info {
        grid-template-columns: 1fr !important;
    }
}