/**********************************************************************************
  ********************************* HOME ********************************************
  ***********************************************************************************/
#cover-img {
    height: 75vh;
    position: relative;
}

#home {
    height: 70%;
    background: none;
}

.home-image {
    position: absolute;
    top: auto;
    left: auto;
    transform: none;
    height: 100% !important;
    width: 100%;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.home-content {
    width: 100%;
    height: 100%;
    display: table;
}

.home-content-inner {
    display: table-cell;
    vertical-align: middle;
}

.home-heading {
    color: white;
    font-weight: 500;
    font-size: 3.8rem;
    text-transform: capitalize;
    margin: 0;
    display: inline-block;
}

.home-heading:after {
    content: "";
    border-radius: 15px;
    height: 5px;
    width: 20%;
    background: var(--dark);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.home-desc {
    color: white;
    font-weight: 500;
    font-size: 3rem;
    margin: 20px 0 30px;
    display: inline-block;
}

.sider-page-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 45%;
    transform: translate(-50%, -50%);
}

.sider-page-content .tag-line {
    position: absolute;
    top: 50%;
    width: 100%;
    height: fit-content;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.sider-page-content .tag-line h1 {
    font-weight: bold;
    margin: 0;
}

.sider-page-content .top-cover {
    position: absolute;
    top: 0;
    left: 50%;
    width: 42%;
    transform: translateX(-50%);
    height: 35%;
    border: 4px solid var(--dark);
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: end;
}

.sider-page-content .top-cover h3 {
    color: #fff;
    text-transform: uppercase;
}

.sider-page-content .bottom-cover {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 42%;
    transform: translateX(-50%);
    height: 35%;
    border: 4px solid #fff;
    border-top: none;
    display: flex;
    justify-content: center;
}

/*****************************************************
**************** CONTACT US **************************
*****************************************************/
.contact-us {
    background-color: #ebebeb;
    position: relative;
}

.map-img {
    position: absolute;
    top: 0;
    left: 30%;
    width: 70%;
    height: 100%;
    background-image: url("../assets/contact/map.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.map-click {
    position: absolute;
    top: 50%;
    left: 60%;
    width: 30%;
    height: 20%;
    transform: translateY(-50%);
}

.map-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ebebeb;
    clip-path: polygon(0 0, 74% 0%, 30% 100%, 0% 100%);
}

.sm-map-img {
    display: none;
}

.contact-us-container {
    background-color: #ebebeb;
}

.contact-detail-card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    background-color: #ebebeb;
    /* background-color: rgba(229, 21, 21, 0.15); */
}

.contact-detail-card .title {
    margin-bottom: 5rem;
}

.contact-detail-card .title h3 {
    margin: 0;
    text-align: center;
}

.contact-detail-card p {
    text-align: center;
}

.contact-us-details-title,
.contact-us-form-title {
    margin-top: 0;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

.contact-us-form-title {
    color: var(--dark);
}

.contact-us-details {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-us-form {
    padding: 35px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #ebebeb;
    /* background-color: rgba(229, 21, 21, 0.15); */
}

.custom-input {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    background: #ebebeb;
    border: 0.3px solid #000;
}

.content .icons {
    width: 20px;
    display: flex;
    justify-content: center;
}

.content i {
    display: inline-block;
    font-size: 16px;
}

.content p {
    text-align: left;
    margin-left: 20px;
    margin-bottom: 0;
}

.contact-us-form .contentBox {
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .sider-page-content {
        width: 45%;
        height: 45%;
    }

    .map-click {
        left: 70%;
    }
}

@media (max-width: 1000px) {
    .map-img {
        display: none;
    }

    .map-img-overlay {
        display: none;
    }

    .sm-map-img {
        display: block;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .sider-page-content {
        width: 100%;
    }

    .sider-page-content .top-cover {
        width: 50%;
    }

    .sider-page-content .bottom-cover {
        width: 50%;
    }

    .map-click {
        display: none;
    }
}

form small.text-danger {
    color: red !important;
}
