@import url('reset.css');
@import url('variable.css');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
ul{
    list-style: none;
}
button{
    all: unset;
    cursor: pointer;
}
body,
html {
    overflow-x: hidden;
    font-family: "Geist", sans-serif, Helvetica, Arial, Verdana, sans-serif;
    color: var(--grey-black);
    scroll-behavior: smooth;
    font-size: 1.6rem;
    position: relative;
    line-height: 2rem;
}
.bold{
    font-weight: bold;
}

.landingpage-wrapper{
    overflow: hidden; 
    height: 100dvh; 
    width: 100%; 
    display: flex; 
    flex-direction: column;
}
.heading-01{
    font-size: 60px;
    line-height: 1.16em;
}
.heading-05{
  font-size: 36px;
  line-height: 40px;
  font-weight: 400;
}

.heading-08{
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
  color: var(--blue);
}
h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.18em;
}
h4{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.18em;  
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 35px;
    padding-right: 35px;
    color: white;
}
@media screen and (max-width: 479px) {
  .heading-01 {
    font-size: 32px !important;
  }
  h3{
font-size: 25px;
  }
  h4{
font-size: 22px;
  }
}
@media (min-width: 768px) {
    .container {
        width: calc(100% - 64px);
    }
}

@media (min-width: 1024px) {
    .container {
        width: calc(100% - 64px);
    }
}

@media (min-width: 1300px) {
    .container {
        width: 1172px;
    }
}