body{	
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 28px;
	color: #303030;
	font-weight: 400;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6  {
	padding: 0;
	color: #333;
	font-weight: 500;	
	line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.h1, .h2, h1, h2 {
	margin-bottom: 2px;
}

.h5, .h6, h5, h6  {
	margin-bottom: 2px;
}
	

p {
	margin: 0 0 10px;
}

p:last-of-type{
	margin: 0;
}

ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.list-disc {
    list-style: inside;
}
.list-bullet {
    list-style-type: disc;
    list-style: inside;
}
.list-bullet li:before {
	content: "";
	display: list-item;
	float: left;
	color: #069;
}

a {
	color: #069;;
}
a:hover {
	color: #069;
	text-decoration: underline;
}
a:focus {
    outline: none;
}
img{
	max-width: 100%;
}
.full-height {
	height: 100%;
}

.quote-button {
	border-radius: 20px !important;
	background: #6893a4;
	border-color: #6893a4;
}
.quote-button img {
	max-width: 20px;
}

/**
 * Margins & Paddings
 */
.mx-3, .ml-3 {
	margin-left: 30px !important;
}
.mx-3, .mr-3 {
	margin-right: 30px !important;
}
.mx-4, .ml-4 {
	margin-left: 40px !important;
}
.mx-4, .mr-4 {
	margin-right: 40px !important;
}
.mt-3, .my-3 {
    margin-top: 30px !important;
}
.mb-3, .my-3 {
    margin-bottom: 30px !important;
}
.mt-4, .my-4 {
    margin-top: 40px !important;
}
.mb-4, .my-4 {
    margin-bottom: 40px !important;
}
.mt-5, .my-5 {
    margin-top: 50px !important;
}
.mb-5, .my-5 {
    margin-bottom: 50px !important;
}

.pt-0, .py-0 {
    padding-top: 0px !important;
}
.pb-0, .py-0 {
    padding-bottom: 0px !important;
}
.p-2 {
    padding: 15px !important;
}
.p-3 {
    padding: 30px !important;
}
.p-4 {
    padding: 40px !important;
}
.p-5 {
    padding: 50px !important;
}
.pt-2, .py-2 {
    padding-top: 15px !important;
}
.pb-2, .py-2 {
    padding-bottom: 15px !important;
}
.pl-2, .px-2 {
    padding-top: 15px !important;
}
.pr-2, .px-2 {
    padding-bottom: 15px !important;
}

.pt-3, .py-3 {
    padding-top: 30px !important;
}
.pb-3, .py-3 {
    padding-bottom: 30px !important;
}
.pl-3, .px-3 {
    padding-left: 30px !important;
}
.pr-3, .px-3 {
    padding-right: 30px !important;
}

.pt-4, .py-4 {
    padding-top: 40px !important;
}
.pb-4, .py-4 {
    padding-bottom: 40px !important;
}
.pl-4, .px-4 {
    padding-left: 40px !important;
}
.pr-4, .px-4 {
    padding-right: 40px !important;
}

.pb-5, .py-5 {
    padding-bottom: 50px !important;
}
.pt-5, .py-5 {
    padding-top: 50px !important;
}
.pl-5, .px-5 {
    padding-left: 50px !important;
}
.pr-5, .px-5 {
    padding-right: 50px !important;
}


/**
 * Button
 */
.btn {
	border-radius: 0;
	font-weight: 800;
}
.btn-blue {
	color: #fff;
	background: #069;
}
.btn-green {
    background: #9cda2b;
    padding: 10px 25px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 25px;
   }
.btn-no-click,
.btn-no-click:hover {
	color: #fff;
	cursor: default;
}

.text-green {
	color: #89c718;
}
.text-blue {
	color: #069;
}

/**
 * Backgrounds
 */
.bg-center {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.bg-grey {
	background-color: #f6f6f6;
}
.bg-grey-2 {
	background-color: #dbdfea;
}
.bg-blue {
	background-color: #0995bf;
}
.bg-green {
	background-color: #89c718;
}
.bg-green-2 {
	background-color: #01b2ba;
}
.bg-green-3 {
    background: #0e2f40;
}

.list-group-item-light {
    color: #303030;
    background-color: #f5f5f5;
}

.overlay-text {
	min-height: 250px;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
}
.img-overlay:before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.35);
    height: 100%;
    width: 100%;
}


.wrapper {
    position: relative;
    background: #fff;
    transition-duration: .3s
}

.off-canvas-slide {
    transform: translate3d(-250px, 0, 0);
     }


/**
 * Header
 */
header{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.21) 0%, rgba(0, 0, 0, 0.65) 100%), url(../images/header-bg.jpg) no-repeat center center;
    background-size: cover;
}
header .border-top,
footer .border-top  {
	border-color: rgba(255, 255, 255, 0.18) !important;
}

