.index-topbar {
    height: 80px;
    /* background: #131720; */
    width: 100%;
    display: flex;
    color: #000000;
    border-bottom: 1px solid #c8c8c8;
    margin-top: 10px;
}

.index-company-name {
    margin-left: 1%;
    width: 20%;
    color: black;
    margin-top: 15px;
}

.index-menu-bar {
    display: flex;
    width: 50%;
    border-left: 1px solid #a9a9a9;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 15px;
}

.index-menu-item {
    margin: 10px;
    cursor: pointer;
    font-size: large;

}

.index-get-started {
    width: 30%;
    padding-right: 2%;
}

.index-get-started-button {
    animation-duration: 1.5s;
    animation-name: changewidth;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    box-shadow: 0px 0px 7px #808080;
    text-transform: capitalize;
    color: white;
    background: red;
    width: unset;
    height: 40px;
    border-radius: 25px;
    text-wrap-mode: nowrap;
    font-size: larger;
    padding-top: 12px;
    cursor: pointer;
}

@keyframes changewidth {
    0% {
        transform: scale(1, 1);
    }

    30% {
        transform: scale(1, 1);
    }

    85% {
        transform: scale(1.1, 0.9);
    }

    90% {
        transform: skewX(-1.1, 1.1);
    }

    96% {
        transform: scale(1.1, 0.9);
    }

    98% {
        transform: skewX(-1.1, 1.1);
    }

    100% {

        transform: scale(1, 1);
    }


}

.index-mySlides {
    width: 100%;
}

.index-slideshow-container {
    width: 98%;
    position: relative;
    margin-left: 1%;
}

.index-text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.index-numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    width: 100%;
}

/* The dots/bullets/indicators */
.index-dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.index-active {
    background-color: #717171;
}

/* Fading animation */
.index-fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes index-fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .index-text {
        font-size: 11px
    }
}