/* About Page CSS - imperfect human style */

.home-about-section {
	background: #151515;
}

.about-content {
	padding-top: 18px;
}

.about-content h2 {
	font-size: 48px;
	font-weight: 500;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 36px;
}

.about-content p.brief-details {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	line-height: 28px;
	margin-bottom: 20px;
}

.about-content p.detailed-info {
	color: #ffffff;
	margin-bottom: 40px;
	line-height: 1.6;
	font-size: 16px;
}

.about-content .primary-button.about-action:after {
	opacity: 1;
}

.about-image img {
	min-width: 100%;
	border-radius: 8px;
}

/* Primary button styles - customized for ContentBridge brand */
.primary-button {
	display: inline-block;
	font-size: 14px;
	font-family: Arial, sans-serif;
	font-weight: 600;
	padding: 0 12px;
	color: #ffffff;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	width: 160px;
	height: 46px;
	border-left: 2px solid #ff8b00;
	border-right: 2px solid #ff9827;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
	background-size: 100% 2px;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(100%, #ff9827), to(#ff8b00)), -webkit-gradient(linear, left top, right top, from(#ff9827), color-stop(0%, #ff8b00));
	background-image: -o-linear-gradient(left, #ff9827 100%, #ff8b00 100%), -o-linear-gradient(left, #ff9827 0%, #ff8b00 0%);
	background-image: linear-gradient(to right, #ff9827 100%, #ff8b00 100%), linear-gradient(to right, #ff9827 0%, #ff8b00 0%);
	-webkit-transition-duration: 1000ms;
	-o-transition-duration: 1000ms;
	transition-duration: 1000ms;
	line-height: 45px;
	position: relative;
	z-index: 1;
	border-radius: 4px;
	text-decoration: none;
}

.primary-button:hover {
    text-decoration: none;
    color: #fff;
}

.primary-button:after {
	color: #fff;
	-webkit-transition-duration: 500ms;
	-o-transition-duration: 500ms;
	transition-duration: 500ms;
	background: #ff8b00;
	background: -webkit-gradient(linear, left top, right top, from(#ff8b00), to(#ff9827));
	background: -o-linear-gradient(left, #ff8b00, #ff9827);
	background: linear-gradient(to right, #ff8b00, #ff9827);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 2px;
	opacity: 0;
}

/* Spacing utility */
.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

/* Column classes for about page */
.col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Responsive styles - messy like human code */
@media (max-width: 1199.98px) {
    .about-content h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }
    
    .about-content p.brief-details {
        font-size: 19px;
        line-height: 27px;
    }
}

@media (max-width: 991.98px) {
    .about-content h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .about-content p.brief-details {
        font-size: 18px;
        line-height: 26px;
    }
    
    .spad {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .col-lg-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .about-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-content p.brief-details {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 18px;
    }
    
    .about-content p.detailed-info {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .spad {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .primary-button {
        width: 140px;
        height: 42px;
        line-height: 41px;
        font-size: 13px;
    }

    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .about-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .about-content p.brief-details {
        font-size: 15px;
        line-height: 22px;
    }
    
    .about-content p.detailed-info {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .spad {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .primary-button {
        width: 130px;
        height: 40px;
        line-height: 39px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .about-content {
        padding-top: 15px;
    }
}