.logo img {
	max-height: 55px;
}

/**
 * Mobile navigation
 */
.mobile-nav-trigger .trigger {
    width: 28px;
    height: 21px;
    display: block;
    position: relative;
    float: right;
              transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer
}

.mobile-nav-trigger .trigger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #f6f6f6;
    border-radius: 5px;
    opacity: 1;
    left: 0;
               transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.mobile-nav-trigger .trigger span:nth-child(1) {
    top: 0
}

.mobile-nav-trigger .trigger span:nth-child(2),
.mobile-nav-trigger .trigger span:nth-child(3) {
    top: 9px
}

.mobile-nav-trigger .trigger span:nth-child(4) {
    top: 18px
}

.mobile-nav-trigger .trigger.open span:nth-child(1),
.mobile-nav-trigger .trigger.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%
}

.mobile-nav-trigger .trigger.open span:nth-child(2) {
             transform: rotate(45deg)
}

.mobile-nav-trigger .trigger.open span:nth-child(3) {
           transform: rotate(-45deg)
}

.off-canvas-nav-list,
.mobile-nav {
    top: 0;
    right: -250px;
    z-index: 0;
    height: 100%;
    width: 250px;
    overflow-y: auto;
    font-size: 14px;
    display: block;
    transition-duration: .3s;
    font-family: 'Montserrat', sans-serif;
}

.off-canvas-nav-list {
    position: absolute;
    padding: 25px 20px;
    background: #3e3e3e;
    box-shadow: inset 3px 0 5px 0 #2b2b2b;
      }

.off-canvas-nav-list .nav.menu a {
    color: #fafafa
}

.off-canvas-nav-list .nav.menu li {
    line-height: 30px
}

.off-canvas-nav-list .nav.menu .nav-child {
    padding-left: 20px
}

.mobile-nav {
    position: fixed;
    padding: 25px 20px;
    background: #f6f6f6;
}

.mobile-nav ul {
    margin: 0;
    padding: 0
}

.mobile-nav ul li {
    text-transform: uppercase;
    color: #333;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
}

.mobile-nav a {
    color: #333;
 	font-weight: 700;
}
.mobile-nav li.active > a {
	color: #89c718;
}
.mobile-nav ul.sub-menu {
	padding-top: 10px;
	margin-bottom: 25px;
	padding-left: 5px;
}
.mobile-nav ul.sub-menu li {
    font-size: 13px;
    text-transform: capitalize;
}

.mobile-nav ul.sub-menu li:last-child {
    border: 0
}


/**
 * Home page
 */


 /**
 * Section One
 */
.blue-box{
    background: #1d99b3;
}
.white-box{
    background: #f6f6f6;
}

.tf-idf {
	min-height: 250px;
    background-image: url(../images/home-page/TF-IDF500A.jpg);
}
.market-niche {
	min-height: 250px;
	background-image: url(../images/home-page/Website-Market-Niche-2.jpg);	
} 
.visitor-metrics {
	min-height: 250px;
    background-image: url(../images/home-page/website-metrics.jpg);
}
.web-competitor {
	min-height: 250px;
    background-image: url(../images/home-page/advanced-website-visitor-me500.jpg);
}
.outbound{
	min-height: 250px;
    background-image: url(../images/home-page/outbound-marketing500.jpg);
}
.mobile-responsive {
	min-height: 250px;
    background-image: url(../images/home-page/LPH-responsive2.jpg);
}
.additional {
    background-image: url(../images/home-page/Advanced-Website-Solutions.jpg);
    padding: 8% 40px;
    display: flex;
    justify-content: flex-end;
}
.additional h3 {
    max-width: 445px;
    margin: 0;
    text-align: end;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}

