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

/* Root
------------------------------ */

:root {
    /* Main Colors */
    --white: #fff;
    --black: #000;
    --light: #f3f4f5;
    --text-color: #808b98;
    --text-light: #b9cfe6;
    --main: #1b2f45;
    --main-mid: #29486a;
    --main-light: #37618f;
    --highlight: #78b52d;
    --highlight-dark: #568221;
    --light-border: #f2f5f8;
    --dark-border: #e5e7e9;
    --green: #78b52d;
    --red: #e0162b;
    --yellow: #fbd92a;
    
    /* Colors RGB */
    --white-rgb: 255, 255, 255;
    --light-rgb: 243, 244, 245;
    --text-color-rgb: 128, 139, 152;
    --text-light-rgb: 185, 207, 230;
    --main-rgb: 27, 47, 69;
    --main-mid-rgb: 41, 73, 107;
    --main-light-rgb: 55, 97, 143;
    --light-border-rgb: 242, 245, 248;
    --dark-border-rgb: 229, 231, 233;
    --highlight-rgb: 120, 181, 45;
    --green-rgb: 120, 181, 45;
    --red-rgb: 224, 22, 43;
    --yellow-rgb: 251, 217, 42;

    /* Fonts */
    /* --font-main: "Montserrat", sans-serif; */
    --font-main: "Outfit", sans-serif;
    --font-awesome: "Font Awesome 6 Pro";
    --font-brands: "Font Awesome 6 Brands";

    /* Text Sizes */
    --text-2xs: 10px;
    --text-xs: 14px;
    --text-sm: 16px;
    --text-base: 18px;
    --text-lg: 20px; 
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 40px;
    --text-4xl: 48px;

     /* Box Shadow */
     --shadow: 0px 0px 1.6px rgba(0, 0, 0, 0.044), 0.1px 0px 4.4px rgba(0, 0, 0, 0.06), 0.3px 0px 10.6px rgba(0, 0, 0, 0.066), 1px 0px 35px rgba(0, 0, 0, 0.08);
}

/* General
------------------------------ */

body, html {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--main);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}
p {
    line-height: 1.625em;
    font-weight: 500;
    color: var(--text-color);
}
a {
    text-decoration: none;
}
.container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
}
.section-container {
    position: relative;
    padding: 75px 50px;
    box-sizing: border-box;
}
.section-partial {
    position: relative;
    z-index: 1;
}
.main-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.main-title h2 {
    margin: 0;
    margin-bottom: 10px;
    font-size: var(--text-base);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--highlight);
}
.main-title h2::before,
.main-title h2::after {
    content: "—";
}
.main-title h2::before {
    padding-right: 5px;
}
.main-title h2::after {
    padding-left: 5px;
}
.main-title h3 {
    margin: 0;
    font-size: var(--text-2xl);
    color: var(--main-mid);
}
.main-title.light h2 {
    color: var(--white);
}
.main-title.light h3 {
    color: var(--text-light);
}

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

.section-image {
    position: relative;
    width: 100%;
    background-color: var(--text-color);
}
.section-image.ratio-32{
    padding-top: calc(100% * (2/3));
}
.section-image.ratio-21{
    padding-top: calc(100% * (1/2));
}
.section-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.section-title {
    position: relative;
}
.section-title h2 {
    margin: 0;
    margin-bottom: 20px;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--highlight);
}
.section-title p {
    margin: 0;
}
.section-content {
    position: relative;
}
.section-content :first-child {
    margin-top: 0;
}
.section-content :last-child {
    margin-bottom: 0;
}
.section-content h1,
.section-content h2 {
    font-size: var(--text-2xl);
    color: var(--main-mid);
}
.section-content h3,
.section-content h4,
.section-content h5,
.section-content h6 {
    color: var(--main-mid);
}
.section-content a {
    color: var(--highlight);
}
.section-content a:hover {
    color: var(--highlight-dark);
}
.section-content ul,
.section-content ol {
    font-weight: 500;
    color: var(--text-color);;
}
.section-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.section-content blockquote {
    display: block;
    margin: 0;
    padding: 30px;
    font-size: 16px;
    border-radius: 10px;
    background-color: var(--light);
}
.section-content blockquote :first-child {
    margin-top: 0;
}
.section-content blockquote :last-child {
    margin-bottom: 0;
}
.section-content hr {
    border: none;
    border-bottom: 2px solid var(--light);
}

