* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.bg {
    background-image: url(images/Lp\ bg\ 1.png);
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.logo img {
    height: 80px;
}

.header {
    font-size: large;
    padding-top: 30px;
    display: flex;
    align-items: flex-start;
    padding-left: 90px;
    padding-right: 90px;
}

.navbar {
    width: 100%;
    max-width: 1100px;
    background: #d9d9d9;
    border-radius: 60px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page {
    display: flex;
    gap: 40px;
}

.page a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 4px;
}

.page a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.page a:hover::after {
    width: 100%;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
}

.btn-main,
.btn-outline{
display:flex;
align-items:center;
gap:12px;
padding:16px 38px;
font-size:20px;
font-weight:600;
border-radius:50px;
cursor:pointer;
overflow:hidden;
transition:.35s;
}

.btn-main{
background:#D8B57A;
color:black;
border:none;
}

.btn-outline{
background:transparent;
color:white;
border:2px solid #D8B57A;
}

.arrow{
width:22px;
height:22px;
transition:transform .35s ease;
}

.text{
transition:all .35s ease;
white-space:nowrap;
max-width:200px;
overflow:hidden;
}

.btn-main:hover .text,
.btn-outline:hover .text{
opacity:0;
max-width:0;
margin-right:-6px;
}

.btn-main,
.btn-outline{
transition:all .35s ease;
}

.btn-main:hover,
.btn-outline:hover{
padding-left:26px;
padding-right:26px;
}

.menu-toggle,.overlay {
  display: none;
}