
/* -------------------------------
   1.0 ANİMATİON
------------------------------- */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-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);
}

/* -------------------------------
   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.0 Page Sections
------------------------------- */

/* 3.1 Section: General */

.page-section {
	padding-top: 128px;     /* Harita arkalanın büyüklük ayarı burdan */
	padding-bottom: 55px;
	border-bottom: 1px solid #050505;
}
.page-section:last-child {
	border: none;
}

.section-title {
	margin-left: auto;
	margin-right: auto;
}

.section-desc {
	margin-top: -4px;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	line-height: 28px;
}
.section-center .section-desc,
.section-center .section-title {
	max-width: 700px;
}
.section-center,
.section-center .actions {
	text-align: left;
}

@media (min-width: 768px) {
	.section-center .section-desc,
	.section-center .section-title {
		text-align: center;
	}
}


/* 3.2 Section: Dark */

.section-dark {
	border: none;
	background: transparent;
}

.section-dark .section-title,
.section-blue .section-title {           /* Başlık yazı ayarları burda */
	color: #5e5d5d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
}
.section-blue .section-desc ,
.section-blue p {
	color: rgba(196, 227, 255, 0.8);
}
.section-dark .section-desc {
	color: rgba(3, 3, 3, 0.6);
}


.location-map {
	position: relative;
}
.location-map .map {
	background: url(../images/map.svg) no-repeat center center;
	background-size: cover;
}

.location-container {
	position: absolute;
	top: 50%;
	left: 50%;
}
.section-dark .location-map .map {
	opacity: 0.5;
}

/* 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: -290px 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: #000000;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.location-pin {
	position: relative;
	z-index: 999;
	display: block;
	height: 14px;
	width: 14px;
}
.location-pin-lg {
	position: relative;
	display: block;
	height: 20px;
	width: 20px;
}
.location-pin:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: "";
	height: 22px;
	width: 22px;
	margin: -11px 0 0 -11px;
	-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(1.3);
      opacity: .2;
  }
  60% {
      -webkit-transform: scale(1.8);
      opacity: .3;
  }
  100% {
      -webkit-transform: scale(2.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 span {
	display: block;
	height: 28px;
	padding: 0 10px;
	background-color: #a70505;
	color: #fff;
	font-size: 14px;
	line-height: 28px;
	white-space: nowrap;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	border-radius: 13px;
	-webkit-box-shadow: 0 5px 40px -5px rgba(11, 27, 38, 0.897);
	box-shadow: 0 5px 40px -5px rgba(11, 27, 38, 0.897);
}
.location-name:after {
	position: absolute;
  z-index: -1;
	display: block;
	content: "";
	height: 1px;
	width: 20px;
	background-color: #000000;
}
.location-map-grey .location-name:after {
  background-color: #c4cacc;
}

.location-misir {
	top: 260px;
	left: 650px;
}
.location-misir .location-name {
	top: 20px;
	right: -20px;
}
.location-misir .location-name:after {
	top: -5px;
	right: 11px;
	width: 30px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.location-map-sm .location-misir {
	top: 100px;
	left: 64px;
}


.location-cezayir {
	top: 230px;
	left: 555px;
}
.location-cezayir .location-name {
	top: 28px;
	right: -35px;
}
.location-cezayir .location-name:after {
	left: 50%;
	top: -25px;
	height: 30px;
	width: 1px;
}
.location-map-sm .location-cezayir {
	top: 108px;
	left: 72px;
}


.location-turkiye {
	top: 210px;
	left: 650px;
}
.location-turkiye .location-name {
	bottom: 20px;
	left: 20px;
}
.location-turkiye .location-name:after {
	bottom: -10px;
	left: -22px;
	width: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.location-map-sm .location-turkiye {
	top: 98px;
	left: 132px;
}


.location-romanya {
	top: 170px;
	left: 630px;
}
.location-romanya .location-name {
	bottom: 24px;
	right: 24px;
}
.location-romanya .location-name:after {
	bottom: -10px;
	right: -24px;
	width: 30px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.location-map-sm .location-romanya {
	top: 62px;
	left: 232px;
}


.location-ukrayna {
	top: 155px;
	left: 650px;
}
.location-ukrayna .location-name {
	bottom: 73px;
	left: 73px;
}
.location-ukrayna .location-name:after {
	bottom: -32px;
	left: -78px;
	width: 95px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.location-map-sm .location-ukrayna {
	top: 60px;
	left: 242px;
}


.location-suudi {
	top: 280px;
	left: 700px;
}
.location-suudi .location-name {
	top: 50px;
	left: 50px;
}
.location-suudi .location-name:after {
	top: -20px;
	left: -52px;
	width: 65px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.location-map-sm .location-suudi {
	top: 70px;
	left: 240px;
}


.location-kazakistan {
	top: 155px;
	left: 742px;
}
.location-kazakistan .location-name {
	top: -9px;
	left: 60px;
}
.location-kazakistan .location-name:after {
	top: 50%;
	left: -60px;
	width: 60px;
}
.location-map-sm .location-kazakistan {
	top: 66px;
	left: 250px;
}


.location-pakistan {
  top: 258px;
  right: 415px;
}
.location-pakistan .location-name {
  bottom: 35px;
  left: 35px;
}
.location-pakistan .location-name:after {
  bottom: -12px;
  left: -34px;
  width: 45px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


.location-map-sm .location-pakistan {
  top: 142px;
  right: 126px;
}
.location-map-sm .location-pakistan .location-name {
  bottom: 24px;
  left: 24px;
}
.location-map-sm .location-pakistan .location-name:after {
  bottom: -10px;
  left: -24px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.location-romanya .location-name {
	-webkit-transform-origin: bottom right;
	transform-origin: bottom right;
}
.location-misir .location-name {
	-webkit-transform-origin: top right;
	transform-origin: top right;
}
.location-cezayir .location-name {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}
.location-kazakistan .location-name {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}
.location-suudi .location-name {
	-webkit-transform-origin: top left;
	transform-origin: top left;
}

@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: #000000;
		-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: #000000;
		
	}
	.location-map-lg .location-name:after {
		display: none;
	}
	.section-dark .location-map-lg .location .location-name span {
		color: #ffffff;
		background-color: #a70505;
	}
}


.location-map .map {
    background: url("../images/map.svg") no-repeat center center;
    background-size: cover;
}