/* Buttons
------------------------------ */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    line-height: 48px;
    border: 1px solid;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
}
.cta-button::after {
    position: relative;
    content: "\f061";
    padding-left: 15px;
    font-family: var(--font-awesome);
    font-size: var(--text-sm);
    font-weight: 600;
}
.cta-button.no-icon::after {
    content: unset;
}
.cta-button.phone::after {
    content: "\f879";
}
.cta-button strong {
    font-weight: 800;
}
.cta-button .alt-text {
    display: none;
}
.cta-button.active .main-text {
    display: none;
}
.cta-button.active .alt-text {
    display: unset;
}
.cta-button.highlight-white {
    border-color: var(--highlight);
    color: var(--white);
    background-color: var(--highlight);
}
.cta-button.cta-button.highlight-white:hover {
    border-color: var(--white);
    color: var(--highlight);
    background-color: var(--white);
}
.cta-button.highlight {
    border-color: var(--highlight);
    color: var(--white);
    background-color: var(--highlight);
}
.cta-button.highlight:hover {
    border-color: var(--highlight-dark);
    color: var(--white);
    background-color: var(--highlight-dark);
}
.learn-more {
    display: inline-block;
    color: var(--highlight);
}
.learn-more:hover {
    color: var(--highlight-dark);
}
.learn-more::after {
    position: relative;
    content: "\f061";
    padding-left: 5px;
    font-family: var(--font-awesome);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: .25s padding;
}
.learn-more:hover::after {
    padding-left: 10px;
}

/* Input styling
------------------------------ */
.input-container {
    position: relative;
    width: 100%;
}
.input-container input[type="text"], 
.input-container textarea,
.input-container select {
    width: 100%;
    padding: 12.75px 15px;
    margin-top: 0;
    font-size: 18px;
    outline: none;
    font-family: var(--font-main);
    font-weight: 500;
    border: 1px solid;
    border-radius: 12px;
    box-sizing: border-box;
}
.input-container select {
    padding-right: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select-container::before {
    position: absolute;
    content: "\f107";
    top: 0;
    right: 0;
    line-height: 58px;
    width: 60px;
    text-align: center;
    font-family: var(--font-awesome);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}
.input-container label {
    position: absolute;
    top: 0;
    left: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 50.5px;
    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,
.input-container select {
    border-color: var(--dark-border);
    color: var(--text-color);
    background-color: var(--light);
}
.input-container.light label {
    color: var(--text-color);
}
.input-container.light input[type="text"]:focus,
.input-container.light textarea:focus,
.input-container select:focus {
    border-color: var(--dark-border);
    color: var(--text-color);
    background-color: var(--white);
}
.input-container.light input[type="text"]:focus + label,
.input-container.light textarea:focus + label,
.input-container select:focus {
    color: var(--text-color);
}
.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: var(--white);
}
.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: var(--white);
}

/* Navigation
------------------------------ */
.navigation {
    position: fixed;
    width: 100%;
    z-index: 10;
    background-color: rgba(var(--white-rgb), 0);
    transition: .25s background-color;
}
.navigation.scroll {
    box-shadow: var(--shadow);
    background-color: rgba(var(--main-mid-rgb), .95);
}
.navigation .container {
    max-width: 1500px !important;
}
.navigation .section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    padding-top: 0;
    padding-bottom: 0;
}
.nav-logo {
    height: 42px;
    font-size: var(--text-2xl);
    color: var(--white);
}
.nav-logo img {
    height: 100%;
}
.nav-links {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    column-gap: 30px;
    list-style: none;
}
.nav-item.mobile-item {
    display: none;
}
.mobile-phone {
    display: none;
    font-size: var(--text-xl);
}
.mobile-phone a {
    color: var(--text-light);
}
.mobile-phone a:hover {
    color: var(--white);
}
.nav-item.mobile-item .nav-link {
    font-size: var(--text-xl);
}
.nav-link {
    position: relative;
    display: block;
    font-size: var(--text-sm);
    cursor: pointer;
    color: var(--text-light);
}
.nav-link.nav-drop {
    margin-right: 20px;
}
.nav-link.nav-drop::after {
    position: absolute;
    font-family: var(--font-awesome);
    font-weight: 500;
    content: "\f107";
    transition: .25s transform;
    right: -20px;
    top: 2px;
}
.nav-item:hover .nav-link {
    color: var(--white);
}
.nav-item:hover .nav-link.nav-drop::after {
    transform: rotate(180deg);
}
.nav-dropdown {
    position: absolute;
    top: 80px; 
    right: 50px;
    padding-top: 7px; /* for flush with */
    width: 650px;
    transition: .25s top;
    visibility: hidden;
}
.nav-dropdown.no-buttons {
    width: 325px;
    right: 375px;
}
.nav-item:hover .nav-dropdown {
    visibility: visible;
    padding-top: 17px;
    top: 48px;
}
.dropdown-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 325px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 10;
    overflow: hidden;
    background-color: var(--white);
}
.dropdown-buttons {
    position: relative;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--light);
}
.dropdown-button {
    position: relative;
    width: 100%;
    padding: 18.5px 30px;
    text-align: left;
    box-sizing: border-box;
    cursor: pointer;
    color: var(--text-color);
}
.dropdown-button.active {
    color: var(--main-mid) !important;
    background-color: var(--light);
}
.dropdown-button:hover {
    color: var(--highlight);
}
.dropdown-button::before {
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: -2px;
    border-left: 2px solid var(--light);
}
.dropdown-button:hover::before,
.dropdown-button.active:before {
    border-color: var(--highlight);
}
.dropdown-content {
    position: relative;
    padding: 30px;
    width: 100%;
}
.dropdown-block {
    position: relative;
    display: none;
}
.dropdown-block.active {
    display: unset;
}
.dropdown-links {
    position: relative;
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    row-gap: 10px;
    list-style: none;
}
.dropdown-link a {
    display: inline-block;
    font-size: var(--text-sm);
    color: var(--text-color);
    box-sizing: border-box;
    border-radius: 5px;
}
.dropdown-link a:hover {
    color: var(--highlight);
}
.dropdown-block .learn-more {
    margin-top: 20px;
}

