.wf-loading body {
    visibility: hidden;
}

html,
body {
    height: 100% !important;
    -webkit-font-smoothing: antialiased;
}

body {
    height: auto !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #fff;
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

a,
:focus {
    outline: none;
}


/* ===== Main ===== */

.container-fluid {
  max-width: 1180px;
  padding-left: 10px;
  padding-right: 10px;
}

#scroll-down,
#scroll-down-short {
    background: url('../images/layout/scroll-down.gif') no-repeat;
    background-size: 100% 100%;
    width: 70px;
    height: 69px;
    position: absolute;
    top: 200px;
    left: 50%;
    margin-left: -35px;
    cursor: pointer;
}

#scroll-down-short.alt,
#scroll-down.alt {
    background: url('../images/layout/scroll-down-alt.gif') no-repeat;
    background-size: 100% 100%;
}

.main {
    padding-bottom: 105px;
}

.main .main-image {
    position: relative;
    height: 860px;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
}

.main .main-image .container-fluid {
    position: relative;
    height: 100%;
}

.relative {
    position: relative;
}

.big-letter {
    position: absolute;
    top: -53px;
    left: -5px;
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 120px;
    color: #e4dfda;
    z-index: 1;
}

.first-letter {
    position: relative;
    z-index: 9;
}

.intro-text,
p.purple {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    line-height: 38px;
    text-indent: 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

p {
    text-indent: 30px;
    font-size: 17px;
    line-height: 26px;
}

p strong {
    font-weight: 600;
}

p.purple {
    font-weight: 400;
    color: #680432;
}


/* ===== Navigation ===== */

header .navbar {
    height: 175px;
    background-color: #fff;
    width: 100%;
    border: 0;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    border: 0;
    min-height: 40px;
}

header .navbar-nav {
    margin-right: 0;
    margin-top: 127px;
}

header .navbar .navbar-nav li {
    margin-right: 40px;
}

header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

header .navbar .navbar-nav li.active span a {
    font-weight: 700;
}

header .navbar .navbar-nav li span a {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #513628;
}

header .navbar .navbar-nav li span a:hover {
    text-decoration: none;
    border-bottom: 1px solid #513628;
}

header .navbar .navbar-nav li span {
    position: relative;
    display: inline-block;
}

header .navbar .navbar-nav li span:before {
    content: "";
    position: absolute;
    height: 1px;
    border-top: 1px solid #513628;
    top: 50%;
    width: 30px;
    right: 100%;
    margin-right: 6px;
}

header .navbar .navbar-nav li:first-child span:before {
    display: none;
}

header .navbar .logo {
    background:url('../images/layout/logo.svg') no-repeat;
    background-size: 100% 100%;
    width: 338px;
    height: 144px;
    float: left;
    text-indent:-9999px;
    display:block;
}

header .navbar.affix {
    background-color: #d8d1ca;
    height: 46px;
    min-height: 46px;
    position: fixed;
    top: 0;
    z-index: 999;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    animation: affixFadeIn 0.5s ease-in;
    -webkit-animation: affixFadeIn 0.5s;
}

@keyframes affixFadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}

@-webkit-keyframes affixFadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}

@-moz-keyframes affixFadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}

@-o-keyframes affixFadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}

header .navbar.affix.affixed,
header .navbar.affix:hover {
    opacity: 1;
}

