html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

p {
    padding: 1rem;
}

.quicksand-font {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

#nav-bar {
    background: #000000;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    z-index: 10;
}

.logo {
    height: 6rem;
    width: 6rem;
}

@keyframes pulse {
    0%, 100% {
        background-color: #FF0000; 
        box-shadow: 0 0 10px rgba(243, 90, 90, 0.5); 
    }
    50% {
        background-color: #d04646; 
        box-shadow: 0 0 20px rgba(208, 70, 70, 0.7); 
    }
}

.dropdown {
    min-width: 15em;
    position: relative;
    margin: 2em;
    margin-right: 45rem;
    background-color: #FF0000; 
    border: 2px solid #000000; 
    border-radius: 0.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    animation: pulse 2s infinite; 
}

.dropdown * {
    box-sizing: border-box;
}

.select {
    font-size: 25px;
    background: #FF0000; 
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s; 
}

.select:hover {
    background: #d04646; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
}

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: 0.3s;
    margin-left: 0.5rem;
}

.caret-rotate {
    transform: rotate(180deg);
}

.menu {
    list-style: none;
    padding: 0.5em;
    background: #000000;
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    border-radius: 0.5em;
    color: #fff;
    position: absolute;
    top: 4.6em;
    left: 50%;
    width: 99%;
    height: 6rem;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.menu li {
    padding-right: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 0.5em;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s, transform 0.3s; 
}

.menu li:hover {
    background: #FF0000; 
    transform: translateX(3px); 
}

.menu-open {
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
    opacity: 1;
}

#contact-phone-img {
    height: 5vh;
    width: 3vw;
    background-image: url("mobile_white.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 0.1rem;
}

.contact-info-container {
    display: flex;
    flex-direction: row;
    height: 3rem;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#contact-phone-number {
    padding-left: 0.1rem;
    font-size: 28px;
    color: #FF0000;
    text-shadow: 1px 2px 2px #290404;
}

.hamburger {
    display: inline-block;
    border-radius: 10px;
    padding: 7px 12px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
    transition: 0.4s;
}

.about-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    height: 90%;
    width: 100%;
}

#about-first-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

#about-phrase-section {
    margin-top: 1rem;
    margin-right: 8rem;
    text-align: center;
}

.about-phrase {
    color: #fff;
    text-shadow:
        0 0 4px #000000, 
        0 0 10px #5b5b5b, 
        0 0 20px #3b3b3b,
        0 0 40px #3a3a3a, 
        0 0 80px #242424;
    animation: flicker-white-enhanced 3s linear infinite;
    font-size: 5em;
}

#about-phrase-header {
    font-size: 50px;
    color: black;
}

.about-text {
    background-color: #000000;
    height: auto;
    width: 40%;
    text-align: center;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    margin-top: 6rem;
}

#about-logo-overlay {
    background-image: url("logo_white_bg.png");
    height: 50vh;
    width: 50vw;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transform: rotate(-10deg);
    translate: 20% -40%;
}

#about-contact-now {
    position: relative;
    background-color: #FF0000;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#about-contact-now:hover {
    opacity: 0.9;
}

#below-about-container {
    display: flex;
}

#below-image-container {
    height: 35vh;
    width: 55vw;
    display: flex;
    margin-right: 6rem;
}

#below-first-img {
    background-image: url("./previous_work_pics/picked/toilets.jpg");
}

#below-second-img {
    background-image: url("./previous_work_pics/picked/pipes.jpg");
    margin-left: 2rem;
}

#below-first-img, #below-second-img {
    background-size: cover;
    background-repeat: no-repeat;
    height: 35vh;
    width: 35vw;
    border-radius: 10px;
    border: #000000 solid;
}

section {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
}

#nav-select {
    background-color: transparent;
    color: white;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 23px;
    position: relative;
    padding: 8px 32px 8px 8px;
}

#nav-select option {
    margin: 5rem;
    color: black;
}

#nav-select-wrapper:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.25rem;
    border-bottom: 1px solid white;
    pointer-events: none;
}

#nav-select-wrapper::before {
    content: '▼';
    color: white;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-45%);
    pointer-events: none;
}

#nav-select:focus {
    outline: none;
}

