.w-layout-grid {
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-ms-grid-rows: auto auto;
	grid-template-rows: auto auto;
	grid-row-gap: 16px;
	grid-column-gap: 16px;
}

body {
	font-family: Lora, sans-serif;
	color: #333;
	font-size: 14px;
	line-height: 20px;
}

h1 {
	margin-top: 0px;
	margin-bottom: 30px;
	font-size: 38px;
	line-height: 44px;
	font-weight: 700;
}

h2 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-family: Oxygen, sans-serif;
	color: #2e2e2e;
	font-size: 25px;
	line-height: 30px;
}

h3 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-family: Oxygen, sans-serif;
	font-size: 18px;
	line-height: 30px;
	font-weight: 700;
}

h4 {
	margin-top: 20px;
	margin-bottom: 5px;
	font-family: Oxygen, sans-serif;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
}

h5 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: Oxygen, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
}

h6 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: Oxygen, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-weight: 700;
}

p {
	margin-bottom: 15px;
	font-size: 15px;
	line-height: 22px;
}

a {
	color: #dd783f;
	text-decoration: none;
}

a:hover {
	color: #c2581b;
	text-decoration: none;
}

img {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 10px;
}

.hero-section {
	position: relative;
	height: 400px;
	padding-top: 184px;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#4d565d),
		to(#f7f7f7)
	);
}

.navbar {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	padding-top: 17px;
	padding-bottom: 17px;
	background-color: transparent;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 0, 0, 0.33)),
		color-stop(99%, transparent)
	);
	background-image: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.33),
		transparent 99%
	);
}

.menu-link {
	display: inline-block;
	margin-right: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	font-family: Oxygen, sans-serif;
	font-size: 12px;
	line-height: 14px;
}

.menu-icon {
	display: inline-block;
	float: right;
	line-height: 13px;
}

.menu-button {
	display: block;
	margin-top: 0px;
	padding: 10px 8px 9px;
	float: right;
	border-radius: 2px;
	-webkit-transition: background-color 350ms ease, color 350ms ease;
	transition: background-color 350ms ease, color 350ms ease;
	color: hsla(0, 0%, 100%, 0.85);
}

.menu-button:hover {
	background-color: hsla(0, 0%, 100%, 0.1);
	color: #fff;
}

.menu-button.w--open {
	background-color: hsla(0, 0%, 100%, 0.25);
}

.long-text {
	margin-top: 7px;
	color: #fff;
	font-size: 26px;
	line-height: 26px;
}

.hero-heading {
	margin-bottom: 14px;
	color: #fff;
	font-size: 50px;
	line-height: 51px;
	letter-spacing: 2px;
}

.hero-subheading {
	margin-bottom: 30px;
	font-family: Oxygen, sans-serif;
	color: hsla(0, 0%, 100%, 0.63);
	font-size: 18px;
	font-weight: 300;
}

.hero-content {
	text-align: center;
}

.button {
	padding: 12px 31px;
	border-radius: 3px;
	background-color: #dd783f;
	-webkit-transition: background-color 200ms ease, color 200ms ease;
	transition: background-color 200ms ease, color 200ms ease;
	font-family: Oxygen, sans-serif;
	color: #fff;
	font-weight: 300;
}

.button:hover {
	background-color: #f17228;
	color: #fff;
}

.button.w--current {
	display: inline-block;
	width: 15vw;
	margin-left: 4vw;
}

.main-section {
	padding-top: 62px;
	padding-bottom: 62px;
	background-color: #f7f7f7;
}

.main-section.dark {
	padding-bottom: 0px;
	border-bottom: 1px none #000;
	background-color: #4d565d;
	background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			from(rgba(35, 47, 56, 0.47)),
			color-stop(99%, rgba(35, 47, 56, 0.31))
		),
		url("../images/footer-bg.jpg");
	background-image: linear-gradient(
			180deg,
			rgba(35, 47, 56, 0.47),
			rgba(35, 47, 56, 0.31) 99%
		),
		url("../images/footer-bg.jpg");
	background-position: 0px 0px, 50% 0px;
	background-size: auto, cover;
}

