* {
    padding: 0px;
    margin: 0px;

}


section {
    padding: 100px 40px;

    @media(max-width: 1440px){
        padding: 70px 50px;
    }
    @media(max-width: 767px){
        padding: 50px;
    }
}

.wrapper {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.cta {
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    padding: 1.5rem 4rem;
    text-decoration: none;
    color: #393434;
    border-radius: 1rem;
    transition: all ease .5s;
    text-align: center;
    display: inline-flex;

    &:hover {
        filter: brightness(85%);
        /* Darkens the element */
        transition: all ease .5s;
    }



}

h1,
h2,
h3,
h4,
h5,
h6 {
 
    font-family: "Anton", sans-serif;
    font-weight: normal;
    font-style: normal;
}


h1 {

    font-size: 50px;
}

h2 {
    font-size: 50px;
    color: #393434;
    font-weight: 900;
}

p {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    color: #393434;
}

h3 {
    color: #393434;
}

li {
    font-weight: 300;
}


img {
    width: 100%;
    height: 100%;
}

.image {
    height: -webkit-fill-available;
}

.burger-btn {
    display: none !important;
}

.burger-btn.active span {
    background-color: #000000;
}

 

 
 
@media (max-width: 767px) {

    section{
        padding: 50px 50px;
    }

    header .page-title a{
        font-size: 16px !important;
    }


    .cta {
        font-size: 16px;
        padding: 1rem 2rem;
    }
    
    h1{
        font-size: 30px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    p{
        font-size: 16px !important;
    }

    .burger-btn {
        display: flex !important;
        flex-direction: column;
        gap: .3rem;
    }

    .burger-btn span {
        display: block;
        height: .2rem;
        width: 1.5rem;
        background: rgb(0, 0, 0);
        z-index: 99999;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    header.active{
        span {
            background: rgb(0, 0, 0);
        }
    } 

    .burger-btn.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
      }
      
      .burger-btn.active span:nth-child(2) {
        opacity: 0;
      }
      
      .burger-btn.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
      }

    .page-navigation{
        position: absolute;
        left: -100rem !important;
        transition: all ease 1s;
        padding: 2rem;
        ul{
            flex-direction: column;
            align-items: baseline !important;
            li{
                a{
                    color: #000000 !important;
                }
            }
        }
    }

    .page-navigation.active {
       
        position: absolute;
        top: 0px;
        background: #fff;
        width: 100%;
        height: 100vh;
        left: 0rem !important;
        transition: all ease 1s;
    }
}

 h1,h2,h3,h4,h5{
    font-weight: normal !important;
 }
ol, ul {
    padding-left: 0px !important;
}