footer {
    text-align: center;
    padding: 10px 20px;
    background: #000000;
    color: #fff;
    position: relative;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form label,
form input,
form textarea {
    display: block;
    width: 80%;
    margin-bottom: 10px;
}

form input,
form textarea {
    padding: 8px;
    border: 1px solid #ddd;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    background-color: #005f73;
    overflow-x: hidden;
    transition: 0.4s;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.hidden {
    opacity: 0;
}

#services-left-container {
    position: relative;
    width: 25%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10rem;
    margin-bottom: 1rem;
    flex-direction: column;
}

#services-call-now-container {
    position: absolute;
    bottom: 43%;
    left: 22%;
    height: 6vw;
    width: 14vw;
    background-color: #000000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
    border-radius: 20px;
    border: 1px solid black;
    padding: 0.2rem;
}

.services-call-now-text {
    font-size: 20px;
    font-weight: bold;
    padding: 3px;
}

#services-call-now-number {
    color: #FF0000;
    font-size: 27px;
    text-decoration: underline;
}

#services-img-cluster-container {
    display: flex;
}

#services-img {
    position: relative;
    height: 45vh;
    width: 17vw;
    background-image: url("previous_work_pics/picked/groundwork_4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 10px;
    border: #000000 solid;
    margin-left: 1rem;
    background-position: center;
}

#services-img-one {
    position: relative;
    height: 45vh;
    width: 17vw;
    background-image: url("previous_work_pics/picked/groundwork_5.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 10px;
    margin-left: 0.5rem;
    border: #000000 solid;
    background-position: center;
}

#services-img-two {
    position: relative;
    height: 45vh;
    width: 25vw;
    background-image: url("previous_work_pics/picked/groundwork_2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 10px;
    margin-top: 1rem;
    border: #000000 solid;
}

#services-right-container {
    width: 50vw;
    height: 100%;
}

.service-title-card {
    font-size: 23px;
    height: 10vh;
    width: 100%;
    vertical-align: middle;
    line-height: 10vh;
    background-color: #000000;
}

.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    border: 1px solid black;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: height 0.5s ease;
    border-radius: 10px;
}

.service-title-card,
.service-hidden-text {
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
}

.service-hidden-text {
    color: #000000;
    transform: translateY(5%);
    font-size: 18px;
}

#services-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tool-tip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

#tool-tip-div {
    font-size: 25px;
    font-weight: bold;
    margin-left: 35rem;
}

#services {
    margin-top: -5rem;
    flex-direction: column;
}

#contact-now-overlay {
    height: 100vh;
    width: 100vw;
    background-image: url(split.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#contact-now-break-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 3rem;
    margin-bottom: 10rem;
    position: relative;
}

.contact-divider {
    border: 10px solid #000000;
    margin: 3rem;
}

#contact-now-break-title {
    color: #fff;
    font-size: 45px;
    z-index: 2;
    padding: 30px;
}

#contact-now-break {
    position: relative;
    background-color: #FF0000;
    height: 7vh;
    width: 9vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 23px;
}

#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 45vh;
    margin-bottom: 5rem;
}

.contact-form-container {
    background: #000000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30vw;
    height: 45vh;
    color: #fff;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 60%; 
    margin: auto; 
}

.form-field {
    display: flex;
    width: 100%; 
    margin-bottom: 10px; 
}

#contact-form label,
#contact-form input,
#contact-form textarea,
#contact-form button {
    width: 100%; 
    margin-bottom: 10px; 
}

#contact-form input,
#contact-form textarea {
    flex: 1; 
    border: 1px solid #ccc;
    padding: 8px; 
    font-size: 18px;
}

#contact-form label {
    flex: 0 0 30%; 
    text-align: left;
    margin-right: 10px; 
}

#contact-form-title {
    font-size: 40px;
    margin: 0.5rem;
}

#message-label {
    margin-top: 1rem;
}

#message {
    height: 7vh;
    width: 100%;
    resize: none;
}

#contact-submit-btn {
    position: relative;
    background-color: #FF0000;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    margin-top: 1rem;
    font-size: 20px;
}

#footer-text {
        padding: 0;
}

@keyframes flicker-white-enhanced {
    0%, 100% {
        text-shadow:
            0 0 2px #e6e6e6,  
            0 0 5px #000000, 
            0 0 15px #FF0000, 
            0 0 25px #3b3b3b; 
    }
    50% {
        text-shadow:
            0 0 3px #f2f2f2,  
            0 0 10px #FF0000, 
            0 0 20px #FF0000,
            0 0 30px #000000;
    }
}

