@charset "utf-8";
/* CSS Document */

/*circle-effects-css*/
.circle-effect1 {
	display: block;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.circle-effect1 img {
	width: 100%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	display: block;
}
.circle-effect1 .circle-row1 {
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow:hidden;
	visibility: hidden;
	-webkit-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
	position: absolute;
	right: 0;
	bottom: -40px;
	z-index: 10;
}
.circle-effect1:hover img { 
	opacity: 0;
}
.circle-effect1:hover .circle-row1 {
	opacity: 1;
	visibility: visible;
	bottom: 0;
	right: 0;
}
.circle-effect1:hover .circle-row1 img { 
	opacity: 1;
}

/* square-effect-css */
.square-effect1 {
	overflow: hidden;
	cursor: pointer;
	margin: 0 0 0;
	position: relative;
}
.square-effect1 img {
	width:100%;
	display:block;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.square-effect1 .square-row1 {
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: #4d5758;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}

/*scroll-effect-css*/
.scroll-effect1 {
	height: 28px;
	background: none;
	border: 1px solid #0055a6;
	border-radius: 12px;
	transform:translateY(-50%);
	margin: 0 auto 0;
	position:absolute;
	top:44%;
	right:0;
	left:0;
	z-index: 99;
}
.scroll-effect1 a span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 28px;
	border-radius: 50px;
	box-sizing: border-box;
	margin: 0 0 0;
}
.scroll-effect1 a:after {
	content: "";
	width: 8px;
	height: 5px;
	background: url(../images/down1-blue-plain-icon.svg) no-repeat center / 100% 100%;
	margin: 0 auto 0;
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
}
.scroll-effect1 a span::before {
	position: absolute;
	top: 0;
	right: -1px;
	left: 0;
	content: '';
	width: 2px;
	height: 4px;
	margin: 0 auto 0;
	background: #0055a6;
	border-radius: 20px;
	-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, 20px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}
@keyframes sdb10 {
 0% {
 transform: translate(0, 0);
 opacity: 0;
}
 40% {
 opacity: 1;
}
 80% {
 transform: translate(0, 20px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}

/*video-play-effect-css*/
.video-play-button {
	width: 100%;
	height: 54px;
	float: left;
	background: #0190d6;
	border: 2px solid #0190d6;
	border-radius: 50%;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	margin: 0 0 0;
	position: relative;
}
.videobox:hover .video-play-button {
	background: #ffffff;
	border: 2px solid #0190d6;
}
.video-play-button:after {
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 64px;
	height: 64px;
	background: rgba(1,144,214,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: 50px;
	height: 50px;
	background: rgba(1,144,214,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 {
	width: 0;
	height: 0;
	border-left: 10px solid #ffffff;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	display: block;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	margin: 19px 22px;
	position: relative;
	z-index: 3;
}
.videobox:hover .video-play-button span {
	border-left: 10px solid #0190d6;
}
@-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;
}
}

/*checkbox-effect-css*/
.checkbox1 {
	width: auto;
	float: left;
	margin: 0 0 28px;
}
.checkbox2 {
	width: auto;
	float: right;
	margin: 0 0 28px;
}
.checkbox1 a, .checkbox2 a {
	color: #5d5d5d;
	font-family: 'gilroy-bold-font';
}
.checkbox1 a:hover, .checkbox2 a:hover {
	color: #ba9e56;
}
.checkbox1 span, .checkbox2 span {
	float: none;
	font-size: 12px;
	color: #5d5d5d;
	letter-spacing: 0.35px;
	line-height: 24px;
	display: inherit;
	position: relative;
	top: -4px;
	font-family: 'gilroy-regular-font';
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline;
    color: #666;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
	background: rgba(255,255,255,0.0);
	border: 1px solid #5d5d5d;
	border-radius: 50%;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #5d5d5d;
	border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
[type="checkbox"]:checked + label:before {
    background: rgba(255,255,255,0.0);
}

/*sidbar-wrapp checkbox-effect-css*/
.sidbar-wrapp .checkbox1 {
	width: auto;
	float: left;
	margin: 0 0 10px;
}
.sidbar-wrapp .checkbox2 {
	width: auto;
	float: right;
	margin: 0 0 10px;
}
.sidbar-wrapp .checkbox1 a, .sidbar-wrapp .checkbox2 a {
	color: #5d5d5d;
	font-family: 'gilroy-regular-font';
}
.sidbar-wrapp .checkbox1 a:hover, .sidbar-wrapp .checkbox2 a:hover {
	color: #0055a6;
}
.sidbar-wrapp .checkbox1 span, .sidbar-wrapp .checkbox2 span {
	float: none;
	font-size: 11px;
	color: #5d5d5d;
	letter-spacing: 0.35px;
	line-height: 24px;
	display: inherit;
	position: relative;
	top: -4px;
	font-family: 'gilroy-regular-font';
}
.sidbar-wrapp [type="checkbox"]:checked,
.sidbar-wrapp [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.sidbar-wrapp [type="checkbox"]:checked + label,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline;
    color: #666;
}
.sidbar-wrapp [type="checkbox"]:checked + label:before,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
	background: rgba(255,255,255,0.0);
	border: 1px solid #5d5d5d;
	border-radius: 50%;
}
.sidbar-wrapp [type="checkbox"]:checked + label:after,
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #5d5d5d;
	border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.sidbar-wrapp [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.sidbar-wrapp [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.sidbar-wrapp [type="checkbox"]:checked + label:before {
    background: rgba(255,255,255,0.0);
}

/*contac-wrapp checkbox-effect-css*/
.contac-wrapp .checkbox1 {
	width: auto;
	float: left;
	margin: 0 0 15px;
}
.contac-wrapp .checkbox2 {
	width: auto;
	float: right;
	margin: 0 0 20px;
}

/* hover-effect-css */
.hovereffect {
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
  background: #1d3262;
}
.hovereffect .overlay1 {
  position: absolute;
  overflow: hidden;
  width: 80%;
  left: 10%;
  bottom: 1%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
}
.hovereffect:hover .overlay1 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.hovereffect:hover img {
	mix-blend-mode: multiply;
}
.hovereffect h3 {
  text-align: center;
  position: relative;
  font-size: 20px;
  background-color: transparent;
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}
.hovereffect a, .hovereffect p {
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}
.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h3 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

/*square-effect-css*/
.square-effect1 {
  cursor: pointer;
  overflow: hidden;
  display: block;
}
.square-effect1 img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.square-effect1:hover img {
  transform: scale(1.08);
  transition: all 1.5s ease 0s;
  filter: grayscale(100%);
}
.square-effect1 .square-row1 {
  width: 84%;
  height: 84%;
  border: 1px solid #ffffff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  margin: 0 auto 0;
  position: absolute;
  top: 50%;
  right:0;
  left: 0;
}
.square-effect1:hover .square-row1 {
  opacity: 1;
  filter: alpha(opacity=100);
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	margin: 0 0 18px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 11px;
	letter-spacing: 0.35px;
	line-height: 23px;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	margin: 0 0 18px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 11px;
	letter-spacing: 0.35px;
	line-height: 23px;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	margin: 0 0 18px;
}
.checkbox1 span, .checkbox2 span {
	font-size: 11px;
	letter-spacing: 0.35px;
	line-height: 23px;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	margin: 0 0 20px;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	margin: 0 0 24px;
}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
/*checkbox-effect-css*/
.checkbox1 {
	width: 100%;
	margin: 0 0 8px;
}
.checkbox2 {
	width: 100%;
	margin: 0 0 28px;
}
}