.main-section.gray {
	background-color: #f8f8f8;
}

.main-section.bottom-padding {
	padding-top: 0px;
	padding-bottom: 89px;
}

.thumbnail-wrapper {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
	background-color: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
	-webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
	transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
	transition: box-shadow 200ms ease, transform 200ms ease;
	transition: box-shadow 200ms ease, transform 200ms ease,
		-webkit-transform 200ms ease;
	text-decoration: none;
}

.thumbnail-wrapper:hover {
	box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 0px 1px,
		rgba(0, 0, 0, 0.09) 0px 2px 23px 0px;
	-webkit-transform: translate(0px, -3px);
	-ms-transform: translate(0px, -3px);
	transform: translate(0px, -3px);
}

.blog-title {
	display: inline-block;
	margin-bottom: 6px;
	color: #101315;
	font-size: 16px;
	line-height: 21px;
	font-weight: 400;
	text-decoration: none;
}

.category-tag {
	position: absolute;
	left: 10px;
	top: 4px;
	display: inline-block;
	margin-top: 6px;
	margin-right: 6px;
	padding: 6px;
	border-radius: 2px;
	background-color: #5cc489;
	font-family: Oxygen, sans-serif;
	color: #fff;
	font-size: 10px;
	line-height: 10px;
	font-weight: 400;
	text-transform: uppercase;
}

.image-wrapper {
	position: relative;
	overflow: hidden;
}

.thumbnail-text {
	text-align: left;
	overflow: hidden;
	height: 200;
	padding: 13px;
	border-top: 1px solid #e5e5e5;
}

.thumbnail-date {
	display: inline-block;
	float: block;
	font-family: Oxygen, sans-serif;
	color: #999;
	font-size: 12px;
	line-height: 35px;
}

.thumbnail-date.lite {
	color: hsla(0, 0%, 100%, 0.7);
	font-size: 12px;
}

.author-img {
	position: static;
	right: 10px;
	bottom: 10px;
	width: 26px;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 0px;
	float: left;
	border-radius: 60px;
}

.thumb-details {
	padding: 6px 13px;
	border-top: 1px solid #efefef;
	background-color: #fcfcfc;
}

.preview-text {
	overflow: hidden;
	height: 200px;
	font-family: Oxygen, sans-serif;
	color: #7a7a7a;
	font-size: 13px;
	line-height: 19px;
}

.author-title {
	float: left;
	font-family: Oxygen, sans-serif;
	color: #999;
	font-size: 12px;
	line-height: 35px;
}

.author-title.lite {
	color: hsla(0, 0%, 100%, 0.7);
	font-size: 12px;
}

.container {
	display: block;
	width: 1100px;
	max-width: 100%;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}

.section-heading {
	text-align: center;
}

.med-divider {
	display: block;
	width: 20%;
	height: 1px;
	margin: 16px auto;
	background-color: #dedede;
	list-style-type: lower-alpha;
}

.white {
	color: #efefef;
}

.form-wrapper {
	display: block;
	width: 500px;
	margin: 20px auto 80px;
}

.field {
	width: 75%;
	height: 50px;
	float: left;
	border: 1px none #000;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	color: #4d565d;
	font-size: 15px;
}

.submit-button {
	width: 25%;
	height: 50px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	background-color: hsla(0, 0%, 100%, 0.28);
	-webkit-transition: background-color 350ms ease, color 350ms ease;
	transition: background-color 350ms ease, color 350ms ease;
	font-family: Oxygen, sans-serif;
}

.submit-button:hover {
	background-color: #dd783f;
}

.footer-section {
	padding-top: 27px;
	padding-bottom: 27px;
	border-top: 1px solid hsla(0, 0%, 100%, 0.12);
	background-color: rgba(35, 47, 56, 0.6);
}

