/*hero start*/

.hero-section {
    width: 100%;
    height: 360px;
    position: relative;
    background-color: var(--primary-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-hover-60);
}

.hero-section img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.hero-section .text-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.hero-section .text-content h1 {
    font-size: 45px;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-section .text-content h1 {
        font-size: 30px;
    }
}

.hero-section .breadcrumb {
    margin-bottom: 0;
}

.hero-section .breadcrumb-wrapper li {
    font-size: 13px;
    color: var(--secondary-hover);
}

.hero-section .breadcrumb-wrapper a {
    text-decoration: none;
    color: #F5F5F5;
}

.hero-section .breadcrumb-wrapper li.active {
    color: var(--primary-color);
}

.hero-section .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
    font-weight: 500;
    color: #F5F5F5 !important;
}

/*hero end*/

.contact-us-content .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    padding-left: 40px;
    border-left: 1px solid var(--primary-bg);
}

@media (max-width: 992px) {
    .contact-us-content .contact-info-wrapper {
        padding-left: 0;
        border-left:none;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--primary-bg);
    }
}

.contact-us-content .contact-info-wrapper .contact-info {
    width: 100%;
}

.contact-us-content .contact-info-wrapper .contact-info:not(:last-child) {
    border-bottom: 1px solid var(--primary-bg);
    padding-bottom: 16px;
}

.contact-us-content .contact-info-wrapper .contact-info .head {
    margin-bottom: 30px;
}

.contact-us-content .contact-info-wrapper .contact-info span {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-us-content .contact-info-wrapper .contact-info p {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-us-content .contact-info-wrapper .contact-info .social-wrapper {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: var(--card-first-shape);
    background-color: var(--secondary-hover);
}

.contact-us-content .contact-info-wrapper .contact-info .social-wrapper a {
    padding: 0;
    line-height: 10px;
}

/*form start*/
 .form-container h1 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
     letter-spacing: 1px;
    line-height: 1.8em;
}

 .form-container input,  .form-container textarea {
    border-radius: 0;
    background-color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--primary-color);
    line-height: 21px;
    border: 1px solid var(--secondary-color);
    margin-bottom: 30px;
}

 label {
    color: var(--primary-color);
    font-weight: 300;
    font-size: 14px;
    padding-bottom: 10px;
}

 .form-container input:focus,  .form-container textarea:focus {
    outline: none;
    box-shadow: none;
}

 .form-container textarea {
    width: 100%;
}

 .form-container .btn-submit-wrapper button {
    border-radius: 0;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px;
    width: 40%;
     transition: background-color 0.4s ease;
}

.form-container .btn-submit-wrapper button:hover {
    background-color: var(--primary-hover);
}

@media (max-width: 992px) {
     .form-container .btn-submit-wrapper button {
        width: 100%;
    }
}

/*map start*/
.map-wrapper {
    padding-top: 80px;
    height: 600px;
}

.map-wrapper .map {
    height: 100%;
}