header .navbar.affix .logo {
    background:url('../images/layout/logo-affix.svg') no-repeat;
    background-size: 100% 100%;
    width: 170px;
    height: 46px;
    top: 6px;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

header .navbar.affix.affixed .logo,
header .navbar.affix:hover .logo {
    opacity: 1;
}

header .navbar.affix .navbar-nav {
    font-size: 12px;
    width: auto;
    float: none;
    margin-top: 15px;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

header .navbar.affix.affixed .navbar-nav,
header .navbar.affix:hover .navbar-nav {
    opacity: 1;
}

header .navbar.affix .social {
    display: none;
}

header .navbar .social {
    position: absolute;
    top: 50px;
    right: 10px;
}

header .navbar .social li {
    width: 30px;
    height: 30px;
    float: left;
    list-style: none;
    margin-left: 8px;
}

header .navbar .social li a {
    margin-left: 38px;
    line-height: 30px;
    display: block;
}

header .navbar .social li.katalog {
    background: url("../images/layout/katalog.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

header .navbar .social li.facebook {
    background: url("../images/layout/facebook.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

header .navbar .social li.instagram {
    background: url("../images/layout/instagram.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

header .navbar .social li.language.en {
    background: url("../images/layout/language-en.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

header .navbar .social li.language.tr {
    background: url("../images/layout/language-tr.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

header .navbar .social li.katalog:hover,
header .navbar .social li.facebook:hover,
header .navbar .social li.instagram:hover,
header .navbar .social li.language:hover {
    background-position: 0px -32px;
    cursor: pointer;
}

header .navbar .social li.katalog a {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 11px;
    color: #513628;
    margin-left: -58px;
}


/* ===== Index ===== */

.index .bg {
    background: url('../images/content/index-bg.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: 0;
    padding: 0;
	width: 100%;
	height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    position: fixed;
}

.index .logo {
	background: url('../images/layout/logo-index.svg');
	background-size: 100% 100%;
    position: absolute;
    z-index: 3;
    width: 366px;
    height: 127px;
    left: 50%;
    top: 18%;
    margin-left: -183px;
    text-indent: -9999px;
	-moz-filter: drop-shadow(0px 0px 5px rgba(0,0,0,.3));
	-webkit-filter: drop-shadow(0px 0px 5px rgba(0,0,0,.3));
	-o-filter: drop-shadow(0px 0px 5px rgba(0,0,0,.3));
	-ms-filter: drop-shadow(0px 0px 5px rgba(0,0,0,.3));
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,.3));
}

.index .teslimat {
    background:url('../images/layout/teslimat.svg') no-repeat;
    background-size: 100% 100%;
    width: 138px;
    height: 138px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -69px;
    right: 15%;
    z-index: 3;
}

.index .language {
    position: absolute;
    z-index: 3;
    width: 175px;
    height: 75px;
    left: 50%;
    bottom: 15%;
    margin-left: -87px;
}

.index .language .select {
	position: absolute;
	z-index: 3;
	width: 75px;
	height: 75px;
	bottom: 0;
	font-family: "acta-display",sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 75px;
	text-align: center;
	color: #333;
	background: #fff;
	border-radius: 50%;
	transition: all .5s;
	-webkit-transition: all .5s;	
}

.index .language .select.tr {
	left: 0;
}

.index .language .select.en {
	left: 100px;
}

.index .language .select:hover {
	background: #008aab;
	color: #fff;
}


/* ===== Home ===== */

.home .main .main-text {
    position: absolute;
    right: 0;
    top: 300px;
    color: #fff;
}

.home .main .main-text h1 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 46px;
}

.home .main .main-text span {
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 46px;
    font-weight: bold;
}

.home .main .teslimat {
    background: url('../images/layout/teslimat.svg') no-repeat;
    background-size: 100% 100%;
    width: 138px;
    height: 138px;
    display: block;
    position: absolute;
    top: 401px;
    right: 136px;
}

.home .main .teslimat.en {
    background:url('../images/layout/occupancy.svg') no-repeat;
}

.home .luks-bir-otel .intro-text {
    color: #513628;
    margin-top: 0;
    margin-bottom: 55px;
}

.home h3 {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 40px;
    color: #513628;
    z-index: 9;
    position: relative;
}

.home h3 strong {
    font-style: normal;
    font-weight: 400;
}

.home p {
    margin-top: 40px;
}

.home .padding-left p,
.home .padding-left .big-letter {
    padding-left: 100px;
}

.home .item {
    padding-top: 20px;
    padding-bottom: 20px;
}

.home .doga-image {
    position: relative;
    height: 375px;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 60px;
    margin-bottom: 50px;
}

.dogayla-ic-ice .map {
    position: relative;
}

.dogayla-ic-ice .map h2 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 75px;
    color: #fff;
    position: absolute;
    top: 40px;
    left: 40px;
}

.dogayla-ic-ice .map .location {
    position: absolute;
    top: 140px;
    left: 110px;
    font-size: 18px;
    color: #fff;
}

.dogayla-ic-ice .map .location span,
.dogayla-ic-ice .map .distance span {
    display: block;
}

.dogayla-ic-ice .map .distance {
    position: absolute;
    top: 140px;
    left: 190px;
    font-size: 18px;
    font-weight: 600;
    text-align: right;
    color: #fff;
}


.home .hizmetler .hizmet {
    margin-bottom: 60px;
}

.home .hizmetler span {
    display: block;
    text-align: center;
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 19px;
    margin-top: 15px;
}

.home .hizmetler h4 {
    font-size: 40px;
    font-weight: 300;
    color: #008aab;
    text-align: center;
}

.home .hizmetler p {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    line-height: 38px;
    text-indent: 0;
    color: #513628;
    text-align: center;
    margin-bottom: 70px;
}

.home .slider h2 {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 50px;
    color: #513628;
}

.home .slider h2 strong {
    font-style: normal;
    font-weight: 400;
}

.home .slider .swiper-container {
    margin-top: 25px;
}


/* ===== Yasam Stili ===== */

.yasam-stili header .navbar {
	border-bottom: 1px solid #333;
}

.yasam-stili header .navbar.affix {
	border: 0;
}

.yasam-stili p {
    padding-bottom: 25px;
}

.yasam-stili .main .border {
	border-bottom: 1px solid #b4b4b4;
	width: 95%;
	margin: 0 auto;
}

.yasam-stili .main h1 {
	font-weight: 100;
	font-size: 82px;
	color: #bd9666;
	position: absolute;
	bottom: 25px;
    z-index: 10;
}

.yasam-stili .restaurant .intro-text {
    color: #680432;
    margin-bottom: 80px;
}

.yasam-stili .restaurant h3 {
	font-family: "acta-display",sans-serif;
	font-style: normal;
	font-weight: 300;
    font-size: 46px;
    color: #513628;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.yasam-stili .restaurant h3 strong {
	font-family: "acta-display",sans-serif;
	font-style: italic;
	font-weight: 700;
    font-size: 26px;
}

.yasam-stili .restaurant .big-letter {
	top: -50px;
}

.yasam-stili .restaurant span.title, .yasam-stili .spa span.title {
	font-weight: 700;
	text-align: center;
    display: block;
    margin-top: 10px;
}

.yasam-stili .restaurant p.no-mar {
	margin-bottom: 0;
}

.yasam-stili .restaurant .image {
    margin: 30px 0;
}

.yasam-stili .restaurant .menus {
    list-style: none;
    padding: 0;
    text-align: right;
}

.yasam-stili .restaurant .menus li {
    display: inline-block;
    margin: 5px 15px;
}

.yasam-stili .restaurant .menus li a {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    color: #680432;
    line-height: 38px;
    z-index: 10;
    text-decoration: underline;
}

.yasam-stili .restaurant .menus li a:hover {
    text-decoration: none;
}

.yasam-stili .spa .spa-image,
.yasam-stili .cevre-ve-kultur .cevre-image {
    position: relative;
    height: 375px;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 25px;
    margin-bottom: 50px;
}

.yasam-stili .spa .spa-image .container-fluid,
.yasam-stili .cevre-ve-kultur .container-fluid {
    position: relative;
    height: 100%;
}

.yasam-stili .spa h2,
.yasam-stili .cevre-ve-kultur h2 {
	font-family: "acta-display",sans-serif;
	font-style: normal;
	font-weight: 300;
    font-size: 62px;
    color: #fff;
    position: absolute;
}

.yasam-stili .spa h2 {
    bottom: 20px;
    left: 10px;
}

.yasam-stili .cevre-ve-kultur h2 {
    bottom: 20px;
    right: 10px;
}

.yasam-stili .spa h3 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 55px;
    color: #513628;
    position: relative;
    margin-bottom: 30px;
}

.yasam-stili .spa h3:after {
    content: '';
    
    background-size: 100% 100%;
    width: 97px;
    height: 90px;
    top: -25px;
    margin-left: 15px;
    display: inline-block;
    position: absolute;
}

.yasam-stili .beach h3 {
    font-weight: 100;
    font-size: 70px;
    color: #513628;
    position: relative;
    margin-top: 65px;
    margin-bottom: 20px;
}

.yasam-stili .beach h3:after {
    content: '';
    background: url('../images/layout/beach.svg');
    background-size: 100% 100%;
    width: 135px;
    height: 116px;
    top: -50px;
    left: 340px;
    display: inline-block;
    position: absolute;
}


/* ===== Sea Homes ===== */

.sea-homes h1 {
    font-weight: 100;
    font-size: 80px;
    color: #fff;
    position: absolute;
    bottom: 25px;
    left: 10px;
    z-index: 10;
}

.sea-homes .main-text {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 290px auto 0;
}

.sea-homes p {
    padding-bottom: 25px;
}

.sea-homes .pasalimani h2 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 46px;
    color: #513628;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.sea-homes .pasalimani h2.alt strong {
    font-weight: 700;
    font-size: 28px;
}

.sea-homes .dogaya-saygi {
    background-color: #f2f2f2;
    padding-bottom: 70px;
    margin-top: 70px;
}

.sea-homes .dogaya-saygi h3 {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 50px;
    text-align: center;
    color: #008745;
    margin-bottom: 25px;
}

.sea-homes .dogaya-saygi .recycle {
    background: url('../images/layout/recycle.svg');
    background-size: 100% 100%;
    width: 73px;
    height: 73px;
    display: block;
    margin: 60px auto 20px;
}

.sea-homes .dogaya-saygi p {
    font-size: 18px;
    line-height: 37px;
    text-align: center;
    color: #333;
}

.sea-homes .rezidans-ayrintilari .rezidans-image {
    position: relative;
    height: 375px;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 40px;
    margin-bottom: 95px;
}

.sea-homes .rezidans-ayrintilari .rezidans-image .container-fluid {
    position: relative;
    height: 100%;
}

.sea-homes .rezidans-ayrintilari .rezidans-image h2 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 50px;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 10px;
}

.sea-homes .rezidans-ayrintilari ul {
    padding: 0;
    margin-top: 30px;
}


.sea-homes .rezidans-ayrintilari ul li {
    display: inline-block;
    margin-right: 34px;
}

.sea-homes .rezidans-ayrintilari ul li.electrolux {
    background: url('../images/layout/electrolux.svg') no-repeat;
    width: 125px;
    height: 29px;
    vertical-align: middle;
}

.sea-homes .rezidans-ayrintilari ul li.gaggenau {
    background: url('../images/layout/gaggenau.svg') no-repeat;
    width: 126px;
    height: 18px;
    vertical-align: middle;
}

.sea-homes .rezidans-ayrintilari ul li.gervasoni {
    background: url('../images/layout/gervasoni.svg') no-repeat;
    width: 127px;
    height: 35px;
    vertical-align: middle;
}

.sea-homes .rezidans-ayrintilari ul li.miele {
    background: url('../images/layout/miele.svg') no-repeat;
    width: 101px;
    height: 18px;
    vertical-align: middle;
}

.sea-homes .kat-planlari {
    background-color: #d8d1ca;
    padding-top: 45px;
    padding-bottom: 90px;
}

.sea-homes .kat-planlari h3 {
    font-weight: 100;
    font-size: 57px;
    color: #fff;
    text-align: center;
}

.sea-homes .kat-planlari h3 sup {
    font-weight: 300;
    font-size: 32px;
}

.sea-homes .kat-planlari p {
    text-align: center;
    margin-top: 20px;
    text-indent: 0;
}

.sea-homes .kat-planlari .table .fixed {
    width: 16.66666667%;
}

.sea-homes .kat-planlari .table.plan { 
    width: 100%;
    border-spacing: 5px;
    border-collapse: separate;
}

.sea-homes .kat-planlari .table.plan tbody:before {
    content: "-";
    display: block;
    line-height: 8px;
    color: transparent;
}

.sea-homes .kat-planlari .table.plan th.header {
    background-color: #c0bbb7;
    margin-bottom: 10px;
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    color: #333;
    padding: 2px;
}

.sea-homes .kat-planlari .table.plan td {
    text-align: center;
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    color: #513628;
    background-color: #fff;
    border: 1px solid #513628;
    padding: 0;
    cursor: pointer;
}

.sea-homes .kat-planlari .table.plan td.floor {
    background-color: #c0bbb7;
    font-family: "proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: #333;
    border: 0;
}

.sea-homes .kat-planlari .table.plan td.empty {
    background-color: transparent;
    border: 0;
}

.sea-homes .kat-planlari .table.detay { 
    width: 100%;
    margin-top: 23px;
}

.sea-homes .kat-planlari .table.detay th {
	font-family: "acta-display",sans-serif;
	font-style: italic;
	font-weight: 500;
    font-size: 16px;
    color: #333;
	background-color: #cfc9c3;
    border-left: 1px dashed #513628;
    border-right: 1px dashed #513628;
}

.sea-homes .kat-planlari .table.detay td {
    text-align: center;
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #513628;
    border: 1px dashed #513628;
    padding: 0x;
}

.sea-homes .kat-planlari .table.plan td.floor,
.sea-homes .kat-planlari .table.plan td.empty,
.sea-homes .kat-planlari .table.plan td.np {
    cursor: default;
}

.sea-homes .kat-planlari .table.detay tr {
    cursor: pointer;
}

/*.sea-homes .kat-planlari .table.detay tr:hover {
    background-color: #e7e7e7;
}*/

.sea-homes .kat-planlari .table.detay tr.empty:hover {
    background-color: transparent;
}

.sea-homes .kat-planlari .table.detay th,
.sea-homes .kat-planlari .table.detay tr.empty {
    cursor: default;
}

.sea-homes .kat-planlari .table.detay td.dot {
    font-size: 40px;
    line-height: 10px;
}

.sea-homes .kat-planlari .table.detay td.nbt {
    border-top: 0;
}

.sea-homes .sanal-tur .tur-image {
    position: relative;
    height: 520px;
    background-position: center center;
    background-repeat: no-repeat;
}

.sea-homes .sanal-tur .tur {
    background: url('../images/layout/360-tur.svg') no-repeat;
    background-size: 100% 100%;
    width: 189px;
    height: 44px;
    display: block;
    margin-top: 60px;
    margin-bottom: 20px;
}

.sea-homes .sanal-tur .tur.en {
    background: url('../images/layout/360-tour.svg') no-repeat;
}

.sea-homes .sanal-tur p {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-indent: 0;
    color: #fff;
    max-width: 235px;
    padding-bottom: 13px;
}

.sea-homes .sanal-tur .arrow {
    background: url('../images/layout/360-arrow.svg') no-repeat;
    background-size: 100% 100%;
    width: 80px;
    height: 80px;
    display: block;
    text-indent: -9999px;
    opacity: 1;
    -webkit-transition: opacity 0.6s ease-in-out;
    -moz-transition: opacity 0.6s ease-in-out;
    -ms-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
}

.sea-homes .sanal-tur .arrow:hover {
    zoom: 1;
    filter: alpha(opacity=50);
    opacity: 0.7;
}

.sea-homes .video {
    background-color: #333;
    padding-top: 50px;
    padding-bottom: 110px;
}

.sea-homes .video h2 {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 42px;
    color: #fff;
    text-align: right;
}

.sea-homes .video h2 strong {
    font-style: normal;
    font-weight: 400;
}

.sea-homes .video p {
    color: #fff;
    margin-top: 5px;
}

.sea-homes footer {
    margin-top: 0;
}

.sea-homes .modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.sea-homes .modal-content {
  height: auto;
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.sea-homes.modal-open .modal {
    padding: 0!important;
}

.sea-homes #imagemodal #image-wrapper .close {
    background-image: url('../images/layout/close.svg');
    background-size: 100% 100%;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 250;
    text-indent: -9999px;
    cursor: pointer;
    opacity: 1;
}

.sea-homes #imagemodal #image-wrapper {
    max-width: 1255px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.sea-homes #imagemodal #image-wrapper #imagepreview {
    width: 100%;
    padding-top: 25px;
}

.sea-homes #imagemodal .nav.prev,
.sea-homes #imagemodal .nav.next {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 58px;
    margin-top: -29px;
    cursor: pointer;
    z-index: 8040;
}

.sea-homes #imagemodal .nav.prev {
    left: 50px;
    background: url('../images/layout/arrow-brown-prev.svg') no-repeat;
    background-size: 100% 100%;
}

.sea-homes #imagemodal .nav.next {
    right: 50px;
    background: url('../images/layout/arrow-brown-next.svg') no-repeat;
    background-size: 100% 100%;
}


/* ===== Geliştiren ===== */

.gelistiren .main h1 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    margin-top: 300px;
    text-align: center;
    color: #fff;
}

.gelistiren .main h1 span {
    font-style: italic;
}

.gelistiren .main .homes-title {
    background: url('../images/layout/homes.svg') no-repeat;
    background-size: 100% 100%;
    width: 313px;
    height: 45px;
    margin: 35px auto 0;
}

.gelistiren p {
    padding-bottom: 25px;
}

.gelistiren .homes .intro-text {
    color: #bd9666;
    margin-bottom: 70px;
}

.gelistiren .homes span.title {
    font-weight: 600;
    font-size: 17px;
    line-height: 19px;
    color: #333;
    display: block;
    margin-top: 10px;
}

.gelistiren .homes span.location {
    font-size: 17px;
    line-height: 19px;
    color: #333;
    display: block;
}

.gelistiren .homes .image {
    margin-top: 60px;
    margin-bottom: 90px;
}

.gelistiren .erkin-koksal {
    background-color: #d8d1ca;
    padding-bottom: 55px;
}

.gelistiren .homes h3,
.gelistiren .homes h3 a {
    margin-bottom: 25px;
    color: #4e291d;
}

.gelistiren .homes h3 a:hover {
    text-decoration: none;
    border-bottom: 1px solid #4e291d;
}

.gelistiren .homes h3,
.gelistiren .erkin-koksal h2,
.gelistiren .rifat-baltaoglu h2 {
    font-weight: 100;
    font-size: 50px;
}

.gelistiren .rifat-baltaoglu,
.gelistiren .erkin-koksal {
    padding-top: 65px;
}

.gelistiren .erkin-koksal h2 {
    color: #4e291d;
    margin-bottom: 25px;
}

.gelistiren .rifat-baltaoglu h2 {
    color: #680432;
    margin-bottom: 25px;
}

.gelistiren .erkin-koksal h2 strong,
.gelistiren .rifat-baltaoglu h2 strong {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 26px;
}


/* ===== Galeri ===== */

.galeri header {
	height: 175px;
}

.galeri header .navbar {
	border-bottom: 1px solid #333;
}

.galeri header .navbar.affix {
	border: 0;
}

.galeri h2 {
	font-family: "acta-display",sans-serif;
	font-style: italic;
	font-weight: 300;
    font-size: 34px;
    color: #513628;
    margin-bottom: 20px;
}

.galeri h2 strong {
	font-weight: 400;
    font-size: 50px;
}

.galeri .galeri-img {
	margin-bottom: 17px;
    cursor: zoom-in;
}

.galeri .galeri-img .roll-wrap {
  position: relative;
}

.galeri .galeri-img .roll-wrap .roll {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    margin: 0;
    background: rgba(0,0,0,.5);
    -webkit-transition: all ease .6s;
    -moz-transition: all ease .6s;
    -o-transition: all ease .6s;
    transition: all ease .6s;
}


.galeri .galeri-img:hover .roll-wrap .roll {
  opacity: 1;
}

.galeri .dis-gorseller {
	margin-top: 110px;
}

.galeri span.img-title {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #513628;
    margin-top: 5px;
}

.pswp__ui--fit .pswp__caption {
    display: none;
}


/* ===== Basın ===== */

/*.basin .main h1 {
    font-weight: 100;
    font-size: 82px;
    color: #fff;
    position: absolute;
    bottom: 25px;
    z-index: 10;
}*/

.basin header {
    height: 175px;
}

.basin header .navbar {
    border-bottom: 1px solid #333;
}

.basin header .navbar.affix {
    border: 0;
}

.basin .makale-roportaj {
    margin-top: 110px;
}

.basin .makale-roportaj .intro-text {
    color: #008aab;
    margin-bottom: 70px;
}

.basin .makale-roportaj .basin-items {
    position: relative;
    z-index: 10;
}

.basin .makale-roportaj .basin-item {
    margin-bottom: 25px;
    padding-left: 90px;
}

.basin .makale-roportaj span.date {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    color: #513628;
    display: block;
    position: relative;
    margin-bottom: 4px;
}

.basin .makale-roportaj span.title {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    color: #513628;
    display: block;
    max-width: 150px;
    position: relative;
}

.basin .makale-roportaj span.title:before {
    content: '';
    background: url('../images/layout/arrow-basin.svg');
    background-size: 100% 100%;
    width: 21px;
    height: 21px;
    top: 4px;
    left: -31px;
    display: block;
    position: absolute;
}

.basin .makale-roportaj .basin-item:hover span.title:before  {
    opacity: 0.7;
}

.basin .downloads h4 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    color: #680432;
    text-align: center;
    margin-bottom: 25px;
}

