@charset "utf-8";
/* CSS Document */

/*play-hover*/
.video-play-button {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	float: none;
	border: 3px solid #eae8e7;
	border-radius: 50%;
	margin: 0 auto 0;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 54px;
	height: 54px;
	background: rgba(120,95,55,0.60);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:before {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 40px;
	height: 40px;
	background: rgba(231,201,153,0.60);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after, .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	z-index: -9;
}
.video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 18px solid #eae8e7;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	margin: 7px 11px;
}
 @-webkit-keyframes pulse-border {
 0% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 opacity: 1;
}
 100% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 opacity: 0;
}
}
 @keyframes pulse-border {
 0% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 opacity: 1;
}
 100% {
 -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 opacity: 0;
}
}
/*scroll-effect1*/
.scroll-effect1 {
	width: 100%;
	height: 40px;
	background: url(../images/scroll-thumb1.svg) no-repeat center / 100%;
	margin: 0 auto 0;
	position: relative;
	z-index: 99;
}
.scroll-effect1 a span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
	margin: 0 0 0;
}
.scroll-effect1 a:after {
	content: "";
	width: 10px;
	height: 15px;
	background: url(../images/scroll-arrow1.png) no-repeat center / 100% 100%;
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	margin: 0 auto 0;
}
.scroll-effect1 a:before {
	content: "";
	width: 5px;
	height: 9px;
	background: url(../images/scroll-dot1.svg) no-repeat center / 100% 100%;
	position: absolute;
	top: -10px;
	right: 0;
	left: 0;
	margin: auto;
}
.scroll-effect1 a span::before {
	position: absolute;
	top: 10px;
	right: 0;
	left: 0;
	content: '';
	width: 2px;
	height: 8px;
	margin: 0 auto 0;
	background: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 10px;
	-webkit-animation: sdb10 2s infinite;
	animation: sdb10 2s infinite;
	box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
 0% {
 -webkit-transform: translate(0, 0);
 opacity: 0;
}
 40% {
 opacity: 1;
}
 80% {
 -webkit-transform: translate(0, 10px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}
@keyframes sdb10 {
 0% {
 transform: translate(0, 0);
 opacity: 0;
}
 40% {
 opacity: 1;
}
 80% {
 transform: translate(0, 10px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}
/* circle-hover1 */
.circle-hover1 {
	width: 96px;
	float: none;
	background: none;
	border: 2px solid #cdb082;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	margin: 0 auto 30px;
	cursor: pointer;
	position: relative;
}
.circle-hover1 .circle-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow:hidden;
	position: absolute;
	z-index: 10;
	bottom: -40px;
	right: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
}
.circle-hover1:hover {
	background: linear-gradient(to top, #e7c999, #765d36);
	background: -webkit-linear-gradient(to top, #e7c999, #765d36);
}
.circle-hover1:hover .circle-img {
	opacity: 1;
	visibility: visible;
	bottom: 0;
	right: 0;
}
/*btn-gradient*/
.btn-gradient1 {
	position: relative;
	z-index: 9;
}
.btn-gradient1:before, .btn-gradient1:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform-origin: right;
	border-radius: 40px;
	z-index: -1;
	transition: all .5s;
}
.btn-gradient1:before {
	background: linear-gradient(to top, #765d36, #e7c999);
	background: -webkit-linear-gradient(to top, #765d36, #e7c999);
}
.btn-gradient1:after {
	background: linear-gradient(to top, #e7c999, #765d36);
	background: -webkit-linear-gradient(to top, #e7c999, #765d36);
}
.btn-gradient1:hover:after {
	opacity: 0;
}
.btn-gradient2 {
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 1px transparent;
  background-image: -webkit-linear-gradient(top, #765d36, #e7c999), -webkit-linear-gradient(top, #765d36, #e7c999);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: none;
  transition: all .5s;
}
.btn-gradient2:hover {
  background-image: -webkit-linear-gradient(top, #e7c999, #765d36), -webkit-linear-gradient(top, #e7c999, #765d36);
}
/*effect-sadie*/
.effect-sadie {
	overflow: hidden;
	cursor: pointer;
}
.effect-sadie img {
	width: 100%;
	display: block;
	transition:transform 0.8s ease-in-out 0s;
}
.effect-sadie:hover img {
	transform:scale(1.08);
	transition:all 1.5s ease 0s;
}
.effect-sadie .effect-shade::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(120,95,55,0) 0%, rgba(165,138,95,0.8) 75%);
	background: linear-gradient(to bottom, rgba(120,95,55,0) 0%, rgba(165,138,95,0.8) 75%);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0, 50%, 0);
	transform: translate3d(0, 50%, 0);
}
.effect-sadie .effect-shade::before {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
.effect-sadie:hover .effect-shade::before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.effect-sadie:hover .teams-row2 {
	bottom: 16.4%;
}
/*map-color*/
.map-color {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.circle-hover1 { width:86px; margin:0 auto 20px;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.circle-hover1 { width:86px; margin:0 auto 20px;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.circle-hover1 { width:86px; margin:0 auto 20px;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.circle-hover1 { width:28%; margin:0 auto 20px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.circle-hover1 { width:28%; margin:0 auto 20px;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {

}