.footer-link {
	display: inline-block;
	padding: 3px 0px 3px 20px;
	float: none;
	-webkit-transition: color 350ms ease;
	transition: color 350ms ease;
	font-family: Oxygen, sans-serif;
	color: hsla(0, 0%, 100%, 0.6);
	font-size: 11px;
	line-height: 26px;
	font-weight: 300;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-link:hover {
	color: #fff;
}

.thumbnail-image {
	display: block;
	width: 100%;
	height: 300px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #d6d6d6;
	background-position: 50% 50%;
	background-size: cover;
}

.laurent {
	background-image: url("../images/bios/laurent.jpg");
}

.roy {
	background-image: url("../images/bios/roy.png");
}

.boyan {
	background-image: url("../images/bios/boyan.jpg");
}

.jessell {
	background-image: url("../images/bios/jessell.jpg");
}

.grose {
	background-image: url("../images/bios/grose.jpg");
}

.giraud {
	background-image: url("../images/bios/giraud.jpg");
}

.guillaume {
	background-image: url("../images/bios/guillaume.jpg");
}

.lindsay {
	background-image: url("../images/bios/lindsay.jpg");
}

.armit {
	background-image: url("../images/bios/armit.jpg");
}

.eric {
	background-image: url("../images/bios/eric.jpg");
}

.vitaly {
	background-image: url("../images/bios/vitaly.jpg");
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

.modal {
	position: fixed;
	top: 100%;
	left: 100%;
	transform: translate(-50%, -50%) scale(0);
	transition: 100ms ease-in-out;
	border: 1px solid black;
	border-radius: 7px;
	z-index: 100;
	background-color: white;
	width: 200px;
	max-width: 90%;
}

.modal.active {
	transform: translate(-50%, -50%) scale(1);
}

.modal-header {
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid black;
}

.modal-header .title {
	font-size: 1.25rem;
	font-weight: bold;
}

.modal-header .close-button {
	cursor: pointer;
	border: none;
	outline: none;
	background: none;
	font-size: 1.25rem;
	font-weight: bold;
}

.modal-body {
	padding: 10px 15px;
}

#overlay {
	position: fixed;
	opacity: 0;
	transition: 200ms ease-in-out;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.2);
	pointer-events: none;
}

#overlay.active {
	opacity: 1;
	pointer-events: all;
}

.featured-wrapper {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
	-webkit-transition: -webkit-transform 200ms ease;
	transition: -webkit-transform 200ms ease;
	transition: transform 200ms ease;
	transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.featured-wrapper:hover {
	-webkit-transform: translate(0px, -5px);
	-ms-transform: translate(0px, -5px);
	transform: translate(0px, -5px);
}

.featured-text {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: 60px 20px 62px;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 0, 0, 0.03)),
		color-stop(46%, rgba(0, 0, 0, 0.6)),
		to(rgba(0, 0, 0, 0.76))
	);
	background-image: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.03),
		rgba(0, 0, 0, 0.6) 46%,
		rgba(0, 0, 0, 0.76)
	);
}

.featured-title {
	display: block;
	margin-bottom: 4px;
	padding-right: 20px;
	color: #fff;
	font-size: 27px;
	line-height: 30px;
	text-align: left;
}

.category-tag-2 {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 10;
	padding: 7px 9px 6px;
	border-radius: 2px;
	background-color: #5cc489;
	font-family: Oxygen, sans-serif;
	color: #fff;
	font-size: 12px;
	line-height: 13px;
	font-weight: 400;
	text-transform: uppercase;
}

.featured-description {
	padding-right: 44px;
	font-family: Oxygen, sans-serif;
	color: hsla(0, 0%, 100%, 0.7);
	font-size: 14px;
	line-height: 25px;
	text-align: left;
}

.featured-details {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: 10px 20px 15px;
}

.featured-image {
	position: static;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 280px;
	margin-top: 0px;
	margin-bottom: 0px;
	border-radius: 3px;
	background-image: url("../images/3f4eb74a.jpg");
	background-position: 50% 50%;
	background-size: cover;
}

.blog-date {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	margin-left: 10px;
	color: #999;
	line-height: 25px;
}

.blog-category {
	display: inline-block;
	margin-right: 10px;
	margin-left: 10px;
	padding: 6px;
	border-radius: 2px;
	color: #d25f7c;
	text-decoration: none;
	text-transform: uppercase;
}

