@charset "UTF-8";

.homg-button
{
	position: relative;
}

.homg-button.homg-button-scroll
{
	text-align: center;
	width: 100%;
	background-color: transparent;
	background: rgba(255,255,255, 0);
}

.homg-button.homg-button-scroll .homg-button-inner
{
	position: relative;
	margin: auto;
	max-width: 1230px;
	text-align: center;
}

.homg-button.homg-button-scroll .homg-button-mouse-scroll 
{
	position: relative;
  	display: inline-block;
  	line-height: 18px;
 	font-size: 13px;
  	font-weight: normal;
  	letter-spacing: 2px;
  	text-decoration: none;
	border: 2px solid #C8C8C8;
	 width: 65px;
    height: 65px;
	border-radius: 65px;
	cursor: pointer;
	transition: border-color 0.2s;
	-moz-transition: border-color 0.2s;
	-webkit-transition: border-color 0.2s;
	-o-transition: border-color 0.2s;
}
 
.ie9 .homg-button.homg-button-scroll .homg-button-mouse-scroll 
{
	z-index: 999;
} 
 
.homg-button.homg-button-scroll .homg-button-mouse 
{
    position: absolute;
    display: block;
    width: 18px;
    height: 30px;
    left: 50%;
	top: 50%;
	margin-left: -9px;
	margin-top: -15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #C8C8C8;
    border-radius: 18px;
	transition: border-color 0.2s;
	-moz-transition: border-color 0.2s;
	-webkit-transition: border-color 0.2s;
	-o-transition: border-color 0.2s;
}
 
.homg-button.homg-button-scroll .homg-button-mouse-movement 
{ 
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 2px;
    height: 8px;
    margin: -4px 0 0 -1px;
    background: #C8C8C8;
    -webkit-animation: homg-button-scroll-ani 2s linear infinite;
    -moz-animation: homg-button-scroll-ani 2s linear infinite;
    animation: homg-button-scroll-ani 2s linear infinite;
	transition: background 0.2s;
	-moz-transition: background 0.2s;
	-webkit-transition: background 0.2s;
	-o-transition: background 0.2s;
}

.homg-button-color-white.homg-button-scroll .homg-button-mouse,
.homg-button-color-white.homg-button-scroll .homg-button-mouse-scroll
{
	border-color: #ffffff;
}

.homg-button-color-white.homg-button-scroll .homg-button-mouse-movement 
{
	background: #ffffff;
}

.homg-button-color-grey.homg-button-scroll .homg-button-mouse,
.homg-button-color-grey.homg-button-scroll .homg-button-mouse-scroll
{
	border-color: #C8C8C8;
}

.homg-button-color-grey.homg-button-scroll .homg-button-mouse-movement 
{
	background: #C8C8C8;
}

.homg-button-color-black.homg-button-scroll .homg-button-mouse,
.homg-button-color-black.homg-button-scroll .homg-button-mouse-scroll
{
	border-color: #222222;
}

.homg-button-color-black.homg-button-scroll .homg-button-mouse-movement 
{
	background: #222222;
}

.homg-button-color-blue.homg-button-scroll .homg-button-mouse,
.homg-button-color-blue.homg-button-scroll .homg-button-mouse-scroll
{
	border-color: #6A95C1;
}

.homg-button-color-blue.homg-button-scroll .homg-button-mouse-movement 
{
	background: #6A95C1;
}

.homg-button.homg-button-scroll .homg-button-mouse-scroll:hover,
.homg-button.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse,
.homg-button-color-hover-blue.homg-button-scroll .homg-button-mouse-scroll:hover,
.homg-button-color-hover-blue.homg-button-mouse-scroll:hover .homg-button-mouse 
{
	border-color: #6A95C1;
}

.homg-button.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse-movement,
.homg-button-color-hover-blue.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse-movement 
{
	background: #6A95C1;
}

.homg-button-color-hover-white.homg-button-scroll .homg-button-mouse-scroll:hover,
.homg-button-color-hover-white.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse 
{
	border-color: #ffffff;
}

.homg-button-color-hover-white.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse-movement 
{
	background: #ffffff;
}

