.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px;
    margin: 0;
    margin-top: 25px;
    background-color: #181A1E;
    border-radius: 15px;
}

.heading-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    padding-bottom: 50px;
    padding-top: 10px;
}

.heading-content-h {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin-bottom: 25px;
    color: rgb(30, 120, 220);
}

.heading-content-h h1 {
    color: rgb(30, 120, 220);
}

.heading-content-p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-bottom: 15px;
    line-height: 25px;
    font-size: large;
}

.info-social-medias {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    margin-top: 5px;
    padding: 0;
}

#contact-section {
    display: flex;
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 110px;
    justify-content: space-around;
    background-color: #121317;
    color: white;
}

.Contact-info {
    display: flex;
    flex-direction: column;
    width: 32%;
}

.contact-title {
    font-size: 0.9rem;
    margin: 8px;
    margin-left: 0;
}

.Contact-info h2{
    font-size: 3rem;
    margin-bottom: 20px;
}

.timeless {
    font-weight: 500;
    font-style: italic;
}

.info-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-contact {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 50;
    margin-top: 5px;
    color: rgb(30, 115, 220);
}

form {
    display: flex;
    flex-direction: column;
    padding: 25px;
    width: 500px;
    background-color: #181A1E;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.input-fields {
    display: flex;
    flex-direction: column;
}

.seperator {
    background-color:rgb(30, 100, 220);
    height: 1px;
    margin-bottom: 14px;
    border: none;
}

label {
    margin: 10px;
    margin-left: 0;
}

::placeholder {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.98rem;
    color: rgb(114, 114, 114);
}

input[type="text"], input[type="email"] {
    background-color: transparent;
    border: none;
    text-align: left;
    margin: 5px;
    margin-left: 0;
    padding: 0;
    font-size: 1.2rem;
    color: white;
}

textarea {
    background-color: transparent;
    border: none;
    resize: none;
    text-align: left;
    margin: 0;
    margin-top: 8px;
    padding: 0;
    font-size: 1.2rem;
    width: 100%;
    height: 175px;
    max-height: 200px;
    color: white;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    border: none;
    box-shadow: none; 
} 

.form-btn {
    display: flex;
    justify-content: center;
}

#submit-btn {
    font-size: 0.94rem;
    padding: 14px 20px 14px 20px;
    background-color: rgb(30, 120, 220);
    border: none;
    width: 95%;
    text-align: center;
    color: white;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(10, 10, 10, 0.734);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}