@import url("https://fonts.googleapis.com/css?family=Poppins:700");
@import url("https://fonts.googleapis.com/css?family=Raleway");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

.content2 {
	display: flex;
	min-height: 250px;
	align-items: center;
	justify-content: center;
}

.content {
	position: relative;
	
}

.content h1 {
	color: #fff;
	font-size: 4em;
    position: absolute;
	transform: translate(-50%, -50%);
}

.content h1:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 2px #4a0f13;
}

.content h1:nth-child(2) {
	color: #4a0f13;
	animation: animate 5s ease-in-out infinite;
}
@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 45%,
			16% 44%,
			33% 50%,
			54% 60%,
			70% 61%,
			84% 59%,
			100% 52%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		clip-path: polygon(
			0% 60%,
			15% 65%,
			34% 66%,
			51% 62%,
			67% 50%,
			84% 45%,
			100% 46%,
			100% 100%,
			0% 100%
		);
	}
}

iframe {
height:700px;    
width:700px;
margin-left: 10%;
border: 5px solid #000000;
box-shadow: 10px 10px 10px #000000; 
}

html, body
{
    margin: 0px;
  
}

header, footer
{
    font-family: Raleway;
    margin: 0 auto;
	padding: 3em 3em;
	text-align: center;
    background: #e27b5c;
}

header h1
{
    color: #4a0f13;
    font-size: 4em;
    font-weight: lighter;
    margin-bottom: 5px;
}




header span
{
    color: #222;
}

footer span
{
  color: #AAA;
}

div.container
{
    font-family: Raleway;
    margin: 0 auto;
	padding: 2em 3em;
	text-align: center;
}

div.container a
{
    color: #FFF;
    text-decoration: none;
    font: 20px Raleway;
    margin: 0px 10px;
    padding: 10px 10px;
    position: relative;
    z-index: 0;
    cursor: pointer;
}


.blue
{
    background: #0b3d91;
}

p {

color: #000000;
font-size: 1em;
}

.second {
text-align:center;  
color: #000000;

}

div.margin
{
    margin-left: 24%;
    font-size:1.5em;
    color:#e27b5c;
}

div.margin2
{
    margin-right: 16%;

}

.headersize

{
    
   font-size:1.5em;
    color:#e27b5c; 
    
}

/* Border from Y to X  */
div.borderYtoX a:before, div.borderYtoX a:after
{
    position: absolute;
    opacity: 0.5;
    height: 100%;
    width: 3px;
    content: '';
    background: #fc3d21;
    transition: all 0.3s;
}

div.borderYtoX a:before
{
    left: 0px;
    top: 0px;
}

div.borderYtoX a:after
{
    right: 0px;
    bottom: 0px;
}

div.borderYtoX a:hover:before, div.borderYtoX a:hover:after
{
    opacity: 1;
    height: 2px;
    width: 100%;
}




hr {
  border: 0;
  margin: 1.35em auto;
  max-width: 100%;
  background-position: 50%;
  box-sizing: border-box;
}

.accessory {
  height: 6px;
  background-image: radial-gradient(
    closest-side,
    hsla(0, 0%, 50%, 1.0),
    hsla(0, 0%, 50%, 0) 100%);
  position: relative;
}
.accessory:after {
  position: absolute;
  top:  50%;
  left: 50%;
  display:block;
  background-color: hsl(0, 0%, 75%);
  height: 12px;
  width:  12px;
  transform: rotate(45deg);
  margin-top:  -10px;
  margin-left: -10px;
  border-radius: 4px 0;
  border: 4px solid hsla(0, 0%, 100%, 0.35);
  background-clip: padding-box;
  box-shadow: -10px 10px 0 hsla(0, 0%, 100%, 0.15), 10px -10px 0 hsla(0, 0%, 100%, 0.15);
}


aside {
  width: 30%;
  float: right;
  position: relative;
bottom: 20px;
  
}


.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 450px; 
  height: 447px;
  
}

h2 {
text-align:center;
font-size:2.5em;
color:#e27b5c;
}


img {
    box-shadow: 10px 10px 10px #000000;
}

:root {
	--delay: 10;
	--duration: 5000ms;
	--iterations: 1;
}



.reveal-text,
.reveal-text::after {
	animation-delay: var(--animation-delay, 2s);
	animation-iteration-count: var(--iterations, 1);
	animation-duration: var(--duration, 1000ms);
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
	--animation-delay: var(--delay, 0);
	--animation-duration: var(--duration, 800ms);
	--animation-iterations: var(--iterations, 1);
	position: relative;
	animation-name: clip-text;
	cursor: default;
	
	&::after {
		content: "";
		position: absolute;
		z-index: 999;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: grey;
		transform: scaleX(0);
		transform-origin: 0 50%;
		pointer-events: none;
		animation-name: text-revealer;
	}
	
}


@keyframes clip-text {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}


@keyframes text-revealer {
	
	0%, 50% {
		transform-origin: 0 50%;
	}
	
	60%, 100% {
		transform-origin: 100% 50%;		
	}

	
	60% {
		transform: scaleX(1);
	}
	
	100% {
		transform: scaleX(0);
	}
}

		.scrollup {
		    z-index: 1;
			width:40px;
			height:40px;
			opacity:0.9;
			position:fixed;
			bottom:50px;
			right:100px;
			display:none;
			text-indent:-9999px;
			background: url(http://seenual.com/wp-content/uploads/2016/03/icon_top.png) no-repeat;
		}