* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

.nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    background-color: rgba(0, 0, 0, 0.5);
    line-height: 50px;
    position: fixed;
    z-index: 1;
}

.nav ul {
    list-style-type: none;
}

.nav ul li {
    display: inline-block;
    /* margin: 30px; */
    margin-left: 30px;
    position: relative;
}

.nav ul li ::before {
    content: '';
    position: absolute;
    top: 10%;
    width: 0;
    background-color: #00a2ff;
    z-index: 9999;
    height: 3px;
    transition: 0.8s all;

}

.nav ul li:hover ::before {
    width: 100%;

}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.8s all;
}

.nav ul li a:hover {
    color: #00a2ff;
}

.logo {
    background-color: #00a2ff;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

img {
    max-width: 100%;
}

.image_box {
    position: relative;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
}

.details_box {
    color: #fff;
}

.details_box h2 {
    font-size: 2.2vw;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.details_box h1 {
    font-size: 5vw;
    color: aquamarine;
    font-weight: bolder;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-family: Helvetica, sans-serif;
    margin: 0;
}

.details_box p {
    font-size: 18px;
    color: #141414;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
}

.details_box a {
    display: inline-block;
    padding: 11px 40px;
    font-size: 18px;
    color: #141414;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 6px;
    transition: 0.8s all;
    background-color: #86621e;
    text-transform: capitalize;

}

.details_box a:hover {
    background-color: #f6ba18;

}

.wrapper {
    clip-path: polygon(0%, 0%, 100%, 0, 100%, 80%, 0%, 99%);
}

body {
    background-image: url("../img/bg.webp");
    min-height: 100%;
    /* background-size: 1366px 750px; */
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
}

.footer {
    display: inline-block;
    margin-left: 2.5%;
    margin-bottom: 5px;
    width: 95%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.5);
    line-height: 50px;
    position: fixed;
    z-index: 1;
}

.footer p {
    font-size: 18px;
    margin-top: 5px;
    margin-left: 10px;
    color:#fff;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
}

.footer ul {
    list-style-type: none;
}

.footer ul li {
    display: inline-block;
    /* margin: 30px; */
    margin-left: 30px;
    position: relative;
}

.footer ul li ::before {
    content: '';
    position: absolute;
    top: 10%;
    width: 0;
    background-color: #86621e;
    z-index: 9999;
    height: 3px;
    transition: 0.8s all;

}

.footer ul li:hover ::before {
    width: 100%;

}

.footer ul li a {
    padding-right: 20px ;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.8s all;
}

.footer ul li a:hover {
    color: #00a2ff;
}

/* FOOTER END */
.footer #copyright{
    /* background-color: #00a2ff; */
    padding: 0 20px;
    color: #fff;
}