Hi @chrissa0000
In your css, you must override the default bootstrap 3 style that is causing the head section to be on the right. At the moment your styles plus the bootsrap styles that have not been overritten are styling the head section.
This will center your head section:
.testmonials #quote-carousel .carousel-indicators {
position: relative;
min-height: 100px;
top: auto;
bottom: 0px;
left: auto;
right: auto;
margin: auto;
padding-left: 0;
}