/*
    Imports
    --- --- --- --- --- --- --- --- --- ---
*/
@import url("./_header.css");
@import url("./_products.css");
@import url("./_landing.css");
@import url("./_about.css");
@import url("./_performance.css");
@import url("./_location.css");
@import url("./_partners.css");
@import url("./_form.css");
@import url("./_footer.css");
@import url("./_modal.css");

/*
    Global resets
    --- --- --- --- --- --- --- --- --- ---
*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: #F5F6FB;
}

main {
    min-height: 100vh;
    background-image: url('../assets/backgrounds/main-texture.svg');
}

.sectionPadding {
    padding: 150px 0 0px 0;
}

#report-cto-button {
    cursor: pointer;
    font-weight: bold;
    width: min-content;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color .2s ease;
}

#report-cto-button:hover {
    filter: brightness(1.3);
    color: white;
    transition: all .1s ease;
}

.report-animated-button {
    border-radius: 4px;
    padding-inline: 24px;
    padding-block: 16px;
    background-color: #003575;
    color: white;
    position: relative;
    left: -5%;
    opacity: 0;
    animation: fadeInButton .8s .6s ease forwards;
}

.report-floating-button {
    border-radius: 999px;
    padding-inline: 18px;
    padding-block: 12px;
    background-color: #003575;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: bottom .2s ease;
    z-index: 999;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.report-floating-button span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.report-floating-button span svg {
    width: 24px;
    height: 24px;
}

@keyframes fadeInButton {
    from { opacity: 0; left: -5%; }
    to { opacity: 1; left: 0%; }
}

@media only screen and (max-width:1200px) {
    .sectionPadding {
        padding: 100px 0 0px 0;
    }
}
