/*

---------- TABLE OF CONTENTS ----------
	
	1.0 Configuration
		1.1	Imports
    1.2	General
    
---------- END - TABLE OF CONTENTS ----------
*/

/* --------------------------------------------------
	1.1 Imports
-------------------------------------------------- */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,700;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* ---- Atoms ---- */
@import url('atoms/typography.css');
@import url('atoms/buttons.css');

/* ---- Organisms ---- */
@import url('organisms/header.css');
@import url('organisms/footer.css');
@import url('organisms/about-section.css');
@import url('organisms/feature-section.css');
@import url('organisms/counter-section.css');
@import url('organisms/cards-section.css');
@import url('organisms/cta-section.css');
@import url('organisms/brands-section.css');
@import url('organisms/internal.css');

/* ---- Icons ---- */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/* --------------------------------------------------
	1.2 General
-------------------------------------------------- */


body {
    height: 100%;
    width: 100%;
}

::-moz-selection { /* Code for Firefox */
    background: #ddd;
}

::selection {
    background: #ddd;
}

.container {
    margin: auto;
    max-width: 1200px;
}

.section-regular {
	padding: 6.25rem 0;
}

.section-small {
	padding: 2.625rem 0;
}

.bg-light {
	background-color: #f4f4f4;
}

.bg-dark {
	background-color: #000;
}

.bg-parallax-v1 {
	background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
    position: relative;
    z-index: 1;
}

.bg-parallax-v1::before {
	background-image: linear-gradient(to bottom, rgba(1, 1, 1, 0.6) 0%, rgba(1, 1, 1, 0.6) 100%);
	background-repeat: repeat-x;
	bottom: 0;
	content: " ";
	height: 100%;
    left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
    z-index: -1;
}

.bg-parallax-v2 {
	background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
    position: relative;
    z-index: 1;
}

.bg-parallax-v2::before {
	background-image: linear-gradient(to bottom, rgba(1, 1, 1, 0.8) 0%, rgba(1, 1, 1, 0.8) 100%);
	background-repeat: repeat-x;
	bottom: 0;
	content: " ";
	height: 100%;
    left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
    z-index: -1;
}

.img-responsive {
	width: 100%;
	height: auto;
 }

.mb-30 {
	margin-bottom: 1.875rem;
}

.mb-60 {
	margin-bottom: 3.75rem;
}

.pt-20 {
	padding-top: 20px;
}

.pb-20 {
	padding-bottom: 20px;
}