@media (max-width:402px) {
    /* Styles for small phones */
    .dropdown {
        min-width: 27em;
        position: relative;
        margin: 2em;
        margin-right:8rem;
    }
    .contact-info-container {
        display: none;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8rem;
    }
    #about-phrase-section {
        font-size: 14px;
    }
    .about-text {
        display: none;
    }
    .about-phrase {
        font-size: 4.7em;
    }
    #about-logo-overlay {
        display: none;
    }
    #below-image-container {
        height: 35vh;
        width: 90vw;
        display: flex;
        justify-content: space-evenly;
        margin-bottom: 5rem;
        margin-left: 1.3rem;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 25vh;
        width: 45vw;
        border-radius: 10px;
    }
    #below-second-img {
        margin-left: 1rem;
    }
    #about {
        height: 80vh;
    }
    #about-phrase-header {
        font-size: 46px;
    }
    #about-phrase-section {
        font-size: 13px;
    }
    #services-left-container {
        display: none;
    }
    #services-right-container {
        width: 90vw;
        height: 100%;
    }
    .service-hidden-text {
        color: #000000;
        transform: translateY(5%);
        font-size: 10px;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 10.5px;
        z-index: 2;
        padding: 30px;
    }
    #contact-now-break-container {
        margin-bottom: 7rem;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 5rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        background: #000000;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 90vw;
        height: 63vh;
        color: #fff;
    }
    #about-phrase-section {
        padding: 40px;
        font-size: 14px;
    }
}

@media (min-width: 403px) and (max-width: 480px) {
    /* Styles for small phones */
    .dropdown {
        min-width: 25em;
        position: relative;
        margin: 2em;
        margin-right:8rem;
    }
    .menu {
        top: 3.3em;
    }
    .select {
        font-size: 24px;
        padding: 0.6em;
    }
    .contact-info-container {
        display: none;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8rem;
    }
    #about-phrase-section {
        font-size: 14px;
    }
    .about-text {
        display: none;
    }
    .about-phrase {
        font-size: 4.7em;
    }
    #about-logo-overlay {
        display: none;
    }
    #below-image-container {
        height: 35vh;
        width: 90vw;
        display: flex;
        justify-content: space-evenly;
        margin-bottom: 5rem;
        margin-left: 1.3rem;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 25vh;
        width: 45vw;
        border-radius: 10px;
    }
    #below-second-img {
        margin-left: 1rem;
    }
    #about {
        height: 80vh;
    }
    #services-left-container {
        display: none;
    }
    #services-right-container {
        width: 90vw;
        height: 100%;
    }
    .service-hidden-text {
        color: #000000;
        transform: translateY(5%);
        font-size: 11px;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 10.5px;
        z-index: 2;
        padding: 30px;
    }
    #contact-now-break-container {
        margin-bottom: 7rem;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 5rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        background: #000000;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 90vw;
        height: 63vh;
        color: #fff;
    }
    #about-phrase-section {
        padding: 40px;
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 675px) {
    .logo {
        display: none;
    }
    #contact-now-break-container {
        margin-bottom: 4rem;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    /* Styles for large phones in landscape */
    .dropdown {
        min-width: 27em;
        position: relative;
        margin: 2em;
        margin-right:2rem;
    }
    .contact-info-container {
        display: none;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8rem;
    }
    .about-text {
        display: none;
    }
    #about-logo-overlay {
        display: none;
    }
    #below-image-container {
        height: 35vh;
        width: 100vw;
        display: flex;
        justify-content: space-evenly;
        margin-bottom: 10rem;
        margin-right: 0;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 38vh;
        width: 38vw;
        border-radius: 10px;
    }
    #about {
        height: 85vh;
    }
    #services-left-container {
        display: none;
    }
    #services-right-container {
        width: 90vw;
        height: 100%;
    }
    .service-hidden-text {
        color: #000000;
        transform: translateY(5%);
        font-size: 12px;
    }
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }

    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 0rem;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 25px;
        z-index: 2;
        padding: 30px;
    }
    #contact-now-break-container {
        margin-top: 5rem;
        margin-bottom: 4rem;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 6rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        background: #000000;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 85vw;
        height: 63vh;
        color: #fff;
    }
}

@media (max-width: 568px) {
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }

    #tool-tip-div {
        font-size: 19px;
        font-weight: bold;
        margin-left: 0rem;
    }
}

@media (min-width: 700px) and (max-width: 1024px) {
    .contact-form-container {
        width: 52vw;
    }
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }

    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 2rem;
    }
}

