@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/header.css';
@import './modules/footer.css';


@font-face {
    font-family: 'Calibri', sans-serif;
    src: url("./fonts/calibri/calibri.ttf");
}

@font-face {
    font-family: 'Poppins SemiBold';
    src: url("./fonts/poppins/Poppins-SemiBold.otf");
}

html, body {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    box-sizing: border-box;
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #dde0de;
}

.hide-self {
    display: none;
}

@media screen and (max-width: 991px), (orientation: portrait) {
    html, body {
        overflow-x: unset;
    }
}