/* Mobile Navigation
------------------------------ */
.mobile-navigation {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: -1;
}
.mobile-background {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: rgba(var(--main-mid-rgb), 0);
    transition: .1s background-color;
}
.mobile-container {
    position: absolute;
    top: 0;
    left: -330px;
    height: 100vh;
    width: 300px;
    padding: 15px;
    box-sizing: border-box;
    transition: .25s left;
}
.mobile-navigation.active, 
.mobile-navigation.closing {
    visibility: visible;
    z-index: 100;
}
.mobile-navigation.active .mobile-background {
    background-color: rgba(var(--main-mid-rgb), .75);
}
.mobile-navigation.active .mobile-container {
    left: 0;
}
.mobile-inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    background-color: rgba(var(--white-rgb), 1);
}
.mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    height: 30px;
    flex-shrink: 0;
}
.mobile-logo {
    height: 100%;
}
.mobile-logo img {
    height: 100%;
}
.mobile-top .mobile-toggle {
    font-size: var(--text-lg);
    cursor: pointer;
    color: var(--text-color);
}
.mobile-top .mobile-toggle:hover {
    color: var(--highlight);
}
.mobile-main {
    position: relative;
    height: 100%;
    padding-top: 0;
    flex-shrink: 1;
    overflow: auto;
}
.mm-inner {
    position: relative;
}
.mobile-link {
    position: relative;
    display: block;
    padding: 15px;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    color: var(--text-color);
}
.mobile-link i {
    padding-right: 10px;
}
.mobile-link::before {
    position: absolute;
    top: 17px;
    right: 15px;
    content: "";
    font-family: var(--font-awesome);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: .25s transform;
}
.mobile-link.mobile-drop::before {
    content: "\f107";
}
.mobile-link:hover {
    color: var(--highlight);
}
.mobile-dropdown {
    display: none;
    border-top: 2px solid var(--dark-border);
    padding: 15px;
    background-color: var(--light);
}
.md-inner {
    position: relative;
    display: grid;
    row-gap: 30px;
}
.md-blok {
    position: relative;
}
.md-link {
    margin-bottom: 15px;
}
.md-link a {
    color: var(--main-mid);
}
.mobile-button.active .mobile-link {
    color: var(--highlight);
}
.mobile-button.active .mobile-link::before {
    transform: rotate(180deg);
}
.mobile-bottom {
    padding: 15px;
    flex-shrink: 0;
    text-align: center;
}

