.row {
    margin-left: 0;
    margin-right: 0;
}

.rw {
    height: auto;
    padding-left: 16vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-right: 16vw;
}

.img {
    height: 750px;
    width: 750px;
}

.img img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}


.parallax {
    /* The image used */
    background-image: url("../img/tech.png");

    /* Set a specific height */
    height: 750px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.parallax-home {
    /* The image used */
    background: #ffffff;
    /* Set a specific height */
    height: auto;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: scroll;
}

.tabber:hover {
    color: white;
}

.cover {
    background-image: url("../img/tech.png");
    width: 100%;
    background-repeat: no-repeat;
    height: 100%;
    background-size: cover;
}

.dark {

    background-image: url("../img/main.jpg");
    color: #DDD;
}

.darker {
    background: #2e2e2e;

}

.numberCircle {
    font-weight: 800;
    font-size: larger;
    height: 3rem;
    border: gray solid 0.2rem;
    padding: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.container {
    max-width: 100%;
}

#web_logo {
    position: relative;
    overflow: hidden;
}

#web_logo:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #608A32 transparent transparent;
    right: 0;
    top: 0;
    position: absolute;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.main {
    font-family: 'Abel';
    font-weight: normal;
    font-style: normal;

}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

.resizing {
    transition: img-sizing 3s ease-in-out;
}

@keyframes img-sizing {
    from {
        width: 100%;
    }

    to {
        width: 50%;
    }
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    background-color: black;
    color: white;
    padding: 30px;
}




#menu-item:hover {
    border-radius: 10px;
    color: #fff;
    background: #000;
    box-shadow: 7.5px 0 0 #000, -5px 0 0 #000;
    padding: 7.5px 0;
}

.divider {
    border: solid white 0.5px;
}

.badge#logo:hover {
    color: white;
}