@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --dark-color: #000;
    --light-color: #fff;
    --purple-color: #001E3B;
}

*{
    box-sizing: border-box; 
    padding: 0;
    margin: 0;
    outline: 0;
}

html{
    font-size: 10px;
    background-color: rgb(1, 3, 15);
    color: #fff;
    scroll-behavior: smooth;
}

body{
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

ul{
    list-style-type: none;
}

a{
    text-decoration: none;
    color: var(--dark-color);
}

/*------------------------------------------- Navbar -----------------------------------------------*/
.navbar {
    width: 100%;
    display: flex;
    position: fixed;
    justify-content: space-evenly;
    z-index: 9999;
}

.navbar ul {
    display: flex;
    margin-top: 20px;
    padding: 5px 20px;
    border-radius: 25px;
    background-color: rgba(0, 30, 59, 0.4);
}

.navbar ul li {
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.navbar ul li:last-child {
    margin-right: 0;
}

.navbar ul li a {
    justify-content: center;
    align-items: center;
    color: var(--light-color);
}

/*------------------------------------------- Content -----------------------------------------------*/

.get-in-touch {
	max-width: 100rem;
	margin: 0 auto;
}

.title {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	padding: 8rem 0 2rem 0;
	color: var(--light-color);
}

.form-field {
    position: relative;
    margin: 32px 0;
}

.submit-form{
    display: flex;
    justify-content: space-between;
}

.input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-width: 0 0 2px 0;
    border-color: var(--light-color);
    background-color: rgb(1, 3, 15);
    font-family: Lusitana, serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: white; 
}

.label {
    position: absolute;
    left: 20px;
    bottom: 11px;
    font-family: Lusitana, serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--light-color);
    cursor: text;
    transition: transform .2s ease-in-out;
}

.input-text.has-value + .label,
.input-text:focus + .label,
.input-text:valid + .label {
    top: -19px;
}
    
.submit-btn {
    display: inline-block;
    background-color: rgb(1, 3, 15);
    color: var(--light-color);
    font-family: Raleway, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}

.social-links{
    display: flex;
    margin-top: 3.5rem;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links li a{
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    margin-right: 1rem;
    border-radius: .3rem;
    box-shadow: 0 0 6px 5px rgba(0, 0, 0, 1);
    transition: all 300ms ease-in-out;
    font-size: x-large;
    opacity: 0.3;
}

.social-links li a:hover{
    opacity: 1;
}

/*-------------------------------------- footer ---------------------------------------*/
#footer{
    width: 100%;
    height: 400px;
    background-color: rgb(0, 1, 15);
    color: var(--light-color);
}

.footer-content{
    text-align: center;
}

.footer-content h3{
    color: var(--light-color);
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.footer-content > div:first-child div {
    width: 140px;
    height: 140px;
    overflow: hidden;
    margin: 5rem auto;
    border-radius: 50%;
}

.footer-content > div:first-child div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.gab {
    color: var(--light-color);
}

.gab:hover {
    opacity: 0.5;
}

.note {
    font-family: Lusitana, serif;
}