.whyus-container-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.whyus-container {
	display: flex;
	transition: transform '.$transitionTime.'s ease-in-out;
}
.whyus-section {
	box-sizing: border-box;
	padding: 20px;
	text-align: center;
	flex-shrink: 0;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.whyus-container, .whyus-section, .whyus-section * {
    user-select: none;  /* Disables text selection */
    -webkit-user-drag: none;  /* Disables image dragging in WebKit browsers */
    -webkit-tap-highlight-color: transparent;  /* Removes tap highlight on mobile */
}


.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2em;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.2);
	padding: 0px;
	color: white;
	z-index: 10;
	border-radius: 20px;
	width:40px; 
	height:40px;

}

.arrow:hover {
	background: rgba(0, 0, 0, 0.35);
 }

.left-arrow {
	left: 20px;
}
.right-arrow {
	right: 20px;
}


@media only screen and (max-width:962px) {
	 .whyus-container-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .whyus-container {
            display: flex;
            transition: transform '.$transitionTime.'s ease-in-out;
        }
        .whyus-section {
            box-sizing: border-box;
            padding: 20px;
            text-align: center;
            flex-shrink: 0;
        }
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2em;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.2);
            padding: 0px;
            color: white;
            z-index: 10;
			border-radius: 15px;
			width:30px; 
			height:30px;
        }
		
		.arrow:hover {
            background: rgba(0, 0, 0, 0.35);
         }
		
        .left-arrow {
            left: 10px;
        }
        .right-arrow {
            right: 10px;
        }
}