/* #E4231D */
@charset "utf-8";
@font-face {
	font-family: Inter;
	src: url(../fonts/Inter.ttf);
}
@font-face {
	font-family: InterBold;
	src: url(../fonts/Inter-Bold.ttf);
}
@font-face {
	font-family: InterBlack;
	src: url(../fonts/Inter-Black.ttf);
}
* {
	box-sizing: border-box;
}
html, body {
	overflow-x: hidden;
}
body {
	font-family: Inter, sans-serif;
	font-size: 18px;
	line-height: 26px;
	color: #414141;
}
.up {
	width: 35px;
    height: 35px;
    transform: rotate(45deg);
    border-top: 5px solid #E4231D;
    border-left: 5px solid #E4231D;
    opacity: 0;
    position: fixed;
    z-index: -1;
    right: 50px;
    bottom: 40px;
    cursor: pointer;
    transition: .2s;
}
@media (max-width: 600px) {
	.up {
		width: 25px;
	    height: 25px;
	    right: 20px;
	    bottom: 15px;
	}
}
.container {
	max-width: 1470px;
	margin: 0 auto;
	padding: 0 15px;
}
header,
footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}
.head-logo img {
	display: block;
}
header h2,
footer h2 {
	font-size: 46px;
	line-height: 54px;
}
.lang {
	width: 115px;
	display: flex;
	justify-content: space-between;
}
.lang a {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	text-decoration: none;
	padding-top: 8px;
	transition: .2s;
}
.lang a.ru {
	background: linear-gradient(
	  125deg,
	  #ae1716,
	  #ff8855 31%,
	  #e4231d 73%,
	  #e4231d 100%
	);
	color: #fff;
}
.lang a.ru:hover {
	box-shadow: 1px 1px 5px #ff8855;
}
.lang a.en {
	color: #000;
	background-color: #D9D9D9;
}
.lang a.en:hover {
	box-shadow: 1px 1px 5px #D9D9D9;
}
.contact {
	display: flex;
	align-items: center;
}
.contact p {
	font-size: 32px;
	line-height: 38px;
	margin-right: 30px;
}
.contact-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 245px;
	height: 58px;
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	background: linear-gradient(
	  125deg,
	  #ae1716,
	  #cf4530 13%,
	  #ff8855 28%,
	  #e4231d 57%,
	  #ff8855 87%,
	  #e4231d 100%
	);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	transition: .2s;
}
.contact-btn span {
	position: relative;
}
.contact-btn:before {
	content: '';
	display: block;
	width: 30px;
	height: 200%;
	position: absolute;
	top: -50%;
	left: -25%;
	background-color: #ff8855;
	transform: rotate(35deg);
}
.contact-btn:hover:before {
	animation: moveGradient 1s linear infinite;
}
.contact-btn:hover {
	box-shadow: 1px 1px 5px #ff8855;
}
@keyframes moveGradient {
  to {left: 120%;}
}
.soc {
	width: 255px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.soc img {
	transition: .2s;
	border-radius: 50%;
	display: block;
}
.soc img:hover {
	opacity: .7;
}
@media (max-width: 1400px) {
	header h2,
	footer h2 {
		font-size: 40px;
		line-height: 48px;
	}
}
@media (max-width: 1200px) {
	.head-logo img {
		width: 270px;
	}
	header h2,
	footer h2 {
		font-size: 34px;
		line-height: 42px;
	}
	.contact p {
		font-size: 30px;
		line-height: 38px;
		margin-right: 20px;
	}
	.contact-btn {
		width: 225px;
		height: 55px;
		font-size: 22px;
		line-height: 30px;
	}
	.soc {
		width: 200px;
	}
}
@media (max-width: 1000px) {
	.soc {
		order: 1;
	}
	.head-logo {
		order: 2;
	}
	.head-logo img {
		width: 255px;
	}
	header h2,
	footer h2 {
		display: none;
	}
	.lang {
		order: 3;
	}
	.contact {
		width: 100%;
		order: 4;
	}
	.contact p {
		margin-right: auto;
		font-size: 3.5vw;
		line-height: 3.8vw;
	}
}
@media (max-width: 700px) {
	.head-logo img {
		width: 177px;
	}
	.soc {
		width: 135px;
	}
	.soc img {
		width: 35px;
	}
	.lang {
		width: 90px;
	}
	.lang a {
		width: 40px;
		height: 40px;
		font-size: 18px;
		line-height: 24px;
	}
	.contact-btn {
		width: 160px;
		height: 40px;
		font-size: 16px;
		line-height: 22px;
		border-radius: 10px;
	}
	.contact-btn:before {
		left: -30%;
	}
}
@media (max-width: 480px) {
	header {
		padding: 15px 0;
	}
	.soc {
		width: 95px;
	}
	.soc img {
		width: 25px;
	}
	.lang {
		width: 70px;
	}
	.lang a {
		width: 30px;
		height: 30px;
		font-size: 14px;
		line-height: 20px;
		padding-top: 4px;
	}
	.contact-btn {
		width: 120px;
		height: 30px;
		font-size: 12px;
		line-height: 18px;
		border-radius: 7px;
	}
	.contact-btn:before {
		width: 20px;
	}
}
@media (min-width: 421px) {
	.contact br {
		display: none;
	}
}
@media (max-width: 420px) {
	.soc {
		width: 85px;
	}
	.head-logo img {
		width: 120px;
	}
	.lang {
		width: 55px;
	}
	.lang a {
		width: 25px;
		height: 25px;
		font-size: 12px;
		line-height: 18px;
		padding-top: 3px;
	}
	.contact p {
		font-size: 16px;
		line-height: 20px;
	}
}

.top-nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 10px;
	border-top: 1px solid #D9D9D9;
	border-bottom: 1px solid #D9D9D9;
	padding: 10px 0;
	margin-top: -15px;
	font-size: 20px;
	line-height: 26px;
	overflow: auto;
}
.emirates-list {
	padding: 5px;
	border-radius: 5px;
	border-color: #D9D9D9;
	outline: none;
	background-color: #fff;
}
.top-nav a {
	color: #414141;
	text-decoration: none;
}
.top-nav a:hover {
	text-decoration: underline;
}
@media (max-width: 1000px) {
	.top-nav {
		font-size: 16px;
		line-height: 22px;
	}
}
@media (max-width: 600px) {
	.top-nav {
		justify-content: space-between;
	}
}

.banner {
	position: relative;
	padding-top: 54.1%;
}
.banner-tabs {
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	z-index: 1;
	padding: 15px 0 0 20px;
	display: flex;
	flex-direction: column;
}
.banner-tabs p {
	margin: 5px 0;
	font-size: 32px;
	line-height: 40px;
	font-weight: bold;
}
.banner-tabs a {
	font-size: 26px;
	line-height: 32px;
	align-self: flex-start;
	color: #fff;
	text-decoration: none;
	border-radius: 15px;
	transition: .2s;
}
.banner-tabs a:not(.checked):hover {
	text-decoration: underline;
}
.banner-tabs a.checked {
	background: linear-gradient(
	  125deg,
	  #ae1716,
	  #cf4530 13%,
	  #ff8855 28%,
	  #e4231d 57%,
	  #ff8855 87%,
	  #e4231d 100%
	);
	padding: 5px 20px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 26px;
	margin-top: 5px;
}
.banner-tabs a.checked:hover {
	box-shadow: 1px 1px 3px #ff8855;
}
.pic-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.pic-wrap.active {
	opacity: 1;
}
.morning {
	background-color: #fda539;
}
.day {
	background-color: #b9f4ff;
}
.evening {
	background-color: #4a6fb5;
}
.night {
	background-color: #140549;
}
.img-1, .img-2, .img-3 {
	position: absolute;
	right: -100%;
	top: 0;
	max-width: 100%;
	opacity: 0;
}
.img-1 {
	clip-path: polygon(22.5% 0, 62.1% 0, 8% 100%, 0 100%, 0 41.5%);
}
.img-2 {
	clip-path: polygon(62% 0, 100% 0, 100% 10.2%, 51.4% 100%, 7.9% 100%);
}
.img-3 {
	clip-path: polygon(100% 10%, 100% 100%, 51.3% 100%);
}
.pic-wrap.active .img-1,
.pic-wrap.active .img-2,
.pic-wrap.active .img-3 {
	animation: bannerSlideOpacity .5s forwards;
}
.pic-wrap.active .img-2 {
	animation-delay: .5s;
}
.pic-wrap.active .img-3 {
	animation-delay: 1s;
}
@keyframes bannerSlideOpacity {
	to { opacity: 1; right: 0; }
}
@media (max-width: 1200px) {
	main.banner {
		margin-top: 70px;
	}
	.banner-tabs {
		width: 100%;
		flex-direction: row;
		padding: 0;
		top: -60px;
	}
	.banner-tabs p {
		margin-right: auto;
		color: #414141;
		font-size: 34px;
		line-height: 40px;
	}
	.banner-tabs a:not(.checked) {
		display: block;
		margin: 0 10px;
		align-self: center;
		color: #2f2f2f;
	}
	.banner-tabs a:not(.checked):hover {
		text-decoration: none;
	}
	.banner-tabs a.checked {
		margin: 0 10px;
		align-self: center;
	}
	.banner-tabs a.checked:hover {
		box-shadow: none;
	}
}
@media (max-width: 700px) {
	main.banner {
		margin-top: 60px;
	}
	.banner-tabs {
		top: -50px;
	}
	.banner-tabs p {
	    font-size: 24px;
	    line-height: 30px;
	}
	.banner-tabs a:not(.checked) {
		font-size: 18px;
		line-height: 24px;
		margin: 0 5px;
	}
	.banner-tabs a.checked {
		font-size: 14px;
		line-height: 20px;
		margin: 0 5px;
		padding: 5px 15px;
	}
}
@media (max-width: 480px) {
	main.banner {
		margin-top: 45px;
	}
	.banner-tabs {
		top: -40px;
	}
	.banner-tabs p {
	    font-size: 18px;
	    line-height: 24px;
	}
	.banner-tabs a:not(.checked) {
		font-size: 12px;
		line-height: 16px;
	}
	.banner-tabs a.checked {
		font-size: 11px;
		line-height: 15px;
		padding: 5px 10px;
	}
}
@media (max-width: 360px) {
	main.banner {
		margin-top: 35px;
	}
	.banner-tabs {
		top: -30px;
	}
	.banner-tabs p {
	    font-size: 14px;
	    line-height: 18px;
	}
	.banner-tabs a:not(.checked) {
		font-size: 10px;
		line-height: 14px;
	}
	.banner-tabs a.checked {
		font-size: 8px;
		line-height: 12px;
		padding: 5px 10px;
	}
}

