/* ========================= */
/*         Icons             */
/* ========================= */


.icons {
  	text-align: center;
}

.icons .icons-container {
  	text-align: center;
  	padding-bottom: 45px;
    opacity: 1;    
}

.icons .icons-container .icon {
	width: 230px;
  height: 100%;
  display: inline-block;
  padding: 10px;
  vertical-align: middle;
}


.icons .icons-container a.icon-item {
    text-align: center;
    margin-bottom: 25px;
  	display: inline-block;
  	width: 220px;
  	height: 220px;
    border-radius: 50%;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    padding: 10px;
}

.icons .icons-container .icon a.icon-item:hover {
    z-index: 2;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.7);
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    opacity: 1;
}

.icon-img {
    text-align: center;
  	transition: 0.15s ease-out;
}

.icon-img > img {
    max-width: 80px;
    height: auto;
  	margin-top: 20px;
}

.icon-text h3 {
    color: #404040;
    font-family: ;
    font-weight: bold;
    font-size: 0.8em;
    letter-spacing: 2.67px;
    text-transform: uppercase;
  	margin-top: 15px;
  	transition: 0.15s ease-out;
}

.icon-popup {
	text-align: center;
}

.icon-popup .icon-header-img {
	display: inline-block;
  width: 200px;
  height: auto;
}

.icon-popup .icon-header h3 {
	font-size: 2.2em;
  margin-top: 15px;
  margin-bottom: 15px;
}

.icon-popup .icon-description {
	text-align: left;
}

.icon-popup .icon-link {
	margin-top: 25px;
  margin-bottom: 25px;
  padding: 5px 5px 5px 5px;
  display: inline-block;
  color: ;
}

.icon-popup a.icon-link {
    margin-top: 75px;
  	margin-bottom: 15px;
  	display: inline-block;
  	text-align: center;
  	background: ;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.20);
    border-radius: 4px;
    font-family: ;
    font-weight: bold;
    font-size: 1.1rem;
    color:  !important;
    letter-spacing: 3px;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 20px 25px;
    transition: .3s;
}

.icon-popup a.icon-link:hover {
  opacity: 0.8;
	transition: .3s;
}

@media(min-width:768px) {
  .icon-popup .icon-header-img {
  width: 160px;
  }
}

@media (max-width: 479px) {
  .icons .icons-container .icon {
  padding: 0px;
  }
  .icon-popup .icon-header-img {
  width: 120px;
  }
  .icon-popup .icon-header h3 {
  font-size: 1.8em;
  }
}

/* ========================= */
/*         Popup             */
/* ========================= */

.blocker {
  position: fixed;
  -webkit-overflow-scrolling: touch;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.75);
  text-align: center;
}

.blocker:before{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}
.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 5;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  right: 32px !important;
  top: 32px !important;
  width: 32px;
  height: 32px;
  background: none !important;
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.modal a.close-modal:before, .modal a.close-modal:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
}

.modal a.close-modal:hover:before, .modal a.close-modal:hover:after {
  opacity: 0.8;
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.modal a.close-modal:before {
  transform: rotate(45deg);
}

.modal a.close-modal:after {
  transform: rotate(-45deg);
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.5) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

/* ========================= */
/*      Popup Content        */
/* ========================= */

/*
.wcs .wcs-pop-the-form {
  padding: 20px 0;
}

.wcs.wcs-modal {
  padding: 50px 50px !important;
  max-width: 800px;
  transition: .3s;
  opacity: 1;
}
*/

.wcs.wcs-modal .wcs-pform .hs-form-required {
  display: none !important;
}
.wcs.wcs-modal .hs-form {
  margin-top: 0;
}
@media (min-width: 768px) {
  .wcs .vert-align {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .wcs .vert-align.rev-order {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
  }
  .wcs .row-fluid.vert-align.rev-order .wcs-col-6:last-child {
    margin-left: 0;
  }
}
@media(min-width:768px) and (max-width:1139px) {
  .wcs .row-fluid.vert-align.rev-order .wcs-col-6:first-child {
    margin-left:2.762430939%;
    *margin-left:2.709239449638298%;
  }
}
@media(min-width:1280px) {
  .wcs .row-fluid.vert-align.rev-order .wcs-col-6:first-child {
    margin-left:2.564102564%;
    *margin-left:2.510911074638298%;
  }
}

.wcs .wcs-page-center {
    max-width: 400px;
    margin: 0 auto !important;
    float: none !important;
}

.wcs a.wcs-cta-button, .wcs a.wcs-cta-button:link, .wcs a.wcs-cta-button:active, .wcs a.wcs-cta-button:visited, .wcs a.wcs-cta_button, .wcs a.wcs-cta_button:link, .wcs a.wcs-cta_button:active, .wcs a.wcs-cta_button:visited {
    color: #fff;
  	text-decoration: none;
}

.wcs .wcs-cta-button, .wcs .wcs-cta_button {
    display: inline-block;
  	font-weight: bold;
  	text-transform: uppercase;
    text-align: center;
    padding: 20px 30px;
    width: 240px;
    margin-top: 10px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
  	background-color: ;
  	border-radius: 4px;
}

.wcs .wcs-cta-button:hover, .wcs .wcs-cta_button:hover {
 	 opacity: 0.8;
   transition: .3s;
}

a.cta-button, a.cta-button:link, a.cta-button:active, a.cta-button:visited {
    color: #fff;
  	text-decoration: none;
}

.cta-button {
    display: inline-block;
  	font-weight: bold;
  	text-transform: uppercase;
    text-align: center;
    padding: 20px 30px;
    width: 240px;
    margin-top: 10px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
  	background-color: ;
  	border-radius: 4px;
}

.cta-button:hover {
 	 opacity: 0.8;
   transition: .3s;
}


.wcs .wcs-pform input, .wcs .wcs-pform select, .wcs .wcs-pform textarea {
  -webkit-appearance: none;
  color: #555;
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #aaaaaa;
  font-family: inherit;
}

.wcs .wcs-pform select:focus {
  border: 1px solid ;
}

.wcs .wcs-pform .hs-button.primary {
    padding: 20px 30px;
    font-size: 24px;
 		background-color: ;
  	color: #fff;
    border: 0px solid ;
    margin-top:10px;
  	font-weight: bold;
  	text-transform: uppercase;
    min-width:100%;
    max-width: 100%;
    white-space: normal;
    display: block;
  	border-radius: 4px;
  	box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s;
    text-align: center;
    padding: 15px 12px;
}

.wcs .wcs-pform .hs-button.primary:hover {
  	opacity: 0.8;
    color: #fff;
}

@media (max-width: 767px) {
  .wcs .wcs-pform .hs-button.primary {
    min-width: 100% !important;
  }
}