/* Hook
------------------------------ */
.hook {
    position: relative;
    padding-top: 75px;
    background-color: var(--text-color);
    background-position: center;
    background-size: cover;
}
.hook::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background-color: rgba(var(--main-rgb), .8);
}
.hook .section-container {
    display: flex;
    align-items: center;
    min-height: 750px;
}
.hook.hook-small .section-container {
    min-height: 300px;
}
.hook-content {
    position: relative;
    max-width: 680px;
    z-index: 3;
}
.hook.hook-small .hook-content {
    margin: 0 auto;
    text-align: center;
}
.hook-content h1 {
    margin: 0;
    margin-bottom: 30px;
    font-size: var(--text-4xl);
    color: var(--white);
}
.hook-content p {
    margin: 0;
    font-size: var(--text-lg);
    color: var(--white);
}
.hook-content .section-cta {
    margin-top: 30px;
}
.hook-video {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hook-video::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1;
    background-color: rgba(var(--main-rgb), .8);
}
.hook-video video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
}

/* Home About
------------------------------ */
.home-about {
    position: relative;
}

/* Home Locations
------------------------------ */
.home-locations {
    position: relative;
    background-color: var(--light);
}
.home-locations .container,
.home-locations .section-container {
    position: unset;
}
.home-locations .main-title {
    text-align: left;
}
.home-locations .section-partial {
    width: calc(60% - 50px);
}
.home-locations .section-container:before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    right: 40%;
    height: 20px;
    width: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -10px 0 0 var(--white);
}
.home-locations .section-container:after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    right: 40%;
    height: 20px;
    width: 10px;
    border-top-left-radius: 10px;
    box-shadow: 0 -10px 0 0 var(--white);
    transform: rotate(180deg);
}
.locations-images {
    position: absolute;
    height: 100%;
    width: 40%;
    padding: 75px 0;
    top: 0;
    right: 0;
    box-sizing: border-box;
    background-color: var(--white);
    z-index: 3;
}
.lc-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.lc-inner .images-container,
.lc-inner .location-map {
    position: relative;
    width: 100%;
    height: 525px;
    background-color: var(--text-color);
}
.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100% !important;
}
.home-locations .locations-grid {
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
}
.socials-grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    row-gap: 30px;
    column-gap: 30px;
    margin-top: 50px;
    background-color: var(--dark-border);
    border-radius: 10px;
}
.social-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 120px;
}
.social-item img {
    width: 100%;
}

/* Locations Grid
------------------------------ */
.locations-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
    column-gap: 15px;
}
.location-block {
    font-size: var(--text-sm);
}
.location-block.hide {
    display: none;
}
.location-item {
    position: relative;
    margin-bottom: 5px;
    padding-left: 25px;
}
.location-item::before {
    position: absolute;
    top: 0; 
    left: 1px;
    font-family: var(--font-awesome);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--highlight);
}
.location-item p {
    padding: 0;
    margin: 0;
    color: var(--text-color);
}
.location-item.address::before {
    content: "\f3c5";
}
.location-item.hours::before {
    content: "\f017";
}
.location-item.phone::before {
    content: "\f879"
}
.location-item:last-child {
    margin: 0;
}
.location-title {
    margin-bottom: 15px;
    font-size: var(--text-base);
}
.location-title a {
    color: var(--main-mid);
}
.location-link {
    display: inline-block;
    font-weight: 500;
    color: var(--text-color);
}
.location-link:hover {
    color: var(--highlight);
}

/* Light Locations grid */
.locations-grid.light .location-item::before {
    color: var(--text-light);
}
.locations-grid.light .location-title a {
    color: var(--white);
}
.locations-grid.light .location-link {
    color: var(--text-light);
}
.locations-grid.light .location-item p {
    color: var(--text-light);
}
.locations-grid.light .location-link:hover {
    color: var(--white);
}

/* Home Services
------------------------------ */
.home-services {
    position: relative;
}