.basin .downloads h4 strong {
    font-weight: 500;
}

.basin .downloads .download-katalog {
    background: url('../images/layout/download-katalog.svg');
    background-size: 132px 183px;
    background-position: 0 183px;
    width: 132px;
    height: 90px;
    text-indent: -9999px;
    display: inline-block;
    margin: 0 20px;
/*    margin-left: -90px;*/
}

.basin .downloads .download-katalog.en {
    background: url('../images/layout/catalog.svg');
    background-size: 132px 183px;
    background-position: 0 183px;
}

.basin .downloads .download-katalog:hover,
.basin .downloads .download-katalog.en:hover {
    background-position: 0 -92px;
}

.basin .downloads .download-sartname {
    background: url('../images/layout/download-teknik-sartname.svg');
    background-size: 66px 174px;
    background-position: 0 174px;
    width: 66px;
    height: 86px;
    text-indent: -9999px;
    display: inline-block;
    margin: 0 20px;
}

.basin .downloads .download-sartname.en {
    background: url('../images/layout/technical-specifications.svg');
    background-size: 66px 174px;
    background-position: 0 174px;
}

.basin .downloads .download-sartname:hover,
.basin .downloads .download-sartname.en.hover {
    background-position: 0 -88px;
}

.basin .downloads h2 {
    font-weight: 100;
    font-size: 50px;
    text-align: center;
    margin-bottom: 35px;
}

.basin .downloads p {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    text-indent: 0;
    text-align: center;
    color: #bd9666;
}

.basin .downloads .basin-odasi {
    list-style: none;
    padding: 0;
    margin-top: 45px;
    margin-bottom: 60px;
    display: inline-block;
    text-align: left;
}

.basin .downloads .basin-odasi li {
    margin: 5px 0;
}

.basin .downloads .basin-odasi li:before {
    content: '';
    background: url('../images/layout/arrow-basin-odasi.svg');
    background-size: 100% 100%;
    width: 14px;
    height: 11px;
    margin-right: 7px;
    display: inline-block;
}

.basin .downloads .basin-odasi li:after {
    content: '';
    background: url('../images/layout/pdf.svg');
    background-size: 100% 100%;
    width: 21px;
    height: 27px;
    list-style: none;
    display: inline-block;
    margin-left: 8px;
    vertical-align: text-bottom;
}

.basin .downloads .basin-odasi li a {
    color: #333;
}

.basin .downloads .basin-odasi li a sup {
    font-weight: 600;
}

.basin .downloads .gorsel {
    background-color: #680432;
    font-size: 21px;
    color: #fff;
    padding: 3px 20px;
    display: inline-block;
    margin: 20px auto 45px;
}

.basin .downloads .gorsel:hover {
    text-decoration: none;
    background-color: #008aab;
}

.basin .downloads span {
    display: block;
}
.basin .downloads span,
.basin .downloads span a {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}


/* ===== İletişim ===== */

.iletisim .main h1 {
    font-weight: 100;
    font-size: 82px;
    color: #fff;
    position: absolute;
    bottom: 25px;
    z-index: 10;
}

.iletisim .contact p {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    line-height: 38px;
    text-indent: 0;
    text-align: center;
    color: #bd9666;
    margin: 50px 0;
}

