@font-face {
  font-family: product-sans;
  src: url("../fonts/product_sans_regular-webfont.woff");
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: product-sans, sans-serif;
  background-image: url(../images/full/DSCF4727.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

.menu-area li a {
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  padding: 0 25px;
  font-size: 14px;
  line-height: 30px;
  position: relative;
  z-index: 1;
}

.menu-area li {
  list-style: none;
  display: inline-block;
}

.custom-padding {
  padding-top: 25px;
}

nav {
  position: relative;
  padding: 10px 20px 10px 10px;
  text-align: right;
  z-index: 1;
  background: #333;
  margin: 0 auto;
  width: calc(100% - 60px);
}

.logoMain {
  text-decoration: none;
  width: 50%;
  float: left;
  text-transform: uppercase;
  color: #fff;
  font-size: 29px;
  text-align: left;
  padding-left: 2%;
}

.menu-area li a:hover {
  background: white;
  color: #505050;
}

.container {
  position: relative;
  margin-top: 25px;
  margin-left: 50px;
  margin-right: 50px;
  width: 95%;
  height: 87%;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 5px;
}

.container .content-box {
  position: relative;
  width: calc(55vh - 30px);
  height: calc(37vh - 30px);
  background: #fff;
}

.left {
  float: left;
  margin-top: 3%;
  margin-left: 25vh;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 15px;
}

.right {
  float: right;
  margin-top: 3%;
  margin-right: 25vh;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 15px;
}

h5 {
  text-align: center;
  font-weight: lighter;
  color: rgba(0, 0, 0, 0.88);
}

.container .content-box .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 224, 208, 1);
  ;
  transition: 0.5s;
  z-index: 1;
}

.container .content-box:hover .icon {
  top: 10px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.container .content-box .icon .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  transition: 0.5s;
  color: #fff;
}

.container .content-box:hover .icon .fa {
  font-size: 40px;
}

.container .content-box .content {
  position: absolute;
  top: 100%;
  height: calc(100% - 120px);
  text-align: center;
  padding-top: 8px;
  padding-left: 25px;
  padding-right: 25px;
  box-sizing: border-box;
  transition: 0.5s;
  opacity: 0;
}

.container .content-box:hover .content {
  top: 100px;
  opacity: 1;
}

.container .content-box .content h3 {
  margin: 0 0 10px;
  padding: 0;
  color: #000;
  font-size: 3vh;
}

.container .content-box .content p {
  margin-left: 2%;
  margin-right: 2%;
  padding: 0;
  color: #000;
  font-size: 1.9vh;
}

.container h1 {
  position: relative;
  text-align: center;
  top: 4%;
  font-size: 45px;
}

p a:link {
  color: #DB4437;
}

.hbtn {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  padding: 8px 20px;
  margin: 0px 3px 6px;
  text-align: center;
  border: 2px solid rgb(255, 255, 255);
  text-decoration: none;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  z-index: 0;
  box-sizing: border-box;
}

.container .content-box .content h4 {
  font-size: 3vh;
  text-align: center;
  margin: 0 0 10px;
  padding: 0;
}

.hbtn i {
  padding-right: 8px;
}

.hb-fill-on-rev::before {
  position: absolute;
  content: "";
  background: rgb(64, 224, 208) none repeat scroll 0% 0%;
  transition-duration: 0.3s;
  z-index: -1;
  inset: 0px auto auto 0px;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hb-fill-on-rev:hover::before {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.hb-fill-on-rev:hover {
  background: transparent none repeat scroll 0% 0%;
  color: rgb(64, 224, 208);
  transition: color 0.3s ease 0s, background 0s ease 0s;
}

.hpad2 {
  padding: 1.2vh 2.4vh !important;
}

.hpill {
  border-radius: 50px;
}

.modal {
  will-change: visibility, opacity;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition-delay: $modal-delay;
  transition-delay: $modal-delay;
}

.modal--active {
  visibility: visible;
  opacity: 1;
}

.modal--align-top {
  -webkit-box-align: start;
  align-items: flex-start;
}

.modal__bg {
  background: transparent;
}

.modal__dialog {
  max-width: 900px;
  padding: 1.2rem;
}

.modal__content {
  will-change: transform, opacity;
  position: relative;
  padding: 2.4rem;
  background: #ffffff;
  background-clip: padding-box;
  /*  box-shadow: 5000px 5000px 5000px 5000px rgba(0,0,0,0.25);*/
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 25px;
}

.modal__content--active {
  opacity: 1;
}

.modal__close {
  z-index: 1100;
  cursor: pointer;
}

.modal__trigger {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal__trigger--active {
  z-index: 10;
}

#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #b1fcf5;
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

img {
  max-width: 100%;
}

.demo-btns header {
  padding: 7vh 10vw;
  background: #ffebee;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.demo-btns header h1 {
  margin: 0;
  color: rgba(0, 0, 0, 0.54);
  font-weight: 300;
}

.demo-btns .info {
  background: #f44336;
  padding: 3vh 10vw;
  height: 70vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column wrap;
}

.demo-btns p {
  text-align: center;
  color: #fff;
}

.demo-btns .link {
  font-size: 20px;
}

.demo-btns .modal__trigger {
  margin-right: 3px;
}

@media (max-width: 640px) {
  .demo-btns .modal__trigger {
    margin-bottom: 0.8rem;
  }
}

.demo-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.2rem;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-close svg {
  width: 24px;
  fill: #fff;
  pointer-events: none;
  vertical-align: top;
}

.demo-close:hover {
  background: rgba(0, 0, 0, 0.6);
}

.logo {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 2;
}

.logo img {
  width: 45px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo img:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
  transform: rotate(180deg) scale(1.1);
}

.modal__content h1 {
  color: #333;
}

.modal__content h2 {
  padding-top: 10%;
  font-size: 24px;
  color: #333;
}

.modal__content h3 {
  padding-top: 5%;
  font-size: 24px;
  color: #333;
}

.modal__content p {
  padding-top: 1%;
  color: #333;
}

.modal__content li {
  padding-top: 1%;
  color: #333;
}

.modal__content ul {
  padding-top: 1%;
  color: #333;
}

.modal__content img {
  width: 70%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}

.links {
  margin-top: 3%;
}