@media (min-width: 1025px) and (max-width: 1070px) {
    /* Styles for standard desktops */
    .dropdown {
        margin-right: 0;
    }
    #nav-bar {
        justify-content: center;
    }
    .contact-info-container {
        display: none;
    }
    #about-phrase-section {
        margin-top: 1rem;
        text-align: center;
        margin-right: 0;
        padding: 40px;
    }
    #about {
        height: auto;
    }
    .about-text {
        display: block;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-text {
        background-color: #000000;
        height: auto;
        width: 90%;
        text-align: center;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 6rem;
        margin-bottom: 4rem;
    }
    #about-logo-overlay {
        translate: 0% 0%;
    }
    #below-image-container {
        margin-right: 0px;
        width: 50vw;
        margin-right: 2.5rem;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 35vh;
        width: 25vw;
        border-radius: 10px;
    }
    #below-about-container {
        margin-bottom: 3rem;
    }
    .service-hidden-text {
        font-size: 13px;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 31px;
        z-index: 2;
        padding: 30px;
    }
    #services-img, #services-img-two, #services-img-one {
        height: 30vh;
        width: 20vw;
        margin-left: 7rem;
    }
    #services-img {
        margin-bottom: 3rem;
        margin-left: 1rem;
    }
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }

    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 27rem;
    }
    #services-img-two {
        width: 40vw;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 6rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        width: 60vw;
        height: 60vh;
        color: #fff;
    }
    #contact-now-break-container {
        margin-bottom: 6rem;
    }
    #services-call-now-container {
        bottom: 41%;
        height: 15vh;
        width: 24vw;
        left: 25%;
    }
}

@media (min-width: 1071px) and (max-width: 1110px) {
    /* Styles for standard desktops */
    .dropdown {
        margin-right: 0;
    }
    #nav-bar {
        justify-content: space-evenly;
    }
    .contact-info-container {
        display: none;
    }
    #about-phrase-section {
        margin-top: 1rem;
        text-align: center;
        margin-right: 0;
        padding: 40px;
    }
    #about {
        height: auto;
    }
    .about-text {
        display: block;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-text {
        background-color: #000000;
        height: auto;
        width: 90%;
        text-align: center;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 6rem;
        margin-bottom: 4rem;
    }
    #about-logo-overlay {
        translate: 0% 0%;
    }
    #below-image-container {
        margin-right: 0px;
        width: 61vw;
        margin-right: 3rem;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 40vh;
        width: 45vw;
        border-radius: 10px;
    }
    #below-about-container {
        margin-bottom: 3rem;
    }
    .service-hidden-text {
        font-size: 13px;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 31px;
        z-index: 2;
        padding: 30px;
    }
    #services-img {
        margin-bottom: 3rem;
    }
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }

    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 27.5rem;
    }
    #services-img, #services-img-two, #services-img-one {
        height: 30vh;
        width: 19vw;
    }
    #services-img-one {
        margin-left: 6.5rem;
    }
    #services-img-two {
        margin-left: 6.5rem;
        width: 40vw;
    }
    #services-call-now-container {
        bottom: 41%;
        height: 15vh;
        width: 24vw;
        left: 23%;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        width: 60vw;
        height: 60vh;
        color: #fff;
    }
    #contact {
        margin-bottom: 6rem;
        margin-top: 6rem;
    }
}

