@font-face {
    font-family: AxiformaReg;
    src: url("../font/Axiforma-Regular.ttf");
}
@font-face {
    font-family: Axiformabold;
    src: url("../font/Axiforma-Bold.ttf");
}

@font-face {
    font-family: AxiformaLight;
    src: url("../font/Axiforma-Light.ttf");
}

body {
    background-color: #fffaf6;
    font-family: AxiformaReg, arial;
}

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

.layout{
    display: flex;
}

.spacer{
    flex: 1;
}

.centerize{
    justify-content: center;
    align-items: center;
}

.platform{
    flex-direction: column;
}

.logo{
    width: 84px;
    height: 84px;
}

.icon{
    width: 54px;
    height: 54px;
}

.common_width {
    margin-top: 10px;
    width: 90%;
    margin: 0rem auto;
}

#fullpage > * {
    opacity: 0 !important;
}

.transition_wrapper {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 8;
}

.section {
    height: 100vh;
    position: absolute;
    width: 95%;
  
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    display: flex !important;
    align-items: center !important;
}

.banner{
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    padding: 3rem;
}

.banner{
    background: #8964f9;
    height: 80vh;
    grid-template-columns: 1fr 0.8fr;
    border-radius: 100px;
}

.banner > img {
    width: 90%;
    justify-self: flex-end;
}

.banner.purple {
    background: #7b61ff;
}

.banner.blue {
    background: #4285f4;
}
  
.banner h1 {
    width: 35vw;
    font-size: 35px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;
}

.banner p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    margin-top: 0px;
    text-align: left;
    color: #ffffff;
}

.transition_wrapper .section {
    opacity: 0;
    transition: 1s ease all;
    z-index: -1;
}
.transition_wrapper .section.active {
    opacity: 1;
    z-index: 2;
}
.transition_wrapper .section .description_layout h1,
.pricing > h1 {
    transition: 1s ease all;
    transition-delay: 0.5s;
    opacity: 0;
}
.transition_wrapper .section .description_layout p,
.pricing > p {
    transition: 1s ease all;
    transition-delay: 1s;
    opacity: 0;
}
.transition_wrapper .section .banner > img,
.restaurent_area_first > img,
.restaurent_area > img {
    transition: 1s ease all;
    transform: translateY(150px);
    transition-delay: 1.5s;
    opacity: 0;
}
.transition_wrapper .section.active .description_layout h1,
.transition_wrapper .section.active .description_layout p,
.transition_wrapper .section.active .banner > img,
.section.active .restaurent_area_first > img,
.section.active .restaurent_area > img,
.section.active .pricing > h1,
.section.active .pricing > p {
    opacity: 1;
}

.transition_wrapper .section.active .banner > img,
.section.active .restaurent_area_first > img,
.section.active .restaurent_area > img {
    transform: translateY(0px);
}

.badge {
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%) translateY(5%);
    width: 60%;
    box-shadow: 0px 4px 57px 0px #00000014;
    border-radius: 27px;
    z-index: 10;
    padding: 1rem 3rem;
}

.badge ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #929292;
    flex: 1;
    font-size: 14px;
}

.badge ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    flex: 1;
}

.badge ul li:last-child {
    border: none;
}

.badge ul li img {
    margin-bottom: 5px;
    width: 45px;
}

.badge {
    transition: 1s ease all;
}
  
.badge.hide {
    opacity: 0 !important;
}

.hidden_banner{
    height: 80vh;
}

.hidden_banner_title {
    width: 35vw;
    font-size: 35px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: left;
}

.hidden_banner_icon{
    width: 5vw;
    padding: 10px;
}

.hidden_banner_sub_title {
    margin-top: 5px;
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
}

.hidden_banner_content {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    margin-top: 0px;
    text-align: left;
}

.feature_logo{
    height: fit-content;
}

.cards_list{
    display: flex;
    font-size: 18px;
}

.card{
    margin: 10px;
    padding: 10px;
    /* border: 1px solid #00a9eb; */
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0px 10px 30px 0px #00000008;
}

.card p{
    display: block;
}

.card_img{
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device{
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-items: center;
    border-radius: 20px;
    background-color: #ffffff;
    margin: 10px;
    padding: 10px;
}

.device > img{
    height: 80%;
    margin: 10px;
}

.footer{
    background: #f5f7fa;
    position: absolute;
    bottom: 2%;
    width: 100%;
    padding: 10px;
}

.badge_icon{
    width: 100px;
}

.hide{
    opacity: 0 !important;
}

@media only screen and (max-width: 600px) {
    .logo{
        width: 54px;
        height: 54px;
    }

    .feature_logo{
        height: 30vh;
    }

    .browsers{
        width: 50px;
        flex-wrap: wrap;
    }

    .icon{
        width: 24px;
        height: 24px;
    }

    .banner{
        height: 85vh;
        display: block;
        padding: 2rem;
        border-radius: 30px;
    }

    .banner h1 {
        width: 65vw;
        font-size: 25px;
        font-weight: 500;
        line-height: 30px;
    }

    .banner p {
        margin-top: 10px;
        font-size: 14px;
        font-weight: 300;
        line-height: 18px;
    }

    .banner img {
        margin-top: 25%; 
        margin-left: 10%;
        width: 250px;
        height: 250px;
    }

    .hidden_banner{
        height: 85vh;
        display: block;
    }

    .hidden_banner_title {
        width: 65vw;
        font-size: 25px;
        font-weight: 500;
        line-height: 30px;
    }

    .hidden_banner_icon{
        width: 20vw;
    }

    .hidden_banner_sub_title {
        margin-top: 5px;
        font-size: 15px;
        font-weight: 450;
        line-height: 10px;
    }

    .hidden_banner_content {
        margin-top: 10px;
        font-size: 13px;
        font-weight: 300;
        line-height: 18px;
    }

    .cards_list{
        flex-direction: column;
        font-size: 14px ;
    }

    .card{
        display: flex;
        margin: 5px;
    }

    .badge{
        width: 80%;
        padding: 10px;
        border-radius: 20px;
    }

    .badge ul li img{
        margin-bottom: 5px;
        width: 25px;
    }

    .badge ul li{
        font-size: 12px;
    }

    .hidden_banner{
        flex-direction: column;
        height: 85vh;
    }

    .devices{
        flex-direction: column;
    }

    .device > img{
        height: 50px;
    }

    .footer div{
        font-size: 12px;
    }

    .badge_icon{
        width: 60px;
    }
}

  
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 1300px) {
    .logo{
        width: 54px;
        height: 54px;
    }

    .banner{
        height: 85vh;
        padding: 2rem;
        border-radius: 50px;
    }

    .banner h1 {
        width: 45vw;
        font-size: 25px;
        font-weight: 500;
        line-height: 30px;
    }

    .banner p {
        margin-top: 10px;
        font-size: 14px;
        font-weight: 300;
        line-height: 18px;
        width: 50vw;
    }

    .banner img {
        margin-top: 25%; 
        width: 150px;
        height: 150px;
    }

    .hidden_banner_icon{
        width: 8vw;
    }

    .hidden_banner_sub_title {
        margin-top: 5px;
        font-size: 14px;
        font-weight: 400;
        line-height: 15px;
    }

    .hidden_banner_content {
        margin-top: 10px;
        font-size: 12px;
        font-weight: 150;
        line-height: 18px;
    }

    .badge{
        width: 70%;
        padding: 10px;
        border-radius: 20px;
    }

    .badge ul li img{
        margin-bottom: 5px;
        width: 20px;
    }

    .badge ul li{
        font-size: 12px;
    }

    .feature_logo{
        height: 30vh;
    }
} 