* {
    margin: 0;
    padding: 0;
}

body {
    color: #fff;
    font-family: 'Segoe UI';

}

.wrapper {
    width: 60%;
    margin: 0 auto;
}

/*====================Header=========================*/
header {
    background-color: #4a545c88;
    text-transform: uppercase;
    padding: 40px 0;
    position: fixed;
    width: 100%;
    
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


header .wrapper h1 span {
    color: #4bcaff;
}

header .wrapper nav {
    width: 45%;
    display: flex;
    justify-content: space-between;
}

header nav a {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    border: 3px solid transparent;
}

footer{
    display: flex;
    justify-content: space-between;
}

footer nav a{
    color: rgb(116, 116, 116);
    text-decoration: none;
    padding: 5px 15px;
    border: 3px solid transparent;
    padding-left: 50px;
}

footer nav{
    padding-left: 250px;
}

header nav a:hover {
    border: 3px solid #4bcaff;
    color: #4bcaff;
}

/* =====================Banner============================= */
.headerbanner {
    background-image: url(/img/Hero.png);
    background-position: center;
    background-size: cover;
    text-transform: uppercase;
}

.banner h2 {
    font-size: 3rem;
    margin: 10px;
    background-color: #4a545c88;
    font-weight: 100;
}

.banner-text {
    padding: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =====================Main============================= */

#services{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: #4bcaff;
    padding: 20px;
}
#services h2{
    padding-bottom: 10px;
}
.underline{
    border-bottom: 3px solid white;
}

main h1{
    text-decoration: underline;
}
.icons{
    display: flex;
}

.iconquotebox{
    display: flex;
    justify-content: space-between;
}
.iconquote{
    font-family: "Space Grotesk";
    font-size: 5rem;
 
}

.quote{
    font-size: 1.5rem;
    font-weight: lighter;

}

#testimonials{
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
}
.author{
    padding-top: 10px;
    color: #4bcaff;
}

#testimonials .underline{
    border-bottom: solid 3px black;
}

#contacts{
    background-image: url(../img/Contact_photo.png);
    padding:20px;
    
}  

.inputs{
    display: flex;
    flex-direction: column;
}

.inputs input{
    width: 250px;
}

/* form{
    display:grid;
    grid-template-columns: 1fr 1fr;
} */
.contacttext1{
    padding-bottom: 20px;
}

.form input,
.form textarea {
    background: transparent;
    /* width: 200%; */
    padding: 10px;
    margin-bottom: 15px;
    border:solid 3px white;
    font-size: 1rem;
    /* height: 200%; */
}





#contacts button {
    background-color: #4bcaff;
    color: #fff;
    padding: 20px 60px;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
}

.formpart2 textarea {
    height: 120px;
    width: 192%;
}

#contacts label {
    display: block;
    margin: 15px 0 5px;
    font-size: 1rem;
    font-weight: bold;
    padding-bottom: 10px;
}

#contacts .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.formtext {
    flex: 1 1 45%; 
    padding: 0 20px;
}

#contacts button:hover {
    background-color: #4a545c;
    color: #fff;
}

.formtext p {
    margin: 5px 0;
    font-size: 1rem;
    font-weight: lighter;
    order: -1;
}

.form{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

footer{
    background-color: #4a545c6c;
    position: fixed;
    bottom: 0;
    width: 100%;
}