@media (min-width: 1111px) and (max-width: 1200px) {
    /* Styles for standard desktops */
    .dropdown {
        margin-right: 0;
    }
    #nav-bar {
        justify-content: space-evenly;
    }
    .contact-info-container {
        display: none;
    }
    #about-phrase-section {
        margin-top: 1rem;
        text-align: center;
        margin-right: 0;
        padding: 40px;
    }
    #about {
        height: auto;
    }
    .about-text {
        display: block;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-text {
        background-color: #000000;
        height: auto;
        width: 90%;
        text-align: center;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 6rem;
        margin-bottom: 4rem;
    }
    #about-logo-overlay {
        translate: 0% 0%;
    }
    #below-image-container {
        margin-right: 0px;
        width: 58vw;
        margin-right: 3rem;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 40vh;
        width: 45vw;
        border-radius: 10px;
    }
    #below-about-container {
        margin-bottom: 3rem;
    }
    .service-hidden-text {
        font-size: 13px;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 31px;
        z-index: 2;
        padding: 30px;
    }
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }

    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 28.5rem;
    }
    #services-img {
        margin-bottom: 3rem;
    }
    #services-img, #services-img-two, #services-img-one {
        height: 30vh;
        width: 19vw;
    }
    #services-img-one {
        margin-left: 6.5rem;
    }
    #services-img-two {
        margin-left: 6.5rem;
        width: 40vw;
    }
    #services-call-now-container {
        bottom: 41%;
        height: 15vh;
        width: 24vw;
        left: 16%;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        width: 60vw;
        height: 60vh;
        color: #fff;
    }
    #contact {
        margin-top: 7rem;
        margin-bottom: 6rem;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    /* Styles for standard desktops */
    .dropdown {
        margin-right: 0;
    }
    #nav-bar {
        justify-content: space-evenly;
    }
    #about-phrase-section {
        margin-top: 1rem;
        text-align: center;
        margin-right: 0;
        padding: 40px;
    }
    #about {
        height: auto;
    }
    .about-text {
        display: block;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-text {
        background-color: #000000;
        height: auto;
        width: 90%;
        text-align: center;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 6rem;
        margin-bottom: 4rem;
    }
    #about-logo-overlay {
        translate: 0% 0%;
    }
    #below-image-container {
        margin-right: 0px;
        width: 58vw;
        margin-right: 3rem;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 40vh;
        width: 45vw;
        border-radius: 10px;
    }
    #below-about-container {
        margin-bottom: 3rem;
    }
    .service-hidden-text {
        font-size: 13px;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 31px;
        z-index: 2;
        padding: 30px;
    }
    #services-left-container {
        margin-right: 12rem;
    }
    #services-img {
        margin-bottom: 3rem;
    }
    #services-img, #services-img-two, #services-img-one {
        height: 30vh;
        width: 19vw;
    }
    #services-img-one {
        margin-left: 6.5rem;
    }
    #services-img-two {
        margin-left: 6.5rem;
        width: 40vw;
    }
    #services-call-now-container {
        bottom: 41%;
        height: 14vh;
        width: 24vw;
        left: 16%;
    }
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }
    
    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 31.2rem;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        width: 52vw;
        height: 60vh;
        color: #fff;
    }
    #contact {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }
}

@media (min-width: 1401px) {
    /* Styles for standard desktops */
    .dropdown {
        margin-right: 0;
    }
    #nav-bar {
        justify-content: space-evenly;
    }
    #about-phrase-section {
        margin-top: 1rem;
        text-align: center;
        margin-right: 0;
        padding: 40px;
    }
    #about {
        height: auto;
    }
    .about-text {
        display: block;
    }
    #about-first-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-text {
        background-color: #000000;
        height: auto;
        text-align: center;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 6rem;
        margin-bottom: 4rem;
        margin-left: 3rem;
        width: 50%;
    }
    #about-logo-overlay {
        translate: 20%;
    }
    #below-image-container {
        margin-right: 0px;
        width: 58vw;
        margin-right: 3rem;
    }
    #below-first-img, #below-second-img {
        background-size: cover;
        background-repeat: no-repeat;
        height: 40vh;
        width: 45vw;
        border-radius: 10px;
    }
    #below-about-container {
        margin-bottom: 3rem;
    }
    .service-hidden-text {
        font-size: 13px;
    }
    #contact-now-break-title {
        color: #fff;
        font-size: 31px;
        z-index: 2;
        padding: 30px;
    }
    #services-img {
        margin-bottom: 3rem;
    }
    #services-img, #services-img-two, #services-img-one {
        height: 30vh;
        width: 19vw;
    }
    #services-img-one {
        margin-left: 6.5rem;
    }
    #services-img-two {
        margin-left: 6.5rem;
        width: 40vw;
    }
    #services-left-container {
        margin-right: 12rem;
    }
    #services-call-now-container {
        bottom: 41%;
        height: 12vh;
        width: 24vw;
        left: 16%;
    }
    .contact-divider {
        border: 10px solid #000000;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form-container {
        width: 60vw;
        height: 60vh;
        color: #fff;
    }
}

@media (min-width: 1490px) {
    .about-text {
        background-color: #000000;
        height: auto;
        text-align: center;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 6rem;
        margin-bottom: 4rem;
        margin-left: 3rem;
        width: 50%;
    }
    #services-left-container {
        margin-right: 12.5rem;
    }
    
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }
    
    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 35.5rem;
    }
    
}

@media (min-width: 1510px) {
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }
    
    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 36rem;
    }
}

@media (min-width: 1588px) {
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }
    
    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 37.5rem;
    }
}

@media (min-width: 1650px) {
    .about-text {
        background-color: #000000;
        height: auto;
        text-align: center;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 6rem;
        margin-bottom: 4rem;
        margin-left: 7rem;
        width: 50%;
    }
    #services-left-container {
        margin-right: 15rem;
    }
    #tool-tip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
    }
    
    #tool-tip-div {
        font-size: 25px;
        font-weight: bold;
        margin-left: 43.5rem;
    }
}