* {
    margin: 0;
}



.font-title h1,
h1.font-title {
    font-size: clamp(100px, 8vw, 128px);
    position: absolute;
    bottom: 10%;
    display: flex;
    justify-content: center;
}

.font-body h1,
h1.font-body {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 400;
    margin: 0;
}


.font-body h4,
h4.font-body {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 400;
    margin: 0;
}

.font-body h6,
h6.font-body {
    font-size: clamp(16px, 3vw, 20px);
}


.background-image {
    background-image: url(../img/contact-images/contact-images.png);
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 8%;
}

.container-outer {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 10%;
}

.container-form {
    background-color: rgba(5, 0, 100, 1);
    width: 60%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 5%;
    gap: 30px;
    margin-bottom: 10%;
}

label {
    color: var(white);
    margin-bottom: 10px;
    display: block;
}

input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

input[type="text"]#message,
textarea {
    height: 100px;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.framelogo-outside {
    background-color: black;
    height: auto;
    padding: 5% 10%;
    gap: 3%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.framelogo-inside a {
    display: block;
    width: 100%;
    height: 100%;
}


.button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.white-button {
    background-color: white;
    border: 2px solid #000;
    color: #000;
    border-radius: 5px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.close-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/*breadcrumb*/
div.breadcrumb {
    background-color: #07175B;
    color: white;
    padding: 5px 0px 5px 0px;
    margin: 0px;
    position: fixed;
    display: flex;
    justify-content: center;
    top: 70px;
    left: 0;
    width: 100%;
    height: fit-content;
    z-index: 98;
    all: revert;
}

ul.breadcrumb {
    font-family: 'Futura Std', sans-serif;
    font-weight: 400;
    font-size: 14px;
    list-style: none;
    max-width: 1250px;
    padding: 0px 50px;
    width: 100%;
    all: revert;
}

@media screen and (max-width:1024px) {}


@media screen and (max-width:800px) {
    .framelogo-outside {
        background-color: black;
        height: auto;
        padding: 5% 15%;
        gap: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}