@import url(common.css);
@import url(comon_media_query.css);

.bg-yellow {
    background-color: var(--yellow);
}

.card-slide {
    cursor: grab;
}

.card-slide h4 {
    font-weight: 600;
    font-size: 20px;
}

.card-slide p {
    font-weight: 400;
    font-size: 14px;
}

.title {
    font-size: 30px;
    font-weight: 600;
}

.banner {
    background: url("../images/design_engineering.png") no-repeat;
    width: 100%;
    background-size: cover;
}

.page_title {
    font-weight: 600;
    font-size: 32px;
    color: #303030;
    position: relative;
}

.page_title::after {
    background: none repeat scroll 0 0 var(--green);
    content: "";
    display: block;
    height: 7px;
    width: 15%;
    position: absolute;
    border-radius: 10px;
}

.popup-multiple-cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 21px 30px;
    background: #FFFFFF;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
}

.popup-multiple-cards h5 {
    font-weight: 600;
    font-size: 18px;
    color: #303030;
}

.popup-multiple-cards p {
    font-weight: 400;
    font-size: 14px;
    color: #585858;
}

/* electrical modal starts */
.electrical-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.electrical-close-btn:hover {
    background: white;
}

.electrical-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.electrical-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-electrical-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/electrical_popup_bg.png") no-repeat;
    background-size: cover;
    padding: 100px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.electrical-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-electrical-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-electrical-popup {
        padding: 100px 0px 0px 0px;
    }
}

/* electrical modal ends */



/* mechanical modal starts */
.mechanical-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.mechanical-close-btn:hover {
    background: white;
}

.mechanical-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mechanical-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-mechanical-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/mechanical_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 100px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.mechanical-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-mechanical-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-mechanical-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* mechanical modal ends */


/* hvac modal starts */
.hvac-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.hvac-close-btn:hover {
    background: white;
}

.hvac-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hvac-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-hvac-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/hvac_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 150px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.hvac-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

.hvac-popup .align-self-center {
    place-self: center !important;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-hvac-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-hvac-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* hvac modal ends */



/* solar modal starts */
.solar-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.solar-close-btn:hover {
    background: white;
}

.solar-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.solar-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-solar-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/solar_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 150px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.solar-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

.solar-popup .align-self-center {
    place-self: center !important;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-solar-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-solar-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* solar modal ends */




/* calculations modal starts */

.calculations-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.calculations-close-btn:hover {
    background: white;
}

.calculations-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.popup-multiple-cards .diagonal-arrow {
    position: absolute;
    right: 0px;
    bottom: -5px;
}

.calculations-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-calculations-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/calculations_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 150px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.calculations-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

.calculations-popup .align-self-center {
    place-self: center !important;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-calculations-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-calculations-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* calculations modal ends */


/* drawings modal starts */
.drawings-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.drawings-close-btn:hover {
    background: white;
}

.drawings-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.drawings-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.scrollbar {
    height: 84%;
    overflow-y: scroll;
    max-height: 85%;
}

.scrollbar::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
    background: #FFFFFF;
    box-shadow: -4px 4px 7px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
}

.main-drawings-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/drawings_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 150px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
}

.drawings-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

.drawings-popup .align-self-center {
    place-self: center !important;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-drawings-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-drawings-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* drawings modal ends */


/* tenders modal starts */
.tenders-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.tenders-close-btn:hover {
    background: white;
}

.tenders-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.tenders-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-tenders-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/tenders_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 150px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.tenders-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

.tenders-popup .align-self-center {
    place-self: center !important;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-tenders-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-tenders-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* tenders modal ends */


/* dbr modal starts */
.dbr-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.dbr-close-btn:hover {
    background: white;
}

.dbr-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.dbr-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-dbr-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/dbr_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 150px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.dbr-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

.dbr-popup .align-self-center {
    place-self: center !important;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-dbr-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-dbr-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* dbr modal ends */


/* prebids modal starts */
.prebids-close-btn {
    border: .6px solid white;
    padding: 10px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: .5s ease all;
}

.prebids-close-btn:hover {
    background: white;
}

.prebids-popup {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.prebids-popup-overlay {
    background: rgba(0, 0, 0, 0.575);
    height: 100vh;
    width: 100%;
    position: absolute;
}

.main-prebids-popup {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background: url("../images/prebids_popup_bg.webp") no-repeat;
    background-size: cover;
    padding: 150px 20px 0px 20px;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    transform: translateX(-100%);
    overflow-y: auto;
}

.prebids-popup-content p {
    font-size: 1.5rem;
    line-height: 2rem;
}

.prebids-popup .align-self-center {
    place-self: center !important;
}

@keyframes slide-in {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .main-prebids-popup .container {
        background-color: var(--white);
        padding: 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
    }

    .main-prebids-popup {
        padding: 100px 0px 0px 0px;
        background-size: contain;
    }
}

/* prebids modal ends */