/* page-home.css */

.products-block .section {
  display: flex;
  flex-direction: row;
}

.products-block .section.reverse {
  flex-direction: row-reverse;
}

.products-block .products-img {
  width: 50%;
  padding: 32px 32px 0 0;
}

.products-block .reverse .products-img {
  width: 50%;
  padding: 32px 0 0 32px;
}

.products-block .sub-container {
  width: 50%;
  padding: 32px;
  flex: 1;
}

.products-block .products-text {
  display: flex;
  align-items: center;
  font-size: 22px;
  padding-bottom:20px;
}


#page-home {
  height: unset;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


@media (max-width: 640px) {
  .products-block .section {
    flex-direction: column;
  }

  .products-block .section.reverse {
    flex-direction: column;
  }

  .products-block .section .products-img {
    width: 100%;
    padding: 12px;
  }

  .products-block .sub-container {
    width: 100%;
    padding: 30px 30px 0 30px;
  }
  .products-block .link-box {
    padding-bottom:16px
  }

}


#page-home {
  height: unset;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  padding: 0px 0;
  height: 100vh;
  width: 100%;
}

#page-home .content {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#page-home h1 {
  color: #fff;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
  margin: 8px auto;
}

#page-home span {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.8px;
  font-style: italic;
  display: inline-block;
}

@media (max-width: 1100px) {
  #page-home .content {
    text-align: center;
  }
}

.fancy-link {
  display: block;
  width: 100%;
  height: 35px;
  line-height: 35px;
  background-color: #2c3e50;
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  transition: background-color 0.3s ease;
}

.fancy-link:hover {
  background-color: #34495e;
  color: #ffffff;
}

.fancy-link::after {
  content: "→";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #ffffff;
}

#cta-block {
	display: flex;
	justify-content: center;
	padding: 70px 0;
  margin:50px 0;
	background: #222328;
	color: #fff;
}

#cta-block .row {
	width: 100%;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


#cta-block p {
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 0;
	float: left;
	max-width: 800px;
}

#cta-block a {
	float: right;
	color: #fff;
	border: 1px #fff solid;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	background: #fff;
	color: #333;
	border-radius: 40px;
	padding: 15px 25px;
	letter-spacing: 0.8px;
	white-space: nowrap;
	cursor: pointer;
}

#cta-block a:hover {
	border: 1px #fff solid;
	background: none;
	color: #fff;
	text-decoration: none;
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
}

@media (max-width: 767px) {

	#cta-block .row {
		flex-flow: column;
	}


}

