@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');

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

body {
    background: rgba(1, 62, 124, 0.95);
}
.navigation img{
    width: 300px;
    padding-top: 24px;
    margin-left: 5%;
  }
.container {
    width: 60%;
    margin: 150px auto;
    display: flex;
    background-color: white;
    flex-wrap: wrap;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.contact_info {
    width: 30%;
    padding: 20px;
    flex-grow: 1;
    background-color: #0F3F6F;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    
}

.contact_items {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 44px;
    
}

.contact_items a{
   
    color: #728EA3;
    font-size: 16px;
    text-decoration: none;
    font-family: Microsoft Sans Serif;

}

.contact_items img {
    width: 20px;
    height: 20px;
}

.contact_info h2 {
    font-family: Microsoft Sans Serif;
    font-weight: 100;
    color: #EDEDED;
    font-size: 36px;
    padding-top: 38px;
    padding-bottom: 31px;
}

.contact_form {
    padding: 20px;
    flex-grow: 2;
    
}

.contact_form h2 {
    font-family: 'Concert One', sans-serif;
    color: #446C93;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 8px;
}

.contact_form p {
    color: #CFD0D0;
    font-family: sans-serif;
    font-size: 15px;
    width: 90%;
    padding-bottom: 16px;
}

.form {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input {
    font-size: 18px;
    height: 50px;
    border-radius: 7px;
    background-color: rgb(241, 241, 241);
    border: none;
    padding-left: 9px;
}

.input:focus {
    outline: none;
    
}

.input::placeholder {
    color: #a5a4a4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
   
}
.btn{
    padding: 12px;
    width: 200px;
    border: none;
    color: white;
    background: #1C66AF;
    border-radius: 7px;
    font-family: "Concert One";
    font-size: 16px;
    padding-left: 9px;
    cursor: pointer;
}
.btn:hover{
    background: #164e86;
}

.textarea {
    height: 202px;
    flex-shrink: 0;
    border: none;
    border-radius: 7px;
    background-color: rgb(241, 241, 241);;
    font-size: 18px;
    padding-left: 9px;
    padding-top: 8px;
}

.textarea:focus {
    outline: none;
    padding-top: 8px;
    
}

.textarea::placeholder {
    font-family: sans-serif;
    color: #a5a4a4;
    font-size: 16px;
  
    
}

.footer {
    width: 100%;
    background-color:#2a4768;
}

.footer_container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;

}

.footer_about {
    flex-grow: 1;
    flex-basis: 400px;

}

.footer_about p {
    width: 90%;
    color: white;
}

.footer_about img {
    width: 300px;
}

.footer_title {
    color: white;
    font-size: 32px;
}

.footer_contact {
    flex-basis: 400px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_item {
    padding: 14px 0;
    display: flex;
    gap: 4px;
    align-items: center;
    border-bottom: 1px solid white;

}

.contact_item a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.contact_item img {
    width: 24px;

}

.footer_fastAcc {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer_fastAcc a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}