*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: poppins,sans-serif;
    text-decoration: none;
}
body{
    overflow-x: hidden;
    background-color: #F1F1F1;
}
.hero-header{
    width: 100%;
    height: 100%;
    min-height: 60vh;
    background-color: #F1F1F1;
}
.wrapper{
    width:1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}
.wrapper2 {
	justify-content: center;
	align-items: center;
	padding: 5%;
	background-color: #2c3233;
}

header{
    position: fixed;
	top: 0;
	left: 0;
	width: 100%;
    padding: 25px 12%;
	background: #2c3233; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
    display: inline-flex;
	align-items: center;
	margin-left: 5px;
}
.logo img {
	width: 30%;
}

nav .togglebtn{
    width: 35px;
    height: 35px;
    position: absolute;
    top:45px;
    right: 3%;
    z-index: 5;
    cursor: pointer;
    display: none;
}
nav .togglebtn span{
    display: block;
    background-color: #FFA36E;
    margin: 5px 0px;
    width:100%;
    height:3px;
    transition: 0.3s;
    transition-property:  transform, opacity;

}
nav .navlinks{
    list-style-type: none;
    background-color: #2c3233;
}
nav .navlinks li{
    display: inline-block;
}
nav .navlinks li a{
     color:#FFF;
     margin-right: 2.5rem;
}
nav .navlinks li a:hover {
	color: #FFA36E;
	transition: 0.3s;
}
.container {
	width: 100%;
	min-height: 90vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
	padding: 30px 12% 0; 
}
.container2 {
    display: flex;
    justify-content: center;
	align-items: center;
}
video {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 75%;
	padding-bottom: 5px;
}
.container .hero-pic{
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #FFFFFF;
    box-shadow: 5px 7px 25px rgba(0,0,0,0.5);
}
.hero-pic img{
    height: 100%;
    width:100%;
}

h2 {
    text-align: center;
    color: #FFFFFF;
	font-size: 30px;
	font-weight: 100;
	margin-top: -20px;
}
.hero-text{
    max-width: 500px;
    display: flex;
    flex-direction: column;
}
.hero-text h5{
    color: #0B0B0B;
    font-size: 20px;
    margin-bottom: 15px;
}
.hero-text h5 span{
    color:#007ced;
    font-size: 16px;
}
.hero-text h1{
    color: #FFA36E;
    font-size: 3rem;
}
.hero-text p{
    color: #0B0B0B;
}
.btn-group{
    margin:45px 0;
}
.btn-group .btn{
    border-color: #d5d5d5;
    color:#fff;
    background-color: #333;
    padding: 12px 25px;
    margin: 5px 0px;
    margin-right:7px;
    border-radius: 30px;
    border:2px solid #e5e5e5;
    box-shadow:  0 10px 10px -8px rgb(0 0 0 / 78%);
}
.btn.active{
    border-color: #007ced;
}
.wrapper2 img {
    display: flex;
    max-width: 500px;
    width: 00%;
    flex-wrap: wrap;
    float: left;
	margin: 5px;
}
.wrapper3 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	padding-top: 2%;
}
.wrapper3 p {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	padding-top: 2%;
}
.contact-form h2 {
	text-align: center;
	margin-top: 2em;
	font-size: 36px;
}


#box0 {
	clear: both;
	padding-bottom: 50px;
}
#box1 {
	clear: both;
	padding-bottom: 20px;
}

/* footer */
footer {
	text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    clear: both;
    padding-top: 50px;
    padding-bottom: 10px;
    color: #0B0B0B;	
}

/* Respnosiv design & displaying navbar for small screen */
@media(max-width:930px)
{
    nav .togglebtn{
        display: initial;
    }
    /* for toggle button**/
    .click {
        top:45px;
    }
    .click span{
        position: absolute;
        margin-top:12px
    }
    .click span:first-child{
        transform: rotate(-40deg);
    }
    .click span:nth-child(2)
    {
        opacity: 0;
        margin:0;
    }
    .click span:last-child{
        transform: rotate(45deg);
        top:0;
    }
    nav .navlinks{
    position: absolute;
    top: 105px;
    right: -100%;
    bottom: 0;
    width: 60%;
    height: 100vh;
    background-color: #2c3233;
    z-index: 3;
    box-shadow: 5px 13px 30px rgba(0,0,0,0.1);
    transition: 0.5s;
    padding: 35px 0px;
    }
    nav .navlinks li{
        display: block;
    }
    nav .navlinks li a{
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    nav .navlinks.open{
        right:0;
    }
video {
    width: 100%;
	padding-left: 50px;
	align-items: center;
}

}
@media(max-width:768px)
{
    .container{
        flex-direction: column;
        padding-top: 12rem
    }
    .hero-text{
        padding:40px 0px;
    }
video {
    width: 100%;
	padding-left: 50px;
	
}

}
