*,*::before,
*::after{
    box-sizing:inherit;
	font-family: 'Poppins', sans-serif!important;
}

body{
    margin: 0;
    font-family: 'Poppins', sans-serif!important;
    font-weight: 400;
    color: white;
    letter-spacing: 0.8px;
	overflow-x: hidden;
    line-height: 1.8;
}

html{
    box-sizing:border-box;
}

img{
    max-width: 100%;
}

a{
	color:#9b8548;
	text-decoration:none;
	font-weight:bold;
	padding-top: 10px;
	transition:0.3s;
}

a:hover{
	color:#9b85489c;
}

p{
	margin:0;
	padding-top:10px;
}


.address{
    color: #9b8548
}

.landing-page-container{
    height: 100vh;
    width: 100%;
    position: relative;
    background-color: black;
	overflow: hidden;
}

.landing-logo{
    position: relative;
    text-align: center;
}

.landing-logo img{
    width: 250px;
    height: auto;
}

.bottom-logo{
    display: flex;
	justify-content: center;
}

.bottom-logo img{
    width: 250px;
    height: auto;
}

.landing-page-flex{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.landing-page-left {
    flex: 50%;
    padding: 20px;
    text-align: center;
}

.landing-page-right{
    flex: 50%;
    position: relative;
    height: 100%;
    max-width: 50%;
    clip-path: circle(100vh at 100vh 50vh);
    margin-right: -1%;
}

.landing-page-right img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.landing-buttons{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.landing-buttons h2{
	margin:10px 0;
}

.landing-buttons a + a{
    margin-top:30px;
}

.btn-landing {
    padding: 15px 30px;
    border-radius: 10px;
    line-height: 1em;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
    font-size: 25px;
    font-weight: 300;
	min-width: 250px;
    text-align: center;
}

.landing-link{
    font-size: 20px;
    color: black;
    text-decoration: none;
    font-weight: 300;
	position:relative;
}

.landing-link:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 0;
    bottom: 0;
    right: 0;
    /* background-color: black; */
    transition: all 1s;
}

.landing-link:hover:before {
    width: 100%;
}

.landing-page-right .owl-carousel { width: 100%; z-index: 0;}
.landing-page-right .owl-dots{display:none;}

.landing-page-right:before{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
	background: linear-gradient(264deg, black 0%, rgba(250,88,16,0.043876925770308106) 100%);
	z-index:1
}

/********Additional css************/


@media(max-width:600px){
	.landing-buttons {
    max-width: 80%;
}
	.landing-buttons h2 {
    font-size: 20px;
}
	.landing-logo img {
    width: 200px;
}
.landing-page-left {
    position: absolute;
    z-index: 2;
}
	
	.landing-page-right {
    max-width: 100%;
    clip-path: none;
}
	.landing-page-right:before{
    background: white;
	background: linear-gradient(264deg, black 0%, rgb(33 29 29 / 55%) 100%);
}
	.landing-logo {
    left: 50%;
    transform: translateX(-50%);
		color: black;
}
}

@media(max-width:450px){
	.landing-buttons {
    max-width: 95%;
}
}