/* Why Choose Us
------------------------------ */
.home-why {
    position: relative;
    background-color: var(--main-mid);
    background-position: center;
    background-size: cover;
}
.home-why::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background-color: rgba(var(--main-rgb), .8);
}
.why-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    column-gap: 50px;
}
.why-item {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.why-icon {
    position: relative;
    display: flex;
    height: 125px;
    width: 125px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transform: rotate(45deg);
    background-color: rgba(var(--main-light-rgb), .8);
}
.why-icon img {
    height: 50px;
    transform: rotate(-45deg);
}
.why-title {
    margin: 0;
    margin-top: 25px;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
}

/* Testimonials/Reviewss
------------------------------ */
.testimonials-section {
    position: relative;
}
.testimonials-content {
    max-width: 1250px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
}
.review {
    position: relative;
    display: flex;
    width: calc(100% - 30px);
    flex-direction: column;
    padding: 30px; 
    border-radius: 10px;
    box-sizing: border-box;
    background-color: var(--light);
}
.review p {
    margin: 0;
    margin-bottom: 25px;
    font-size: var(--text-sm);
}
.reviews-grid .review:last-child {
    display: none;
}
.review-info {
    position: relative;
    display: flex;
    width: auto;
    border-top: 2px solid var(--dark-border);
    margin-top: auto;
    margin-left: -30px;
    margin-right: -30px;
    padding: 30px 30px 0px 30px;
}
.review-info a {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 0;
}
.review-icon {
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
    height: 60px;
    width: 60px;
    border-radius: 10px;
    background-color: var(--highlight);
}
.review-icon::before {
    position: absolute;
    content: "\f1a0";
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-family: var(--font-brands);
    font-size: var(--text-xl);
    font-weight: 900;
    color: var(--white);
}
.review-name {
    margin-bottom: 3px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--main-mid);
}
.review-title {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-color);
}
.review-stars {
    margin-bottom: 15px;
}
.review-stars i {
    color: var(--yellow);
}
.testimonials {
    position: relative;
    display: grid;
    grid-template-columns: 60px auto 60px;
    column-gap: 15px;
}
.testimonials .review {
    margin-left: 15px;
    margin-right: 15px;
}
.button-container {
    position: relative;
    display: flex;
    align-items: center;
}
.testimonials-button {
    position: relative;
    width: 60px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    background-color: var(--light);
}
.testimonials-button i {
    line-height: 60px;
    font-size: var(--text-xl);
    color: var(--main-mid);
}
.testimonials-button:hover {
    background-color: var(--highlight);
}
.testimonials-button:hover i {
    color: var(--white);
}

/* Home Team
------------------------------ */
.home-team {
    position: relative;
    background-color: var(--light);
}
.home-team .container,
.home-team .section-container {
    position: unset;
}
.home-team .main-title {
    text-align: left;
}
.home-team .section-partial {
    width: calc(60% - 50px);
    margin-left: auto;
}
.home-team .section-container:before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 40%;
    height: 20px;
    width: 10px;
    border-top-left-radius: 10px;
    box-shadow: 0 -10px 0 0 var(--white);
}
.home-team .section-container:after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    left: 40%;
    height: 20px;
    width: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -10px 0 0 var(--white);
    transform: rotate(180deg);
}
.team-images {
    position: absolute;
    height: 100%;
    width: 40%;
    padding: 75px 0;
    top: 0;
    left: 0;
    box-sizing: border-box;
    background-color: var(--white);
}
.ti-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.ti-inner .images-container {
    position: relative;
    width: 100%;
    height: 525px;
    background-color: var(--text-color);
}

/* FAQs
------------------------------ */
.faqs {
    position: relative;
}
.faqs-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 15px;
}
.faqs-block {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.faq-item {
    position: relative;
    overflow: hidden;
    background-color: var(--light);
    border-radius: 10px;
}
.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
}
.faq-item.active .faq-question {
    color: var(--highlight);
}
.faq-question h3 {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--main-mid);
}
.faq-button {
    position: relative;
    margin-left: 30px;
    cursor: pointer;
}
.faq-button::before {
    display: block;
    content: "\2b";
    width: 20px;
	font-family: var(--font-awesome);
	font-weight: 900;
    position: relative;
    font-size: var(--text-2xs);
    text-align: center;
    line-height: 20px;
    border-radius: 100%;
    color: var(--white);
    background-color: var(--main-mid);
}
.faq-question:hover h3{
    color: var(--highlight);
}
.faq-question:hover ::before {
    background-color: var(--highlight);
}
.faq-item.active .faq-question h3 {
    color: var(--highlight);
}
.faq-item.active .faq-button::before {
    content: "\f068";
    background-color: var(--highlight);
}
.faq-answer {
    position: relative;
    display: none;
    padding: 30px;
    border-top: 2px solid var(--dark-border);
}
.faq-answer p {
    margin: 0;
    font-size: var(--text-sm);
}

