/* ==============================
                Heading 
=================================
*/
.heading {
    width: 100%;
    background-color: var(--second-color);
    color: var(--first-color);
}

.header-title {
    font-size: 30px;
    font-weight: normal;
    margin-top: 3vh;
}

.header-main {
    font-size: 20px;
    font-weight: normal;
}

.heading .btn {
    color: var(--first-color);
    border-color: var(--first-color);
}

.container strong {
    font-weight: bold;
}

.custom-shape-divider-top-1711280432 {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 30px;
}

.custom-shape-divider-top-1711280432 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-top-1711280432 .shape-fill {
    fill: var(--second-color);
}

/* ==============================
                Contact 
================================= */
.separator {
    border-left: 2px solid #ccc;
    height: 150px;
    margin: auto;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--third-color);
}

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 20vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 5vh;
    padding-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--fourth-color);
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}

.contact-header h1::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--second-color);
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}

.contact-header p {
    font-size: 1rem;
    color: var(--third-color);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.row p {
    font-size: 1rem;
    color: var(--third-color);
    text-align: center;
}

.custom-btn {
    background-color: var(--third-color);
    color: var(--first-color);
    border: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-btn:hover {
    background-color: var(--second-color);
    color: var(--first-color);
}

@media screen and (max-width: 768px) {
    .header-title {
        font-size: 24px;
    }
  
    .header-main {
        font-size: 18px;
    }
  
    .ratio-16x9 {
        max-width: 300px; 
        margin: 0 auto;
    }

    .contact-container {
        height: auto;
        padding-top: 5vh;
    }

    .contact-header {
        margin-bottom: 5vh;
        padding-bottom: 10px;
        max-width: 90%;
    }

    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-header p {
        font-size: 0.9rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .custom-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .separator {
        display: none;
    }

    .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  }
  