.work {
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.work:before,
.work:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #ff0000;
	position: absolute;
	left: 0;
	z-index: -1;
}
.work:before {
	top: 30%;
}
.work:after {
	bottom: 30%;
}
.work > div {
	border: 1px solid #e4231d;
	border-radius: 10px;
	background-color: #fff;
}
.work > img {
	align-self: center;
}
.areas {
	padding: 25px 40px 15px;
	width: 33%;
}
.areas h4 {
	font-family: InterBlack, sans-serif;
	font-size: 32px;
	line-height: 40px;
	margin: 10px 0 20px;
}
.areas ul li {
	font-size: 26px;
	line-height: 32px;
	padding: 10px 0 10px 10px;
	list-style: none;
	position: relative;
}
.areas ul li:before {
	content: url(../img/list.svg);
	position: absolute;
	left: -40px;
	top: 12px;
}
.tags {
	width: 31%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding: 40px 10px 40px 50px;
}
.tags a {
	color: #414141;
	text-decoration: none;
	font-size: 26px;
	line-height: 32px;
}
.tags a:hover {
	text-decoration: underline;
}
@media (max-width: 1200px) {
	.areas h4,
	.areas ul li,
	.tags a {
		font-size: 24px;
		line-height: 30px;
	}
}
@media (max-width: 1000px) {
	.work {
		padding: 35px 0;
	}
	.work > img {
		display: none;
	}
	.areas {
		width: 59%;
		padding: 20px 30px 15px;
	}
	.tags {
		width: 38%;
		padding: 25px 10px 25px 35px;
	}
}
@media (max-width: 800px) {
	.areas ul li {
		font-size: 20px;
		line-height: 26px;
		padding: 7px 0 7px 10px;
	}
	.areas ul li:before {
		top: 7px;
	}
	.tags a {
		font-size: 20px;
		line-height: 26px;
	}
}
@media (max-width: 700px) {
	.work {
		flex-wrap: wrap;
	}
	.work:before,
	.work:after {
		display: none;
	}
	.areas,
	.tags {
		width: 100%;
	}
	.areas {
		margin-bottom: 20px;
		position: relative;
	}
	.areas:before,
	.areas:after {
		width: 1px;
		height: 30px;
		content: '';
		display: block;
		background-color: #ff0000;
		position: absolute;
		bottom: -25px;
		z-index: -1;
	}
	.areas:before {
		left: 30%
	}
	.areas:after {
		right: 30%;
	}
	.tags {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.tags a {
		width: 50%;
	}
	.tags a:first-child {
		order: 1;
		margin-bottom: 10px;
		padding-left: 20px;
	}
	.tags a:nth-child(3) {
		order: 2;
		margin-bottom: 10px;
	}
	.tags a:nth-child(2) {
		order: 3;
		padding-left: 20px;
	}
	.tags a:last-child {
		order: 4;
	}
}
@media (max-width: 480px) {
	.work {
		padding: 20px 0;
	}
	.areas {
		padding: 10px 25px 15px;
	}
	.areas h4 {
		margin: 10px 0 0;
		font-size: 14px;
		line-height: 20px;
	}
	.areas ul {
		margin-top: 5px;
		margin-bottom: 5px;
		padding-left: 30px;
	}
	.areas ul li {
		font-size: 14px;
		line-height: 20px;
		padding: 5px 0 5px 0;
	}
	.areas ul li:before {
		content: url('../img/list-small.svg');
		left: -30px;
	}
	.tags a {
		font-size: 16px;
		line-height: 22px;
	}
}
@media (max-width: 400px) {
	.tags {
	    padding: 15px;
	}
	.tags a:first-child,
	.tags a:nth-child(2) {
		padding-left: 0;
	}
}
@media (max-width: 360px) {
	.tags a {
		font-size: 14px;
		line-height: 20px;
	}
}

.about {
	padding: 50px 0;
}
.about h2 {
	font-size: 60px;
	line-height: 72px;
	text-align: center;
}
@media (max-width: 1200px) {
	.about h2 {
	    font-size: 44px;
	    line-height: 52px;
	}
}
@media (max-width: 650px) {
	.about h2 {
	    font-size: 30px;
	    line-height: 38px;
	}
}

.resorts h2 {
	font-size: 60px;
	line-height: 72px;
	text-align: center;
}
.map {
	max-width: 1132px;
	margin: 120px auto 0;
	position: relative;
}
.map:before {
	content: '';
	display: block;
	width: 965px;
	height: 335px;
	border: 1px solid #E4231D;
	border-radius: 10px;
	position: absolute;
	bottom: 75px;
	left: 40px;
}
.map-mask {
	position: absolute;
	top: 113px;
	right: -30px;
	z-index: 1;
}
.map-pic {
	opacity: 0;
	display: none;
}
.map-pic.visible {
	display: block;
	animation: mapOpacity .5s forwards;
}
.resort-content-wrap {
	position: absolute;
	z-index: 2;
	width: 790px;
	top: -65px;
	left: -170px;
	/*border: 1px solid blue;*/
}
.resort-content {
	padding: 30px;
	height: 450px;
	border: 1px solid #E4231D;
	border-radius: 10px;
	opacity: 0;
	display: none;
	transition: .2s;
}
.resort-content.active {
	display: block;
	animation: mapOpacity .2s linear forwards;
}
.resort-content .detail-btn {
	position: absolute;
	right: 0;
	bottom: 0;
}
.resort-content h3 {
	background-color: #E4231D;
	color: #fff;
	text-align: center;
	font-size: 36px;
	line-height: 42px;
	font-family: InterBlack;
	border-radius: 5px;
	padding: 20px;
	margin: 0 0 30px;
}
.resort-content-pic {
	position: absolute;
}
.resort-content-pic.pic-1 {
	top: 950px;
	left: 50px;
}
.resort-content-pic.pic-2 {
	top: 1125px;
	right: -510px;
}
.resort-content-pic.pic-3 {
	top: 835px;
	right: -630px;
}
.resort-name {
	color: #A6686D;
	text-decoration: none;
	text-transform: uppercase;
	position: absolute;
	font-weight: bold;
	z-index: 2;
	transition: .1s;
	white-space: nowrap;
}
.resort-name:hover {
	color: #E4231D;
}
.resort-name .dot {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #A6686D;
	position: absolute;
	z-index: 1;
	transition: .1s;
}
.resort-name:hover .dot {
	background-color: #E4231D;
}
.resort-name.checked {
	font-size: 30px;
	line-height: 38px;
	color: #FF2600;
	text-transform: uppercase;
	font-family: InterBlack;
}
.resort-name.checked .dot {
	width: 28px;
	height: 28px;
	background-color: #FF2600;
}
@keyframes mapOpacity {
	to { opacity: 1; }
}
@keyframes mapDotPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.resort-name.checked .dot:before,
.resort-name.checked .dot:after {
	content: '';
	position: absolute;
	border: 2px solid #FF2600;
	opacity: 0;
	left: -10px;
	right: -10px;
	top: -10px;
	bottom: -10px;
	border-radius: 50%;
	animation: mapDotPulse 2s linear infinite;
}
.resort-name.checked .dot:after {
	animation-delay: 1s;
}
/* al ain */
.resort-name[href="#alain"] {
	top: 455px;
	right: 265px;
}
.resort-name[href="#alain"] .dot {
	right: -30px;
	bottom: -25px;
}
.resort-name.checked[href="#alain"] {
	top: 435px;
}
.resort-name.checked[href="#alain"] .dot {
	right: -33px;
	bottom: -35px;
}
/* adu dhabi */
.resort-name[href="#abudabi"] {
	top: 555px;
	right: 665px;
}
.resort-name[href="#abudabi"] .dot {
	right: -20px;
	bottom: -25px;
}
.resort-name.checked[href="#abudabi"] {
	top: 535px;
	right: 655px;
}
.resort-name.checked[href="#abudabi"] .dot {
	right: -15px;
	bottom: -35px;
}
/* dubai */
.resort-name[href="#dubai"] {
	top: 305px;
	right: 390px;
}
.resort-name[href="#dubai"] .dot {
	right: -30px;
	bottom: -20px;
}
.resort-name.checked[href="#dubai"] {
	top: 290px;
	right: 390px;
}
.resort-name.checked[href="#dubai"] .dot {
	right: -35px;
	bottom: -25px;
}
/* sharjah */
.resort-name[href="#shardzha"] {
	top: 250px;
	right: 345px;
}
.resort-name[href="#shardzha"] .dot {
	right: -25px;
	bottom: -20px;
}
.resort-name.checked[href="#shardzha"] {
	top: 230px;
	right: 340px;
}
.resort-name.checked[href="#shardzha"] .dot {
	right: -21px;
	bottom: -30px;
}
/* ajman */
.resort-name[href="#adzhman"] {
	top: 210px;
	right: 315px;
}
.resort-name[href="#adzhman"] .dot {
	right: -18px;
	bottom: -27px;
}
.resort-name.checked[href="#adzhman"] {
	top: 190px;
	right: 310px;
}
.resort-name.checked[href="#adzhman"] .dot {
	right: -15px;
	bottom: -35px;
}
/* umm al quwain */
.resort-name[href="#umalkuvein"] {
	top: 160px;
	right: 250px;
}
.resort-name[href="#umalkuvein"] .dot {
	right: -30px;
	bottom: -30px;
}
.resort-name.checked[href="#umalkuvein"] {
	top: 130px;
	right: 200px;
}
.resort-name.checked[href="#umalkuvein"] .dot {
	right: 17px;
	bottom: -49px;
}
/* ras al khaimah */
.resort-name[href="#raselhaima"] {
	top: 100px;
	right: 165px;
}
.resort-name[href="#raselhaima"] .dot-1 {
	right: -30px;
	bottom: -20px;
}
.resort-name[href="#raselhaima"] .dot-2 {
	right: -65px;
	bottom: -220px;
}
.resort-name.checked[href="#raselhaima"] {
	top: 80px;
	right: 160px;
}
.resort-name.checked[href="#raselhaima"] .dot-1 {
	right: -30px;
	bottom: -30px;
}
.resort-name.checked[href="#raselhaima"] .dot-2 {
	right: -65px;
	bottom: -230px;
}
/* fujairah */
.resort-name[href="#fudzheira"] {
	top: 260px;
	left: 1140px;
}
.resort-name[href="#fudzheira"] .dot-1 {
	left: -65px;
	top: -25px;
}
.resort-name[href="#fudzheira"] .dot-2 {
	left: -50px;
	bottom: -55px;
}
.resort-name.checked[href="#fudzheira"] {
	top: 250px;
	left: 1140px;
}
.resort-name.checked[href="#fudzheira"] .dot-1 {
	left: -67px;
	top: -20px;
}
.resort-name.checked[href="#fudzheira"] .dot-2 {
	left: -55px;
	bottom: -55px;
}
@media (max-width: 1500px) {
	.resort-content-wrap {
		width: 570px;
		top: -65px;
		left: -10px;
	}
	.resort-content {
		height: 560px;
	}
	.resort-content-pic.pic-1 {
		left: -50px;
	}
	.resort-content-pic.pic-2 {
		right: -580px;
	}
}
@media (max-width: 1400px) {
	.resort-name[href="#fudzheira"] {
		top: 200px;
		left: 1040px;
	}
	.resort-name[href="#fudzheira"] .dot-1 {
		left: 35px;
		top: 35px;
	}
	.resort-name[href="#fudzheira"] .dot-2 {
		left: 50px;
		bottom: -115px;
	}
	.resort-name.checked[href="#fudzheira"] {
		top: 180px;
		left: 1010px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-1 {
		left: 63px;
		top: 52px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-2 {
		left: 78px;
		bottom: -125px;
	}
}
@media (max-width: 1200px) {
	.resorts h2 {
		font-size: 44px;
		line-height: 52px;
	}
	.resort-content h3 {
		font-size: 30px;
		line-height: 38px;
	}
	.map {
		margin: 30px 0 0;
	}
	.map-pic-wrap {
		width: 797px;
		position: relative;
	}
	.resort-content-wrap {
		position: relative;
		width: 100%;
		left: 0;
		top: 0;
		margin-bottom: 30px;
	}
	.resort-content {
		height: auto;
	}
	.resort-content-pic.pic-1,
	.resort-content-pic.pic-2,
	.resort-content-pic.pic-3,
	.map:before {
		display: none;
	}
	.resort-name.checked[href="#abudabi"] {
		top: 535px;
		right: 635px;
	}
	.resort-name.checked[href="#abudabi"] .dot {
		right: 8px;
		bottom: -35px;
	}
	.resort-name[href="#fudzheira"] {
		left: 810px;
		top: 260px;
	}
	.resort-name[href="#fudzheira"] .dot-1 {
		left: -65px;
		top: -25px;
	}
	.resort-name[href="#fudzheira"] .dot-2 {
		left: -50px;
		bottom: -55px;
	}
	.resort-name.checked[href="#fudzheira"] {
		left: 810px;
		top: 250px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-1 {
		left: -67px;
		top: -20px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-2 {
		left: -55px;
		bottom: -55px;
	}
}
@media (max-width: 950px) {
	.resort-name[href="#fudzheira"] {
		top: 200px;
		left: 705px;
	}
	.resort-name[href="#fudzheira"] .dot-1 {
		left: 35px;
		top: 35px;
	}
	.resort-name[href="#fudzheira"] .dot-2 {
		left: 50px;
		bottom: -115px;
	}
	.resort-name.checked[href="#fudzheira"] {
		top: 180px;
		left: 680px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-1 {
		left: 63px;
		top: 52px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-2 {
		left: 78px;
		bottom: -125px;
	}
}
@media (max-width: 850px) {
	.resort-content {
		padding: 15px 15px 45px;
		font-size: 14px;
		line-height: 18px;
	}
	.resort-content h3 {
		font-size: 24px;
		line-height: 32px;
	}
	.map-pic-wrap {
		width: 600px;
	}
	.map-pic img {
		max-width: 100%;
	}
	.map-mask {
		width: 408px;
		right: -33px;
		top: 85px;
	}
	.resort-name {
		font-size: 14px;
		line-height: 18px;
	}
	.resort-name.checked {
		font-size: 18px;
		line-height: 24px;
	}
	.resort-name .dot {
		width: 16px;
		height: 16px;
	}
	.resort-name.checked .dot {
		width: 18px;
		height: 18px;
	}
	/* al ain */
	.resort-name[href="#alain"] {
		top: 345px;
		right: 180px;
	}
	.resort-name[href="#alain"] .dot {
		right: -14px;
		bottom: -20px;
	}
	.resort-name.checked[href="#alain"] {
		top: 340px;
	}
	.resort-name.checked[href="#alain"] .dot {
		right: -15px;
		bottom: -20px;
	}
	/* adu dhabi */
	.resort-name[href="#abudabi"] {
		top: 425px;
		right: 495px;
	}
	.resort-name[href="#abudabi"] .dot {
		right: -15px;
		bottom: -20px;
	}
	.resort-name.checked[href="#abudabi"] {
		top: 417px;
		right: 492px;
	}
	.resort-name.checked[href="#abudabi"] .dot {
		right: -13px;
		bottom: -22px;
	}
	/* dubai */
	.resort-name[href="#dubai"] {
		top: 225px;
		right: 285px;
	}
	.resort-name[href="#dubai"] .dot {
		right: -25px;
		bottom: -15px;
	}
	.resort-name.checked[href="#dubai"] {
		top: 220px;
		right: 285px;
	}
	.resort-name.checked[href="#dubai"] .dot {
		right: -25px;
		bottom: -15px;
	}
	/* sharjah */
	.resort-name[href="#shardzha"] {
		top: 190px;
		right: 255px;
	}
	.resort-name[href="#shardzha"] .dot {
		right: -20px;
		bottom: -15px;
	}
	.resort-name.checked[href="#shardzha"] {
		top: 185px;
		right: 255px;
	}
	.resort-name.checked[href="#shardzha"] .dot {
		right: -20px;
		bottom: -15px;
	}
	/* ajman */
	.resort-name[href="#adzhman"] {
		top: 160px;
		right: 235px;
	}
	.resort-name[href="#adzhman"] .dot {
		right: -20px;
		bottom: -23px;
	}
	.resort-name.checked[href="#adzhman"] {
		top: 155px;
		right: 235px;
	}
	.resort-name.checked[href="#adzhman"] .dot {
		right: -20px;
		bottom: -23px;
	}
	/* umm al quwain */
	.resort-name[href="#umalkuvein"] {
		top: 120px;
		right: 180px;
	}
	.resort-name[href="#umalkuvein"] .dot {
		right: -20px;
		bottom: -20px;
	}
	.resort-name.checked[href="#umalkuvein"] {
		top: 115px;
		right: 180px;
	}
	.resort-name.checked[href="#umalkuvein"] .dot {
		right: -20px;
		bottom: -20px;
	}
	/* ras al khaimah */
	.resort-name[href="#raselhaima"] {
		top: 70px;
		right: 115px;
	}
	.resort-name[href="#raselhaima"] .dot-1 {
		right: -20px;
		bottom: -20px;
	}
	.resort-name[href="#raselhaima"] .dot-2 {
		right: -47px;
		bottom: -172px;
	}
	.resort-name.checked[href="#raselhaima"] {
		top: 65px;
		right: 110px;
	}
	.resort-name.checked[href="#raselhaima"] .dot-1 {
		right: -17px;
		bottom: -20px;
	}
	.resort-name.checked[href="#raselhaima"] .dot-2 {
		right: -43px;
		bottom: -172px;
	}
	/* fujairah */
	.resort-name[href="#fudzheira"] {
		top: 195px;
		left: 610px;
	}
	.resort-name[href="#fudzheira"] .dot-1 {
		left: -42px;
		top: -18px;
	}
	.resort-name[href="#fudzheira"] .dot-2 {
		left: -30px;
		bottom: -42px;
	}
	.resort-name.checked[href="#fudzheira"] {
		top: 190px;
		left: 610px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-1 {
		left: -44px;
		top: -16px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-2 {
		left: -32px;
		bottom: -42px;
	}
}
@media (max-width: 750px) {
	.resort-name[href="#fudzheira"] {
		top: 145px;
		left: 530px;
	}
	.resort-name[href="#fudzheira"] .dot-1 {
		left: 35px;
		top: 30px;
	}
	.resort-name[href="#fudzheira"] .dot-2 {
		left: 50px;
		bottom: -95px;
	}
	.resort-name.checked[href="#fudzheira"] {
		top: 140px;
		left: 520px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-1 {
		left: 43px;
		top: 32px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-2 {
		left: 57px;
		bottom: -95px;
	}
}
@media (max-width: 650px) {
	.map {
		margin: 15px 0 0;
	}
	.resorts h2 {
	    font-size: 30px;
	    line-height: 38px;
	}
	.resort-content h3 {
		padding: 15px;
		margin: 0 0 15px;
	}
	.map-pic-wrap {
		width: 350px;
		position: relative;
		left: 8vw;
	}
	.map-mask {
		width: 238px;
		right: -18px;
		top: 50px;
	}
	.resort-name {
		font-size: 12px;
		line-height: 16px;
	}
	.resort-name.checked {
		font-size: 14px;
		line-height: 18px;
	}
	.resort-name .dot {
		width: 12px;
		height: 12px;
	}
	.resort-name.checked .dot {
		width: 14px;
		height: 14px;
	}
	/* al ain */
	.resort-name[href="#alain"] {
		top: 195px;
		right: 113px;
	}
	.resort-name[href="#alain"] .dot {
		right: -14px;
		bottom: -12px;
	}
	.resort-name.checked[href="#alain"] {
		top: 193px;
		right: 111px;
	}
	.resort-name.checked[href="#alain"] .dot {
		right: -14px;
		bottom: -12px;
	}
	/* adu dhabi */
	.resort-name[href="#abudabi"] {
		top: 242px;
		right: 292px;
	}
	.resort-name[href="#abudabi"] .dot {
		right: -12px;
		bottom: -15px;
	}
	.resort-name.checked[href="#abudabi"] {
		top: 240px;
		right: 290px;
	}
	.resort-name.checked[href="#abudabi"] .dot {
		right: -12px;
		bottom: -15px;
	}
	/* dubai */
	.resort-name[href="#dubai"] {
		top: 135px;
		right: 172px;
	}
	.resort-name[href="#dubai"] .dot {
		right: -18px;
		bottom: -7px;
	}
	.resort-name.checked[href="#dubai"] {
		top: 133px;
		right: 170px;
	}
	.resort-name.checked[href="#dubai"] .dot {
		right: -18px;
		bottom: -7px;
	}
	/* sharjah */
	.resort-name[href="#shardzha"] {
		top: 110px;
		right: 152px;
	}
	.resort-name[href="#shardzha"] .dot {
		right: -15px;
		bottom: -5px;
	}
	.resort-name.checked[href="#shardzha"] {
		top: 108px;
		right: 150px;
	}
	.resort-name.checked[href="#shardzha"] .dot {
		right: -15px;
		bottom: -5px;
	}
	/* ajman */
	.resort-name[href="#adzhman"] {
		top: 90px;
		right: 140px;
	}
	.resort-name[href="#adzhman"] .dot {
		right: -15px;
		bottom: -12px;
	}
	.resort-name.checked[href="#adzhman"] {
		top: 88px;
		right: 139px;
	}
	.resort-name.checked[href="#adzhman"] .dot {
		right: -15px;
		bottom: -12px;
	}
	/* umm al quwain */
	.resort-name[href="#umalkuvein"] {
		top: 65px;
		right: 110px;
	}
	.resort-name[href="#umalkuvein"] .dot {
		right: -15px;
		bottom: -15px;
	}
	.resort-name.checked[href="#umalkuvein"] {
		top: 62px;
		right: 108px;
	}
	.resort-name.checked[href="#umalkuvein"] .dot {
		right: -15px;
		bottom: -15px;
	}
	/* ras al khaimah */
	.resort-name[href="#raselhaima"] {
		top: 35px;
		right: 65px;
	}
	.resort-name[href="#raselhaima"] .dot-1 {
		right: -15px;
		bottom: -15px;
	}
	.resort-name[href="#raselhaima"] .dot-2 {
		right: -27px;
		bottom: -105px;
	}
	.resort-name.checked[href="#raselhaima"] {
		top: 32px;
		right: 65px;
	}
	.resort-name.checked[href="#raselhaima"] .dot-1 {
		right: -15px;
		bottom: -15px;
	}
	.resort-name.checked[href="#raselhaima"] .dot-2 {
		right: -27px;
		bottom: -105px;
	}
	/* fujairah */
	.resort-name[href="#fudzheira"] {
		top: 105px;
		left: 360px;
	}
	.resort-name[href="#fudzheira"] .dot-1 {
		left: -32px;
		top: -5px;
	}
	.resort-name[href="#fudzheira"] .dot-2 {
		left: -27px;
		bottom: -32px;
	}
	.resort-name.checked[href="#fudzheira"] {
		top: 105px;
		left: 357px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-1 {
		left: -30px;
		top: -5px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-2 {
		left: -25px;
		bottom: -32px;
	}
}
@media (max-width: 550px) {
	.map-pic-wrap {
		left: 0;
	}
}
@media (max-width: 470px) {
	/* adu dhabi */
	.resort-name[href="#abudabi"] {
		top: 230px;
		right: 225px;
	}
	.resort-name[href="#abudabi"] .dot {
		right: 55px;
		bottom: -27px;
	}
	.resort-name.checked[href="#abudabi"] {
		top: 228px;
		right: 215px;
	}
	.resort-name.checked[href="#abudabi"] .dot {
		right: 65px;
		bottom: -27px;
	}
	/* fujeirah */
	.resort-name[href="#fudzheira"] {
		top: 80px;
		left: 300px;
	}
	.resort-name[href="#fudzheira"] .dot-1 {
		left: 27px;
		top: 20px;
	}
	.resort-name[href="#fudzheira"] .dot-2 {
		left: 36px;
		bottom: -56px;
	}
	.resort-name.checked[href="#fudzheira"] {
		top: 78px;
		left: 300px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-1 {
		left: 27px;
		top: 20px;
	}
	.resort-name.checked[href="#fudzheira"] .dot-2 {
		left: 36px;
		bottom: -56px;
	}
}
@media (max-width: 420px) {
	.map-pic-wrap {
		left: calc(100% - 380px);
	}
}
@media (max-width: 350px) {
	.map-pic-wrap {
		left: calc(100% - 360px);
	}
}

.info-blocks {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 0 -10px;
	padding: 150px 0 70px;
}
.info-blocks:before {
	content: '';
	display: block;
	width: 800px;
	height: 705px;
	border: 1px solid #E4231D;
	border-radius: 10px;
	position: absolute;
	bottom: 165px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}
.info-blocks-wrap {
	margin: 0 10px;
}
.info-blocks-wrap:nth-of-type(2) {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.info-blocks-wrap:nth-of-type(1),
.info-blocks-wrap:nth-of-type(3) {
	padding-top: 300px;
}
.religious {
	margin-bottom: 75px;
}
.info-block-pic {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.info-block-pic span {
	color: #fff;
	text-align: center;
	position: absolute;
	font-size: 200px;
	line-height: 250px;
	font-weight: bold;
	left: 0;
	right: 0;
	top: 25%;
	margin: auto;
}
.info-block-pic img {
	margin-bottom: 35px;
	max-width: 100%;
	display: block;
}
.info-block.viza,
.info-block.time {
	margin-bottom: 30px;
}
.info-block {
	width: 100%;
	max-width: 400px;
	height: 410px;
	border: 2px solid #E4231D;
	border-radius: 10px;
	padding: 25px 25px 0 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: #fff;
	line-height: 22px;
}
.info-block h4 {
	width: 95%;
	font-size: 32px;
	line-height: 40px;
	background-color: #E4231D;
	color: #fff;
	padding: 20px;
	border-radius: 10px;
	margin: 0;
	font-weight: 100;
}
.detail-btn {
	width: 175px;
	height: 40px;
	font-size: 17px;
	line-height: 24px;
	margin-top: auto;
	border-radius: 5px;
	padding-top: 3px;
}
.info-block-important {
	width: 100%;
	max-width: 480px;
	background-color: #E4231D;
	border-radius: 10px;
	color: #fff;
	font-size: 54px;
	line-height: 64px;
	text-transform: uppercase;
	padding: 10px;
	text-align: center;
	font-weight: bold;
}
@media (max-width: 1400px) {
	.info-block {
		padding: 15px 15px 0;
	}
	.info-block h4 {
		width: 90%;
	}
}
@media (max-width: 1200px){
	.info-blocks {
		flex-wrap: wrap;
		justify-content: space-evenly;
		padding-top: 150px;
		margin: 0;
	}
	.info-blocks:before {
		width: 405px;
		height: auto;
		bottom: 160px;
		top: 90px;
	}
	.info-blocks-wrap {
		margin: 0;
	}
	.info-blocks-wrap:nth-of-type(2) {
		order: 1;
		width: 100%;
		flex-direction: row;
		justify-content: space-evenly;
	}
	.info-block-pic-wrap {
		position: relative;
	}
	.info-block-pic {
		height: 410px;
		order: 1;
	}
	.info-block-pic span {
		font-size: 180px;
		line-height: 200px;
	}
	.info-block-pic img {
		margin: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.religious {
		order: 2;
		margin: 0;
	}
	.info-block-important {
		position: absolute;
		top: -90px;
		left: 0;
		width: 400px;
		font-size: 34px;
		line-height: 42px;
	}
	.info-blocks-wrap:nth-of-type(1) {
		order: 2;
		padding-top: 30px;
	}
	.info-blocks-wrap:nth-of-type(3) {
		order: 3;
		padding-top: 30px;
	}
}
@media (max-width: 1000px) {
	.info-blocks {
		justify-content: space-between;
	}
	.religious,
	.info-block-pic-wrap,
	.info-blocks-wrap:nth-of-type(1),
	.info-blocks-wrap:nth-of-type(3) {
		width: 47%;
		max-width: 100%;
	}
	.viza,
	.money,
	.time,
	.restriction,
	.info-block-pic,
	.info-block-important {
		width: 100%;
		max-width: 100%;
	}
	.info-blocks-wrap:nth-of-type(2) {
		justify-content: space-between;
	}
	.religious {
		height: 100%;
	}
	.info-block-pic span {
		font-size: 20vw;
		line-height: 22vw;
	}
}
@media (max-width: 800px) {
	.religious,
	.info-block-pic-wrap,
	.info-blocks-wrap:nth-of-type(1),
	.info-blocks-wrap:nth-of-type(3) {
		width: 48%;
	}
	.info-block h4 {
		padding: 10px;
		font-size: 28px;
		line-height: 36px;
	}
	.info-block p {
		font-size: 16px;
		line-height: 20px;
	}
	.info-block-pic span {
		top: 30%;
	}
}
@media (max-width: 600px) {
	.religious,
	.info-block-pic-wrap,
	.info-blocks-wrap:nth-of-type(1),
	.info-blocks-wrap:nth-of-type(3) {
		width: 49%;
	}
	.info-block h4 {
		font-size: 24px;
		line-height: 32px;
	}
	.info-block p {
		font-size: 14px;
		line-height: 18px;
	}
	.info-block-pic span {
		top: 33%;
	}
}
@media (max-width: 500px) {
	.info-blocks:before {
		width: 70%;
		bottom: 40px;
		top: 30px;
	}
	.religious,
	.info-block-pic-wrap,
	.info-blocks-wrap:nth-of-type(1),
	.info-blocks-wrap:nth-of-type(3) {
		width: 100%;
	}
	.info-blocks-wrap:nth-of-type(2) {
		flex-wrap: wrap;
	}
	.info-block {
		height: auto;
		min-height: 410px;
	}
	.info-block-pic {
		margin-bottom: 30px;
	}
	.info-block-pic span {
		top: 30%;
		font-size: 38vw;
		line-height: 35vw;
	}
	.info-block h4 {
		font-size: 32px;
		line-height: 40px;
		padding: 15px;
		margin: 10px 0 15px;
	}
	.info-block p {
		font-size: 18px;
		line-height: 22px;
	}
}

.main-page-sliders {
	padding: 50px 0 80px;
}
.to-archive {
	display: flex;
	justify-content: flex-end;
	padding: 20px 0;
	align-items: center;
	text-decoration: none;
	color: #414141;
	text-transform: uppercase;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
.to-archive:hover {
	text-decoration: underline;
}
.to-archive img {
	margin-left: 20px;
}
.main-page-sliders h2 {
	font-size: 60px;
	line-height: 72px;
	text-align: center;
}
.main-page-sliders img {
	max-width: 100%;
}
.main-page-slider-tabs {
	display: flex;
	margin-bottom: 40px;
}
.main-page-slider-tabs a {
	color: #414141;
	text-decoration: none;
	font-size: 27px;
	line-height: 33px;
	padding: 5px 15px;
	border: 1px solid #808080;
	background-color: #fff;
	border-radius: 5px;
	margin-top: 10px;
	transition: .2s;
}
.main-page-slider-tabs a:hover {
	text-decoration: underline;
}
.main-page-slider-tabs a.checked {
	border: 1px solid #E4231D;
	color: #fff;
	font-weight: 900;
	position: relative;
	z-index: 3 !important;
	background: linear-gradient( 125deg, #ae1716, #cf4530 13%, #ff8855 28%, #e4231d 57%, #ff8855 87%, #e4231d 100% );
}
.main-page-slider-tabs a.checked:hover {
	text-decoration: none;
}
.main-page-slider-tabs a:first-child {
	position: relative;
	z-index: 2;
}
.main-page-slider-tabs a:nth-child(2) {
	position: relative;
	z-index: 1;
}
.main-page-slider-tabs a:nth-child(2),
.main-page-slider-tabs a:last-child {
	margin-left: -3px;
}
/*.main-page-slider-tabs a:first-child {
	border-radius: 5px 0 0 5px;
	border-right: 0;
}
.main-page-slider-tabs a:last-child {
	border-radius: 0 5px 5px 0;
	border-left: 0;
}*/
.main-page-slider {
	opacity: 0;
	display: none;
}
.main-page-slider.active {
	display: block;
	animation: .5s mapOpacity linear forwards; 
}
.main-page-sliders-wrap {
	display: flex;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.swiper.main-page-slider-nav {
	width: 365px;
	height: 1270px;
	margin: 75px 0;
}
.swiper-button-next,
.swiper-button-prev {
	width: 65px;
	height: 65px;
	transition: .2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	opacity: .7;
}
.swiper-button-prev {
	top: 23px;
	left: 115px;
}
.swiper-button-next {
	top: auto;
	bottom: 10px;
	left: 115px;
}
.main-page-slider-nav .swiper-slide {
	width: 295px;
	height: 220px !important;
	margin: 13px 0;
	opacity: .7;
}
.main-page-slider-nav .swiper-slide .slide-content {
	height: 220px;
	position: relative;
	border-radius: 7px;
	overflow: hidden;
}
.main-page-slider-nav .swiper-slide .slide-content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-page-slider-nav .swiper-slide .slide-content:after {
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,.4);
}
.main-page-slider-nav .swiper-slide .slide-content h4 {
	position: absolute;
	font-size: 30px;
	line-height: 38px;
	margin: 0;
	font-weight: 900;
	position: absolute;
	bottom: 15px;
	left: 20px;
	z-index: 1;
	padding-right: 10px;
	color: #fff;
}
/*.main-page-slider-nav .swiper-slide .slide-content h4 a {
	color: #fff;
	text-decoration: none;
}
.main-page-slider-nav .swiper-slide .slide-content h4 a:hover {
	text-decoration: underline;
}*/
.main-page-slider-nav .swiper-slide.swiper-slide-active {
	width: 360px;
	height: 270px !important;
	opacity: 1;
}
.main-page-slider-nav .swiper-slide.swiper-slide-active .slide-content {
	height: 270px;
}
.main-page-slider-nav .swiper-slide.swiper-slide-active h4 {
	font-size: 38px;
	line-height: 44px;
}
.swiper.main-page-slider-for {
	width: 1025px;
	padding: 80px;
	margin: 30px -80px 30px 0;
	border: 2px solid #E4231D;
	border-radius: 10px;
}
.swiper.main-page-slider-for .swiper-slide {
	background-color: #fff;
	opacity: 0 !important;
}
.swiper.main-page-slider-for .swiper-slide-active {
	opacity: 1 !important;
}
.slide-pic-title {
	width: 863px;
	height: 635px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.slide-pic-title:before {
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,.4);
}
.slide-pic-title img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide-pic-title h2 {
	margin: 0;
	padding-right: 15px;
	font-size: 74px;
	line-height: 84px;
	font-family: InterBlack;
	color: #fff;
	position: absolute;
	left: 50px;
	bottom: 50px;
	text-align: left;
}
.slide-info {
	padding: 40px 40px 0;
}
.slide-info h3 {
	font-size: 60px;
	line-height: 70px;
	font-weight: bold;
	margin: 20px 0 40px;
}
.slide-info p {
	margin-bottom: 30px;
}
.slide-info .detail-btn {
	margin-top: 50px;
}
@media(max-width: 1400px) {
	.main-page-sliders-wrap {
		display: block;
	}
	.swiper.main-page-slider-nav {
		width: 90% !important;
		height: auto;
		margin: 0 auto;
	}
	.swiper.main-page-slider-nav .swiper-slide:not(.swiper-slide-active) {
		height: 270px !important;
		display: flex;
		align-items: center;
	}
	.swiper.main-page-slider-nav .swiper-slide:not(.swiper-slide-active) .slide-content {
		height: 220px !important;
		width: 100%;
	}
	.swiper.main-page-slider-nav .swiper-slide .slide-content {
		margin: 0 10px;
	}
	.swiper-button-prev {
		width: 55px;
		transform: rotate(-90deg);
		left: 0;
		top: 140px;
	}
	.swiper-button-next {
		width: 55px;
		transform: rotate(-90deg);
		bottom: auto;
		left: auto;
		top: 140px;
		right: 0;
	}
	.swiper.main-page-slider-for {
		width: 100%;
		height: auto;
		margin: 20px 0;
		padding: 40px;
		position: relative;
		overflow: visible;
	}
	.swiper.main-page-slider-for:before {
		content: '';
		display: block;
		background-color: #fff;
		height: 45px;
		width: calc(100% + 10px);
		position: absolute;
		left: -5px;
		right: -5px;
		top: -5px;
	}
	.main-page-slider-for .swiper-slide {
		display: flex;
	}
	.slide-pic-title,
	.slide-info {
		width: 50%;
	}
	.slide-info {
		padding: 20px 0 0 50px;
	}
	.slide-info h3 {
		margin-top: 0;
	}
}
@media (max-width: 1200px) {
	.main-page-sliders h2 {
		font-size: 44px;
		line-height: 52px;
		margin-top: 0;
	}
	.main-page-slider-tabs a {
		font-size: 22px;
		line-height: 28px;
	}
	.main-page-slider-nav .swiper-slide.swiper-slide-active h4 {
		font-size: 34px;
		line-height: 40px;
	}
}
@media(max-width: 1000px) {
	.swiper.main-page-slider-nav {
		width: 85% !important;
	}
	.swiper.main-page-slider-for {
		margin: 0;
	}
	.slide-pic-title {
		display: none;
	}
	.slide-info {
		width: 100%;
		padding: 0;
	}
}
@media (max-width: 700px) {
	.main-page-sliders {
		padding: 50px 0;
	}
	.swiper-button-prev,
	.swiper-button-next {
		width: 40px;
	}
	.slide-info h3 {
		font-size: 38px;
		line-height: 46px;
	}
	.slide-info p {
		margin-bottom: 20px;
	}
	.slide-info .detail-btn {
		margin-top: 30px;
	}
}
@media (max-width: 650px) {
	.main-page-sliders h2 {
		font-size: 30px;
		line-height: 38px;
	}
}
@media (max-width: 560px) {
	.main-page-slider-tabs {
		flex-wrap: wrap;
	}
	.main-page-slider-tabs a:last-child {
		margin-left: 0;
	}
}
@media (max-width: 500px) {
	.main-page-sliders {
		padding: 50px 0 20px;
	}
	.main-page-slider-tabs a {
		font-size: 18px;
		line-height: 24px;
	}
	.swiper.main-page-slider-nav {
		width: 80% !important;
	}
	.swiper.main-page-slider-for {
		padding: 25px;
	}
	.swiper.main-page-slider-for:before {
		height: 25px;
	}
	.slide-info h3 {
		margin-bottom: 20px;
		margin-top: -10px
	}
}
@media (max-width: 400px) {
	.swiper-button-prev,
	.swiper-button-next {
		width: 35px;
	}
}

footer {
	position: relative;
}
footer:before {
	content: '';
	width: 965px;
	height: 2px;
	background-color: #EE4731;
	position: absolute;
	left: 0;
	right: 0;
	top: 200px;
	margin: auto;
}
footer .contact,
footer .soc {
	margin-top: 80px;
}
@media(max-width: 1200px) {
	footer:before {
		top: 170px;
	}
}
@media (max-width: 1000px) {
	footer:before {
		display: none;
	}
	footer .contact,
	footer .soc {
		margin: 0;
	}
}

/* emirate */
.emirate-h1 {
	text-align: center;
	text-transform: uppercase;
	font-size: 60px;
	line-height: 70px;
}
.emirate-main-pic {
	display: block;
	width: 100%;
	border-radius: 10px;
}
.emirate-info {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 50px 0;
}
.emirate-info:before,
.emirate-info:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #ff0000;
	position: absolute;
	left: 0;
	z-index: -1;
}
.emirate-info:before {
	top: 30%;
}
.emirate-info:after {
	bottom: 30%;
}
.emirate-info-menu {
	border: 1px solid #e4231d;
    border-radius: 10px;
    background-color: #fff;
	padding: 15px 40px 0;
	width: 40%;
}
.emirate-info-menu h4 {
	font-family: InterBlack, sans-serif;
	font-size: 32px;
	line-height: 40px;
	margin: 10px 0 20px;
}
.emirate-info-menu ul li {
	font-size: 26px;
	line-height: 32px;
	padding: 10px 0 10px 10px;
	list-style: none;
	position: relative;
}
.emirate-info-menu ul li:before {
	content: url(../img/list.svg);
	position: absolute;
	left: -40px;
	top: 12px;
}
.emirate-info-menu ul li a {
 	color: #414141;
 	text-decoration: none;
}
.emirate-info-menu ul li a:hover {
 	text-decoration: underline;
}
.emirate-info-pic {
	width: 56%;
}
.emirate-info-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}
@media (max-width: 1200px) {
	.emirate-info-menu {
		width: 58%;
	}
	.emirate-info-pic {
		width: 35%;
	}
}
@media (max-width: 1000px) {
	.emirate-h1 {
		font-size: 44px;
		line-height: 52px;
		margin: 20px 0 30px;
	}
	.emirate-info {
		padding: 25px 0;
	}
	.emirate-info-menu {
		width: 58%;
		padding: 15px 30px 0;
	}
	.emirate-info-menu ul li {
		font-size: 24px;
		line-height: 30px;
	}
}
@media (max-width: 800px) {
	.emirate-info-menu {
		width: 61%;
	}
	.emirate-info-menu h4 {
		font-size: 24px;
		line-height: 30px;
	}
	.emirate-info-menu ul li {
		font-size: 20px;
		line-height: 26px;
		padding: 7px 0 7px 10px;
	}
	.emirate-info-menu ul li:before {
		top: 7px;
	}
}
@media (max-width: 600px) {
	.emirate-h1 {
		font-size: 26px;
		line-height: 34px;
		margin: 15px 0;
	}
	.emirate-info-menu {
		width: 100%;
	}
	.emirate-info-pic,
	.emirate-info:before,
	.emirate-info:after {
		display: none;
	}
}
@media (max-width: 480px) {
	.emirate-info {
		padding: 15px 0;
	}
	.emirate-info-menu {
		padding: 10px 25px 15px;
	}
	.emirate-info-menu h4 {
		margin: 10px 0 0;
		font-size: 14px;
		line-height: 20px;
	}
	.emirate-info-menu ul {
		margin-top: 5px;
		margin-bottom: 5px;
		padding-left: 30px;
	}
	.emirate-info-menu ul li {
		font-size: 14px;
		line-height: 20px;
		padding: 5px 0 5px 0;
	}
	.emirate-info-menu ul li:before {
		content: url('../img/list-small.svg');
		left: -30px;
	}
}

.emirate-geo {
	display: flex;
	justify-content: space-between;
}
.emirate-geo-content {
	/*width: 905px;*/
	width: 62.8%;
}
.emirate-geo-slider {
	/*width: 625px;*/
	width: 69.3%;
	min-height: 385px;
	border: 1px solid #E4231D;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom: 0;
	background-color: #fff;
	position: relative;
	bottom: -2px;
	padding: 15px 15px 0;
}
.emirate-geo-slider .slick-dotted.slick-slider {
	margin-bottom: 0;
}
.emirate-geo-slider .slick-dots {
	bottom: -30px;
}
.emirate-geo-slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
}
.emirate-geo-slider .slick-dots li button {
    width: 10px;
    height: 10px;
}
.emirate-geo-slider .slick-dots li button::before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    content: '';
    opacity: 1;
    display: block;
    border-radius: 50%;
    background-color: #BCBCBC;
}
.emirate-geo-slider .slick-dots li.slick-active button:before {
	background: linear-gradient(
	  125deg,
	  #ae1716,
	  #ff8855 31%,
	  #e4231d 73%,
	  #e4231d 100%
	);
}
.emirate-geo-slider:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	position: absolute;
	right: -15px;
	bottom: -5px;
}
.emirate-geo-slider:after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-bottom-left-radius: 10px;
	border-bottom: 1px solid #E4231D;
	border-left: 1px solid #E4231D;
	position: absolute;
	bottom: 1px;
	right: -16px;
}
.emirate-geo-slider .slide {
	padding: 0 5px;
}
.emirate-geo-slider img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
.emirate-geo-text {
	border: 1px solid #E4231D;
	border-radius: 10px;
	border-top-left-radius: 0;
	padding: 40px 30px 20px;
}
.emirate-geo-text h2 {
	color: #fff;
	font-size: 55px;
	line-height: 65px;
	text-align: center;
	background-color: #E4231D;
	border-radius: 10px;
	padding: 10px 30px;
	margin: 15px 0 5px;
	display: inline-block;
}
.emirate-geo-map {
	/*width: 500px;*/
	width: 34.7%;
	border: 1px solid #E4231D;
	border-radius: 10px;
	border-top-left-radius: 0;
	position: relative;
	margin-top: 2px;
	padding: 10px;
}
.emirate-geo-map-support {
	/*width: 280px;*/
	width: 56.2%;
	height: 356px;
	border: 1px solid #E4231D;
	border-right: 0;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	background-color: #fff;
	position: absolute;
	/*left: -280px;*/
	left: -56%;
	top: -1px;
}
.emirate-geo-map-support:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	position: absolute;
	right: -5px;
	bottom: -15px;
}
.emirate-geo-map-support:after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top-right-radius: 10px;
	border-top: 1px solid #E4231D;
	border-right: 1px solid #E4231D;
	position: absolute;
	bottom: -16px;
	right: 1px;
}
.emirate-map {
	display: block;
	max-width: 110%;
	position: relative;
	left: -10%;
	bottom: -30px;
}
.pers-zaliv,
.oman-zaliv {
	position: absolute;
	font-size: 20px;
	line-height: 26px;
}
.emirate-wave {
	width: 63px;
}
.pers-zaliv {
	top: 130px;
	left: -220px;
}
.pers-wave-1 {
	position: absolute;
	top: 40px;
	left: -160px;
}
.pers-wave-2 {
	position: absolute;
	top: 280px;
	left: -240px;
}
.pers-wave-3 {
	position: absolute;
	top: 420px;
	left: 20px;
}
.oman-zaliv {
	top: 160px;
	right: 50px;
}
.oman-wave-1 {
	position: absolute;
	top: 60px;
	right: 150px;
}
.oman-wave-2 {
	position: absolute;
	top: 320px;
	right: 40px;
}
@media (max-width: 1400px) {
	.emirate-map {
		bottom: -60px;
	}
	.pers-zaliv {
		left: -200px;
	}
	.pers-wave-2 {
		left: -190px;
	}
	.oman-wave-2 {
		right: 20px;
	}
}
@media (max-width: 1300px) {
	.pers-wave-3 {
		top: 400px;
		left: 10px;
	}
}
@media (max-width: 1200px) {
	.emirate-geo {
		flex-wrap: wrap;
	}
	.emirate-geo-content,
	.emirate-geo-slider,
	.emirate-geo-map {
		width: 100%;
	}
	.emirate-geo-slider:before,
	.emirate-geo-slider:after,
	.emirate-geo-map-support,
	.emirate-geo-map-support:before,
	.emirate-geo-map-support:after {
		display: none;
	}
	.emirate-geo-slider {
		min-height: 0;
	}
	.emirate-geo-text {
		 border-radius: 0 0 10px 10px;
	}
	.emirate-geo-text h2 {
		margin-top: 30px;
	}
	.emirate-geo-map {
		border-radius: 10px;
		margin-top: 20px;
	}
	.emirate-map {
		position: static;
		float: right;
		margin: 20px 20px 0;
		left: auto;
		right: 0;
	}
	.pers-zaliv {
		left: auto;
		right: 77%;
	}
	.pers-wave-1 {
		left: auto;
		right: 70%;
		top: 30px;
	}
	.pers-wave-2 {
		left: auto;
		top: 350px;
		right: 89%;
	}
	.pers-wave-3 {
		top: 500px;
		left: auto;
		right: 60%;
	}
	.oman-zaliv {
		right: 130px;
	}
	.oman-wave-1 {
		top: 70px;
		right: 190px;
	}
	.oman-wave-2 {
		right: 60px;
	}
}
@media (max-width: 980px) {
	.pers-zaliv {
		right: 75%;
	}
	.pers-wave-1 {
		right: 80%;
	}
}
@media (max-width: 850px) {
	.emirate-map {
		max-width: 70%
	}
	.pers-zaliv {
		top: 45%;
		right: 65%;
		font-size: 2.5vw;
		line-height: 2.6vw;
	}
	.oman-zaliv {
		top: 20%;
		right: 10%;
		font-size: 2.5vw;
		line-height: 2.6vw;
	}
	.pers-wave-1,
	.pers-wave-2,
	.pers-wave-3,
	.oman-wave-1,
	.oman-wave-2 {
		width: 8vw;
	}
	.pers-wave-1 {
		right: 80%;
		top: 15%;
	}
	.pers-wave-2 {
		right: 80%;
		top: 55%;
	}
	.pers-wave-3 {
		top: 85%;
		right: 70%;
	}
	.oman-wave-1 {
		top: 10%;
		right: 10%;
	}
	.oman-wave-2 {
		top: 45%;
		right: 10%;
	}
}
@media (max-width: 700px) {
	.emirate-geo-text h2 {
		font-size: 36px;
		line-height: 42px;
	}
	.emirate-geo-text {
		padding: 30px 20px 10px;
		font-size: 14px;
		line-height: 18px;
	}
}
@media (max-width: 500px) {
	.emirate-geo-text h2 {
		font-size: 24px;
		line-height: 32px;
		margin-top: 20px;
		padding: 10px 20px;
	}
	.emirate-map {
		max-width: 80%
	}
	.pers-zaliv {
		right: 71%;
	}
	.pers-wave-1 {
		right: 88%;
	}
	.pers-wave-2 {
		top: 57%;
		right: 85%;
	}
	.pers-wave-3 {
		right: 80%;
	}
}

.emirate-climate {
	margin: 50px 0;
	border: 1px solid #E4231D;
	border-radius: 10px;
	padding: 0 0 30px 30px;
}
.emirate-climate h2 {
	color: #fff;
	font-size: 55px;
	line-height: 65px;
	text-align: center;
	background-color: #E4231D;
	border-radius: 10px;
	padding: 10px 30px;
	margin: 30px 0 20px;
	display: inline-block;
}
.emirate-text-1 {
	padding-right: 15px;
}
.emirate-climate-pic {
	padding: 20px 0 20px 20px;
	border-bottom-left-radius: 10px;
	border-left: 1px solid #E4231D;
	border-bottom: 1px solid #E4231D;
	border-top: 1px solid #fff;
	border-right: 2px solid #fff;
	display: inline-block;
	margin-left: 15px;
	float: right;
	width: 46%;
	position: relative;
	top: -1px;
	right: -2px;
	background-color: #fff;
}
.emirate-climate-pic:before,
.emirate-climate-pic-support {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	position: absolute;
}
.emirate-climate-pic:before {
	right: -5px;
	bottom: -15px;
}
.emirate-climate-pic-support {
	left: -15px;
	top: -5px;
}
.emirate-climate-pic:after,
.emirate-climate-pic-support:after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top-right-radius: 10px;
	border-top: 1px solid #E4231D;
	border-right: 1px solid #E4231D;
	position: absolute;
}
.emirate-climate-pic:after {
	bottom: -16px;
	right: -1px;
}
.emirate-climate-pic-support:after {
	top: 4px;
	left: -1px;
}
.emirate-climate-pic img {
	display: block;
	width: 100%;
}
.emirate-climate p {
	padding-right: 10px;
}
p.margin-0,
.emirate-climate ul {
	margin: 0;
}
.weather {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 25px;
	width: 100%;
}
.weather h3 {
	font-size: 28px;
	line-height: 36px;
	font-weight: bold;
	width: 100%;
}
.weather-item {
	width: 210px;
	margin-left: 5px;
	border: 1px solid #E4231D;
	border-radius: 7px;
	overflow: hidden;
}
.weather-item.weather-today {
	margin: 0;
}
.weather-day {
	text-transform: lowercase;
}
.weather-item-hat {
	padding: 4px 0;
	text-align: center;
	font-size: 32px;
	line-height: 40px;
	border-bottom: 1px solid #E4231D;
	color: #414141;
}
.weather-item-body {
	padding: 5px 7px;
}
.weather-today .weather-item-hat {
	padding: 3px 0;
	color: #fff;
	font-size: 36px;
	line-height: 42px;
	background-color: #E4231D;
}
.weather-today .weather-day {
	text-transform: uppercase;
}
.weather-temp-table {
	border-collapse: collapse;
	width: 100%;
}
.weather-temp-table td {
	width: 50%;
}
.weather-temp-table td:first-child {
	text-transform: uppercase;
	font-size: 20px;
	line-height: 28px;
}
.weather-temp-table td:last-child {
	text-align: right;
}
.weather-temp-day {
	font-size: 26px;
	line-height: 32px;
}
.weather-temp-night {
	font-size: 26px;
	line-height: 32px;
	color: #E4231D;
}
.weather-condition {
	display: flex;
	margin-top: 2px;
	border-top: 1px solid #E4231D;
}
.weather-condition-pic {
	width: 25%;
	background-color: rgba(255,255,255,0.8);
	text-align: center;
	border-radius: 50%;
	margin-top: 3px;
	padding: 2px;
}
.weather-condition-pic img {
	width: 100%;
	display: block;
}
.weather-condition-text {
	width: 75%;
	font-size: 18px;
	line-height: 22px;
	text-align: right;
	text-transform: lowercase;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.weather-slider {
	width: 915px;
	margin-right: 85px;
}
.weather-slider .slick-prev,
.weather-slider .slick-next {
	width: 50px;
	height: 50px;
}
.weather-slider .slick-next {
	right: -60px;
}
.weather-slider .slick-prev {
	left: -20px;
	z-index: 1;
}
.weather-slider .slick-prev:before,
.weather-slider .slick-next:before {
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
    background-size: cover;
}
.weather-slider .slick-prev:before {
	background-image: url('../img/emirate/arr-left.svg');
}
.weather-slider .slick-next:before {
	background-image: url('../img/emirate/arr-right.svg');
}
.weather-slider .slick-prev.slick-disabled,
.weather-slider .slick-next.slick-disabled {
	cursor: default;
}
.weather-slider .slick-prev.slick-disabled:before,
.weather-slider .slick-next.slick-disabled:before {
	opacity: 0;
}
@media (max-width: 1300px) {
	.weather-slider {
		width: 730px;
	}
	.weather-item {
	    width: 160px;
	}
	.weather-item-hat {
	    font-size: 24px;
	    line-height: 30px;
	}
	.weather-today .weather-item-hat {
		font-size: 26px;
		line-height: 32px;
	}
	.weather-temp-table td:first-child,
	.weather-condition-text {
	    font-size: 14px;
	    line-height: 18px;
	}
	.weather-temp-day,
	.weather-temp-night {
	    font-size: 19px;
	    line-height: 25px;
	}
}
@media (max-width: 1100px) {
	.weather-slider {
		width: 560px;
		margin-right: 85px;
	}
}
@media (max-width: 1000px) {
	.emirate-climate-pic {
		padding: 10px 0 10px 10px;
	}
}
@media (max-width: 900px) {
	.weather-slider {
		width: 420px;
		margin-right: 85px;
	}
}
@media (max-width: 800px) {
	.weather-slider {
		width: 360px;
		margin-right: 35px;
	}
	.weather-slider .slick-next {
	    right: -25px;
	}
	.weather-slider .slick-prev,
	.weather-slider .slick-next,
	.weather-slider .slick-prev:before,
	.weather-slider .slick-next:before {
		width: 30px;
		height: 30px;
	}
}
@media (max-width: 700px) {
	.emirate-climate {
		font-size: 14px;
		line-height: 18px;
		padding: 0 0 20px 20px;
	}
	.emirate-climate h2 {
		font-size: 36px;
		line-height: 42px;
		margin: 20px 0 5px;
	}
	.weather {
		padding-top: 15px;
	}
	.weather h3 {
		font-size: 20px;
		line-height: 28px;
	}
}
@media (max-width: 650px) {
	.weather-slider {
		width: 240px;
		margin-right: 35px;
	}
	.weather-slider .slick-prev,
	.weather-slider .slick-next,
	.weather-slider .slick-prev:before,
	.weather-slider .slick-next:before {
		width: 25px;
		height: 25px;
	}
	.weather-slider .slick-next {
	    right: -27px;
	}
	.weather-slider .slick-prev {
		left: -8px;
	}
	.weather-item {
	    width: 110px;
	}
	.weather-item-hat {
	    font-size: 15px;
	    line-height: 21px;
	}
	.weather-today .weather-item-hat {
		font-size: 16px;
		line-height: 22px;
	}
	.weather-temp-table td:first-child,
	.weather-condition-text {
	    font-size: 10px;
	    line-height: 14px;
	}
	.weather-temp-day,
	.weather-temp-night {
	    font-size: 12px;
	    line-height: 16px;
	}
}
@media (max-width: 600px) {
	.emirate-climate {
		padding: 0 20px 20px 20px;
		display: flex;
		flex-direction: column;
	}
	.emirate-climate-pic {
		border: none;
		padding: 0;
		margin: 0 0 15px;
		float: none;
		width: 100%;
		position: static;
		order: 3;
	}
	.emirate-climate-pic:before,
	.emirate-climate-pic:after,
	.emirate-climate-pic-support,
	.emirate-climate-pic-support:after {
		display: none;
	}
	.emirate-climate h2 {
		align-self: flex-start;
		order: 1;
	}
	.emirate-text-1 {
		order: 2;
		padding-right: 0;
	}
	.emirate-text-2 {
		order: 4;
	}
	.emirate-text-3 {
		order: 5;
	}
	.emirate-text-4 {
		order: 6;
	}
	.weather {
		order: 7;
	}
	.weather-slider {
		margin-right: 15px;
	}
}
@media (max-width: 500px) {
	.emirate-geo-text {
	    padding: 30px 15px 10px;
	}
	.emirate-climate {
	    padding: 0 15px 20px;
	}
	.emirate-climate h2 {
		font-size: 24px;
		line-height: 32px;
		padding: 10px 20px;
	}
}
@media (max-width: 450px) {
	.weather-slider {
		width: 125px;
	}
}

.emirate-osob {
	padding: 30px 0;
}
.emirate-osob h2 {
	color: #fff;
	font-size: 55px;
	line-height: 65px;
	text-align: center;
	background-color: #E4231D;
	border-radius: 10px;
	padding: 10px 30px;
	margin: 30px 0 50px;
	display: inline-block;
}
.emirate-osob-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.emirate-osob-item:nth-child(odd) .emirate-osob-text {
	order: 1;
}
.emirate-osob-item:nth-child(odd) .emirate-osob-pic {
	order: 2;
}
.emirate-osob-item:nth-child(odd) .emirate-osob-title {
	left: -73%;
}
.emirate-osob-item:nth-child(even) .emirate-osob-title {
	right: -73%;
}
.emirate-osob-pic {
	width: 31.5%;
	position: relative;
}
.emirate-osob-pic img {
	display: block;
	max-width: 100%;
	position: relative;
	z-index: 3;
}
.emirate-osob-title {
	color: #777;
	font-size: 1.5vw;
	line-height: 1.7vw;
	position: absolute;
	border: 1px solid #E4231D;
	border-radius: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6vw;
	top: 0;
	bottom: 0;
	margin: auto;
	font-family: InterBlack;
	cursor: pointer;
	width: 80%;
}
@media (min-width: 1921px) {
	.emirate-osob-title {
		font-size: 30px;
		line-height: 38px;
	}
}
.emirate-osob-title:hover {
	text-decoration: underline;
}
.emirate-osob-text {
	border: 1px solid #E4231D;
	border-radius: 10px;
	background-color: #fff;
	position: relative;
	z-index: 2;
	width: 48%;
	height: 0;
	min-height: 0;
	overflow: hidden;
	padding: 0;
	opacity: 0;
	transition: .4s;
	display: flex;
	align-items: center;
}
.emirate-osob-text.visible {
	height: auto;
	min-height: 200px;
	padding: 25px 30px;
	margin: 25px 0;
	opacity: 1;
}
@media (max-width: 1000px) {
	.emirate-osob-item {
		flex-wrap: wrap;
		margin-bottom: 15px;
	}
	.emirate-osob-pic,
	.emirate-osob-text {
		width: 100%;
	}
	.emirate-osob-pic {
		z-index: 3;
	}
	.emirate-osob-pic img {
		width: 52%;
	}
	.emirate-osob-item:nth-child(odd) img {
		margin-left: auto;
	}
	.emirate-osob-title {
		width: 50%;
		font-size: 3.5vw;
		line-height: 3.8vw;
		height: 12vw;
		background-color: #fff;
	}
	.emirate-osob-item:nth-child(odd) .emirate-osob-title {
		left: 0;
	}
	.emirate-osob-item:nth-child(even) .emirate-osob-title {
		right: 0;
	}
	.emirate-osob-item:nth-child(odd) .emirate-osob-text {
		order: 2;
	}
	.emirate-osob-item:nth-child(odd) .emirate-osob-pic {
		order: 1;
	}
	.emirate-osob-text.visible {
		margin-top: -30px;
		margin-bottom: 0;
		position: relative;
		padding: 40px 20px 20px;
		min-height: auto;
	}
	.emirate-osob-item:nth-child(odd) .emirate-osob-text.visible {
		margin-right: 7px;
	}
	.emirate-osob-item:nth-child(even) .emirate-osob-text.visible {
		margin-left: 7px;
	}
}
@media (max-width: 700px) {
	.emirate-osob {
		padding-top: 0;
	}
	.emirate-osob h2 {
		font-size: 36px;
		line-height: 42px;
		margin: 20px 0 30px;
	}
	.emirate-osob-text {
		font-size: 14px;
		line-height: 18px;
	}
}
@media (max-width: 500px) {
	.emirate-osob h2 {
		font-size: 24px;
		line-height: 32px;
		padding: 10px 20px;
	}
	.emirate-osob-item {
		justify-content: center;
	}
	.emirate-osob-pic img {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
	.emirate-osob-title {
		font-size: 20px;
		line-height: 26px;
		position: static;
		height: auto;
		padding: 15px 10px;
		width: 100%;
		max-width: 240px;
		margin: -5px auto 0;
		border-radius: 5px;
	}
}


.emirate-dost {
	padding: 50px 0;
}
.emirate-dost h2 {
	color: #fff;
	font-size: 55px;
	line-height: 65px;
	text-align: center;
	background-color: #E4231D;
	border-radius: 10px;
	padding: 10px 30px;
	margin: 30px 0 50px;
	display: inline-block;
}
.dost-swiper-nav {
	padding: 50px 0 20px;
}
.dost-swiper-nav:before {
	content: '';
	display: block;
	position: absolute;
	width: 94%;
	height: 230px;
	border: 2px solid #E4231D;
	border-top: 0;
	border-bottom-left-radius: 50% 230px; 
	border-bottom-right-radius: 50% 230px;
	left: 3%;
	top: 30px;
}
.dost-swiper-button-prev,
.dost-swiper-button-next {
	display: block;
	position: absolute;
	cursor: pointer;
	border-radius: 50%;
	z-index: 2;
}
.dost-swiper-button-prev {
	top: 10px;
	left: 0;
}
.dost-swiper-button-next {
	right: 0;
	top: 10px;
}
.dost-swiper-nav .swiper-slide img {
	display: block;
	max-width: 100%;
	border-radius: 5px;
}
.dost-swiper-nav .swiper-slide {
	transform: scale(.6);
	transition: .2s;
}
.dost-swiper-nav .swiper-slide.swiper-slide-prev,
.dost-swiper-nav .swiper-slide.swiper-slide-next {
	transform: scale(.8);
	margin-top: 100px;
	position: relative;
}
.dost-swiper-nav .swiper-slide.swiper-slide-prev {
	left: -25px;
}
.dost-swiper-nav .swiper-slide.swiper-slide-next {
	right: -25px;
}
.dost-swiper-nav .swiper-slide.swiper-slide-active {
	transform: scale(1);
	margin-top: 150px;
	position: relative;
}
.dost-swiper-nav .swiper-slide.swiper-slide-active:before {
	content: '';
	height: 100%;
	position: absolute;
	top: 3%;
	left: -3%;
	right: -3%;
	border-radius: 5px;
	background: linear-gradient(
	  125deg,
	  #ae1716,
	  #cf4530 13%,
	  #ff8855 28%,
	  #e4231d 57%,
	  #ff8855 87%,
	  #e4231d 100%
	);
	z-index: -1;
}
.dost-swiper-info .swiper-slide {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-top: 30px;
	background-color: #fff;
}
.dost-swiper-info .swiper-slide:before {
	content: '';
	border: 1px solid #E4231D;
	display: block;
	width: 80%;
	height: 50%;
	position: absolute;
	z-index: -1;
	left: 0;
	right: 0;
	margin: auto;
	top: 12%;
	border-radius: 10px;
}
.dost-swiper-info h3 {
	font-size: 35px;
	line-height: 42px;
	color: #fff;
	text-align: center;
	padding: 10px 15px;
	background-color: #E4231D;
	border-radius: 10px;
	margin: 0;
	width: 32.6%;
	order: 2;
	margin-bottom: 37%;
	align-self: flex-start;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dost-swiper-info-left,
.dost-swiper-info-right {
	border: 2px solid #E4231D;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 28%;
	background-color: #fff;
}
.dost-swiper-info-left {
	order: 1;
}
.dost-swiper-info-right {
	order: 3;
}
.dost-swiper-info-pic {
	width: 32.6%;
	border-radius: 10px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 0;
}
@media (max-width: 1200px) {
	.dost-swiper-info h3,
	.dost-swiper-info-pic {
		width: 37%;
	}
}
@media (max-width: 1100px) {
	.dost-swiper-info .swiper-slide {
		flex-wrap: wrap;
		justify-content: center;
	}
	.dost-swiper-info .swiper-slide:before {
		top: 5%;
	}
	.dost-swiper-info h3 {
		order: 1;
		margin-bottom: 20px;
		width: 52%;
	}
	.dost-swiper-info-left,
	.dost-swiper-info-right {
		width: 45%;
		margin: 0 2%;
	}
	.dost-swiper-info-left {
		order: 2;
	}
	.dost-swiper-info-pic {
		position: static;
		display: block;
		margin: 20px auto;
		order: 4;
		width: 94%;
	}
}
@media (max-width: 1000px) {
	.dost-swiper-nav:before {
		width: 92%;
		left: 4%;
		height: 180px;
		border-bottom-left-radius: 50% 180px; 
		border-bottom-right-radius: 50% 180px;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-prev,
	.dost-swiper-nav .swiper-slide.swiper-slide-next {
		transform: scale(.7);
		margin-top: 20px;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-prev {
		left: 0;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-next {
		right: 0;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-active {
		margin-top: 100px;
	}
}
@media (max-width: 700px) {
	.emirate-dost h2 {
		font-size: 36px;
		line-height: 42px;
		margin: 20px 0 30px;
	}
	.dost-swiper-info .swiper-slide {
		font-size: 14px;
		line-height: 18px;
	}
	.dost-swiper-info h3 {
		font-size: 24px;
		line-height: 32px;
		width: 60%;
	}
	.dost-swiper-info-left,
	.dost-swiper-info-right {
		width: 47%;
		margin: 0 1%;
	}
	.dost-swiper-info-pic {
		width: 96%;
	}
}
@media (max-width: 600px) {
	.dost-swiper-nav:before {
		height: 120px;
		border-bottom-left-radius: 50% 120px; 
		border-bottom-right-radius: 50% 120px;
	}
	.dost-swiper-button-prev,
	.dost-swiper-button-next {
		width: 45px;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-prev,
	.dost-swiper-nav .swiper-slide.swiper-slide-next {
		transform: scale(.7);
		margin-top: 0;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-active {
		margin-top: 50px;
	}
}
@media (max-width: 500px) {
	.emirate-dost h2 {
		font-size: 24px;
		line-height: 32px;
		padding: 10px 20px;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-active {
		margin-top: 20px;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-active:before {
		width: 255px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.dost-swiper-nav .swiper-slide.swiper-slide-active img {
		margin: 0 auto;
		max-width: 235px;
	}
	.dost-swiper-info h3 {
		font-size: 20px;
		line-height: 28px;
		width: 70%;
	}
	.dost-swiper-info-left,
	.dost-swiper-info-right {
		width: 100%;
		margin: 0;
	}
	.dost-swiper-info-left {
		margin-bottom: 20px;
	}
	.dost-swiper-info-pic {
		width: 100%;
	}
}

/* single page */
.page-title {
	position: relative;
	margin-bottom: 50px;
}
.page-title-pic {
	display: block;
	border-radius: 10px;
	width: 100%;
}
.page-title h1 {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 30px 30px 15px;
	border-top-left-radius: 10px;
	background-color: #fff;
	color: #E4231D;
	font-size: 80px;
	line-height: 80px;
	font-family: InterBold;
	max-width: 70%;
}
.page-title h1:before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #fff;
	bottom: 0;
	left: -10px;
	-webkit-mask: radial-gradient(circle 10px at 0px 0px, transparent 10px, black 11px);
  	mask: radial-gradient(circle 10px at 0px 0px, transparent 10px, black 11px);
}
.page-title h1:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #fff;
	top: -10px;
	right: 0;
	-webkit-mask: radial-gradient(circle 10px at 0px 0px, transparent 10px, black 11px);
  	mask: radial-gradient(circle 10px at 0px 0px, transparent 10px, black 11px);
}
@media (max-width: 1400px) {
	.page-title h1 {
		font-size: 60px;
		line-height: 68px;
	}
}
@media (max-width: 1200px) {
	.page-title h1 {
		font-size: 46px;
		line-height: 52px;
	}
}
@media (max-width: 1000px) {
	.page-title h1 {
		max-width: 80%;
	}
}
@media (max-width: 800px) {
	.page-title {
		margin-bottom: 0;
	}
	.page-title h1 {
		max-width: 100%;
		border-radius: 0;
		position: static;
		padding: 30px 0 15px;
	}
	.page-title h1:before,
	.page-title h1:after {
		display: none;
	}
}
@media (max-width: 600px) {
	.page-title h1 {
		font-size: 36px;
		line-height: 42px;
	}
}

.archive-h1 {
	font-size: 60px;
	line-height: 70px;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
.archive-filtr {
	display: flex;
	overflow: auto;
	gap: 20px;
	justify-content: space-between;
	padding-bottom: 30px;
}
.archive-filtr button {
	cursor: pointer;
	background-color: transparent;
	outline: none;
	border: 1px solid #D9D9D9;
	border-radius: 5px;
	padding: 5px 10px;
	transition: .2s;
	white-space: nowrap;
}
.archive-filtr button:hover {
	box-shadow: 2px 2px 5px #D9D9D9;
}
.archive-filtr button.active {
	color: #fff;
	background: linear-gradient( 125deg, #ae1716, #cf4530 13%, #ff8855 28%, #e4231d 57%, #ff8855 87%, #e4231d 100% );
}
.archive-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25%;
}
.archive-item {
	width: 32.5%;
	padding: 15px;
	margin-bottom: 30px;
	position: relative;
}
.archive-item:before {
	content: '';
	display: block;
	border-radius: 10px;
	border: 1px solid #E4231D;
	position: absolute;
	bottom: 0;
	top: 10%;
	left: 0;
	right: 0;
}
.archive-item > img {
	display: block;
	max-width: 100%;
	border-radius: 10px;
	position: relative;
}
.archive-item h4 {
	margin: 20px 0 0;
	font-size: 30px;
	line-height: 36px;
	position: relative;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
.archive-item a {
	color: #E4231D;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.archive-item a:hover {
	text-decoration: underline;
}
.archive-item a img {
	margin-left: 10px;
}
.archive-item-hidden {
	display: none;
}
.archive-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    display: flex;
    overflow: auto;
    opacity: 0;
    z-index: -1;
    transition: .3s;
}
.archive-popup.open {
	opacity: 1;
    z-index: 10;
}
.archive-popup-content {
    background-color: #fff;
    position: relative;
    padding: 30px 50px;
    border: 1px solid #E4231D;
    border-radius: 10px;
    margin: auto;
    width: 95%;
    max-width: 1000px;
}
.archive-popup-content h2 {
	line-height: 36px;
}
.close-archive-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.see-more-btn {
	margin: 20px auto 50px;
	cursor: pointer;
}
@media (max-width: 1200px) {
	.archive-item h4 {
		font-size: 24px;
		line-height: 30px;
	}
	.archive-item a img {
		width: 35px;
	}
}
@media (max-width: 1000px) {
	.archive-h1 {
		font-size: 44px;
		line-height: 52px;
	}
	.archive-wrap {
		gap: 2%;
	}
	.archive-item {
		width: 49%;
	}
}
@media (max-width: 600px) {
	.archive-h1 {
		font-size: 26px;
		line-height: 34px;
	}
	.archive-item {
		margin-bottom: 20px;
	}
	.archive-item h4 {
		font-size: 20px;
		line-height: 24px;
	}
	.archive-item a img {
		width: 25px;
	}
}
@media (max-width: 450px) {
	.archive-item {
		width: 100%;
	}
	.archive-popup-content {
	    padding: 30px;
	}
	.archive-popup-text {
		font-size: 14px;
		line-height: 18px;
	}
}