

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Montserrat", sans-serif;
}
button:hover{
    background-color: white;
    color: #000;

}
a,a:hover{
    text-decoration: none;
}
ul{
    list-style: none;
}
li{
    display: inline-block;
}
section{
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #000;

}

.header{
    width: 100%;
    background-color: transparent;
}
.header .nav_bar{
    width: 90%;
    height: 80px;
    line-height: 80px;
    margin:auto;
    color:#fff;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid white;
}
.header .nav_bar .logo{
 z-index: 2;

}
.header .nav_bar .logo a{
    color:#fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
    .header .nav_bar .menu{
        z-index: 2;
    }
    .header .nav_bar .menu ul li{
        margin-right: 30px;
        
    }
    .header .nav_bar .menu ul li a{
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 2px;
        padding: 10px;
        border-radius: 5px;
        text-transform: capitalize;
        transform: all 0.5s;
        opacity: 0.8;
        color:#fff;
    }
    .header .nav_bar .menu ul li a.active {

        opacity: 1;
        background-color:#fff;
        color: #000;
        ;
    }
    .header .nav_bar .menu ul li a:hover{
        opacity: 1;
        background-color: #fff;
        color: #000;
    }
    .header .nav_bar .social-media{
        z-index: 2;
    }
    .header .nav_bar .social-media ul li i{
        color: #fff;
        width: 45px;
        height: 45px;
        line-height:45px;
        margin-right: 5px;
        text-align: center;
        align-items: center;
        font-size: 20px;
        border-radius: 5px;
        background-color: #cac5c542;
        box-shadow: 0 0 25px rgba(24,24,24,.4);
        transition: all 0.3s;
    }
    .header .nav_bar .social-media ul li i:hover{
        background-color: #fff;
        color:#000;
    }
    .description{
        color: #fff;
    }
    .description::selection{
        color: red;
    }
    
      section.hero-sec{
        width: 100%;

      }
      section.hero-sec .overplay{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1;

      }

      section .hero-sec .caption{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
    }
    section .hero-sec .caption h3{
        font-family: Bradley Hand ITC;
        color: #fff;
        font-size: 65px;
        text-transform:uppercase;
        letter-spacing: 3px;
        margin-bottom: 20px;
font-weight:bolder;

    }
    section .hero-sec .caption a{
        background-color: white;
        color:black;
        text-decoration: none;
        font-size: 17px;
        letter-spacing: 1px;
        border-radius: 5px;
        font-weight: 600;
        line-height: 95px;
        padding: 15px 25px;
        text-transform: uppercase;
        border: 1px solid #fff;
        margin-right: 15px;
        box-shadow: 0 0 25px rgba(24,24,24,0.9);
        transition: all 0.3s;
    }
    section .hero-sec .caption a:hover{
        background-color: transparent;
        color: white;

    }
    section .hero-sec .caption a :hover{
     background-color: #fff;
     color: #000;

    }
    section .hero-sec .caption a:first-child{
        background-color: #fff;
        color: #000;
    }
    section .hero-sec .caption a:first-child:hover{
        background-color: transparent;
        color: #fff;
    }
    section .hero-sec .caption .description{
        margin: 25px 0;
        letter-spacing: 1px;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
    }