/* variables */
:root {
    --primaryColor: crimson;
    --secondaryColor: #4CAF50;
    --emeraldColor: #50C878;
    --customCrimson: #B90134;
    --customPurple: #26142a;
    --upBarHeight: 85px;
    --borderColor: #CECECE;
    --footerColor: #3C3C3C;
    --customGrey: #EEEEEE;
    --whiteSmoke: whitesmoke;
    --generalMarginLeft: 90px;
    /* --chalkColor: #E0DBD1; */
    --shadowColor: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

/* reset default style */
* {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}

.container {
    min-height: 500px;
}

::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
}

/* default style */
.primaryButton {
    font-weight: 500;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 12px 48px;
    background-color: var(--secondaryColor);
}

.primaryButton:hover {
    cursor: pointer;
}

.floatingActionButton {
    z-index: 999;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    filter: var(--shadowColor);
    background-color: var(--emeraldColor);
    background-image: url('../assets/icons/whatsapp-icon.png');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

.roundedGreyBorder {
    border-radius: 10px;
    border: 2px solid var(--borderColor);
}

.container {
    overflow: hidden;
}

section.features,
section.seeCandidate {
    min-height: 300px;
}

.target {
    z-index: -999;
    background-color: transparent;
    position: absolute;
    width: 100vw;
    margin-top: calc(-1 * var(--upBarHeight));
    height: var(--upBarHeight);
}