

/* -------------------------------
   1.0 General
------------------------------- */

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.6, .6, .6);
    transform: scale3d(.6, .6, .6);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.6, .6, .6);
    transform: scale3d(.6, .6, .6);
  }
  to {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  transition: opacity 300ms ease-out transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightShort {
  from {
    opacity: .5;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightShort {
  from {
    opacity: .5;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightShort {
  -webkit-animation-name: fadeInRightShort;
  animation-name: fadeInRightShort;
}
@-webkit-keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInTop {
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(500%, 0, 0) skewX(-30deg);
    transform: translate3d(500%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(500%, 0, 0) skewX(-30deg);
    transform: translate3d(500%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@keyframes speed {
  0% {
    -moz-transform: rotate(350deg);
    -ms-transform: rotate(35deg);
    -webkit-transform: rotate(350deg);
    transform: rotate(350deg);
  }
  40% {
    -moz-transform: rotate(340deg);
    -ms-transform: rotate(340deg);
    -webkit-transform: rotate(340deg);
    transform: rotate(340deg);
  }
  100% {
    -moz-transform: rotate(350deg);
    -ms-transform: rotate(350deg);
    -webkit-transform: rotate(350deg);
    transform: rotate(350deg);
  }
}
.speed {
  -webkit-animation-name: speed;
  animation-name: speed;
}
@-webkit-keyframes orbit {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes orbit {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.orbit {
  	-webkit-animation-name: orbit;
 			animation-name: orbit;
}
@-webkit-keyframes orbitReverse {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes orbitReverse {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.orbitReverse {
  	-webkit-animation-name: orbitReverse;
 			animation-name: orbitReverse;
}


/* -------------------------------
   2.0 Page Structure
------------------------------- */

/* 2.1 Page: Container */

@media (max-width: 991px) {
	.container {
		padding-left: 24px;
		padding-right: 24px;
	}
}
@media (max-width: 767px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* 3.2 Section: Dark */

.section-dark {
	border: none;
	background: #303C46;
	background: linear-gradient(225deg, #39444d , #22292e 88%);
	background-image: -ms-linear-gradient(225deg, #39444d , #22292e 88%);
	background-image: -moz-linear-gradient(225deg, #39444d , #22292e 88%);
	background-image: -o-linear-gradient(225deg, #39444d , #22292e 88%);
	background-image: -webkit-linear-gradient(225deg, #39444d , #22292e 88%);
	background-image: linear-gradient(225deg, #39444d , #22292e 88%);
}

/* 3.3 Section: Blue */

.section-blue {
  position: relative;
  border: none;
  overflow: hidden;
}
.section-blue .container {
  position: relative;
  z-index: 1;
}
.section-blue:before {
  position:absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  min-width: 700px;
	border: none;
	background: #026FCE;
	background: linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
	background-image: -ms-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
	background-image: -moz-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
	background-image: -o-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
	background-image: -webkit-linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
	background-image: linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
}
.section-dark .section-title,
.section-blue .section-title {
	color: #fff;
}
.section-blue .section-desc ,
.section-blue p {
	color: rgba(196, 227, 255, 0.8);
}
.section-dark .section-desc {
	color: rgba(255, 255, 255, 0.6);
}
.section-blue .panel,
.section-dark .panel {
  border: none;
  -webkit-box-shadow: 0 5px 20px -5px rgba(11,27,38, 0.2);
  box-shadow: 0 5px 20px -5px rgba(11,27,38, 0.2);
}
.section-control-panel {
  margin-top: -160px;
  padding-top: 154px;
}
@media (max-width: 991px) {
  .page-section.section-control-panel {
    margin-top: -140px;
    padding-top: 134px;
  }
}
/* 3.7.2 Features: Icon */

.feature > i {
  margin-top: 20px;
  margin-bottom: 14px;
	font-size: 50px;
}
.features-icon-left .feature {
	position: relative;
	padding-left: 82px;
	text-align: left;
}
.features-icon-left .feature > i {
	position: absolute;
	left: 0;
	top: 0;
}
@media (max-width: 526px) {
	.features-icon-left [class*="col-"] {
		width: 100%;
	}
}
.feature > .icon-step {
  display: inline-block;
  height: 52px;
  width: 52px;
  border: 2px solid #1e88e5;
  color: #1e88e5;
  font-size: 18px!important;
  font-weight: bold;
  font-style: normal;
  text-align: center;
  line-height: 48px;
  -webkit-border-radius: 26px;
  border-radius: 26px;
}
.location-map {
	position: relative;
}
.location-map .map {
	background: url(../img/map.svg) no-repeat center center;
	background-size: cover;
}
.location-map .map-grey {
	background: url(../img/map-grey.svg) no-repeat center center;
	background-size: cover;
}
.location-container {
	position: absolute;
	top: 50%;
	left: 50%;
}
.section-dark .location-map .map {
	opacity: 0.8;
}

/* 3.8 Section: Map */

/* 3.8.1 Map: Large */

.location-map-sm {
	height: 260px;
}
.location-map-sm .location-container {
	height: 260px;
	width: 524px;
	margin: -130px 0 0 -262px;
}
.location-map-sm .map {
	height: 260px;
	width: 524px;
}
.location-map-sm .location-name {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease .15s;
	transition: all ease .15s;
	-webkit-transform: scale(0.65);
	transform: scale(0.65);
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
}
.location-map-sm .location:hover {
	z-index: 1000;
}
.location-map-sm .location:hover .location-name {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}
@media (max-width: 991px) {
	.location-map-sm {
		height: 170px;
	}
	.location-map-sm .location-container {
		-webkit-transform: scale(0.65);
		transform: scale(0.65);
	}
}

/* 3.8.2 Map: Large */

.location-map-lg .map {
	height: 580px;
	width: 1174px;
}
@media (min-width: 568px) {
	.location-map-lg {
		height: 520px;
	}
	.location-map-lg .location-container {
		height: 580px;
		width: 1174px;
		margin:-265px 0 0 -582px
	}
	.location-map .actions {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
}
@media (min-width: 568px) and (max-width: 1199px) {
	.location-map-lg {
		height: 450px;
	}
	.location-map-lg .location-container {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@media (min-width: 568px) and (max-width: 991px) {
	.location-map-lg {
		height: 424px;
	}
	.location-map-lg .location-container {
		-webkit-transform: scale(0.68);
		-moz-transform: scale(0.68);
		-ms-transform: scale(0.68);
		-o-transform: scale(0.68);
		transform: scale(0.68);
	}
}
@media (min-width: 568px) and (max-width: 767px) {
	.location-map-lg {
		height: 290px;
	}
	.location-map-lg .location-container {
		-webkit-transform: scale(0.5);
		-moz-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
	}
}
@media (max-width: 567px) {
	.location-map-lg .map {
		display: none;
	}
	.location-map-lg .location-container {
		position: inherit;
		top: auto;
		left: auto;
		max-width: 380px;
		margin: 0 auto;
		padding: 25px 0;
	}
	.location-container:after,
	.location-container:before {
		display: block;
		content: "";
		clear: both;
	}
	.location-map-lg .location-map {
		padding: 0 30px;
	}
}

/* 3.8.3 Map: Pin */

.location-pin,
.location-pin:after {
	/* background-color: #198754; */

 background-color:  #b10011;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.location-pin {
	position: relative;
	z-index: 999;
	display: block;
	height: 15px;
	width: 15px;

}
.location-pin-lg {
	position: relative;
	display: block;
	height: 20px;
	width: 20px;
}
.location-pin:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: "";
	height: 25px;
	width: 25px;
	margin: -12px 0 0 -12px;
	-webkit-animation: pulsate 2s linear;
  animation: pulsate 2s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.location-pin-lg:after {
	height: 40px;
	width: 40px;
	margin: -20px 0 0 -20px;
}
.location-map-sm .location {
	height: 8px;
	width: 8px;
	cursor: pointer;
}
.location-map-sm .location-pin {
	height: 8px;
	width: 8px;
}
.location-map-sm .location-pin:after {
	height: 16px;
	width: 16px;
	margin: -8px 0 0 -8px;
}
@-webkit-keyframes pulsate{
  0% {
      -webkit-transform: scale(0);
      opacity: .05;
  }
  20% {
      -webkit-transform: scale(0.7);
      opacity: .1;
  }
  40% {
      -webkit-transform: scale(0.9);
      opacity: .2;
  }
  60% {
      -webkit-transform: scale(1.1);
      opacity: .3;
  }
  100% {
      -webkit-transform: scale(1.4);
      opacity: 0;
  }
}
@keyframes pulsate{
  0% {
      transform: scale(0);
      opacity: .05;
  }
  20% {
      transform: scale(0.7);
      opacity: .1;
  }
  40% {
      transform: scale(0.9);
      opacity: .2;
  }
  60% {
      transform: scale(1.1);
      opacity: .3;
  }
  100% {
      transform: scale(1.4);
      opacity: 0;
  }
}

/* 3.8.3 Map: Locations */

.location {
	position: absolute;
	z-index: 998;
	height: 12px;
	width: 12px;
}
.location-name {
	position: absolute;
	z-index: 999;
	display: block;
	height: 28px;
}

.location-name.mgcpi-loc span {
	background: #fff;
	height: 90px;
}

.location-name.mgcpi-loc pre {
	font-size: 14px;
	font-family: inherit; }

.location-name span:hover {
	transform: scale(1.1);
	cursor: pointer;
}

@media (max-width: 567px) {
	.location-name.mgcpi-loc img {
		display: none;
	}
	.location-name.mgcpi-loc span {
		height: 15px;
	}
}
.location-name span {
	font-weight: bOLd;
	display: block;
	height: 28px;
	padding: 0 10px;
	background-color: #0ec225;;
	color: #000;
	font-size: 14px;
	line-height: 28px;
	white-space: nowrap;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 5px 20px -5px rgba(11,27,38, 0.2);
	box-shadow: 0 5px 20px -5px rgba(11,27,38, 0.2);

		transition: transform .2s;
}
.location-name:after {
	position: absolute;
  z-index: -1;
	display: block;
	content: "";
	height: 1px;
	width: 20px;
	background-color: #545a5e;
}
.location-map-grey .location-name:after {
  background-color: #c4cacc;
}
.location-bulacan {
  top: 309px;
      left: 409px;
}
.location-bulacan .location-name {
  bottom: 69px;
      right: -473px;
}
.location-bulacan .location-name:after {
  bottom: -55px;
  right: 209px;
  width: 271px;
  -webkit-transform: rotate(175deg);
  transform: rotate(175deg);
}
}
.location-map-sm .location-bulacan {
	top: 84px;
	left: 66px;
}
.location-pampanga {
  top: 237px;
      left: 414px;
}
.location-pampanga .location-name {
	top: 5px;
	right: -187px;
}
.location-pampanga .location-name:after {
  top: 7px;
      right: 100px;
      width: 88px;
      -webkit-transform: rotate(186deg);
      transform: rotate(186deg);
}
.location-map-sm .location-pampanga {
	top: 100px;
	left: 64px;
}
.location-bataan {
  top: 322px;
  left: 313px;
}
.location-bataan .location-name {
  top: 28px;
      right: 51px;
}
.location-bataan .location-name:after {
  left: 107%;
  top: -43px;
  height: 82px;
  width: 1px;
  -webkit-transform: rotate(65deg);
  transform: rotate(65deg);
}
.location-map-sm .location-bataan {
	top: 108px;
	left: 72px;
}


.location-cavite {
  top: 385px;
      left: 348px;
}
.location-cavite .location-name {
  top: 28px;
      right: 51px;
}
.location-cavite .location-name:after {
  left: 107%;
  top: -43px;
  height: 82px;
  width: 1px;
  -webkit-transform: rotate(65deg);
  transform: rotate(65deg);
}
.location-map-sm .location-cavite {
	top: 108px;
	left: 72px;
}


.location-batangas {
  top: 434px;
  left: 430px;
}
.location-batangas .location-name {
  top: 28px;
      right: 51px;
}
.location-batangas .location-name:after {
  left: 107%;
  top: -43px;
  height: 82px;
  width: 1px;
  -webkit-transform: rotate(65deg);
  transform: rotate(65deg);
}
.location-map-sm .location-batangas {
	top: 108px;
	left: 72px;
}


.location-dallas {
	top: 238px;
	left: 232px;
}
.location-dallas .location-name {
	bottom: 72px;
	right: -24px;
}
.location-dallas .location-name:after {
	left: 50%;
	bottom: -60px;
	height: 60px;
	width: 1px;
}
.location-map-sm .location-dallas {
	top: 106px;
	left: 98px;
}
.location-zambales {
  top: 243px;
      left: 252px;
}
.location-zambales .location-name {
  top: 9px;
      left: -117px;
}
.location-zambales .location-name:after {
  top: 5px;
      left: 84px;
      width: 40px;
      -webkit-transform: rotate(344deg);
      transform: rotate(344deg);
}
.location-map-sm .location-zambales {
	top: 120px;
	left: 126px;
}
.location-tarlac {
  top: 172px;
  left: 276px;
}
.location-tarlac .location-name {
	top: -9px;
	left: 50px;
}
.location-tarlac .location-name:after {
  top: 56%;
      left: -44px;
      width: 44px;
}
.location-map-sm .location-tarlac {
	top: 108px;
	left: 126px;
}
.location-nueva {
  top: 187px;
left: 461px;
}
.location-nueva .location-name {
	bottom: -10px;
	left: 48px;
}
.location-nueva .location-name:after {
  bottom: 12px;
  left: -32px;
  width: 30px;
  -webkit-transform: rotate(359deg);
  transform: rotate(359deg);
}
.location-map-sm .location-nueva {
	top: 98px;
	left: 132px;
}
.location-pangasinan {
  top: 127px;
      left: 244px;
}
.location-pangasinan .location-name {
  bottom: 39px;
  left: -177px;
}
.location-pangasinan .location-name:after {
  bottom: -15px;
  left: 93px;
  width: 100px;
  -webkit-transform: rotate(208deg);
  transform: rotate(208deg);
}
.location-map-sm .location-pangasinan {
	top: 90px;
	left: 116px;
}
.location-london {
	top: 134px;
	left: 525px;
}
.location-london .location-name {
	bottom: 24px;
	right: 24px;
}
.location-london .location-name:after {
	bottom: -10px;
	right: -24px;
	width: 30px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.location-map-sm .location-london {
	top: 62px;
	left: 232px;
}
.location-launion {
  top: 64px;
  left: 318px;
}
.location-launion .location-name {
	bottom: 13px;
	left: 33px;
}
.location-launion .location-name:after {
  bottom: -3px;
  left: -32px;
  width: 35px;
  -webkit-transform: rotate(332deg);
  transform: rotate(332deg);
}
.location-map-sm .location-launion {
	top: 60px;
	left: 242px;
}
.location-laguna {
  top: 410px;
  left: 477px;
}
.location-laguna .location-name {
	top: 50px;
	left: 50px;
}
.location-laguna .location-name:after {
	top: -20px;
	left: -52px;
	width: 65px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.location-map-sm .location-laguna {
	top: 70px;
	left: 240px;
}



.location-quezon {
  top: 380px;
  left: 670px;
}
.location-quezon .location-name {
	top: 50px;
	left: 50px;
}
.location-quezon .location-name:after {
	top: -20px;
	left: -52px;
	width: 65px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.location-map-sm .location-quezon {
	top: 70px;
	left: 240px;
}


.location-manila {
  top: 352px;
  left: 375px;
}
.location-manila .location-name {
  top: -28px;
  left: 63px;
}
.location-manila .location-name:after {
  top: 87%;
      left: -56px;
      width: 60px;
      -webkit-transform: rotate(337deg);
      transform: rotate(337deg);
}
.location-map-sm .location-manila {
	top: 66px;
	left: 250px;
}
.location-tokyo {
	top: 201px;
	right: 162px;
}
.location-tokyo .location-name {
  bottom: -210px;
  left: -762px;
}
.location-tokyo .location-name:after {
	bottom: -22px;
	left: -58px;
	width: 75px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.location-map-sm .location-tokyo {
	top: 190px;
	right: -772px;
}
.location-singapore {
  top: 318px;
  right: 285px;
}
.location-singapore .location-name {
  bottom: 35px;
  left: 35px;
}
.location-singapore .location-name:after {
  bottom: -12px;
  left: -34px;
  width: 45px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.location-map-sm .location-singapore {
  top: 142px;
  right: 126px;
}
.location-map-sm .location-singapore .location-name {
  bottom: 24px;
  left: 24px;
}
.location-map-sm .location-singapore .location-name:after {
  bottom: -10px;
  left: -24px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-rizal {
  bottom: 209px;
  right: 649px;
}
.location-rizal .location-name {
  bottom: -48px;
      left: 50px;
}
.location-rizal .location-name:after {
  bottom: 40px;
  left: -47px;
  width: 53px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(27deg);
}
.location-map-sm .location-rizal {
	bottom: 44px;
	right: 36px;
}
.location-london .location-name,
.location-bulacan .location-name {
	-webkit-transform-origin: bottom right;
	transform-origin: bottom right;
}
.location-pampanga .location-name {
	-webkit-transform-origin: top right;
	transform-origin: top right;
}
.location-bataan .location-name {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}


.location-cavite .location-name {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

.location-batangas .location-name {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

.location-dallas .location-name {
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}
.location-tarlac .location-name,
.location-manila .location-name {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}
.location-zambales .location-name,
.location-laguna .location-name ,
.location-quezon .location-name {
	-webkit-transform-origin: top left;
	transform-origin: top left;
}
/* @media (max-width: 1199px) {

	.location-tokyo .location-name {
		left: auto;
		right: 50px;
	}
	.location-rizal .location-name {
		left: auto;
		right: 50px;
	}

	.location-rizal .location-name:after {
    bottom: 40px;
    left: -47px;
    width: 53px;
    -webkit-transform: rotate(27deg);
    transform: rotate(27deg);
	}
	.location-bulacan .location-name:after {
		right: 3px;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
} */
@media (min-width: 568px) and (max-width: 767px) {
	.location-map-lg .location-name {
		height: 36px;
		font-size: 20px;
		line-height: 36px;
	}
}
@media (max-width: 567px) {
	.location-map-lg .location {
		position: inherit;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		float: left;
		height: auto;
		width: 50%;
    margin-bottom: 8px;
		padding-left: 30px;
	}
	.location-map-lg .location:after,
	.location-map-lg .location:before {
		display: block;
		content: "";
		clear: both;
	}
	.location-map-lg .location-pin {
		position: absolute;
		left: 0;
		top: 4px;
		margin: 5px 10px 5px;
	}
	.location-map-lg .location .location-name {
		position: inherit;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		display: inline-block;
		background: transparent;
		color: #616366;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		-ms-box-shadow: none;
		-o-box-shadow: none;
		box-shadow: none;
	}
	.location-map-lg .location .location-name > span {
		position: inherit;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		display: inline-block;
		background: transparent;
		color: #616366;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		-ms-box-shadow: none;
		-o-box-shadow: none;
		box-shadow: none;
	}
	.location-map-lg .location-name:after {
		display: none;
	}
	.section-dark .location-map-lg .location .location-name span {
		color: #fff;
	}
}


.btn {
    display: inline-block;
    min-width: 100px;
    padding: 12px 24px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    /* box-shadow: 0 2px 6px rgba(0,0,0, 0.1); */
}


.location-map .map {
    background: url("../images/map/luzon2.png") no-repeat center center;
    background-size:  contain;
}
