*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1{
  font-size: 2.5rem;
  font-family: 'Montserrat';
  font-weight: normal;
  color: #444;
  text-align: center;
  margin: 2rem 0;
}

.wrapper{
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;
}

.cols{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col{
  width: calc(25% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	        perspective: 1000px;
}

.front,
.back{
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
  border-radius: 10px;
	background-position: center;
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	text-align: center;
	min-height: 250px;
	height: auto;
	color: #fff;
	font-size: 1.5rem;
}

.back{
  background: #66cc33;
  background: -webkit-linear-gradient(45deg,  #66cc33 0%,#596a72 100%);
  background: -o-linear-gradient(45deg,  #66cc33 0%,#596a72 100%);
  background: linear-gradient(45deg,  #66cc33 0%,#596a72 100%);
}

.front:after{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #66cc33;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
.container:hover .front,
.container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.integration-inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.front .integration-inner p{
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
  color: #fff;
}

.front .integration-inner p:after{
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .integration-inner span{
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat';
  font-weight: 500;
}

@media screen and (max-width: 64rem){
  .col{
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem){
  .col{
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem){
  .col{
    width: 100%;
    margin: 0 0 2rem 0;
  }
}



/* code #3 */
.loading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 4px;
}

.loading span {
  display: inline-block;
  margin: 0;
}

.loading03 span { margin: 0 -0.075em; animation: loading03 0.40s infinite alternate;}
.loading03 span:nth-child(2)  {animation-delay: 0.1s;}
.loading03 span:nth-child(3)  {animation-delay: 0.2s;}
.loading03 span:nth-child(4)  {animation-delay: 0.3s;}
.loading03 span:nth-child(5)  {animation-delay: 0.4s;}
.loading03 span:nth-child(6)  {animation-delay: 0.5s;}
.loading03 span:nth-child(7)  {animation-delay: 0.6s;}
.loading03 span:nth-child(8)  {animation-delay: 0.1s;}
.loading03 span:nth-child(9)  {animation-delay: 0.2s;}
.loading03 span:nth-child(10) {animation-delay: 0.3s;}
.loading03 span:nth-child(11) {animation-delay: 0.4s;}
.loading03 span:nth-child(12) {animation-delay: 0.5s;}
.loading03 span:nth-child(13) {animation-delay: 0.6s;}
.loading03 span:nth-child(14) {animation-delay: 0.7s;}
.loading03 span:nth-child(15) {animation-delay: 0.8s;}
.loading03 span:nth-child(16) {animation-delay: 0.1s;}
.loading03 span:nth-child(17) {animation-delay: 0.2s;}
.loading03 span:nth-child(18) {animation-delay: 0.3s;}
.loading03 span:nth-child(19) {animation-delay: 0.4s;}
.loading03 span:nth-child(20) {animation-delay: 0.5s;}
.loading03 span:nth-child(21) {animation-delay: 0.6s;}
.loading03 span:nth-child(22) {animation-delay: 0.7s;}
.loading03 span:nth-child(23) {animation-delay: 0.8s;}
.loading03 span:nth-child(24) {animation-delay: 0.9s;}
.loading03 span:nth-child(25) {animation-delay: 0.8s;}
.loading03 span:nth-child(26) {animation-delay: 0.1s;}
.loading03 span:nth-child(27) {animation-delay: 0.2s;}
.loading03 span:nth-child(28) {animation-delay: 0.3s;}
.loading03 span:nth-child(29) {animation-delay: 0.4s;}
.loading03 span:nth-child(30) {animation-delay: 0.5s;}
.loading03 span:nth-child(31) {animation-delay: 0.4s;}
.loading03 span:nth-child(32) {animation-delay: 0.5s;}
.loading03 span:nth-child(33) {animation-delay: 0.6s;}
.loading03 span:nth-child(34) {animation-delay: 0.7s;}
.loading03 span:nth-child(35) {animation-delay: 0.8s;}
.loading03 span:nth-child(36) {animation-delay: 0.1s;}
.loading03 span:nth-child(37) {animation-delay: 0.2s;}
.loading03 span:nth-child(38) {animation-delay: 0.3s;}
.loading03 span:nth-child(39) {animation-delay: 0.4s;}
.loading03 span:nth-child(40) {animation-delay: 0.5s;}
.loading03 span:nth-child(41) {animation-delay: 0.4s;}
.loading03 span:nth-child(42) {animation-delay: 0.5s;}
.loading03 span:nth-child(43) {animation-delay: 0.6s;}
.loading03 span:nth-child(44) {animation-delay: 0.7s;}
.loading03 span:nth-child(45) {animation-delay: 0.8s;}
.loading03 span:nth-child(46) {animation-delay: 0.1s;}
.loading03 span:nth-child(47) {animation-delay: 0.2s;}
.loading03 span:nth-child(48) {animation-delay: 0.3s;}
.loading03 span:nth-child(49) {animation-delay: 0.4s;}
.loading03 span:nth-child(50) {animation-delay: 0.5s;}


@keyframes loading03 {  0% {transform: scale(1); }
                      100% {transform: scale(0.8); }
                    }

/* code #4 */
.loading04 span {animation: loading04 0.9s infinite;}
.loading04 span:nth-child(2) {animation-delay: 0.3s;}

@keyframes loading04 { 0%, 100% {transform: translateY(0); } 
                            50% {transform: translateY(15px);}
                            }


.social-buttons-box {
	margin: 20px auto;
	width: 100%;
	text-align: center
}

.social-buttons-box>div {
	display: inline-block
}

.social-share {
	position: relative;
	height: 130px;
	display: block;
	width: 15%
}

.social-share a {
	color: #fff;
	font-size: 14px
}

.social-share:hover svg {
	fill: #fff
}

.logoshare svg {
	width: 24px;
	height: 24px;
	line-height: 90px;
	height: 90px
}

.sharelink {
	position: absolute;
	bottom: 0;
	height: 40px;
	line-height: 40px;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	width: 100%
}

.fb svg {
	fill: #3b5998
}

.fb {
	border: 1px solid #3b5998;
	border-radius: 3px
}

.fcb,
.fb:hover {
	background-color: #3b5998
}

.tw svg {
	fill: #0084b4
}

.tw {
	border: 1px solid #0084b4;
	border-radius: 3px
}

.twt,
.tw:hover {
	background-color: #0084b4
}

.gp svg {
	fill: #d34836
}

.gp {
	border: 1px solid #d34836;
	border-radius: 3px
}

.gpl,
.gp:hover {
	background-color: #d34836
}

.wa svg {
	fill: #128c7e
}

.wa {
	border: 1px solid #128c7e;
	border-radius: 3px
}

.wha,
.wa:hover {
	background-color: #128c7e
}

.tl svg {
	fill: #08c
}

.tl {
	border: 1px solid #08c;
	border-radius: 3px
}

.tel,
.tl:hover {
	background-color: #08c
}

.social-buttons-box {
    margin: 20px auto;
    width: 100%;
    text-align: center
}

.social-buttons-box > div {
    display: inline-block
}

.social-share {
    position: relative;
    height: 130px;
    display: block;
    width: 15%
}

.social-share a {
    color: #fff;
    font-size: 14px
}

.social-share:hover svg {
    fill: #fff
}

.logoshare svg {
    width: 24px;
    height: 24px;
    line-height: 90px;
    height: 90px
}

.sharelink {
    position: absolute;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    width: 100%
}

.fb svg {
    fill: #3b5998
}

.fb {
    border: 1px solid #3b5998;
    border-radius: 3px
}

.fcb,
.fb:hover {
    background-color: #3b5998
}

.tw svg {
    fill: #0084b4
}

.tw {
    border: 1px solid #0084b4;
    border-radius: 3px
}

.twt,
.tw:hover {
    background-color: #0084b4
}

.gp svg {
    fill: #d34836
}

.gp {
    border: 1px solid #d34836;
    border-radius: 3px
}

.gpl,
.gp:hover {
    background-color: #d34836
}

.wa svg {
    fill: #128c7e
}

.wa {
    border: 1px solid #128c7e;
    border-radius: 3px
}

.wha,
.wa:hover {
    background-color: #128c7e
}

.tl svg {
    fill: #08c
}

.tl {
    border: 1px solid #08c;
    border-radius: 3px
}

.tel,
.tl:hover {
    background-color: #08c
}

.login-box {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-box a {
  position: relative;
  color: #03fd6b;
  overflow: hidden;
  transition: .5s;
}

.login-box a:hover {
  background: #03fd6b;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #03fd6b,
              0 0 25px #03fd6b,
              0 0 50px #03fd6b,
              0 0 100px #03fd6b;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03fd6b);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03fd6b);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03fd6b);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03fd6b);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

.list-group .list-group-item {
  font-weight: 400 !important;
}
