h1 {
    color: rgba(255, 0, 0, 0.8);
}

button {
    color: gold;
    background-color: rgba(255, 0, 0, 0.8);
}

button:hover {
    border: 1px solid white;
}

h2 {
    color: rgba(255, 0, 0, 0.8);
}
/* 
h2:hover {
    color: gold;
} */

h3 {
    color: rgba(255, 0, 0, 0.8);
}

/* h3:hover {
    color: gold;
} */

#left-content p:hover {
    color: rgba(255, 0, 0, 0.8);
}

/* #right-content label:hover {
    color: gold;
} */

.container_cost .heading {
    color: rgba(255, 0, 0, 0.8);
}

/* .container_cost .heading:hover {
    color: gold;
} */

#cost3 .sub_heading {
    color: rgba(255, 0, 0, 0.8);
}

/* #cost3 .sub_heading:hover {
    color: gold;
    font-size: 2rem;
    transition: linear 2ss ease-in-out;
} */

#cost3 button {
    background-color: rgba(255, 0, 0, 0.8);
    color: gold;
}

.container_cost .heading a {
    color: rgba(255, 0, 0, 0.8);
}

#cost1 button {
    background-color: rgba(255, 0, 0, 0.8);
    color: gold;
}

#cost1 button:hover {
    border: 1px solid white;
    background-color: white;
}

.container_services .heading {
    color: #fe1c16;
}

/* .container_services .heading:hover {
  color: gold;
} */

.box .sub_heading {
    color: rgba(255, 0, 0, 0.8);
}

.container_contact button {
    color: gold;
    background-color: rgba(255, 0, 0, 0.8);
}

.container_contact button:hover {
    background-color: white;
}

.faq .upper:hover {
    color: rgba(255, 0, 0, 0.8);
}

#cost2 {
    background-color: #fff;
}

.container_faq {
    background-color: gainsboro;
}

.container_faq_body {
    background-color: gainsboro;
}

.container_faq_sub {
    background-color: transparent;
}

.social {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 10rem;
    width: auto;
    position: fixed;
    top: 10rem;
    right: 0;
    z-index: 10;
}

.social .img {
    height: 3rem;
    width: 3rem;
    margin: 2rem 2rem;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}

.social .img:hover {
    transform: scale(1.5);
}

.social .img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

@media (min-width: 430px) and (max-width: 960px) {
    .social .img {
        height: 2.5rem;
        width: 2.5rem;
    }
}

@media (min-width: 250px) and (max-width: 430px) {
    .social .img {
        height: 2.5rem;
        width: 2.5rem;
        margin: 2rem 0;
    }
}

.backtohome {
    position: fixed;
    right: 32px;
    bottom: 32px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.1ms 0.1s ease-in-out;
    opacity: 0;
    z-index: 100;
}

.backtohome:hover {
    background-color: red;
    box-shadow: 1px 0.5px gold;
}

.opacity {
    opacity: 1;
}

/* .credits {
    width: 100%;
    height: 4vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #161c27;
    color: #fff;
    font-size: 1.1vw;
}

.credits a {
    color: #fff;
    text-decoration: none;
} */

.floating-alert {
    position: fixed;
    top: 1.25vw;
    right: 20px;
    z-index: 10000;
    display: none;
    border-radius: 0.25vw;
    padding: 1vw;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.body {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: end;
    background-color: transparent;
}