.price-box {
    height: 100px;
    width: 100%;
}

/**
 * Footer
 */
.cta {
	font-size: 18px;
	background: #89c718;
}


 /**
 * Footer
 */
footer {
	background: #6893a4;
}
footer,
footer a {
	color: #fff;
	font-size: 14px;
}
footer a:hover {
	color: #9cda2b;
	font-size: 14px;
}
footer li.list-group-item {
    background: rgba(146, 183, 197, 0.67);
    border-color: rgb(148, 186, 202);
}
footer li.list-group-item:first-child,
footer li.list-group-item:last-child {
    border-radius: 0;
}
.social-icon .fa {
	font-size: 22px;
}

@media (min-width:768px) {

	.pl-md-0 .px-md-0 {
	    padding-left: 0px !important;
	}	
	.pr-md-0 .px-md-0 {
	    padding-right: 0px !important;
	}

}

@media (min-width:992px) {

	/**
	 * Margins & Paddings
	 */
 	.mb-lg-0, .my-lg-0 {
    	margin-bottom: 0!important;
	}

	.mt-lg-3, .my-lg-3 {
	    margin-top: 30px !important;
	}
	.mb-lg-3, .my-lg-3 {
	    margin-bottom: 30px !important;
	}
	.mt-lg-4, .my-lg-4 {
	    margin-top: 40px !important;
	}
	.mb-lg-4, .my-lg-4 {
	    margin-bottom: 40px !important;
	}
	.mt-lg-5, .my-lg-5 {
	    margin-top: 50px !important;
	}
	.mb-lg-5, .my-lg-5 {
	    margin-bottom: 50px !important;
	}


	.pt-lg-0, .py-lg-0 {
	    padding-top: 0!important;
	}
	.pb-lg-0, .py-lg-0 {
	    padding-bottom: 0!important;
	}
	.pt-lg-2, .py-lg-2 {
	    padding-top: 15px !important;
	}
	.pb-lg-2, .py-lg-2 {
	    padding-bottom: 15px !important;
	}
	.pl-lg-2, .px-lg-2 {
	    padding-top: 15px !important;
	}
	.pr-lg-2, .px-lg-2 {
	    padding-right: 15px !important;
	}
	
	.pt-lg-3, .py-lg-3 {
	    padding-top: 30px !important;
	}
	.pb-lg-3, .py-lg-3 {
	    padding-bottom: 30px !important;
	}
	.pl-lg-3, .px-lg-3 {
	    padding-left: 30px !important;
	}
	.pr-lg-3, .px-lg-3 {
	    padding-right: 30px !important;
	}

	.pt-lg-4, .py-lg-4 {
	    padding-top: 40px !important;
	}
	.pb-lg-4, .py-lg-4 {
	    padding-bottom: 40px !important;
	}
	.pl-lg-4, .px-lg-4 {
	    padding-left: 40px !important;
	}
	.pr-lg-4, .px-lg-4 {
	    padding-right: 40px !important;
	}

	.pt-lg-5, .py-lg-5 {
	    padding-top: 50px !important;
	}
	.pb-lg-5, .py-lg-5 {
	    padding-bottom: 50px !important;
	}
	.pl-lg-5, .px-lg-5 {
	    padding-left: 50px !important;
	}
	.pr-lg-5, .px-lg-5 {
	    padding-right: 50px !important;
	}

}