/* Content Switch
------------------------------ */
.content-switch {
    position: relative;
    display: grid;
    grid-template-columns: 325px auto;
    column-gap: 50px;
}
.content-switch.reverse {
    grid-template-columns: auto 325px;
}
.content-switch.reverse .button-grid{
    grid-column: 2;
    grid-row: 1;
}
.content-switch.reverse .cs-content {
    grid-column: 1;
}
.content-switch .button-grid {
    position: relative;
    display: flex;
    flex-direction: column;
}
.cs-button {
    position: relative;
    padding: 18.5px 30px;
    text-align: right;
    cursor: pointer;
    color: var(--text-color);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right: 2px solid var(--light);
}
.content-switch.reverse .cs-button {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: unset;
    border-left: 2px solid var(--light);
    text-align: left;
}
.cs-button:hover {
    color: var(--highlight);
}
.cs-button.active {
    color: var(--main-mid);
    background-color: var(--light);
}
.cs-button.active,
.cs-button:hover {
    border-color: var(--highlight) !important;
}
.cs-block {
    position: relative;
    display: none;
}
.cs-block.active {
    display: block;
}

/* Images Container
------------------------------ */
.images-container {
    position: relative;
}
.image-item {
    position: relative;
    width: 100%;
    height: 100%;
}
.image-item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

/* Page Content 
------------------------------ */
.page-content {
    position: relative;
}
.page-split {
    position: relative;
    display: grid;
    grid-template-columns: 325px auto;
    column-gap: 50px;
}

/* Sidebar
------------------------------ */
.sidebar {
    position: relative;
}
.sidebar h3 {
    margin: 0;
    margin-bottom: 15px;
    color: var(--main-mid);
}
.page-sidebar {
    border-right: 2px solid var(--light);
}
.sidebar-links {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar-link {
    position: relative;
    display: block;
}
.sidebar-link a {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 18.5px 30px;
    padding-left: 0;
    width: 100%;
    box-sizing: border-box;
    color: var(--text-color);
}
.sidebar-link a::before {
    position: absolute;
    top: 21px;
    right: 30px;
    content: "\f105";
    padding-left: 15px;
    font-family: var(--font-awesome);
    font-size: var(--text-sm);
    font-weight: 600;
}
.sidebar-link a::after {
    position: absolute;
    top: 0;
    right: -2px;
    height: 100%;
    content: "";
    border-right: 2px solid var(--light);
}
.sidebar-link a:hover::after {
    border-color: var(--highlight);
}
.sidebar-link a:hover {
    color: var(--highlight);
}
.sidebar.locations .locations-grid {
    padding-top: 18.5px;
}

/* Blog
------------------------------ */
.blog {
    position: relative;
}
.blog-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    column-gap: 30px;
}
.blog-item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.bi-image {
    display: block;
    margin-bottom: 15px !important;
}
.bi-image img {
    display: block;
}
.bi-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.article-image {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 50px;
}
.article-image img {
    display: block;
}
.article-title a {
    color: var(--main-mid) !important;
}
.article-attr {
    margin-top: 5px;
    font-weight: 500;
    color: var(--text-color);
}
.article-name, 
.article-date {
    font-weight: 600;
    color: var(--highlight);
}
.article-description {
    margin: 15px 0;
}
.bi-content .section-cta {
    margin-top: auto;
}
.blog-control {
    position: relative;
    display: grid;
    margin-top: 50px;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    align-items: center;
}
.posts-control a {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    line-height: 48px;
    border: 1px solid var(--highlight);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    background-color: var(--highlight);
}
.posts-control a:hover {
    border-color: var(--highlight-dark);
    background-color: var(--highlight-dark);
}
.posts-numbers {
    display: flex;
    margin: 0;
    padding: 0;
    column-gap: 10px;
    list-style: none;
    color: var(--text-color);
}
.posts-numbers a {
    font-size: var(--text-sm);
    color: var(--text-color);
}
.posts-numbers a:hover {
    color: var(--highlight);
}

/* Breadcrumbs
------------------------------ */
.breadcrumbs {
    position: relative;
    margin-bottom: 50px;
}
.trail {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-color);
}
.breadcrumb-link {
    color: var(--highlight);
}
.breadcrumb-link:hover {
    color: var(--highlight-dark);
}
.breadcrumb-link:first-child::before {
    position: relative;
    content: "\f015";
    padding-right: 5px;
    font-family: var(--font-awesome);
    font-weight: 600;
    font-size: var(--text-sm);
}

/* Contact
------------------------------ */
.contact {
    position: relative;
}
.contact-content {
    position: relative;
}
.form-inputs {
    display: flex;
    align-content: baseline;
    flex-wrap: wrap;
    flex-grow: 1;
    row-gap: 15px;
    column-gap: 15px;
    margin-bottom: 30px;
}
#subject-field {
    display: none;
}
.form-inputs .input-container.half {
    width: calc(50% - 7.5px);
}
.contact .message {
    height: 250px;
}

