@import "variables.css";
@import "header.css";
@import "banner.css";
@import "services.css";
@import "references.css";
@import "team.css";
@import "footer.css";

* {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    top: 0;
    height: 100%;
    font-family: "Rag", sans-serif;
    font-weight: 400;
    font-size: 16px;
    background-color: #fbfaff;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

/*----------------------------*/

.box {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.box-content {
    width: 100%;
}

/*-----------------------------*/

/* Section title */
.section-title {
    width: fit-content;
    background-color: white;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 12px;
    margin: 0 auto;
    font-weight: 500;
}

/*----------------------------------------*/

a {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
}

a:hover{
    color: #696969;
}

/*----------------------------------------*/