/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */

/* @import './modules/under-construction.css'; */
@import "./modules/header.css";
@import "./modules/footer.css";

@font-face {
    font-family: "Calibri";
    src: url("./fonts/calibri/calibri.ttf");
    font-display: swap;
}

/* @font-face {
    font-family: "Rubik";
    src: url("./fonts/rubik/Rubik-VariableFont_wght.ttf");
} */

/* @font-face {
    font-family: "Poppins";
    src: url("./fonts/Poppins/Poppins-Light.ttf");
} */

/* @font-face {
    font-family: "Autography";
    src: url("./fonts/autography/Autography.otf");
} */

@font-face {
    font-family: "Arial Rounded MT Bold";
    src: url("./fonts/arial_rounded_mt/arial-rounded-mt-bold.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Libre Franklin";
    src: url("./fonts/Libre_Franklin (1)/LibreFranklin-VariableFont_wght.ttf");
    font-display: swap;
}

* {
    scrollbar-width: auto;
    scrollbar-color: gray transparent;
}

*::-webkit-scrollbar {
    width: 0.5rem;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px;
    border: 3px solid transparent;
}

html,
body {
    font-size: 16px;
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    box-sizing: border-box;
    position: relative;
    scroll-behavior: smooth;
    /* overflow-x: clip; */
    overflow-x: hidden;
}
.container {
    /* max-width: 1140px; */
    max-width: 1250px;
}
.link {
    color: black;
}
.link:hover {
    color: black;
    text-decoration: none;
}
.hide-self {
    display: none;
}
.is-invalid {
    background-color: red;
    color: #fff;
}

.popup-home {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.432);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
.popup-home .content {
    height: max-content;
    width: auto;
    position: relative;
    border: 3px solid white;
    border-radius: 10px;
}
.popup-home .content i {
    position: absolute;
    top: -30px;
    right: -30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
.popup-home .content img {
    height: 70vh;
    width: auto;
    border-radius: 10px;
}
.popup-home.none {
    display: none;
}
@keyframes opening {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}
@keyframes close {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}

@keyframes shake {
    0% {
        transform: scale(1) rotate(-5deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
    0% {
        transform: scale(1) rotate(0deg);
    }
}

.item {
    width: 40vw;
    height: 300px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: 100% auto;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 10px;
}
.item img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

@media screen and (orientation: portrait), (max-width: 1000px) {
    .popup-home {
        z-index: 9;
        bottom: 0;
    }
    .popup-home .content {
        max-width: 80vw;
        max-height: 90vh;
    }
    .popup-home .content img {
        width: 100%;
        height: auto;
    }
    .item {
        width: 90vw;
    }
}