.homg-button-color-hover-black.homg-button-scroll .homg-button-mouse-scroll:hover,
.homg-button-color-hover-black.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse 
{
	border-color: #222222;
}

.homg-button-color-hover-black.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse-movement 
{
	background: #222222;
}

.homg-button-color-hover-grey.homg-button-scroll .homg-button-mouse-scroll:hover,
.homg-button-color-hover-grey.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse 
{
	border-color: #C8C8C8;
}

.homg-button-color-hover-grey.homg-button-scroll .homg-button-mouse-scroll:hover .homg-button-mouse-movement 
{
	background: #C8C8C8;
}

@-webkit-keyframes homg-button-scroll-ani 
{
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 70%;
  }
  50% {
    opacity: 0;
    top: 70%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

@-moz-keyframes homg-button-scroll-ani 
{
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 70%;
  }
  50% {
    opacity: 0;
    top: 70%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

@keyframes homg-button-scroll-ani 
{
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 70%;
  }
  50% {
    opacity: 0;
    top: 70%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}


.homg-button-text a
{
	position: relative;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	display: block;
}

.homg-button-link
{
	width: auto !important;
	display: inline-block !important;
}

.homg-button-text.ho-button-inline
{
	display: inline-block;
}

.homg-button-text.homg-button-color-white a
{
	color: #ffffff;
}

.homg-button-text.homg-button-color-black a
{
	color: #222222;
}

.homg-button-text.homg-button-color-blue a
{
	color: #6A95C1;
}

.homg-button-text.homg-button-color-grey a
{
	color: #C8C8C8;
}

.homg-button-text.homg-button-color-red a
{
	color: #C73153;
}

.homg-button-text.homg-button-color-hover-white a:hover
{
	color: #ffffff;
}

.homg-button-text.homg-button-color-hover-black a:hover
{
	color: #222222;
}

.homg-button-text.homg-button-color-hover-blue a:hover
{
	color: #6A95C1;
}

.homg-button-text.homg-button-color-hover-grey a:hover
{
	color: #C8C8C8;
}

.homg-button-text.homg-button-color-hover-red a:hover
{
	color: #C73153;
}

.homg-button-text.homg-button-arrow-great a
{
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: 1px;
	padding-right: 22px;
}

.homg-button-text.homg-button-arrow-great a:hover
{
	opacity: 0.9;
}

.homg-button-text.homg-button-arrow-great a:after
{
	content: '\e008';
	position: absolute;
	font-family: '__flaticon_5';
  	font-weight: 400;
	right: 0px;
	width: 18px;
	height: 36px;
	top: 50%;
	margin-top: -10px;
	font-size: 22px;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.homg-button-text.homg-button-arrow-great a:hover:after
{
	right: -5px;
}

.homg-button-text.homg-button-arrow-normal
{
	  font-weight: 600;
	  fonr-size: 16px;
}

.homg-button-text.homg-button-arrow-normal a:after
{
	  content: "\0020";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.homg-button-block a
{
	display: block;
	font-size: 16px;
	line-height: 22px; 
	padding: 8px 10px;
}

.homg-button-block.homg-button-background-hover-white a:hover,
.homg-button-block.homg-button-background-white a
{
	background: #ffffff;
}

.homg-button-block.homg-button-background-hover-blue a:hover,
.homg-button-block.homg-button-background-blue a
{
	background: #6A95C1;
}

.homg-button-block.homg-button-background-hover-black a:hover,
.homg-button-block.homg-button-background-black a
{
	background: #222222;
}

.homg-button-block.homg-button-background-hover-grey a:hover,
.homg-button-block.homg-button-background-grey a
{
	background: #7F7F7F;
}

.homg-button-round a
{
	position: relative;
	display: inline-block;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	background: #C8C8C8;
	padding: 3px 12px 3px 34px;
	color: #ffffff !important;
	font-size: 16px;
	white-space: nowrap;
}

.homg-button-round a:before
{
	position: absolute;
	left: 8px;
	top: 50%;
	margin-top: -5px;
	content: '';
	dispplay: block;
	background: #ffffff;
	width: 10px;
	height: 10px;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
}

.homg-button-round a:hover
{
	background: #92569C;
}