.author-link {
	display: block;
	width: 100px;
	height: 100px;
	margin-right: auto;
	margin-left: auto;
	-webkit-transition: -webkit-transform 200ms ease;
	transition: -webkit-transform 200ms ease;
	transition: transform 200ms ease;
	transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.author-link:hover {
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

.author-wrapper {
	display: block;
	width: 70%;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.author-name {
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	-webkit-transition: color 200ms ease;
	transition: color 200ms ease;
	color: #353535;
	font-size: 17px;
	font-style: italic;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

.author-name:hover {
	color: #243039;
}

.inner-hero {
	position: relative;
	height: 300px;
	padding-top: 125px;
	background-image: url("../images/bridges.jpg");
	background-position: 50% 50%;
	background-size: cover;
	text-align: center;
}

.inner-hero.about-page {
	background-image: url("../images/photo-1438636740648-37d6fed50dad.jpg");
	background-size: cover;
}

.inner-hero.category {
	margin-top: 0px;
	margin-bottom: -30px;
	padding-bottom: 0px;
	background-image: url("../images/photo-1413977886085-3bbbf9a7cf6e.jpg");
	background-size: cover;
}

.author-picture {
	position: relative;
	left: 0px;
	bottom: 0px;
	display: inline-block;
	width: 300px;
	margin-right: 25px;
	margin-bottom: 17px;
	float: left;
	border-radius: 6px;
}

.author-name-main {
	display: block;
	margin-top: 30px;
	margin-bottom: 10px;
}

.authorbio p {
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 29px;
}

.author-links {
	width: 25px;
	height: 25px;
	margin-right: 15px;
	padding: 1px 0px;
	opacity: 0.7;
	-webkit-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.author-links:hover {
	opacity: 1;
}

.social-wrapper {
	margin-bottom: 8px;
}

.hero-header {
	color: #fff;
	font-size: 50px;
	font-weight: 400;
}

.blog-thumbnail {
	margin-bottom: 13px;
	padding: 6px 12px;
}

.footer-logo {
	text-decoration: none;
}

.hero-blog {
	height: 300px;
	background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
	background-position: 50% 50%;
	background-size: cover;
}

.smallest-divider {
	display: block;
	width: 50px;
	height: 2px;
	margin: 10px auto;
	background-color: #dedede;
}

.author-bio {
	display: block;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.author-bio p {
	font-size: 13px;
	line-height: 21px;
}

.social-link {
	display: inline-block;
	width: 20px;
	margin-right: 5px;
	margin-left: 5px;
	opacity: 0.82;
	-webkit-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
}

.social-link:hover {
	opacity: 0.45;
}

.blog-post {
	display: block;
	width: 85%;
	margin-right: auto;
	margin-left: auto;
}

.featuredthumbnail {
	padding-top: 7px;
	padding-bottom: 7px;
}

.nav-link {
	display: inline-block;
	padding: 10px 20px;
	opacity: 0.7;
	-webkit-transition: opacity 200ms ease, -webkit-transform 200ms ease;
	transition: opacity 200ms ease, -webkit-transform 200ms ease;
	transition: opacity 200ms ease, transform 200ms ease;
	transition: opacity 200ms ease, transform 200ms ease,
		-webkit-transform 200ms ease;
	font-family: Oxygen, sans-serif;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.nav-link:hover {
	opacity: 1;
	-webkit-transform: translate(0px, -2px);
	-ms-transform: translate(0px, -2px);
	transform: translate(0px, -2px);
	color: #fff;
}

.nav-link.w--current {
	opacity: 1;
	color: #fff;
}

.view-all {
	margin-bottom: 13px;
	padding-right: 18px;
	padding-left: 18px;
	-webkit-transition: color 300ms ease;
	transition: color 300ms ease;
	color: hsla(0, 0%, 100%, 0.6);
	text-decoration: none;
}

.full-divide {
	width: 100%;
	height: 1px;
	margin-top: 30px;
	margin-bottom: 30px;
	background-color: #dedede;
}

.author-photo {
	margin-top: 0px;
	margin-bottom: 0px;
	border-radius: 100%;
}

.social-icon {
	margin-top: 0px;
	margin-bottom: 0px;
}

.category-section {
	padding-top: 9px;
	padding-bottom: 9px;
	border-bottom: 1px solid #e0e0e0;
	background-color: #fff;
}

.category-link {
	display: block;
	margin-right: 1px;
	padding-top: 13px;
	padding-bottom: 13px;
	border-radius: 3px;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	color: #768088;
	text-align: center;
	text-decoration: none;
}

.category-link:hover {
	background-color: #f0f0f0;
	color: #243039;
}

.dark-overlay {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 0;
	height: 100%;
	background-color: #000;
	opacity: 0.23;
	-webkit-transition: background-color 400ms ease;
	transition: background-color 400ms ease;
	text-shadow: none;
}

.footer-links {
	text-align: right;
}

.category-block {
	display: block;
	padding: 10px;
	text-decoration: none;
}

.category-thumbnail {
	position: relative;
	overflow: hidden;
	height: 140px;
	padding: 57px 30px 30px;
	border-radius: 3px;
	background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
	background-position: 50% 50%;
	background-size: cover;
	color: #fff;
	font-size: 23px;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.39);
}

.category-name {
	position: relative;
	z-index: 10;
}

.hero-wrapper {
	position: relative;
	z-index: 10;
}

.field-label {
	font-family: Oxygen, sans-serif;
	font-weight: 400;
}

.contact-field {
	height: 50px;
	padding-bottom: 9px;
	border-radius: 2px;
	font-family: Oxygen, sans-serif;
}

.contact-field:focus {
	border: 1px solid #5cc489;
	color: #243039;
}

.contact-field.message {
	height: 150px;
}

.social-text {
	display: block;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 26px;
	background-image: url("../images/social-18.svg");
	background-position: 0px 50%;
	background-size: 15px;
	background-repeat: no-repeat;
	-webkit-transition: color 300ms ease;
	transition: color 300ms ease;
	color: #243039;
	font-size: 14px;
	text-decoration: none;
}

.social-text.facebook {
	background-image: url("../images/social-03.svg");
	background-size: 15px;
}

.social-text.instagram {
	background-image: url("../images/social-07.svg");
	background-size: 15px;
}

.success-message {
	padding-top: 27px;
	border-radius: 3px;
	background-color: #5cc489;
	color: #fff;
}

.success-text {
	font-size: 16px;
}

.section-title {
	margin-top: 60px;
	font-size: 20px;
	line-height: 27px;
	font-weight: 400;
	letter-spacing: 2px;
}

.blog-post-title {
	margin-top: 0px;
	margin-bottom: 7px;
}

.main-actionbutton {
	width: 20vw;
	margin-right: 4vw;
	margin-left: 4vw;
	border-radius: 5px;
	background-color: #dd783f;
	text-align: center;
}

.div-block {
	text-align: center;
}

.body {
	display: block;
	overflow: auto;
	grid-auto-columns: 1fr;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-ms-grid-rows: auto auto;
	grid-template-rows: auto auto;
	-o-object-fit: fill;
	object-fit: fill;
}

.grid {
	grid-template-areas: "Area Area-2";
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}

.download-button {
	margin-right: 2vw;
	margin-left: 2vw;
	border-radius: 6px;
}

.div-block-2 {
	text-align: center;
}

.div-block-3 {
	overflow: auto;
}

.grid-2 {
	grid-template-areas: "image desc";
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}

.grid-3 {
	grid-template-areas:
		"desc-text"
		"download-links";
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	-ms-grid-rows: auto 50px;
	grid-template-rows: auto 50px;
}

.grid-4 {
	grid-template-areas: "linux windows";
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}

.button-2 {
	text-align: center;
}

.button-3 {
	text-align: center;
}

.main-content {
	padding-top: 48px;
	padding-bottom: 48px;
}

.italic-text {
	font-style: italic;
}

.cards-section {
	padding-top: 100px;
	padding-bottom: 100px;
}

.centered-container {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
}

.cards-grid-container {
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
	text-align: left;
}

.cards-image-mask {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 100%;
	border-radius: 0%;
}

.cards-image {
	position: absolute;
	left: 0%;
	top: 0%;
	right: 0%;
	bottom: 0%;
	width: 100%;
	height: 100%;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50% 50%;
	object-position: 50% 50%;
}

.main-content-2 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.modal {
	position: absolute;
	left: 0%;
	top: 0%;
	right: 0%;
	bottom: 0%;
	z-index: 5;
	display: block;
	width: 100%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	background-color: rgba(0, 0, 0, 0.5);
	-o-object-fit: fill;
	object-fit: fill;
}

.div-block-5 {
	position: relative;
	z-index: 2;
	display: block;
	width: 90vw;
	height: 90vh;
	margin-top: 10vh;
	margin-right: auto;
	margin-left: auto;
	padding: 40px 30px 30px 50px;
	border-radius: 10px;
	background-color: #fff;
}

.close-modal {
	position: absolute;
	left: auto;
	top: 0%;
	right: 0%;
	bottom: auto;
	width: 30px;
	margin: 33px;
	padding: 0px;
	cursor: pointer;
	-o-object-fit: fill;
	object-fit: fill;
}

.card-area {
	cursor: pointer;
}

.rich-text-block {
	position: static;
	display: block;
	overflow: auto;
	-o-object-fit: fill;
	object-fit: fill;
}

.div-block-8 {
	overflow: auto;
	height: 60vh;
}

.grid-5 {
	grid-template-areas: "diagram desc";
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}

.container-2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.tabs-menu {
	display: flex;
}

.tab-menu-item {
	width: 50vw;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.tab-menu-item.w--current {
	position: static;
	background-color: #fff;
	text-align: center;
}

.tab-link-tab-2 {
	width: 50vw;
	background-color: #ddd;
}

.text-block-2 {
	text-align: center;
}

.text-block-3 {
	text-align: center;
}

@media screen and (max-width: 991px) {
	.navbar {
		padding-right: 15px;
		padding-left: 15px;
	}

	.main-section {
		padding: 40px 10px;
	}

	.main-section.dark {
		padding-right: 0px;
		padding-left: 0px;
	}

	.preview-text {
		overflow: hidden;
		max-height: 40px;
	}

	.section-heading {
		display: block;
		text-align: center;
	}

	.footer-section {
		padding-right: 10px;
		padding-left: 10px;
	}

	.featured-text {
		position: absolute;
		left: 0px;
		top: 0px;
		right: 0px;
		bottom: 0px;
		padding-top: 70px;
	}

	.featured-title {
		font-size: 23px;
	}

	.category-tag-2 {
		z-index: 10;
	}

	.featured-description {
		overflow: hidden;
		max-height: 55px;
		padding-right: 0px;
		font-size: 17px;
		line-height: 23px;
	}

	.blog-thumbnail {
		width: 33.33%;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.featuredthumbnail {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.category-block {
		padding: 10px 0px;
	}

	.cards-grid-container {
		grid-column-gap: 20px;
	}
}

@media screen and (max-width: 767px) {
	.hero-section {
		height: 440px;
		padding-top: 162px;
	}

	.main-section {
		padding-right: 20px;
		padding-left: 20px;
	}

	.main-section.dark {
		padding-right: 0px;
		padding-left: 0px;
	}

	.featured-text {
		left: 0px;
		top: auto;
		right: 0px;
		bottom: 0px;
	}

	.featured-title {
		font-size: 27px;
	}

	.featured-description {
		font-size: 18px;
	}

	.author-picture {
		width: 210px;
		margin-right: 13px;
		margin-bottom: 6px;
	}

	.authorbio {
		font-size: 14px;
		line-height: 17px;
	}

	.blog-thumbnail {
		width: 50%;
	}

	.featuredthumbnail {
		padding: 10px 0px;
	}

	.category-wrapper {
		display: inline-block;
		width: 33.33%;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.about-image {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.success-message {
		padding-top: 28px;
		background-color: #5cc489;
		color: #fff;
		font-size: 18px;
	}

	.success-text {
		font-size: 18px;
	}

	.main-content {
		padding: 40px 20px;
	}

	.cards-section {
		padding: 40px 20px;
	}

	.cards-grid-container {
		max-width: none;
		-ms-grid-row-align: stretch;
		align-self: stretch;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		-ms-grid-rows: auto auto auto;
		grid-template-rows: auto auto auto;
	}

	.main-content-2 {
		padding: 40px 20px;
	}
}

@media screen and (max-width: 479px) {
	h2 {
		font-size: 18px;
		line-height: 28px;
	}

	.hero-section {
		bottom: 60px;
		height: auto;
		padding: 118px 21px;
		-o-object-fit: fill;
		object-fit: fill;
	}

	.navbar {
		padding: 2px 15px 7px;
	}

	.menu-button {
		margin-top: 13px;
	}

	.long-text {
		margin-top: 0px;
	}

	.hero-subheading {
		margin-bottom: 0vh;
		line-height: 27px;
		-o-object-fit: fill;
		object-fit: fill;
	}

	.main-section {
		padding-right: 15px;
		padding-left: 15px;
	}

	.main-section.bottom-padding {
		margin-top: 40px;
	}

	.author-img {
		display: block;
	}

	.section-heading {
		display: block;
	}

	.med-divider {
		width: 60%;
	}

	.form-wrapper {
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}

	.field {
		width: 100%;
		margin-bottom: 5px;
		border-top-right-radius: 2px;
		border-bottom-right-radius: 2px;
	}

	.submit-button {
		width: 100%;
		border-top-left-radius: 2px;
		border-bottom-left-radius: 2px;
	}

	.footer-section {
		position: relative;
	}

	.footer-link {
		display: block;
		padding-left: 0px;
		float: none;
		text-align: center;
	}

	.featured-text {
		padding: 0px 15px 55px;
	}

	.featured-title {
		font-size: 18px;
	}

	.category-tag-2 {
		left: 15px;
		top: 15px;
		padding: 6px;
	}

	.featured-description {
		display: none;
	}

	.featured-details {
		padding-right: 15px;
		padding-left: 15px;
	}

	.inner-hero {
		height: 330px;
	}

	.author-picture {
		display: block;
		width: 130px;
		margin-right: auto;
		margin-bottom: 2px;
		margin-left: auto;
		float: none;
		border-radius: 110px;
		text-align: center;
	}

	.author-name-main {
		margin-top: 2px;
		font-size: 23px;
		line-height: 34px;
		text-align: center;
	}

	.authorbio {
		font-size: 14px;
		text-align: center;
	}

	.social-wrapper {
		text-align: center;
	}

	.hero-header {
		font-size: 40px;
	}

	.blog-thumbnail {
		width: 100%;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.footer-logo {
		display: block;
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
	}

	.footer-logo.w--current {
		display: block;
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
	}

	.blog-post {
		width: 95%;
	}

	.featuredthumbnail {
		padding: 5px 0px;
	}

	.nav-link {
		display: block;
		padding-top: 14px;
		padding-bottom: 14px;
		opacity: 0.7;
		font-size: 17px;
		text-align: center;
	}

	.nav-link.w--current {
		opacity: 1;
		color: #fff;
	}

	.logo {
		display: inline-block;
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 0px;
		float: left;
		text-align: center;
	}

	.nav-menu {
		position: absolute;
		display: block;
		width: 100%;
		padding-top: 60px;
		background-color: rgba(35, 47, 56, 0.92);
	}

	.close-x {
		position: absolute;
		left: 35px;
		top: 21px;
		right: 35px;
		display: block;
		width: 80px;
		margin-right: auto;
		margin-left: auto;
		color: #fff;
		font-size: 27px;
		text-decoration: none;
		text-transform: uppercase;
	}

	.success-text {
		line-height: 27px;
	}

	.main-actionbutton {
		display: inline-block;
		width: 100px;
		margin-top: 30px;
		margin-right: 5vw;
		margin-left: 5vw;
		background-color: #dd783f;
		text-align: center;
	}

	.grid {
		grid-auto-columns: 1.5fr;
		grid-template-areas: "Area";
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}

	.text-block {
		padding-right: 20px;
		padding-left: 20px;
	}

	.centered-container {
		text-align: left;
	}

	.cards-grid-container {
		margin-right: 0px;
		margin-left: 0px;
		padding-top: 20px;
		padding-bottom: 20px;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}

	.grid-5 {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

#w-node-d2d0f2f5-d2eb-c2bd-e2cb-7efbc0d94cf9-34e0a820 {
	-ms-grid-column-align: center;
	justify-self: center;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

#w-node-_692d1ba7-8679-958a-1047-64c9fcf6c5be-a6e0a827 {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	grid-area: desc;
}

.grid-5 > #w-node-_692d1ba7-8679-958a-1047-64c9fcf6c5be-a6e0a827 {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

#w-node-aef5b7eb-3e62-846c-2fcf-2389da3cd13c-a6e0a827 {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: desc-text;
}

#w-node-_1a3d4477-4d3c-b4cf-d67a-46a5d0cf627c-a6e0a827 {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	grid-area: download-links;
}

#w-node-c74467e5-7e49-12fc-e821-696cdf3dd9a1-a6e0a827 {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: linux;
	-ms-grid-row-align: center;
	align-self: center;
}

#w-node-_1312a822-9347-be65-d59f-c9bd47a9336f-a6e0a827 {
	-ms-grid-column: span 1;
	grid-column-start: span 1;
	-ms-grid-column-span: 1;
	grid-column-end: span 1;
	-ms-grid-row: span 1;
	grid-row-start: span 1;
	-ms-grid-row-span: 1;
	grid-row-end: span 1;
	-ms-grid-row-align: center;
	align-self: center;
}

#w-node-_48fb8d7a-6eda-967e-6dda-b3919c2e6a38-a6e0a827 {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: image;
}

#w-node-_6671e186-3c17-77ae-892f-d82bb0a81b90-a6e0a827 {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: image;
}

@media screen and (max-width: 767px) {
	#w-node-_25b018ff-bb9d-73f0-90a0-850966360994-b3e0a829 {
		-ms-grid-row: span 1;
		grid-row-start: span 1;
		-ms-grid-row-span: 1;
		grid-row-end: span 1;
		-ms-grid-column: span 1;
		grid-column-start: span 1;
		-ms-grid-column-span: 1;
		grid-column-end: span 1;
	}

	#w-node-_25b018ff-bb9d-73f0-90a0-850966360996-b3e0a829 {
		-ms-grid-row: span 1;
		grid-row-start: span 1;
		-ms-grid-row-span: 1;
		grid-row-end: span 1;
		-ms-grid-column: span 1;
		grid-column-start: span 1;
		-ms-grid-column-span: 1;
		grid-column-end: span 1;
	}

	#w-node-_25b018ff-bb9d-73f0-90a0-85096636099b-b3e0a829 {
		-ms-grid-row: span 1;
		grid-row-start: span 1;
		-ms-grid-row-span: 1;
		grid-row-end: span 1;
		-ms-grid-column: span 1;
		grid-column-start: span 1;
		-ms-grid-column-span: 1;
		grid-column-end: span 1;
	}

	#w-node-_25b018ff-bb9d-73f0-90a0-85096636099d-b3e0a829 {
		-ms-grid-row: span 1;
		grid-row-start: span 1;
		-ms-grid-row-span: 1;
		grid-row-end: span 1;
		-ms-grid-column: span 1;
		grid-column-start: span 1;
		-ms-grid-column-span: 1;
		grid-column-end: span 1;
		-ms-grid-row-align: start;
		align-self: start;
	}
}

@media screen and (max-width: 479px) {
	#w-node-_25b018ff-bb9d-73f0-90a0-85096636098a-b3e0a829 {
		-ms-grid-column: span 1;
		grid-column-start: span 1;
		-ms-grid-column-span: 1;
		grid-column-end: span 1;
	}

	#w-node-_25b018ff-bb9d-73f0-90a0-850966360991-b3e0a829 {
		-ms-grid-column: span 1;
		grid-column-start: span 1;
		-ms-grid-column-span: 1;
		grid-column-end: span 1;
	}

	#w-node-_25b018ff-bb9d-73f0-90a0-850966360998-b3e0a829 {
		-ms-grid-column: span 1;
		grid-column-start: span 1;
		-ms-grid-column-span: 1;
		grid-column-end: span 1;
	}
}
