body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.header {
    background-color: rgba(173, 216, 230, 1);
    background-image: linear-gradient(rgb(167, 217, 233), #f0f0f0);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 8em;
}

#repair-symbol {
    width: 2.5%;
    height: auto;
}

.header-site-name {
    display: flex;
    flex-direction: row;
    margin-top: 3%;
    margin-left: 5%;
    font-size: 2.5em;
}

.desc {
    display: flex;
    justify-content: left;
    
}

.desc-image {
    position: absolute;
    z-index: -1;
    margin-left: 55%;
    
}

.desc-title {
    font-size: 4.5em;
    color:cadetblue;
    margin-top: 3%;
    margin-left: 15%
}

.desc-body {
    background-color: #eacda3;
    background-image: linear-gradient(top to bottom, #eacda3
, #ebe6de);
    color: rgb(255, 255, 255);
    margin-top: 5%;
    margin-right: 2%;
    width: 40%;
    margin-left: 15%;
    height: 9em;
    font-size: 2.0em;
    margin-bottom: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 0.4em;
}

.prices-content {
    width:100%;
    height: 50%;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content:space-between;
    /* border-style: double;
    border-color: red; */

}

.prices-header {
    font-size: 3.7em;
    /* border-style: double;
    border-color: black; */
    font-weight: semibold;
    background-color: rgb(143, 139, 139);
    /* background-image: linear-gradient(rgb(199, 199, 253), white); */
    margin: 1%;
    width: 70%;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: rgb(248, 228, 228);
}

.prices {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* border-style: double;
    border-color: blue; */
}

table {
    width:100%;
    border-spacing: 0;
    /* border-collapse: collapse;
    border-radius: 40px; */
    /* border-style:double;
    border-color:black; */
    color: #4A4A4A;
    border-collapse: collapse;
    
}

.footer {
    display: flex;
    margin-top: 1%;
    margin-right: auto;
    margin-left: auto;
    width: 30%;
    height: 15em;
    margin-bottom: 2%;
    justify-content: center;
    background-color: rgba(140,110,82,1);
    background-image: linear-gradient(to bottom right, rgb(134, 107, 82), rgb(204, 192, 179));
    border-radius: 20px;
}

.contact {
    width: 70%;
    color: rgb(249, 247, 245);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-left: 15%;
}

.contact-header {
    font-size: 2em;
    width: 70%;
}

.contact-body {
    font-size: 1.2em;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 1%;
}

.location {
    width: 50%;
    /* background-color: rgb(46, 90, 136);
    background-image: linear-gradient(to bottom left, rgb(50, 50, 137), rgb(112, 141, 172)); */
    /* border-radius: 20px; */
    color: rgb(249, 247, 245);
}

.location-header {
    font-size: 2em;
    margin-top: 15%;
    margin-left: 5%;
}

.location-body {
    font-size: 1.2em;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10%;
    margin-left: 5%;
}

th {
    padding: 0.3em;
}

td {
    padding: 1em;
}

tr {
    border-bottom: 1px solid #E6E6E6;
    border-top: 1px solid #E6E6E6;
    border-collapse: collapse;
}

tr:first-child {
    background-color: rgb(220, 216, 216);
}

tr:nth-child(2) {
    background-color: rgb(232, 227, 227);
}


tr:not(tr:first-child):not(tr:nth-child(2)):hover {
    background-color: rgb(228, 223, 223);
}

td:first-child {
    text-align: left;
}

td:not(:first-child) {
    text-align: right;
}

@media only screen and (max-width: 1150px) {
    .desc-image {
        display: none;
    }
    
    .desc-body {
        width: 67%;
    }

    .prices {
        flex-direction: column;
    }

    .footer {
        width: 50%;
    }
}

@media only screen and (max-width: 1000px) {
    .prices {
        flex-direction: column;
    }



    .contact-header {
        font-size: 1.7em;
    }
}

@media only screen and (max-width: 600px) {
    .prices-header {
        font-size: 3em;
    }

    .contact-header {
        font-size: 1.5em;
    }

    .contact-body {
        font-size: 1em;
    }

    .footer {
        height: 15em;
    }
}

/* tr:nth-child(even) {
    background-color: rgba(173, 216, 230, 0.3);
} */

/* tr:nth-child(odd) {
    background-color: rgb(228, 223, 223);
} */