@media (min-width:1200px) {

	/**
	 * Margins & Paddings
	 */
	.mt-xl-3, .my-xl-3 {
	    margin-top: 30px !important;
	}
	.mb-xl-3, .my-xl-3 {
	    margin-bottom: 30px !important;
	}
	.mt-xl-4, .my-xl-4 {
	    margin-top: 40px !important;
	}
	.mb-xl-4, .my-xl-4 {
	    margin-bottom: 40px !important;
	}
	.mt-xl-5, .my-xl-5 {
	    margin-top: 50px !important;
	}
	.mb-xl-5, .my-xl-5 {
	    margin-bottom: 50px !important;
	}


	.pt-xl-0, .py-xl-0 {
	    padding-top: 0!important;
	}
	.pb-xl-0, .py-xl-0 {
	    padding-bottom: 0!important;
	}
	.pt-xl-2, .py-xl-2 {
	    padding-top: 15px !important;
	}
	.pb-xl-2, .py-xl-2 {
	    padding-bottom: 15px !important;
	}
	.pl-xl-2, .px-xl-2 {
	    padding-top: 15px !important;
	}
	.pr-xl-2, .px-xl-2 {
	    padding-right: 15px !important;
	}

	.pt-xl-3, .py-xl-3 {
	    padding-top: 30px !important;
	}
	.pb-xl-3, .py-xl-3 {
	    padding-bottom: 30px !important;
	}
	.pl-xl-3, .px-xl-3 {
	    padding-left: 30px !important;
	}
	.pr-xl-3, .px-xl-3 {
	    padding-right: 30px !important;
	}

	.pt-xl-4, .py-xl-4 {
	    padding-top: 40px !important;
	}
	.pb-xl-4, .py-xl-4 {
	    padding-bottom: 40px !important;
	}
	.pl-xl-4, .px-xl-4 {
	    padding-left: 40px !important;
	}
	.pr-xl-4, .px-xl-4 {
	    padding-right: 40px !important;
	}

	.pt-xl-5, .py-xl-5 {
	    padding-top: 50px !important;
	}
	.pb-xl-5, .py-xl-5 {
	    padding-bottom: 50px !important;
	}
	.pl-xl-5, .px-xl-5 {
	    padding-left: 50px !important;
	}
	.pr-xl-5, .px-xl-5 {
	    padding-right: 50px !important;
	}

	.headline {
	    font-size: 20px;
	    color: #9cda2b;
	}

	.logo img {
		max-height: 75px;
	}

	.mainmenu ul {
	    display: flex;
	}
	.mainmenu li {
	    position: relative;
	}
	.mainmenu li span {
		cursor: default;
	}
	.mainmenu li a,
	.mainmenu li span {
		color: #fafafa;
		font-size: 14px;
		margin: 0px 50px 0 0;
		padding: 20px 0;
		display: block;
		font-weight: 500;
		font-family:'Montserrat', sans-serif;
		text-align: center;
		line-height: 1.5;
		border-top: 4px solid rgba(255, 255, 255, 0);
		transition: 0.5s ease-in-out;
	}
    .mainmenu li:last-child a,
	.mainmenu li:last-child span {
        margin: 0
	}
	.mainmenu li:hover a,
	.mainmenu li.active a,
	.mainmenu li:hover span,
	.mainmenu li.active span {
		border-color: #7db319;
	}
	.mainmenu li ul.sub-menu {
	    position: absolute;
	    width: 100%;
	    padding: 10px 20px;
	    background: #7db319;
	    display: block;
	    z-index: 9;
	    top: 120%;
	    opacity: 0;
	    visibility: hidden;
	    min-width: 270px;
	    transition: 0.3s ease-in-out;
	}
	.mainmenu li:last-child ul.sub-menu {
		right: 0%;
	}
	.mainmenu li:hover ul.sub-menu {
	    opacity: 1;
	    visibility: visible;
	    top: 100%;
	}
	.mainmenu li ul.sub-menu li {
	    padding: 10px;
	}	
	.mainmenu li ul.sub-menu li a {
		padding: 0;
	    text-align: left;
	    margin: 0;
	}
	.mainmenu li ul.sub-menu li a:hover {
	    color: #567e0b;
	}
	.mainmenu .menuicon {
	    display: none;
	}

	.price-box {
	    width: 150px;
	}

	footer .list-group-sm li.list-group-item {
    	background: transparent !important;
    	border-color: transparent !important;
		padding: 0 !important;
	}

}

@media (min-width:1300px) {

	.container {
	    max-width: 1230px;
	}

}