@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: url(./images/bg.jpg), #000;
    background-size: cover;
    color: #fff;
    font-family: "Quicksand", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Nav */
nav {
    width: 100%;
    height: 75px;
    background: #4570a3;
}

nav h1 {
    position: absolute;
    margin: 12.5px 30px;
    font-size: 40px;
    font-family: "Arvo", serif;
    font-weight: 550;
}

nav ul {
    float: right;
    margin-right: 35px;
    font-size: 25px;
}

nav ul li {
    display: inline-block;
    margin: 20px 35px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
}

nav ul li a:hover {
    color: #79d9ff;
}

nav ul li a i {
    margin: 0 10px;
}

/* Contact Us */
.container {
    margin: 50px auto;
    position: relative;
    width: 1000px;
    height: 650px;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
    display: flex;
}

.contact-info {
    position: relative;
    width: 350px;
    background: rgba(26, 42, 75, 0.7);
    box-shadow: -1px 0 5px #04F6F8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    color: #fff;
    border-radius: 10px 0 0 10px;
}

.contact-info h2 {
    font-size: 2em;
    /* font-weight: 600; */
    margin-bottom: 30px;
    font-family: "Arvo", serif;
    font-weight: 500;
}

.info-list {
    list-style: none;
    margin-bottom: 40px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-weight: 300;
}

.info-list li i {
    font-size: 1.2em;
    margin-right: 20px;
    width: 25px;
    text-align: center;
    padding-top: 5px;
}

.info-list li span {
    max-width: 500px;
    line-height: 1.5;
}

.info-list li span:hover {
    color: #79d9ff;
}

.info-list li a {
    margin: auto;
    width: 50px;
    padding: 4px;
    height: 22.5px;
    background: #007bff;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons li a {
    color: #fff;
    font-size: 1.5em;
    transition: 0.3s ease;
}

.social-icons li a:hover {
    color: #79d9ff;
}

.contact-form {
    position: relative;
    width: 650px;
    background: rgba(115, 164, 187, 0.7);
    padding: 40px;
    box-shadow: -1px 0 5px #04F6F8;
    border-radius: 0 10px 10px 0;
}

.contact-form h2 {
    font-size: 2em;
    /* font-weight: 600; */
    color: #00024f;
    margin-bottom: 40px;
    font-family: "Arvo", serif;
    font-weight: 500;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 25px;
}

.input-group {
    position: relative;
    width: 260px;
    /* display: flex; */
    /* gap: 20px; */
    /* background: aliceblue; */
}

.input-group.full-width {
    flex: 1 1 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 5px 0;
    border: none;
    border-bottom: 2px solid #1c208a;
    outline: none;
    background: transparent;
    /* font-size: 1em; */
    color: #333;
    resize: none;
}

.input-group label {
    position: relative;
    left: 0;
    /* top: -20px; */
    color: #1c208a;
    font-size: 1em;
    pointer-events: none;
}

.send-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    align-self: flex-start;
}

.info-list li a:hover,
.send-btn:hover {
    background-color: #025ec1;
}


/* Footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 10px;
    background-color: rgba(0, 14, 41, 0.612);
}


.footer-content p {
    max-width: 500px;
    color: #cacdd2;
}

.copyright {
    width: 100%;
    text-align: center;
}

.copyright p {
    word-spacing: 2px;
    text-transform: capitalize;
}

.copyright p a {
    color: #79d9ff;
    font-size: 16px;
    text-decoration: none;
}

.copyright p a:hover {
    color: #5ca3c0;
}