/* Locations Page
------------------------------ */
.locations {
    position: relative;
}
.locations-content {
    position: relative;
}
.lc-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    column-gap: 30px;
}
.locations-item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.li-image {
    position: relative;
    margin-bottom: 15px;
    padding-top: calc(100% * (2/3));
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-color: var(--text-color);
}

/* Footer
------------------------------ */
footer {
    position: relative;
}
.footer-top {
    background-color: var(--main-mid);
}
.footer-top .section-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 50px;
    row-gap: 50px;
}
.footer-block {
    grid-column: auto / span 2;
}
.footer-company {
    grid-column-start: 1;
    grid-column-end: 4;
}
.footer-sitemap {
    grid-column-start: 4;
    grid-column-end: 8;
}
.footer-locations {
    grid-column-start: 1;
    grid-column-end: 8;
}
.footer-locations .locations-grid {
    grid-template-columns: repeat(3, 1fr);
}
.footer-title {
    margin: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: var(--text-lg);
    font-weight: 600;
    border-bottom: 2px solid var(--main-light);
    color: var(--white);
}
.footer-list {
    position: relative;
    display: grid;
    row-gap: 5px;
    margin: 0;
    padding: 0;
    font-size: var(--text-sm);
    list-style: none;
}
.footer-link {
    display: inline-block;
    font-weight: 500;
    color: var(--text-light);
}
.footer-link:hover {
    color: var(--white);
}
.footer-content {
    position: relative;
    display: grid;
    row-gap: 15px;
}
.footer-location {
    display: flex;
    flex-direction: column;
}
.footer-item {
    font-size: var(--text-sm);
}
.fi-item {
    position: relative;
    margin-bottom: 5px;
    padding-left: 25px;
}
.fi-item::before {
    position: absolute;
    top: 0; 
    left: 1px;
    font-family: var(--font-awesome);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-light);
}
.footer-item p {
    padding: 0;
    margin: 0;
    color: var(--text-light);
}
.fi-item.address::before {
    content: "\f3c5";
}
.fi-item.hours::before {
    content: "\f017";
}
.fi-item.phone::before {
    content: "\f879"
}
.fi-item:last-child {
    margin: 0;
}
.fi-title {
    margin-bottom: 10px;
    font-size: var(--text-base);
}
.fi-title a {
    color: var(--white);
}
.footer-bottom {
    background-color: var(--main);
}
.footer-bottom .section-container {
    display: flex;
    flex-direction: column;;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.fb-items {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.fb-item p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--text-light);
}

/* Socials Button
------------------------------ */
.socials-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}
.sb-content {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: .25s width;
    background-color: rgba(var(--white-rgb), .95);
}
.socials-button.active .sb-content {
    width: 460px;
}
.sb-trigger {
    position: absolute;
    height: 60px;
    width: 60px;
    top: 0;
    right: 0px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1;
    background-color: var(--highlight);
}
.sb-trigger:hover {
    background-color: var(--highlight-dark);
}
.sb-trigger i {
    line-height: 60px;
    font-size: var(--text-xl);
    color: var(--white);
}
.sb-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    height: 100%;
    padding: 15px;
    padding-right: 75px;
    box-sizing: border-box;
}
.sb-grid .social-item {
    width: 70px;
}

/* Under Construction
------------------------------ */
.under-construction {
    position: relative;
    height: 100vh;
    text-align: center;
}
.under-construction .container {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}
.under-construction .section-container {
    position: relative;
    padding: 50px 30px;
    box-sizing: border-box;
}
.under-construction .container,
.under-construction .section-container {
    height: 100%;
}
.under-construction .section-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.under-construction img {
    margin: 0 auto;
    margin-bottom: 15px;
    height: 80px;
    width: auto;
}
.under-construction h1 {
    margin: 0;
    color: var(--main-mid);
}
.under-construction p {
    margin: 15px 0;
}
.under-construction .locations-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
    column-gap: 15px;
    margin-bottom: 15px;
}
.under-construction .location-block {
    font-size: var(--text-sm);
}
.under-construction .location-block.hide {
    display: none;
}
.under-construction .location-item {
    position: relative;
    margin-bottom: 5px;
    padding: 0;
}
.under-construction .location-item p {
    padding: 0;
    margin: 0;
    color: var(--text-color);
}
.under-construction .location-item:last-child {
    margin: 0;
}
.under-construction .location-title {
    margin-bottom: 15px;
    font-size: var(--text-base);
}
.under-construction .location-title a {
    color: var(--main-mid);
}
.under-construction .location-link {
    display: inline-block;
    font-weight: 500;
    color: var(--text-color);
}
.under-construction .location-link:hover {
    color: var(--highlight);
}

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