.iletisim .contact h3 {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 65px;
    text-align: center;
    color: #680432;
}

.iletisim .contact h4 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    color: #513628;
    margin-bottom: 5px;
}

.iletisim .contact .bilgi {
    margin-top: 20px;
}

.iletisim .contact .info,
.iletisim .contact .info a,
.iletisim .contact .contact-social li a {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #513628;
}

.iletisim input[type="submit"] {
    padding: 3px 20px;
    font-size: 21px;
    color: #fff;
    background: #680432;
    cursor: pointer;
    border: 0;
    margin-top: 10px;
    margin-bottom: 40px;
}

.iletisim input[type="submit"]:hover {
    background-color: #008aab;
}

.iletisim input,
.iletisim textarea,
.iletisim .form-control,
.iletisim label {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    -webkit-appearance: none;
}

.iletisim textarea {
    width: 100%;
    resize: none;
    height: 200px;
    line-height: 20px;
}

.iletisim input,
.iletisim .form-control,
.iletisim textarea {
    background-color: #f0edea;
    padding: 8px;
    color: #333;
    font-size: 20px
}

.iletisim .form-group {
    margin-bottom: 8px;
    height: 35px;
    border: 0;
}

.iletisim .form-group label.error {
    font-weight: 600;
    font-size: 16px;
    color: #680432;
    display: block;
    margin: 4px 0;
}

.iletisim .notice {
    font-weight: 600;
    font-size: 15px;
    color: #680432;
    display: block;
    margin: 4px 0;
}

.iletisim label {
    font-weight: 300;
    font-size: 16px;
    color: #333;
}

.iletisim input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

.iletisim .radio-inline,
.iletisim .checkbox-inline {
    padding-left: 30px;
}

.iletisim .contact .social-links {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}

.iletisim .contact .contact-social {
    padding: 0;
}

.iletisim .contact .contact-social li {
    float: none;
    list-style: none;
    padding-left: 40px;
    margin: 7px 0;
}

