@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Bitter&family=Island+Moments&family=Rubik+Marker+Hatch&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abyssinica+SIL&family=Courgette&family=Kaushan+Script&family=Merriweather:wght@300&family=Roboto+Slab:wght@300&family=Rubik:wght@300&family=Staatliches&display=swap');

:root{
    --primary-color: #00CEF3;
    --secondary-color: #FFC416;
    --third-color: #FA0107;
    --font-main:"Rubik Marker Hatch";
    --font-second:"Akaya Telivigala"
}
body{
    font-family: var(--font-second);
}
.contact-header {
    position: relative;
    background-image: url('../img/contact.jpg'); /* Replace 'path/to/your/image.jpg' with the actual path to your background image */
    background-size: cover;
    background-position: center;
    color: #fff; /* Set the text color to white or any other contrasting color */
    text-align: center;
    padding: 50px 0; /* Adjust the padding as needed */
    font-family: var(--font-second);
}

.contact-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(84, 188, 223, 0.3); /* Adjust the overlay color and transparency */
}
.contact-header h2{
    font-family: var(--font-main);
    font-size: 4rem;
}
.contact-header h3{
    color: white;
    font-size: 2rem;
}
@media (max-width: 776px) {
    .contact-header h2 {
        font-family: var(--font-main);
        font-size: 1.5rem;
    }

    .contact-header h3 {
        color: white;
        font-size: 1rem;
    }
}
.ls-contact-main{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.ls-contact-maintext{
    background-color: rgba(108, 131, 162,0.2);
    padding: 1.3rem;
}
.ls-contact-maintext h2{
    color: #0d7082;
    font-weight: bold;
}
.ls-contact-maintext h3{
    color: #7e7e7e;
}

.ls-contact-maintext ul li{
    list-style: none;
}

.contact-form{
    background-color: rgba(108, 131, 162,0.2);
    padding: 1.3rem;
    margin-bottom: 10px;
}

.contact-form span{
    color: #FFC416;
    font-size: 44px;
}
.contact-form h2{
    color: #00CEF3;
}
.ls-contact-main i{
    color: #FFC416;
    font-size: 22px;
}
.ls-contact-main {
    color: #7e7e7e;
}
.ls-contact-main a{
    text-decoration: none;
    color: black;
}
.ls-contact-main span{
    color: black;
}
.btn-submit{
    background-color: #FFC416;
    margin-top: 1rem;
    padding: 0.8
    rem 3rem;
    color: white;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.btn-submit:hover{
    background-color: #FA0107;
    border-radius: 10px;
}
@media(max-width:776px){
    .ls-contact-main i{
        color: #FFC416;
        font-size: 12px;
    }
}