@media screen and (max-width: 1500px) {
    
}

@media screen and (max-width: 1250px) {
    .home-locations,
    .home-team {
        display: flex;
        flex-direction: column;
    }
    .home-locations .main-title,
    .home-team .main-title {
        text-align: center;
    }
    .home-locations .section-partial,
    .home-team .section-partial {
        width: 100%;
    }
    .locations-images,
    .team-images {
        position: relative;
        padding: 0;
        width: 100%;
    }
    .home-locations .section-container:after,
    .home-locations .section-container:before,
    .home-team .section-container:after,
    .home-team .section-container:before {
        display: none;
    }
    .content-switch {
        grid-template-columns: 1fr !important;
    }
    .content-switch .button-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .content-switch.reverse .cs-content {
        grid-column: unset;
    }
    .content-switch.reverse .button-grid {
        grid-column: unset;
        grid-row: unset;
    }
    .cs-button {
        position: relative;
        padding: 18.5px 30px;
        text-align: left !important;
        border: unset !important;
        border-right: 2px solid var(--light) !important;
        border-radius: unset !important;
    }
    .cs-button:hover {
        color: var(--highlight);
    }
    .cs-button.active {
        color: var(--main-mid);
        background-color: var(--light);
    }
    .cs-button.active,
    .cs-button:hover {
        border-color: var(--highlight) !important;
    }
    .cs-button::after {
        position: absolute;
        font-family: var(--font-awesome);
        font-weight: 500;
        content: "\f107";
        right: 30px;   
        top: 20px;
    }
    .faqs-grid {
        grid-template-columns: 1fr;
    }
    .page-split {
        grid-template-columns: 1fr;
    }
    .sidebar {
        grid-row: 2;
        padding-top: 30px;
        margin-top: 30px;
        border-top: 2px solid var(--light);
    }
    .sidebar-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }
    .sidebar.locations .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .location-block.hide {
        display: unset;
    }
    .dropdown-block .location-block.hide {
        display: none;
    }
    .footer-top .section-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-block {
        grid-column: unset;
    }
    .footer-company {
        grid-column-start: unset;
        grid-column-end: unset
    }
    .footer-sitemap {
        grid-column-start: unset;
        grid-column-end: unset
    }
    .footer-locations {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .footer-locations .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1050px) {

}

@media screen and (max-width: 950px) {
    .nav-item {
        display: none;
    }
    .mobile-item {
        display: block !important;
    }
    .content-switch .button-grid {
        grid-template-columns: 1fr;
    }
    .home-locations .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sidebar.locations .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
    .socials-grid {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-around;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sidebar-links {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 750px) {
    .navigation .section-container {
        flex-direction: row-reverse;
        height: 60px;
    }
    .nav-logo {
        height: 34px;
    }
    .nav-phone {
        display: none;
    }
    .mobile-phone {
        display: inline-block;
    }
    .section-container {
        padding: 50px 30px;
    }
    .hook {
        padding-top: 60px;
    }
    .hook .section-container {
        min-height: 600px;
    }
    .hook-content {
        text-align: center;
    }
    .hook-content h1 {
        font-size: var(--text-2xl);
    }
    .hook-content p {
        font-size: var(--text-base);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .testimonials {
        grid-template-columns: 1fr;
        margin-left: -15px;
        margin-right: -15px;
    }
    .testimonials .button-container {
        position: absolute;
        bottom: 0;
        z-index: 1;
    }
    .testimonials .button-container.prev {
        left: calc(50% - 75px);
    }
    .testimonials .button-container.next {
        right: calc(50% - 75px);
    }
    .testimonials-container {
        padding-bottom: 95px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .lc-grid {
        grid-template-columns: 1fr;
    }
    .form-inputs .input-container.half {
        width: 100%;
    }
    .footer-top .section-container {
        grid-template-columns: 1fr;
    }
    .footer-locations {
        grid-column-start: unset;
        grid-column-end: unset;
    }
    .footer-locations .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 550px) {
    .home-locations .locations-grid,
    .sidebar.locations .locations-grid {
        grid-template-columns: auto;
        justify-content: left;
    }
    .socials-grid {
        grid-template-columns: auto;
    } 
    .socials-button {
        display: none;
    }
}