@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Poppins", "Roboto", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin-bottom: 2px;
    background-color: white;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 114px;
  }
* img {
    border-radius: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


@keyframes appear{
    from{
        opacity: 0.4;
        scale: 0.8;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}

@keyframes appear_message{
    from{
        opacity: 0;
        scale: 0;
    }
    to{
        opacity: 0.1;
        scale: 0.1;
    }
}


@keyframes from-side{
    from{
        opacity: 0;
        transform: translateX(-100%);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes from-side-smooth{
    from{
        opacity: 0;
        clip-path: inset(100% 100% 0 0);
    }
    to{
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* section div{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 15%;
}

.copyright-main-container, .copyright-text, .terms-policies{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 5%;
}

.form-tost{
    animation: appear_message linear;
} */

/* section {
    animation: from-side linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
} */

/* section {
    animation: from-side-smooth linear;
    animation-timeline: view();
    animation-range: entry 0 cover 30%;
} */

@media (max-width: 700px) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }
}