    @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600&subset=latin-ext');

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 96px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 36px;
    font-weight: 200;
}

h1 strong {
    font-weight: 700;
}

h3 {
    font-size: 30px;
    font-weight: 300;
}

p {
    margin-bottom: 30px;
}

.c-orange {
    color: #ff6a10;
    font-weight: 700;
}

.c-orange:hover {
    text-decoration: none;
    color: #000;
}

.g-orange,
.red-btn {
    background: #fe5332;
    background: -moz-linear-gradient(top, #fe5332 0%, #ff1a15 100%);
    background: -webkit-linear-gradient(top, #fe5332 0%, #ff1a15 100%);
    background: linear-gradient(to bottom, #fe5332 0%, #ff1a15 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fe5332', endColorstr='#ff1a15', GradientType=0);
}

.g-orange {
    padding: 5px 20px;
}

.g-orange .row {
    border: 1px solid #ff9482;
}

.red-btn {
    padding: 15px 60px;
    border-radius: 36px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.red-btn:hover,
.g-orange:hover {
    background: #ff1a15;
    background: -moz-linear-gradient(top, #ff1a15 0%, #fe5332 100%);
    background: -webkit-linear-gradient(top, #ff1a15 0%, #fe5332 100%);
    background: linear-gradient(to bottom, #ff1a15 0%, #fe5332 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff1a15', endColorstr='#fe5332', GradientType=0);
    text-decoration: none;
    color: #fff;
}

.container-fluid {
    overflow-x: hidden;
}

@media (min-width: 992px) {
    body {
        padding-top: 96px;
    }
}

.navbar {
    padding: 25px 0;
    border-bottom: 1px solid #e9e9e9;
}

.navbar-brand {
    margin-right: 80px;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 700;
    color: #000;
    margin-right: 30px;
    font-size: 18px;
}

.product-info {
    padding: 50px 0;
}

.product-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9e9e9;
}

.sample-opinion {
    background: #f4f4f4;
    padding: 20px;
    margin-bottom: 50px;
}

.sample-opinion p {
    margin: 0;
    font-size: 14px;
}

.sample-opinion p a {
    color: #000;
    font-weight: 700;
}

.sample-opinion p a:hover {
    text-decoration: none;
}

.av-sm {
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    align-self: center;
}

.action-links li a {
    margin-right: 50px;
}

.product-table {
    padding: 25px 0;
    margin-bottom: 50px;
    border-top: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
}

.a-pill {
    width: 60px;
    margin-left: 20px;
    animation-name: pulse_animation;
    animation-duration: 5000ms;
    transform-origin: 70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes pulse_animation {
    0% {
        transform: scale(1) rotate(0deg);
    }
    30% {
        transform: scale(1) rotate(0deg);
    }
    40% {
        transform: scale(1.4) rotate(10deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    60% {
        transform: scale(1.4) rotate(10deg);
    }
    70% {
        transform: scale(1) rotate(0deg);
    }
    80% {
        transform: scale(1.4) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.free-product:hover {
    text-decoration: none;
}

.s-title {
    width: 100%;
}

.av-md {
    width: 120px;
    height: 120px;
    transition: all 0.2s ease-in-out;
}

.opinion-box {
    background: #f2f2f2;
    padding: 55px 30px 10px;
    color: #545353;
    position: relative;
    border-radius: 4px;
    border: 1px solid #ebebeb;
    margin-top: 40px;
}

.av-md-wrapper {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    top: -80px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.av-d-wrapper {
    width: 130px;
    height: 130px;
    top: -80px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.av-d-wrapper .av-md:nth-child(2) {
    margin-left: -25px;
}

.opinion-box .av-md {
    border: 5px solid #fff;
    box-shadow: 0 0 1px 1px #d8d8d8;
}

.opinion-box:hover .av-md {
    width: 125px;
    height: 125px;
}

.greybg {
    background: #f4f4f4;
    border-top: 1px solid #e4edf5;
    border-bottom: 1px solid #e4edf5;
    padding: 50px 0;
}

@media all and (max-width:1200px) {
	.navbar-light .navbar-nav .nav-link {
    	margin-right: 15px;}
}

	@media all and (max-width:992px) {
	    .opinion-box {
	        margin-top: 100px;
	    }
	    .product-info {
	        padding: 15px;
	    }
	    .navbar {
	        padding: 15px 15px;
	    }

	    .navbar-collapse {
	    padding-top: 20px;
		}
	}

	    @media all and (max-width:500px) {
	    	body{
	        	padding-left: 15px;
	        }
	        .action-links li a {
	            margin-right: 0;
	            margin-bottom: 30px;
	            display: block;
	        }
	        .action-links li {
	            width: 100%;
	            text-align: center;
	        }
	        .greybg {
	    		padding: 50px 15px;
			}
			.red-btn {
			    width: 95%;
			    text-align: center;
			    border-radius: 76px;
			}
	    }