*{
    box-sizing: border-box;
}
body{
    margin: 0;
}
header{
    background-image: url("../photo/cover.jpg");
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    background-color: rgba(78, 78, 78, 0.267);
    background-blend-mode: darken;
    width: 100%;
    height: 100vh;
}
header nav{
    width: 100%;
    height: 15vh;
    background-color: #fee2b3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 150px;
}
header nav .left h1{
    color: black;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 27px;
}
h1 ,h2 ,h3 ,p{
    margin: 0;
}
header nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
    /* background-color: aqua; */
}
header nav ul li{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
header nav ul li a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);   
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
}
header nav ul li a span{
    color: rgb(0, 0, 0);
    font-size: 19px;
}

header section{
    width: 100%;
    height: 85vh;
    /* background-color: aqua; */
    display: flex;
    justify-content: space-around;
    align-items: center;
}
header section .contact{
    width: 35%;
    /* background-color: #fcd2ab; */
}
header section .contact h2{
    color: #fff;
    font-size: 43px;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    letter-spacing: 3px;
}
header section .contact p{
    color: #ffff;
    font-size: 17px;
    margin-top: 10px;
    font-family: sans-serif;
    line-height: 30px;
    font-weight: 500;
}
header section .inbuts{
    width: 33%;
    height: 65vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 5px;
    margin-top: 30px;
    gap: 30px;
}
header section .inbuts h3{
    color: rgba(0, 0, 0, 0.685);
}
header section .inbuts .text{
    border: 1px solid rgba(128, 128, 128, 0.616);
    padding: 12px 20px;
    color: rgba(128, 128, 128, 0.616);
    border-radius: 5px;
}
header section .inbuts .email{
    border: 1px solid rgba(128, 128, 128, 0.616);
    padding: 12px 20px;
    color: rgba(128, 128, 128, 0.616);
    border-radius: 5px;
}
header section .inbuts .date{
    border: 1px solid rgba(128, 128, 128, 0.616);
    padding: 12px 20px;
    color: rgba(128, 128, 128, 0.616);
    border-radius: 5px;
}
header section .inbuts button{
    padding: 18px 20px;
    color: black;
    background-color: #fee2b3;
    border: 1px solid #fee2b3;
    border-radius: 5px;
    transition: .5s;
}
header section .inbuts button a{
    text-decoration: none;
    color: black;
    font-size: 15px;
}
header section .inbuts button:hover{
    color: #fee2b3;
    background-color: #fff;
    border: 1px solid #fee2b3;
    box-shadow: 1px rgba(0, 0, 0, 0.404);
}