.iletisim .contact .contact-social li.facebook {
    background: url("../images/layout/facebook-contact.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

.iletisim .contact .contact-social li.instagram {
    background: url("../images/layout/instagram-contact.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}


.iletisim .contact .contact-social li.facebook:hover,
.iletisim .contact .contact-social li.instagram:hover {
    background-position: 0px -32px;
    cursor: pointer;
}

.iletisim .contact .contact-social li a {
    line-height: 30px;
}

.iletisim .contact .contact-social li:hover a {
    text-decoration: underline;
}

.iletisim .downloads .seperator.first {
    margin-top: 90px;
}

.iletisim .downloads .seperator.second {
    margin-bottom: 0px;
}

.iletisim .downloads h4 {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    color: #680432;
    text-align: center;
    margin-bottom: 25px;
}

.iletisim .downloads h4 strong {
    font-weight: 500;
}

.iletisim .downloads .download-katalog {
    background: url('../images/layout/download-katalog.svg');
    background-size: 132px 183px;
    background-position: 0 183px;
    width: 132px;
    height: 90px;
    text-indent: -9999px;
    display: inline-block;
    margin: 0 20px;
}

.iletisim .downloads .download-katalog.en {
    background: url('../images/layout/catalog.svg');
    background-size: 132px 183px;
    background-position: 0 183px;
}

.iletisim .downloads .download-katalog:hover,
.iletisim .downloads .download-katalog.en:hover {
    background-position: 0 -92px;
}

.iletisim .downloads .download-sartname {
    background: url('../images/layout/download-teknik-sartname.svg');
    background-size: 66px 174px;
    background-position: 0 174px;
    width: 66px;
    height: 86px;
    text-indent: -9999px;
    display: inline-block;
    margin: 0 20px;
}

.iletisim .downloads .download-sartname.en {
    background: url('../images/layout/technical-specifications.svg');
    background-size: 66px 174px;
    background-position: 0 174px;
}

.iletisim .downloads .download-sartname:hover,
.iletisim .downloads .download-sartname.en.hover {
    background-position: 0 -88px;
}


/* ===== Footer ===== */

footer {
    height: 140px;
    background-color: #d8d1ca;
    margin-top: 70px;
}

footer .logo {
    background:url('../images/layout/logo-footer.svg') no-repeat;
    background-size: 100% 100%;
    width: 236px;
    height: 122px;
    position: absolute;
    top: 0;
    left: 10px;
    text-indent:-9999px;
    display:block;
}

footer .contact {
    font-family: "acta-display",sans-serif;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    top: 100px;
    left: 394px;
}

footer .contact a {
    color: #513628;
}

footer .contact a:hover:before {
    text-decoration: none;
    border: 0;
}

footer .contact .tel {
    font-size: 18px;
}

footer .contact .email {
    font-size: 16px;
}

footer .contact .email:before {
    content: '|';
    margin-right: 15px;
    margin-left: 15px;
    display:inline-block;
}

footer .social {
    position: absolute;
    top: 25px;
    right: 10px;
}

footer .social li {
    width: 30px;
    height: 30px;
    float: left;
    list-style: none;
    margin-left: 8px;
}

footer .social li a {
    margin-left: 38px;
    line-height: 30px;
    display: block;
}

footer .social li.katalog {
    background: url("../images/layout/katalog-footer.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

footer .social li.facebook {
    background: url("../images/layout/facebook-footer.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

footer .social li.instagram {
    background: url("../images/layout/instagram-footer.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

footer .social li.language.en {
    background: url("../images/layout/language-en-footer.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

footer .social li.language.tr {
    background: url("../images/layout/language-tr-footer.svg") no-repeat;
    background-size: 30px 62px;
    background-position: 0 0;
}

footer .social li.katalog:hover,
footer .social li.facebook:hover,
footer .social li.instagram:hover,
footer .social li.language:hover {
    background-position: 0px -32px;
    cursor: pointer;
}

footer .social li.katalog a {
    color: #fff;  
}

footer .social li.katalog a span {
    font-family: "acta-display",sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 11px;
    margin-left: -90px;
    display: block;
}

footer .eps {
    font-size: 16px;
    text-align: right;
    position: absolute;
    top: 92px;
    right: 10px;
}

footer .eps a {
    color: #513628;
}

footer .eps span {
    display: block;
    font-size: 12px;
    line-height: 12px;
}


/* ===== Masks & Seperators ===== */

.mask-1 {
    width: 463px;
    height: 463px;
    background: url('../images/layout/mask-1.svg') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: 9;
}

.mask-1.left {
    left: 0;
    top: -360px;
}

.mask-1.right {
    right: 0;
    top: -360px;
}

.mask-2 {
    height: 3px;
    background: url('../images/layout/mask-2.svg') repeat-x;
    position: absolute;
    z-index: 9;
    width: 100%;
}

.mask-2.top {
    top: -1px;
}

.mask-2.bottom {
    bottom: -1px;
}

.mask-3 {
    height: 561px;
    width: 561px;
    background: url('../images/layout/mask-3.svg') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: 9;
}

.mask-3.left {
    top: -380px;
    left: 45px;
}

.mask-3.right {
    top: -380px;
    right: 45px;
}

.mask-4 {
    width: 545px;
    height: 627px;
    background: url('../images/layout/mask-4.svg') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: 9;
    top: -400px;
    right: 0;
}

.seperator {
    background: url('../images/layout/seperator.svg') no-repeat;
    max-width: 840px;
    height: 9px;
    margin: 50px auto;
}


/* ===== Swiper ===== */

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 58px;
    margin-top: -29px;
    z-index: 10;
    cursor: pointer;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url('../images/layout/arrow-prev.svg');
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url('../images/layout/arrow-next.svg');
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  margin: 0 auto;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 100%;
  background: #8f8c89;
  margin: 17px 5px 0;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #d8d1ca;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}



@media only screen and (max-width: 767px) {
	header .navbar {
		height: 47px;
	}

	header .navbar-nav {
		margin-top: 15px;
	}

    header .navbar .navbar-toggle {
        display: block;
        position: relative;
        overflow: hidden;
        margin: 6px 10px 0 0;
        padding: 0;
        width: 30px;
        height: 35px;
        background-color: #fff;
        text-indent: -9999px;
        border-radius: 0;
        box-shadow: none;
        border-radius: 0;
        border: none;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    header .navbar .navbar-toggle:hover,
    header .navbar .navbar-toggle:focus {
        background-color: #fff;
    }

    header .navbar .navbar-toggle:focus {
        outline: none;
    }

    header .navbar .navbar-toggle span {
        display: block;
        position: absolute;
        top: 16px;
        left: 3px;
        right: 3px;
        height: 3px;
        background: #513628;
        -webkit-transition: background 0s 0.3s;
                transition: background 0s 0.3s;
    }

    header .navbar .navbar-toggle span::before,
    header .navbar .navbar-toggle span::after {
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #513628;
        content: "";
        -webkit-transition-duration: 0.3s, 0.3s;
                transition-duration: 0.3s, 0.3s;
           -webkit-transition-delay: 0.3s, 0s;
                   transition-delay: 0.3s, 0s;
    }

    header .navbar .navbar-toggle span::before {
        top: -8px;
        -webkit-transition-property: top, -webkit-transform;
                transition-property: top, transform;
    }

    header .navbar .navbar-toggle span::after {
        bottom: -8px;
        -webkit-transition-property: bottom, -webkit-transform;
                transition-property: bottom, transform;
    }

    header .navbar .navbar-toggle.open {
        background-color: #fff;
    }

    header .navbar .navbar-toggle.open span {
        background: none;
    }

    header .navbar .navbar-toggle.open span::before {
        top: 0;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    header .navbar .navbar-toggle.open span::after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }

    header .navbar .navbar-toggle.open span::before,
    header .navbar .navbar-toggle.open span::after {
        -webkit-transition-delay: 0s, 0.3s;
                transition-delay: 0s, 0.3s;
    }

    header .navbar-default .navbar-collapse {
    	background-color: #fff;
    	border-bottom: 1px solid #d8d1ca;
    	text-align: center;
    }

	header .navbar .navbar-nav li {
		margin: 7px 0;
	}

	header .navbar .navbar-nav li span:before {
		display: none;
	}

	header .navbar .social {
	    display: none;
	}

	header .navbar.affix .navbar-toggle {
		margin-top: 6px;
        background-color: #d8d1ca;
	}

	header .navbar .logo {
	    background:url('../images/layout/logo-alt.svg') no-repeat;
	    background-size: 100% 100%;
	    width: 170px;
	    height: 46px;
	}

    .mxw {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .home .luks-bir-otel .intro-text,
    .yasam-stili .restaurant .intro-text {
        margin-bottom: 0;
    }

    .home .item {
        padding: 0;
    }

    .home .luks-bir-otel .item.last {
        margin-top: 20px;
    }

    .home .padding-left p,
    .home .padding-left .big-letter {
        padding-left: 0;
    }

    .yasam-stili .sef span {
        margin-bottom: 15px;
    }

    .yasam-stili .restaurant .image,
    .yasam-stili .cevre-ve-kultur .image {
        margin: 15px 0;
    }

    .yasam-stili .restaurant .menus li a {
        font-size: 18px;
    }

    .sea-homes .pasalimani .first {
        margin-top: 0;
    }

    .sea-homes .dogaya-saygi {
        padding-bottom: 20px;
    }

    .sea-homes .dogaya-saygi .recycle {
        width: 50px;
        height: 50px;
        margin: 30px auto 10px;
    }

    .sea-homes .dogaya-saygi h3 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .sea-homes .dogaya-saygi p {
        font-size: 16px;
        line-height: 31px;
    }

    .gelistiren .homes .intro-text {
        margin-bottom: 10px;
    }

    .gelistiren .homes h3 {
        margin-bottom: 0;
    }

    .gelistiren .homes .image {
        margin-top: 8px;
        margin-bottom: 15px;
    }

    .galeri header,
    .basin header {
        height: 46px;
    }

    .galeri .dis-gorseller,
    .basin .makale-roportaj {
        margin-top: 90px;
    }

    .iletisim .contact .social-links {
        position: relative;
    }

    .iletisim .contact .bilgi {
        margin-top: 0;
    }

    .iletisim label {
        margin-top: 7px;
    }

    .iletisim input[type="submit"] {
        padding: 2px 17px;
        font-size: 18px;
    }

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}

    .mask-1,
    .mask-3,
    .mask-4 {
        display: none;
    }

}

@media only screen and (max-width: 567px) {

    .index .logo {
        width: 270px;
        height: 94px;
        margin-left: -135px;
    }

    .index .teslimat {
        width: 80px;
        height: 80px;
        margin-top: -30px;
    }

    .index .language {
        width: 135px;
        height: 55px;
        margin-left: -67px;
    }

    .index .language .select {
        width: 55px;
        height: 55px;
        font-size: 14px;
        line-height: 55px;
    }

    .index .language .select.en {
        left: 80px;
    }
    .main {
        padding-bottom: 30px;
    }

    #scroll-down,
    #scroll-down-short {
        top: 65px;
        width: 56px;
        height: 55px;
        margin-left: -28px;
    }

    .intro-text,
    p.purple,
    .home .hizmetler p,
    .iletisim .contact p {
        font-size: 17px;
        line-height: 28px;
    }

    p {
        font-size: 15px;
        line-height: 23px;
    }

    .big-letter {
        font-size: 80px;
        top: -30px;
    }

    .mxw {
        max-width: 220px;
    }

    .home h3 {
        font-size: 27px;
    }

    .home p {
        margin-top: 12px;
    }

    .sea-homes p,
    .gelistiren p {
        padding-bottom: 12px;
    }

    .sea-homes .seperator {
        margin: 13px auto 25px;
    }
    
    .home .doga-image,
    .yasam-stili .spa .spa-image,
    .yasam-stili .cevre-ve-kultur .cevre-image,
    .sea-homes .rezidans-ayrintilari .rezidans-image {
        height: 220px;
        background-attachment: scroll;
        background-position: center center;

    }

    .home .doga-image {
        background-size: 567px 357px;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .yasam-stili .restaurant .menus li a {
        font-size: 17px;
        line-height: 25px
    }

    .yasam-stili .spa .spa-image {
        background-size: 567px 378px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .yasam-stili .cevre-ve-kultur .cevre-image {
        background-size: 567px 376px;
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .sea-homes .rezidans-ayrintilari .rezidans-image {
        background-size: 567px 378px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .dogayla-ic-ice .map h2 {
        font-size: 39px;
        top: 10px;
        left: 25px;
    }

    .dogayla-ic-ice .map .location {
        top: auto;
        left: auto;
        bottom: 16px;
        right: 80px;
        font-size: 15px;
    }

    .dogayla-ic-ice .map .distance {
        top: auto;
        left: auto;
        bottom: 16px;
        right: 35px;
        font-size: 15px;
    }

    .home .hizmetler h4 {
        font-size: 29px;
    }

    .home .hizmetler p {
        margin-bottom: 25px;
    }

    .home .hizmetler .hizmet {
        margin-bottom: 25px;
    }

    .home .hizmetler span {
        font-size: 15px;
    }

    .home .slider h2 {
        font-size: 29px;
    }

    .home .slider span {
        font-size: 15px;
    }

    .yasam-stili .restaurant h3 {
        font-size: 29px;
        margin-bottom: 15px;
    }

    .yasam-stili .restaurant h3 strong {
        font-size: 17px;
    }

    .yasam-stili p {
        padding-bottom: 10px;
    }

    .yasam-stili .spa h2,
    .yasam-stili .cevre-ve-kultur h2 {
        font-size: 35px;
        bottom: 7px;
    }

    .yasam-stili .spa h3 {
        font-size: 35px;
        margin-bottom: 25px;
    }

    .yasam-stili .spa h3:after {
        width: 60px;
        height: 56px;
        top: -10px;
        margin-left: 10px;
    }

    .yasam-stili .beach h3 {
        font-size: 45px;
        margin-top: 55px;
        margin-bottom: 15px;
    }

    .yasam-stili .beach h3:after {
        width: 94px;
        height: 108px;
        top: -50px;
        left: 217px;
    }

    .yasam-stili .restaurant .image img,
    .yasam-stili .cevre-ve-kultur .image img {
        max-width: 220px;
    }

    .sea-homes .pasalimani h2 {
        font-size: 33px;
        margin-bottom: 15px;
    }

    .sea-homes .pasalimani h2.alt strong {
        font-size: 20px;
    }

    .sea-homes .pasalimani .second {
        padding-bottom: 25px;
    }

    .sea-homes .rezidans-ayrintilari .rezidans-image h2 {
        font-size: 32px;
        bottom: 10px;
    }

    .sea-homes .rezidans-ayrintilari ul {
        margin-top: 15px;
    }

    .sea-homes .rezidans-ayrintilari ul li {
        display: block;
        margin: 20px auto;
    }

    .sea-homes .dogaya-saygi {
        margin-top: 15px;
    }

    .sea-homes .kat-planlari {
        padding-top: 35px;
        padding-bottom: 45px;
    }

    .sea-homes .kat-planlari h3 {
        font-size: 44px;
    }

    .sea-homes .kat-planlari h3 sup {
        font-size: 22px;
    }

    .sea-homes .kat-planlari .table.plan th.header {
        font-size: 16px;
    }

    .sea-homes .kat-planlari .table.plan td {
        font-size: 14px;
    }

    .sea-homes .kat-planlari .table.plan td.floor {
        font-size: 11px;
    }

    .sea-homes .kat-planlari .table.detay th {
        font-size: 13px;
    }

    .sea-homes .kat-planlari .table.detay td {
        font-size: 15px;
    }

    .sea-homes .sanal-tur .tur-image {
        height: 280px;
        background-size: 648px 280px;
    }

    .sea-homes .sanal-tur .tur {
        width: 150px;
        height: 35px;
        margin-top: 28px;
        margin-bottom: 15px;
    }

    .sea-homes .sanal-tur p {
        font-size: 16px;
        line-height: 18px;
    }

    .sea-homes .sanal-tur .arrow {
        width: 50px;
        height: 50px;
    }

    .sea-homes .video {
        padding-bottom: 35px;
        padding-top: 35px;
    }

    .sea-homes .video h2 {
        font-size: 32px;
    }

    .gelistiren .homes {
        margin-bottom: 15px;
    }

    .gelistiren .homes h3,
    .gelistiren .erkin-koksal h2,
    .gelistiren .rifat-baltaoglu h2 {
        font-size: 33px;
    }

    .gelistiren .erkin-koksal h2 strong,
    .gelistiren .rifat-baltaoglu h2 strong {
        font-size: 20px;
    }

    .gelistiren .homes span.title,
    .gelistiren .homes span.location {
        font-size: 15px;
    }

    .gelistiren .rifat-baltaoglu,
    .gelistiren .erkin-koksal {
        padding-top: 30px;
    }

    .gelistiren .erkin-koksal .ek,
    .gelistiren .rifat-baltaoglu .rb {
        margin-bottom: 25px;
    }

    .gelistiren .erkin-koksal {
        padding-bottom: 20px;
    }

    .galeri h2 {
        font-size: 20px;
    }

    .galeri h2 strong {
        font-size: 35px;
    }

    .galeri span {
        font-size: 15px;
    }

    .basin .makale-roportaj .intro-text {
        margin-bottom: 35px;
    }

    .basin .makale-roportaj .basin-item {
        padding-left: 41px;
    }

    .basin .makale-roportaj span.title {
        font-size: 18px;
    }

    .basin .downloads h4,
    .iletisim .downloads h4 {
        font-size: 23px;
    }

    .basin .downloads p {
        font-size: 19px;
    }

    .basin .downloads h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .basin .downloads .basin-odasi{
        margin-top: 20px;
        margin-bottom: 35px;
    }

    .basin .downloads .gorsel {
        font-size: 18px;
        padding: 2px 15px;
        margin: 20px auto 30px;
    }

    .iletisim .contact .info,
    .iletisim .contact .info a,
    .iletisim .contact .contact-social li a {
        font-size: 18px;
    }

    .iletisim .contact .contact-social {
        margin-top: 20px;
    }

    .iletisim .contact p {
        margin: 20px 0;
    }

    .iletisim .downloads .seperator.first {
    	margin: 25px 0;
    }

    .iletisim input[type="submit"] {
        margin-bottom: 10px;
    }

    .iletisim .contact h3 {
        font-size: 42px;
    }

	footer {
		height: 155px;
        margin-top: 35px;
	}

	footer .logo {
		width: 175px;
		height: 90px;
	}

	footer .contact {
		top: 105px;
		left: 10px;
	}

	footer .contact a {
		display: block;
	}

	footer .contact .email:before {
		display: none;
	}

	footer .contact .tel {
	    font-size: 16px;
	}

	footer .contact .email {
	    font-size: 14px;
	}

	footer .social {
		top: 42px;
	}

	footer .eps {
		top: 113px;
	}

	footer .eps {
		font-size: 15px;
	}

	footer .social li.katalog a span {
		display: none;
	}

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 13px 4px 0;
    }

    .seperator {
        margin: 25px auto;
    }

    .fancybox-nav span,
    .sea-homes #imagemodal .nav.prev,
    .sea-homes #imagemodal .nav.next {
        width: 17px;
        height: 33px;
        margin-top: -16px;
    }

    .fancybox-next span {
        right: 10px;
    }

    .fancybox-prev span {
        left: 10px;
    }

    .sea-homes #imagemodal .nav.next {
        right: 14px;
    }

    .sea-homes #imagemodal .nav.prev {
        left: 14px;
    }

}


@media only screen and (max-width: 480px) {

	.main .main-image {
		height: 320px;
		background-size: 737px 320px;
	}

	.home .main .main-text {
        right: auto;
        top: auto;
        bottom: 15px;
        left: 10px;
	}

	.home .main .main-text h1 {
	    font-size: 30px;
	}

	.home .main .main-text span {
		font-size: 30px;
	}

	.home .main .teslimat {
		width: 77px;
	    height: 77px;
        top: 75px;
        right: 30px;
	}

    .yasam-stili .main h1,
    .sea-homes h1,
    .basin .main h1,
    .iletisim .main h1 {
        font-size: 45px;
        bottom: 10px;
    }

    .sea-homes .main-text {
        font-size: 13px;
        max-width: initial;
        margin: 230px auto 0;
    }

    .gelistiren .main h1 {
        font-size: 17px;
        margin-top: 138px;
    }

    .gelistiren .main .homes-title {
        width: 177px;
        height: 26px;
        margin: 14px auto 0;
    }

    .fancybox-title-float-wrap .child {
        font-size: 15px;
    }

}


@media only screen and (min-width:480px) and (max-width:567px) {

	.main .main-image {
		height: 400px;
		background-size: 921px 400px;
	}

	.home .main .main-text {
        right: auto;
        top: auto;
        bottom: 15px;
        left: 10px;
	}

	.home .main .main-text h1 {
	    font-size: 34px;
	}

	.home .main .main-text span {
		font-size: 34px;
	}

	.home .main .teslimat {
		width: 90px;
	    height: 90px;
        top: 90px;
        right: 50px;
	}

	.home .hizmetler .hizmet {
		width: 33.3333333%;
	}

    .yasam-stili .main h1,
    .sea-homes h1,
    .basin .main h1,
    .iletisim .main h1 {
        font-size: 50px;
        bottom: 14px;
    }

    .sea-homes .main-text {
        font-size: 13px;
        max-width: initial;
        margin: 140px auto 0;
    }

    .gelistiren .main h1 {
        font-size: 21px;
        margin-top: 135px;
    }

    .gelistiren .main .homes-title {
        width: 215px;
        height: 31px;
        margin: 22px auto 0;
    }

    .fancybox-title-float-wrap .child {
        font-size: 16px;
    }

}


@media only screen and (min-width:568px) and (max-width:767px) {

    .index .logo {
        width: 320px;
        height: 112px;
        margin-left: -160px;
    }

    .index .teslimat {
        width: 110px;
        height: 110px;
        margin-top: -65px;
    }

    .index .language {
        width: 155px;
        height: 65px;
        margin-left: -77px;
    }

    .index .language .select {
        width: 65px;
        height: 65px;
        font-size: 15px;
        line-height: 65px;
    }

    .index .language .select.en {
        left: 90px;
    }

	.main {
		padding-bottom: 40px;
	}

	.main .main-image {
		height: 478px;
		background-size: 1100px 478px;
	}

    #scroll-down,
    #scroll-down-short {
        top: 65px;
        width: 60px;
        height: 59px;
        margin-left: -30px;
    }

    .intro-text,
    p.purple,
    .home .hizmetler p,
    .iletisim .contact p {
        font-size: 18px;
        line-height: 33px;
    }

    p {
        font-size: 16px;
        line-height: 25px;
    }

    .big-letter {
        font-size: 90px;
        top: -38px;
    }

    .mxw {
        max-width: 290px;
    }

	.home .main .main-text {
        right: auto;
        top: auto;
        bottom: 15px;
        left: 10px;
	}

	.home .main .main-text h1 {
	    font-size: 37px;
	}

	.home .main .main-text span {
		font-size: 37px;
	}

	.home .main .teslimat {
		width: 100px;
	    height: 100px;
        top: 90px;
        right: 50px;
	}

    .home h3 {
        font-size: 31px;
    }

    .home p {
        margin-top: 20px;
    }

    .sea-homes p,
    .gelistiren p {
        padding-bottom: 20px;
    }

    .sea-homes .seperator {
        margin: 15px auto 35px;
    }
    
    .home .doga-image,
    .yasam-stili .spa .spa-image,
    .yasam-stili .cevre-ve-kultur .cevre-image,
    .sea-homes .rezidans-ayrintilari .rezidans-image {
        height: 300px;
        background-attachment: scroll;
        background-position: center center;

    }

    .home .doga-image {
        background-size: 767px 483px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .yasam-stili .spa .spa-image {
        background-size: 767px 511px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .yasam-stili .cevre-ve-kultur .cevre-image {
        background-size: 767px 509px;
        margin-top: 20px;
        margin-bottom: 35px;
    }

    .yasam-stili .restaurant .image,
    .yasam-stili .cevre-ve-kultur .image {
        width: 33.3333333%;
        float: left;
    }

    .sea-homes .rezidans-ayrintilari .rezidans-image {
        background-size: 767px 511px;
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .dogayla-ic-ice .map h2 {
        font-size: 47px;
        top: 13px;
        left: 25px;
    }

    .dogayla-ic-ice .map .location {
        top: 69px;
        left: 44px;
        font-size: 16px;
    }

    .dogayla-ic-ice .map .distance {
        top: 69px;
        left: 110px;
        font-size: 16px;
    }

    .home .hizmetler h4 {
        font-size: 33px;
    }

    .home .hizmetler p {
        margin-bottom: 40px;
    }

	.home .hizmetler .hizmet {
		width: 25%;
        margin-bottom: 30px;
	}

    .home .hizmetler span {
        font-size: 16px;
    }

    .home .slider h2 {
        font-size: 38px;
    }

    .yasam-stili .main h1,
    .sea-homes h1,
    .basin .main h1,
    .iletisim .main h1 {
        font-size: 58px;
        bottom: 18px;
    }

    .yasam-stili .restaurant h3 {
        font-size: 35px;
        margin-bottom: 25px;
    }

    .yasam-stili .restaurant h3 strong {
        font-size: 21px;
    }

    .yasam-stili p {
        padding-bottom: 15px;
    }

    .yasam-stili .spa h2,
    .yasam-stili .cevre-ve-kultur h2 {
        font-size: 47px;
    }

    .yasam-stili .spa h3 {
        font-size: 42px;
    }

    .yasam-stili .spa h3:after {
        width: 68px;
        height: 63px;
        top: -11px;
        margin-left: 12px;
    }

    .yasam-stili .beach h3 {
        font-size: 55px;
    }

    .yasam-stili .beach h3:after {
        width: 124px;
        height: 106px;
        top: -50px;
        left: 260px;
    }

    .sea-homes .main-text {
        font-size: 24px;
        max-width: initial;
        margin: 143px auto 0;
    }

    .sea-homes .pasalimani h2 {
        font-size: 35px;
    }

    .sea-homes .pasalimani h2.alt strong {
        font-size: 21px;
    }

    .sea-homes .pasalimani .second {
        padding-bottom: 35px;
    }

    .sea-homes .rezidans-ayrintilari .rezidans-image h2 {
        font-size: 38px;
    }

    .sea-homes .rezidans-ayrintilari ul {
        margin-top: 0;
    }

    .sea-homes .rezidans-ayrintilari ul li {
        margin: 12px 67px;
    }

    .sea-homes .dogaya-saygi {
        margin-top: 25px;
    }

    .sea-homes .kat-planlari {
        padding-bottom: 60px;
    }

    .sea-homes .kat-planlari h3 {
        font-size: 48px;
    }

    .sea-homes .kat-planlari h3 sup {
        font-size: 28px;
    }

    .sea-homes .kat-planlari .table.plan td {
        font-size: 17px;
    }

    .sea-homes .kat-planlari .table.plan td.floor {
        font-size: 11px;
    }

    .sea-homes .kat-planlari .table.detay th {
        font-size: 17px;
    }

    .sea-homes .kat-planlari .table.detay td {
        font-size: 17px;
    }

    .sea-homes .sanal-tur .tur-image {
        height: 310px;
        background-size: 768px 332px;
    }

    .sea-homes .sanal-tur .tur {
        width: 160px;
        height: 37px;
        margin-top: 30px;
    }

    .sea-homes .sanal-tur p {
        font-size: 16px;
        line-height: 18px;
    }

    .sea-homes .sanal-tur .arrow {
        width: 60px;
        height: 60px;
    }

    .sea-homes .video {
        padding-bottom: 45px;
    }

    .sea-homes .video h2 {
        font-size: 35px;
    }

    .gelistiren .main h1 {
        font-size: 21px;
        margin-top: 155px;
    }

    .gelistiren .main .homes-title {
        width: 215px;
        height: 31px;
        margin: 16px auto 0;
    }

    .gelistiren .homes {
        margin-bottom: 25px;
    }

    .gelistiren .homes h3,
    .gelistiren .erkin-koksal h2,
    .gelistiren .rifat-baltaoglu h2 {
        font-size: 39px;
    }

    .gelistiren .erkin-koksal h2 strong,
    .gelistiren .rifat-baltaoglu h2 strong {
        font-size: 22px;
    }

    .gelistiren .homes span.title,
    .gelistiren .homes span.location {
        font-size: 16px;
    }

    .gelistiren .rifat-baltaoglu,
    .gelistiren .erkin-koksal {
        padding-top: 45px;
    }

    .gelistiren .erkin-koksal .ek,
    .gelistiren .rifat-baltaoglu .rb {
        margin-bottom: 35px;
    }

    .gelistiren .erkin-koksal {
        padding-bottom: 35px;
    }

    .galeri h2 {
        font-size: 26px;
    }

    .galeri h2 strong {
        font-size: 42px;
    }

    .basin .makale-roportaj .intro-text {
        margin-bottom: 45px;
    }

    .basin .makale-roportaj span.title {
        font-size: 19px;
    }

    .basin .downloads p {
        font-size: 20px;
    }

    .basin .downloads h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .basin .downloads .basin-odasi{
        margin-top: 35px;
        margin-bottom: 45px;
    }

    .basin .downloads .gorsel {
        font-size: 19px;
        padding: 2px 15px;
        margin: 20px auto 40px;
    }

    .iletisim .contact .info,
    .iletisim .contact .info a,
    .iletisim .contact .contact-social li a {
        font-size: 18px;
    }

    .iletisim .contact .contact-social {
        margin-top: 20px;
    }

    .iletisim .contact p {
        margin: 25px 0;
    }

    .iletisim input[type="submit"] {
        margin-bottom: 30px;
    }

    .iletisim .contact h3 {
        font-size: 51px;
    }
    
    .iletisim .downloads .seperator.first {
        margin-top: 50px;
    }

    .iletisim .downloads .seperator.second {
	    margin-bottom: 20px;
	}

	footer {
		height: 170px;
        margin-top: 45px;
	}

	footer .logo {
		width: 200px;
		height: 103px;
	}

	footer .contact {
		top: 113px;
		left: 10px;
	}

	footer .contact a {
		display: block;
	}

	footer .contact .email:before {
		display: none;
	}

	footer .social {
		top: 42px;
	}

	footer .eps {
		top: 125px;
	}

    .fancybox-nav span,
    .sea-homes #imagemodal .nav.prev,
    .sea-homes #imagemodal .nav.next  {
        width: 23px;
        height: 45px;
        margin-top: -22px;
    }

    .sea-homes #imagemodal .nav.prev {
        left: 30px;
    }

    .sea-homes #imagemodal .nav.next {
        right: 30px;
    }

    .seperator {
        margin: 35px auto;
    }

    .fancybox-title-float-wrap .child {
        font-size: 17px;
    }

}


@media only screen and (min-width: 768px) and (max-width: 991px) {

	header .navbar {
		height: 110px;
	}

	header .navbar .logo {
	    width: 220px;
	    height: 94px;
	}

	header .navbar-nav {
		margin-top: 76px;
	}

	header .navbar .navbar-nav li {
	    margin-right: 24px;
	}

	header .navbar .navbar-nav li span a {
	    font-size: 13px;
	}

	header .navbar .navbar-nav li span:before {
		width: 14px;
		margin-right: 5px
	}

	header .navbar .social {
		top: 25px;
	}

    .seperator {
        margin: 40px auto;
    }

    .main {
        padding-bottom: 50px;
    }

    .main .main-image {
        height: 608px;
        background-size: 1400px 608px;
    }

    #scroll-down,
    #scroll-down-short {
        top: 135px;
        width: 60px;
        height: 59px;
        margin-left: -30px;
    }

    .intro-text,
    p.purple,
    .home .hizmetler p,
    .iletisim .contact p {
        font-size: 20px;
        line-height: 35px;
    }

    .big-letter {
        font-size: 100px;
        top: -42px;
    }

	.home .main .main-text {
		right: 28px;
		top: 210px;
	}

	.home .main .main-text h1 {
	    font-size: 40px;
	}

	.home .main .main-text span {
		font-size: 40px;
	}

	.home .main .teslimat {
		width: 120px;
	    height: 120px;
        top: 300px;
        right: 126px;
	}

    .home .luks-bir-otel .intro-text,
    .yasam-stili .restaurant .intro-text {
        margin-bottom: 25px;
    }

    .home h3 {
        font-size: 35px;
    }

    .home p {
        margin-top: 25px;
    }

    .sea-homes p,
    .gelistiren p {
        padding-bottom: 25px;
    }

    .sea-homes .seperator {
        margin: 15px auto 45px;
    }

    .home .padding-left p,
    .home .padding-left .big-letter {
        padding-left: 40px;
    }
    
    .home .doga-image,
    .yasam-stili .spa .spa-image,
    .yasam-stili .cevre-ve-kultur .cevre-image,
    .sea-homes .rezidans-ayrintilari .rezidans-image {
        height: 350px;
        background-attachment: scroll;
        background-position: center center;
    }

    .home .doga-image {
        background-size: 992px 625px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .yasam-stili .spa .spa-image {
        background-size: 992px 661px;
        margin-top: 35px;
        margin-bottom: 00px;
    }
    
    .yasam-stili .cevre-ve-kultur .cevre-image {
        background-size: 992px 658px;
        margin-top: 25px;
        margin-bottom: 35px;
    }

    .sea-homes .rezidans-ayrintilari .rezidans-image {
        background-size: 992px 661px;
        margin-top: 15px;
        margin-bottom: 50px;
    }

    .dogayla-ic-ice .map h2 {
        font-size: 47px;
        top: 13px;
        left: 25px;
    }

    .dogayla-ic-ice .map .location {
        top: 69px;
        left: 44px;
        font-size: 16px;
    }

    .dogayla-ic-ice .map .distance {
        top: 69px;
        left: 110px;
        font-size: 16px;
    }

    .home .hizmetler h4 {
        font-size: 37px;
    }

    .home .hizmetler p {
        margin-bottom: 50px;
    }

    .home .hizmetler .hizmet {
        width: 20%;
        margin-bottom: 45px;
    }

    .home .hizmetler span {
        font-size: 17px;
    }

    .home .slider h2 {
        font-size: 42px;
    }

    .yasam-stili .main h1,
    .sea-homes h1,
    .basin .main h1,
    .iletisim .main h1 {
        font-size: 67px;
    }

    .yasam-stili .restaurant h3 {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .yasam-stili .restaurant h3 strong {
        font-size: 22px;
    }

    .yasam-stili .restaurant .menus li a {
        font-size: 20px;
    }

    .yasam-stili p {
        padding-bottom: 18px;
    }

    .yasam-stili .restaurant .image,
    .yasam-stili .cevre-ve-kultur .image {
        margin: 20px 0;
    }

    .yasam-stili .spa h2,
    .yasam-stili .cevre-ve-kultur h2 {
        font-size: 52px;
    }

    .yasam-stili .spa h3 {
        font-size: 47px;
    }

    .yasam-stili .spa h3:after {
        width: 85px;
        height: 79px;
        top: -21px;
        margin-left: 12px;
    }

    .yasam-stili .beach h3 {
        font-size: 62px;
    }

    .yasam-stili .beach h3:after {
        width: 124px;
        height: 106px;
        top: -50px;
        left: 296px;
    }

    .sea-homes .main-text {
        font-size: 26px;
        margin: 215px auto 0;
    }

    .sea-homes .pasalimani h2 {
        font-size: 39px;
    }

    .sea-homes .pasalimani h2.alt strong {
        font-size: 24px;
    }

    .sea-homes .rezidans-ayrintilari .rezidans-image h2 {
        font-size: 42px;
    }

    .sea-homes .rezidans-ayrintilari ul {
        margin-top: 30px;
    }

    .sea-homes .rezidans-ayrintilari ul li {
        margin: 8px 48px;
    }

    .sea-homes .dogaya-saygi {
        margin-top: 45px;
        padding-bottom: 30px;
    }

    .sea-homes .dogaya-saygi .recycle {
        width: 60px;
        height: 60px;
        margin: 34px auto 11px;
    }

    .sea-homes .dogaya-saygi h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .sea-homes .dogaya-saygi p {
        font-size: 16px;
        line-height: 31px;
    }

    .sea-homes .kat-planlari {
        padding-bottom: 70px;
    }

    .sea-homes .kat-planlari h3 {
        font-size: 52px;
    }

    .sea-homes .kat-planlari h3 sup {
        font-size: 30px;
    }

    .sea-homes .sanal-tur .tur-image {
        height: 390px;
        background-size: 992px 428px;
    }

    .sea-homes .sanal-tur .tur {
        width: 170px;
        height: 39px;
        margin-top: 50px;
    }

    .sea-homes .sanal-tur p {
        font-size: 17px;
    }

    .sea-homes .sanal-tur .arrow {
        width: 70px;
        height: 70px;
    }

    .sea-homes .video {
        padding-bottom: 55px;
    }

    .sea-homes .video h2 {
        font-size: 37px;
    }

    .gelistiren .main h1 {
        font-size: 26px;
        margin-top: 225px;
    }

    .gelistiren .main .homes-title {
        width: 275px;
        height: 40px;
        margin: 30px auto 0;
    }

    .gelistiren .homes .intro-text {
        margin-bottom: 15px;
    }

    .gelistiren .homes h3,
    .gelistiren .erkin-koksal h2,
    .gelistiren .rifat-baltaoglu h2 {
        font-size: 43px;
    }

    .gelistiren .erkin-koksal h2 strong,
    .gelistiren .rifat-baltaoglu h2 strong {
        font-size: 23px;
    }

    .gelistiren .homes .image {
        margin-top: 15px;
        margin-bottom: 35px;
    }

    .gelistiren .homes span.title,
    .gelistiren .homes span.location {
        font-size: 16px;
    }

    .gelistiren .rifat-baltaoglu,
    .gelistiren .erkin-koksal {
        padding-top: 45px;
    }

    .gelistiren .erkin-koksal {
        padding-bottom: 35px;
    }

    .galeri header,
    .basin header {
        height: 110px;
    }

    .galeri .dis-gorseller,
    .basin .makale-roportaj {
        margin-top: 100px;
    }

    .galeri h2 {
        font-size: 30px;
    }

    .galeri h2 strong {
        font-size: 46px;
    }

    .basin .makale-roportaj .intro-text {
        margin-bottom: 50px;
    }

    .basin .makale-roportaj .basin-item {
        padding-left: 63px;
    }

    .basin .makale-roportaj span.title {
        font-size: 20px;
    }

    .basin .downloads p {
        font-size: 22px;
    }

    .basin .downloads h2 {
        font-size: 42px;
    }

    .basin .downloads .basin-odasi{
        margin-top: 40px;
        margin-bottom: 55px;
    }

    .basin .downloads .gorsel {
        font-size: 19px;
        padding: 2px 15px;
        margin: 20px auto 40px;
    }

    .iletisim .contact .info,
    .iletisim .contact .info a,
    .iletisim .contact .contact-social li a {
        font-size: 18px;
    }

    .iletisim .contact p {
        margin: 40px 0;
    }

    .iletisim input[type="submit"] {
        margin-bottom: 35px;
    }

    .iletisim .contact h3 {
        font-size: 55px;
    }

    footer {
        margin-top: 55px;
    }

    footer .contact {
        top: 81px;
        left: 318px;
    }

    footer .contact .tel {
        display: block;
    }

    footer .contact .email:before {
        display: none;
    }

    .swiper-button-prev, .swiper-button-next {
        width: 30px;
        height: 60px;
        margin-top: -30px;
    }

    .mask-1 {
        width: 380px;
        height: 380px;
    }

    .mask-1.left,
    .mask-1.right {
        top: -330px;
    }

    .mask-3 {
        width: 420px;
        height: 420px;
    }

    .mask-3.left,
    .mask-3.right {
        top: -250px;
    }

    .mask-4 {
        width: 420px;
        height: 483px;
        top: -345px;
    }

    .fancybox-title-float-wrap .child {
        font-size: 18px;
    }

}


@media only screen and (min-width: 992px) and (max-width: 1199px) {

	header .navbar {
		height: 150px;
	}

	header .navbar .logo {
	    width: 295px;
	    height: 126px;
	}

	header .navbar-nav {
		margin-top: 106px;
	}

	header .navbar .navbar-nav li {
	    margin-right: 36px;
	}

	header .navbar .navbar-nav li span a {
	    font-size: 12px;
        line-height: 12px;
	}

	header .navbar .navbar-nav li span:before {
		width: 24px;
	}

	header .navbar .social {
		top: 40px;
	}

	.main {
		padding-bottom: 80px;
	}

	.main .main-image {
		height: 782px;
		background-size: 1800px 782px;
	}

    #scroll-down,
    #scroll-down-short {
        top: 180px;
    }

    .big-letter {
        font-size: 107px;
        top: -46px;
    }

	.home .main .main-text {
		right: 28px;
		top: 265px;
	}

	.home .main .main-text h1 {
	    font-size: 43px;
	}

	.home .main .main-text span {
		font-size: 43px;
	}

	.home .main .teslimat {
		width: 130px;
	    height: 130px;
        top: 365px;
        right: 150px;
	}

    .home .luks-bir-otel .intro-text,
    .yasam-stili .restaurant .intro-text {
        margin-bottom: 35px;
    }

    .home .padding-left p,
    .home .padding-left .big-letter {
        padding-left: 60px;
    }

    .dogayla-ic-ice .map h2 {
        font-size: 60px;
        top: 28px;
    }

    .dogayla-ic-ice .map .location {
        top: 105px;
        left: 80px;
    }

    .dogayla-ic-ice .map .distance {
        top: 105px;
        left: 165px;
    }

    .home .hizmetler p {
        margin-bottom: 60px;
    }

    .home .slider h2 {
        font-size: 46px;
    }

    .yasam-stili .main h1,
    .sea-homes h1,
    .basin .main h1,
    .iletisim .main h1 {
        font-size: 75px;
    }

    .yasam-stili .restaurant h3 {
        font-size: 44px;
        margin-bottom: 55px;
    }

    .yasam-stili .restaurant h3 strong {
        font-size: 24px;
    }

    .yasam-stili p {
        padding-bottom: 21px;
    }

    .yasam-stili .spa h2,
    .yasam-stili .cevre-ve-kultur h2 {
        font-size: 58px;
    }

    .yasam-stili .spa h3 {
        font-size: 51px;
    }

    .yasam-stili .beach h3 {
        font-size: 66px;
    }

    .sea-homes .main-text {
        font-size: 28px;
        margin: 275px auto 0;
    }

    .sea-homes .pasalimani h2 {
        font-size: 43px;
    }

    .sea-homes .pasalimani h2.alt strong {
        font-size: 27px;
    }

    .sea-homes .rezidans-ayrintilari .rezidans-image h2 {
        font-size: 46px;
    }

    .sea-homes .dogaya-saygi .recycle {
        width: 68px;
        height: 68px;
        margin: 50px auto 20px;
    }

    .sea-homes .dogaya-saygi h3 {
        font-size: 46px;
        margin-bottom: 22px;
    }

    .sea-homes .dogaya-saygi p {
        font-size: 17px;
        line-height: 35px;
    }

    .sea-homes .sanal-tur .tur-image {
        height: 475px;
        background-size: 1200px 518px;
    }

    .sea-homes .video {
        padding-bottom: 62px;
    }

    .sea-homes .video h2 {
        font-size: 39px;
    }

    .gelistiren .main h1 {
        font-size: 28px;
        margin-top: 285px;
    }

    .gelistiren .main .homes-title {
        width: 300px;
        height: 43px;
    }

    .gelistiren .homes .intro-text {
        margin-bottom: 40px;
    }

    .gelistiren .homes .image {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .gelistiren .homes h3,
    .gelistiren .erkin-koksal h2,
    .gelistiren .rifat-baltaoglu h2 {
        font-size: 47px;
    }

    .gelistiren .erkin-koksal {
        padding-bottom: 35px;
    }

    .gelistiren .erkin-koksal h2 strong,
    .gelistiren .rifat-baltaoglu h2 strong {
        font-size: 24px;
    }

    .galeri header,
    .basin header {
        height: 150px;
    }

    .basin .makale-roportaj span.title {
        font-size: 21px;
    }

    .basin .downloads h2 {
        font-size: 46px;
    }

    .iletisim .contact h3 {
        font-size: 61px;
    }

    footer {
        margin-top: 62px;
    }

	footer .contact {
		left: 315px;
	}

    .mask-1 {
        width: 420px;
        height: 420px;
    }

    .mask-1.left,
    .mask-1.right {
        top: -360px;
    }

    .mask-3 {
        width: 495px;
        height: 495px;
    }

    .mask-3.left,
    .mask-3.right {
        top: -330px;
    }

    .mask-4 {
        width: 480px;
        height: 552px;
        top: -380px;
    }

}


@media (min-width:768px) {

  .v-align {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }

  .v-align [class*=col] {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: middle;
  }

}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
    /* Retina-specific stuff here */
}