@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* @import url(header.css);
@import url(footer.css);
@import url(main.css); */
/* <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" /> */


* {
    font-family: Inter, sans-serif;
    font-style: normal;
    /* font-weight: 400; */
    padding: 0;
    margin: 0;
}

a {
    all: unset;
    cursor: pointer;
}

:root {
    --white: #FAFAFA;
    --black-fonts-headings: #2D2E2E;
}

body {
    overflow-x: hidden;
}

body .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1 0 auto;
    overflow: hidden;
}

main {
    margin-top: 100px;
    flex: 1;
}

input[type="submit"],
input[type="button"] {
    cursor: pointer !important;
}
.path a 
{
    cursor: pointer !important;
}

.wrapper {
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 119px;
}

.privacy-policy > p {
    margin-bottom: 8px;
}


@media screen and (max-width: 1024px) {
    main {
        margin-top: 126px;
    }
}

@media screen and (max-width: 425px) {
    main {
        margin-top: 82px;
    }
}

@media screen and (min-width: 1921px) {
    body .wrapper {
        overflow: visible;
    }
}