/*CSS RESET*/
* {
    margin: 0;
    padding: 0;
}

body
{
    background-color: rgba(234, 232, 232, 0.856);
    font-family: 'Poppins', sans-serif;
}


/*Navigation Bar*/

#navbar {
    display: flex;
    align-items: center;

}

/*logo and image*/

#logo {
    margin: 14px 25px;
    margin-right: auto;
    filter: invert(100);
}

#logo img {
    height: 65px;
    margin: 3px 14px;
}


/*NaVIGtion List*/
#navbar {
    position: relative;
    justify-content: space-between;
    text-align: center;

}

#navbar ul {
    display: flex;

}

#navbar::before {
    content: "";
    background-color: black;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.5;
}

#navbar ul li {

    list-style: none;
    font-size: 1rem;
}

#navbar ul li a {

    color: white;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar li a:hover {

    color:grey;
    text-decoration: wavy;
}






/*Home section*/
#home {
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    height: 450px;
    justify-content: center;
    align-items: center;
}

#home::before {

    content: "";
    background: url('1.jpg') no-repeat center center/cover;
    position: absolute;
    height: 108%;
    width: 100%;
    z-index: -1;
    opacity: 0.999;
}


.hprimary {
    
    color: white;
    height: 50px;
    font-size: 2.0rem;
    position: absolute;
    display: inline-block;
    margin: 14px 30px;
    padding: 1px 10px;
    top: 286px;
    left: 770px;
}

.btn {
    padding: 10px 30px;
    margin: 17px;
    color: white;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    position: absolute;
    display: inline-block;
    top: 394px;
    left: 1033px;

}

.btn:hover
{
    background-color: white;
    color: black;
    text-decoration: wavy;
}


/*Services*/

.hprimary-center {
    
    font-size: 3.0rem;
    margin: 119px 45px;
    text-align: center;
    padding: 61px 386px;


}

#services {
    margin: 134px;
    top: 654px;
    position: absolute;
    display: flex;
    padding: 19px 5px;
}

#services .box {
   
text-align: center;
}

#services1 {
    margin: 34px;
    display: flex;
    position: absolute;
    top: 997px;
    margin: 119px;
    padding: 19px 5px;
}

#services .box {
    
    padding: 10px 15px;
    margin: 25px 6px;
    border-radius: 10px;
    
}

#services .box img {
    height: 230px;
    margin: auto;
    display: block;
}

.btn1{
    position: absolute;
    padding: 12px 1px;
    margin: 17px;
    width: 7%;
    border-radius: 30px;
    cursor: pointer;
    background: transparent;
    border: 2px solid black;
    color: black;
    font-size: 15px;
    cursor: pointer;
    top: 1227px;
    left: 685px;
}

.btn1:hover
{   
    background-color: black;
    color: white;
    text-decoration: wavy;
}






#hsecondary-center
{
text-align: center;
margin: 0;
padding: 10px;
}

/*Form and Contact us*/

.destination
{
    padding: 20px 30px;
    margin: 30px 605px;
    text-align: center;
    position: absolute;
    top: auto;
}

#contact {
    position: relative;
    top: 338px;
    align-items: center;

    justify-content: center;
}

#contact::before {
    content: "";
    position: absolute;
    background: url(form.jpg)no-repeat center center/cover;
    height: 350px;
    width: 100%;
    z-index: -5;
    opacity: 0.9;

}
.formarea
{
    top: 124px;
    height: auto;
    position: relative;
    text-align: center;
    padding: 25px 0px;

}
input
{
height: 40px;
font-size: 16px;
letter-spacing: 1px;
padding: 0px 10px;
border:1px solid white;
outline:none;
width: 20%;
}
input::placeholder
{
color: black;
}
input[type=submit]
{
background-color: white;
color: black;
cursor: pointer;
text-transform: uppercase;
}
input[type=submit]:hover
{
    background-color: black;
    color: white;
    border: 1px Solid white;
}

/*footer*/

.footer
{
    margin-top:598px;
    width: 70%;
    padding: 100px 15%;
    background: black;
    color: #efefef;
    display: flex;
}
.footer div
{
text-align: center;
}
.col-2
{
flex-grow: 2;
}
.footer div h3
{
font-weight: 300;
margin-bottom: 30px;
letter-spacing: 1px;
}
.col-1 a
{
display: block;
text-decoration: none;
color: #efefef;
margin-bottom: 10px;
}
.form2 input
{
width: 400px;
height: 45px;
border-radius: 4px;
text-align: center;
margin-top: 20px;
margin-bottom: 40px;
outline: none;
border: none;
}
button
{
    background: transparent;
    border: 2px solid #efefef;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 15px;
    cursor: pointer;

}
button:hover
{
    background-color: white;
    color: black;
    text-decoration: wavy;
}
.social-icons
{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
   

}
.social-links i
{
    font-size: 22px;
    margin: 10px;
    cursor:pointer;
    
}

