@charset "UTF-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('./fonts/Roboto-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url('./fonts/Roboto-BoldItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: url('./fonts/Roboto-LightItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
    src: url('./fonts/Roboto-MediumItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: url('./fonts/Roboto-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100;
    src: url('./fonts/Roboto-ThinItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('./fonts/Roboto-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 900;
    src: url('./fonts/Roboto-BlackItalic.ttf') format('truetype');
}
/* CSS Document */
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #ECECEC;
  color: #220728;
}
body.fancybox-active {
  height: 100%;
}

form {
  width: 100%;
  height: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a, a img {
  text-decoration: none;
  outline: none;
  border: none;
}

.clr {
  clear: both;
  height: 0;
}

::-webkit-input-placeholder {
  color: #707070;
}

:-moz-placeholder {
  color: #707070;
}

::-moz-placeholder {
  color: #707070;
}

:-ms-input-placeholder {
  color: #707070;
}

::selection {
  background: #1691CE;
  color: #fff;
}

::-moz-selection {
  background: #1691CE;
  color: #fff;
}

/*General Elements */
body, input, textarea, select, option {
  font-family: "Roboto";
}

*, *:after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

:before {
  font-family: IcoFont;
  font-style: normal;
}

section {
  position: relative;
  padding: 75px 140px 75px 140px !important;
}

.content {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 100%;
  margin: auto;
  padding: 0;
}
.content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}

.btn {
  box-shadow: 0px 0px 38px rgba(150, 176, 203, 0.3098039216);
  background: #fff;
  line-height: 60px;
  font-size: 11px;
  color: #1691CE;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  padding: 0 40px;
  font-weight: bold;
}

i.icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  font-style: normal;
  position: relative;
}
i.icon.feedbackIco {
  background-image: url(../images/icons/feedback.svg);
}
i.icon.mailIco {
  background-image: url(../images/icons/mail.svg);
  width: 17px;
  height: 14px;
}
i.icon.messageIco {
  background-image: url(../images/icons/message.svg);
}
i.icon.phoneIco {
  background-image: url(../images/icons/phone.svg);
  width: 18px;
  height: 18px;
}
i.icon.searchIco {
  background-image: url(../images/icons/search.svg);
  width: 17px;
  height: 17px;
}

.arrowBtn {
  float: left;
  line-height: 70px;
  position: relative;
  background: #220728;
  width: 270px;
  height: 70px;
}
.arrowBtn span {
  position: relative;
  z-index: 2;
  color: #BFA474;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.5px;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: url(../images/icons/goldArrow.svg) no-repeat right 30px center;
  background-repeat: no-repeat;
  line-height: 70px;
  padding-left: 30px;
  text-align: left;
}
.arrowBtn:before {
  width: 0px;
  height: 70px;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #BFA474;
}
.arrowBtn:hover span {
  color: #220728;
  background: url(../images/icons/purpleArrow.svg) no-repeat right 25px center;
}
.arrowBtn:hover:before {
  width: 100%;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.row .col {
  flex: 0 0 auto;
  width: 33.3333%;
}
.row .col.col-1 {
  width: 12.5%;
}
.row .col.col-2 {
  width: 25%;
}
.row .col.col-3 {
  width: 37.5%;
}
.row .col.col-4 {
  width: 50%;
}
.row .col.col-5 {
  width: 62.5%;
}
.row .col.col-6 {
  width: 75%;
}
.row .col.col-7 {
  width: 27.5%;
}
.row .col.col-8 {
  width: 100%;
}
.row .col.col-9 {
  width: 35%;
}
.row .col.col-10 {
  width: 65%;
}
.row.j-center {
  justify-content: center;
}

.rowSixCol {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.rowSixCol .col {
  flex: 0 0 auto;
  width: 33.3333%;
}
.rowSixCol .col.col-1 {
  width: 16.6666666667%;
}
.rowSixCol .col.col-2 {
  width: 33.3%;
}
.rowSixCol .col.col-3 {
  width: 50%;
}
.rowSixCol .col.col-4 {
  width: 66.6666666667%;
}
.rowSixCol .col.col-5 {
  width: 83.3%;
}
.rowSixCol .col.col-6 {
  width: 100%;
}
.rowSixCol.j-center {
  justify-content: center;
}

.pad {
  padding: 100px;
}

.h10 {
  height: 10%;
}

.h20 {
  height: 20%;
}

.h30 {
  height: 30%;
}

.h40 {
  height: 40%;
}

.h50 {
  height: 50%;
}

.h60 {
  height: 60%;
}

.h70 {
  height: 70%;
}

.h80 {
  height: 80%;
}

.h90 {
  height: 90%;
}

.h100 {
  height: 100%;
}

.pt-0 {
  padding-top: 0;
}

.border-right {
  border-right: 1px solid #D5D8DC;
}

.border-left {
  border-left: 1px solid #D5D8DC;
}

.border-top {
  border-top: 1px solid #D5D8DC;
}

.border-bottom {
  border-bottom: 1px solid #D5D8DC;
}

.pl8 {
  padding-left: 8%;
}

.pr8 {
  padding-right: 8%;
}

.p-4 {
  padding: 4%;
}

.p-7 {
  padding: 7%;
}

.pr-5 {
  padding-right: 5%;
}

.pl-5 {
  padding-left: 5%;
}

.pr-40 {
  padding-right: 40px;
}

.pl-40 {
  padding-left: 40px;
}

h3 {
  font-weight: bold;
  font-size: 60px;
}
h3.brown {
  color: #BFA474;
}
h3.purple {
  color: #220728;
}

h2 {
  font-weight: 500;
  font-size: 55px;
  color: #220728;
  margin-bottom: 35px;
}
h2 span {
  color: #BFA474;
  font-weight: bold;
}
h2.mt150 {
  margin-top: 150px;
}

a.scroll {
  display: block;
  width: 20px;
  height: 30px;
  position: absolute;
  z-index: 2;
}
a.scroll span {
  display: block;
  width: 20px;
  height: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
a.scroll span:after {
  width: 2px;
  height: 1px;
  background: #fff;
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 45%;
  -webkit-animation: mainArrowAnim 1s infinite; /* Safari 4+ */
  -moz-animation: mainArrowAnim 1s infinite; /* Fx 5+ */
  -o-animation: mainArrowAnim 1s infinite; /* Opera 12+ */
  animation: mainArrowAnim 1s infinite;
}
a.scroll small {
  position: absolute;
  color: #fff;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  font-size: 14px;
}

@-webkit-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@-moz-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@-o-keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
@keyframes mainArrowAnim {
  0% {
    height: 0px;
  }
  50% {
    height: 10px;
  }
  100% {
    height: 0px;
  }
}
.showOnMobile {
  display: none !important;
}

/*General Elements */
aside {
  position: fixed;
  width: 140px;
  height: 100%;
  height: calc(100vh - 120px);
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 6;
}
aside .content {
  height: 100%;
}
aside .content a {
  display: block;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  color: #220728;
  text-align: center;
  align-items: center;
  width: 100%;
  height: 50%;
  font-weight: bold;
  border-bottom: 2px solid #e8e5e9;
  position: relative;
}
aside .content a img {
  display: block;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}
aside .content a span {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
aside .content a small {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
aside .content a:before {
  display: block;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  top: 0;
  left: 0;
  position: absolute;
  background: #BFA474;
  content: "";
}
aside .content a:hover:before, aside .content a.selected:before {
  height: 100%;
}
aside .content a:hover img, aside .content a.selected img {
  filter: brightness(50%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
  height: 120px;
}
header .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  max-width: none;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  background: #fff;
  padding-left: 140px;
}
header a.logo {
  display: block;
  background: url(../images/logoDark.svg) no-repeat center;
  background-size: 100% auto;
  width: 155px;
  height: 53px;
}
header nav {
  height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #220728;
  padding: 120px 120px 0 140px;
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  /*ul{ height:100%; @include FlexBox(); align-items: center;
      li{@include FlexBox(); align-items: center;  @include easing(0.3s);
          a{color:#220728; font-weight:bold; font-size:15px;display:block; padding:0 30px;}
          &:hover{
              a{opacity:1;}
          }
      }
  }
  a.phone{padding-left:30px; line-height:30px; color:#220728; background: url(../images/icons/phoneDark.svg) no-repeat left center;}*/
}
header nav .left {
  width: 70%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header nav .left ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
header nav .left ul li {
  width: 25%;
  margin-bottom: 50px;
}
header nav .left ul li a {
  font-size: 25px;
  font-weight: bold;
  color: #BFA474;
}
header nav .left ul li ul {
  width: 100%;
  padding-top: 5px;
}
header nav .left ul li ul li {
  width: 100%;
  margin-bottom: 0;
}
header nav .left ul li ul li a {
  color: #fff;
  font-size: 17px;
  font-weight: 200;
  letter-spacing: -1px;
  display: block;
  padding: 5px 0;
}
header nav .left ul li a[href="javascript:;"] {
  cursor: default;
}
header nav .right {
  width: 30%;
  height: 100%;
  background: #BFA474;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  transform: translateX(300px);
  transition-delay: 0.7s;
}
header nav .right .rightInner {
  padding: 0 90px;
  width: 100%;
}
header nav .right .rightInner h3 {
  font-size: 17px;
  font-weight: normal;
  color: #220728;
  letter-spacing: -1px;
  padding-bottom: 10px;
}
header nav .right .rightInner a.phone-link {
  font-size: 27px;
  display: block;
  color: #220728;
  font-weight: bold;
  margin-bottom: 50px;
}
header nav .right .rightInner a.videoLink {
  display: block;
  width: 100%;
  padding-bottom: 58%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  box-shadow: 1px 12px 36px 0px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 1px 12px 36px 0px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 1px 12px 36px 0px rgba(0, 0, 0, 0.24);
}
header nav .right .rightInner a.videoLink img {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-width: none;
}
header nav .right .rightInner a.videoLink:before {
  content: "\eca6";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  font-size: 60px;
  z-index: 2;
}
header nav .right .rightInner a.videoLink:hover img {
  width: 110%;
}
header nav .right .rightInner .social {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
}
header nav.opened {
  left: 0;
}
header nav.opened .right {
  transform: translateX(0px);
}
header.home {
  background: transparent;
}
header.home a.logo {
  background: url(../images/logo.svg) no-repeat center;
}
header.home nav ul li a {
  color: #fff;
}
header.home nav a.phone {
  color: #fff;
  background: url(../images/icons/phone.svg) no-repeat left center;
}
header .navTools {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
header .navTools a {
  display: block;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  color: #220728;
  text-align: center;
  align-items: center;
  width: 140px;
  height: 100%;
  font-weight: bold;
  border-left: 1px solid #e8e5e9;
  position: relative;
}
header .navTools a img {
  display: block;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}
header .navTools a span {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
header .navTools a small {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
header .navTools a:before {
  display: block;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  top: 0;
  left: 0;
  position: absolute;
  background: #BFA474;
  content: "";
}
header .navTools a:hover:before, header .navTools a.selected:before {
  height: 100%;
}
header .navTools a:hover img, header .navTools a.selected img {
  filter: brightness(50%);
}
header .navTools a.menuLink {
  color: #BFA474;
}
header .navTools a.menuLink:before {
  background: #220728;
  height: 100%;
}
header .navTools a.menuLink .menuLinkContent {
  width: 30px;
  height: 50px;
  position: relative;
  margin: auto;
}
header .navTools a.menuLink .menuLinkContent small {
  position: absolute;
  bottom: 0;
}
header .navTools a.menuLink .line1 {
  width: 30px;
  height: 2px;
  background: #BFA474;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .navTools a.menuLink .line2 {
  width: 30px;
  height: 2px;
  background: #BFA474;
  position: absolute;
  top: 8px;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .navTools a.menuLink .line3 {
  width: 30px;
  height: 2px;
  background: #BFA474;
  position: absolute;
  top: 16px;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .navTools a.menuLink.closer .line1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  top: 10px;
}
header .navTools a.menuLink.closer .line2 {
  display: none;
}
header .navTools a.menuLink.closer .line3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  top: 10px;
}

.modal-privacy h1 {
  position: relative !important;
}

.mobileMenuLink {
  height: 100%;
  width: 60px;
  float: left;
}

.mobileMenuLinkContent {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 20px auto 0;
}

.line1 {
  width: 20px;
  height: 2px;
  background: #2D2C73;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.line2 {
  width: 20px;
  height: 2px;
  background: #2D2C73;
  position: absolute;
  top: 8px;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.line3 {
  width: 20px;
  height: 2px;
  background: #2D2C73;
  position: absolute;
  top: 16px;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mobileMenuLink.closer .line1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  top: 10px;
}

.mobileMenuLink.closer .line2 {
  display: none;
}

.mobileMenuLink.closer .line3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  top: 10px;
}

main {
  width: 100%;
  padding: 0 140px 0 0;
  position: relative;
  z-index: 4;
}
main h1 {
  position: absolute;
}
main section {
  margin: 0;
  padding: 140px !important;
}
main section .content {
  width: 100%;
  margin: 0;
}
main section .content.whiteBg {
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
main.subPage {
  padding-top: 120px;
}
main .breadcrumb {
  left: 140px !important;
  top: 50px !important;
}

section.mainSlider {
  width: 100%;
  height: 100%;
  height: 100vh;
  background: #666;
  margin: 0;
  padding: 0 !important;
}
section.mainSlider .owl-carousel, section.mainSlider .owl-stage-outer, section.mainSlider .owl-stage, section.mainSlider .owl-item, section.mainSlider .item {
  height: 100%;
}
section.mainSlider .item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  position: relative;
  overflow: hidden;
  padding-top: 116px;
}
section.mainSlider .item .content {
  height: 100%;
}
section.mainSlider .item .caption {
  position: absolute;
  top: 50%;
  left: -400px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
section.mainSlider .item .caption h2 {
  color: #fff;
  font-weight: bold;
  font-size: 65px;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 30px;
  display: block;
}
section.mainSlider .item .caption h2 span {
  color: #BFA474;
}
section.mainSlider .item .caption p {
  font-size: 18px;
  color: #fff;
  max-width: 520px;
  font-weight: 400;
  line-height: normal;
}
section.mainSlider .active .item .caption {
  left: 140px;
  opacity: 1;
}
section.mainSlider .active .item .desc {
  bottom: 0;
  opacity: 1;
}
section.mainSlider .owl-nav {
  position: absolute;
  bottom: 60px;
  right: 90px;
  height: 80px;
}
section.mainSlider .owl-nav button {
  width: 80px;
  height: 100%;
  background-color: #220728 !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
  border: 1px solid #BFA474 !important;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
section.mainSlider .owl-nav button:before {
  color: #BFA474;
  font-size: 20px;
}
section.mainSlider .owl-nav button.owl-prev {
  margin-right: 20px;
}
section.mainSlider .owl-nav button.owl-prev:before {
  content: "\eab5";
}
section.mainSlider .owl-nav button.owl-next:before {
  content: "\eab8";
}
section.mainSlider .owl-nav button:hover {
  background-color: #BFA474 !important;
}
section.mainSlider .owl-nav button:hover:before {
  color: #220728;
}
section.mainSlider .owl-dots {
  position: absolute;
  bottom: 90px;
  width: 70px;
  right: 300px;
}
section.mainSlider .owl-dots .owl-dot {
  width: 100%;
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  float: left;
}
section.mainSlider .owl-dots .owl-dot span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  background: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.mainSlider .owl-dots .owl-dot.active {
  background: none;
}
section.mainSlider .owl-dots .owl-dot.active span {
  width: 100%;
  height: 100%;
  background: #BFA474;
}
section.mainSlider a.scroll {
  left: 50%;
  bottom: 60px;
}

h2 {
  font-size: 55px;
  color: #220728;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
h2 strong {
  color: #BFA474;
  font-weight: bold;
}
h2.small {
  font-size: 45px;
}

a.arrowLink {
  position: relative;
  border-radius: 3px;
  background: #220728;
  display: inline-block;
  padding: 20px 120px 20px 30px;
  font-weight: bold;
  font-size: 13px;
  color: #BFA474;
  overflow: hidden;
}
a.arrowLink span {
  position: relative;
  z-index: 2;
}
a.arrowLink:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  display: block;
  background: #BFA474;
}
a.arrowLink:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 100%;
  position: absolute;
  background: url(../images/icons/rightArrow.svg) no-repeat center;
  background-size: 100% auto;
  top: 0;
  right: 10%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a.arrowLink:hover {
  color: #220728;
}
a.arrowLink:hover:before {
  width: 100%;
}
a.arrowLink:hover:after {
  right: 5%;
  background: url(../images/icons/rightArrowHover.svg) no-repeat center;
  background-size: 100% auto;
}

a.teaserLink {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 35px;
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
a.teaserLink span.img {
  width: 55%;
}
a.teaserLink span.img img {
  display: block;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
a.teaserLink span.txt {
  width: 45%;
  padding-left: 50px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #220728;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.05em;
}
a.teaserLink span.txt small {
  display: block;
  width: 100%;
}
a.teaserLink span.txt i {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 3px;
  background: #220728 url(../images/icons/rightArrow.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a.teaserLink:hover span.txt i {
  width: 100%;
}

a.konutTeaserLink {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 35px;
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  height: 100%;
}
a.konutTeaserLink span.img {
  width: 60%;
}
a.konutTeaserLink span.img img {
  display: block;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
a.konutTeaserLink span.txt {
  width: 40%;
  padding-right: 50px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #220728;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.05em;
}
a.konutTeaserLink span.txt small {
  display: block;
  width: 100%;
}
a.konutTeaserLink span.txt span {
  font-weight: 300;
  font-size: 14px;
  width: 100%;
  display: block;
}
a.konutTeaserLink span.txt i {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 3px;
  background: #220728 url(../images/icons/rightArrow.svg) no-repeat center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a.konutTeaserLink:hover span.txt i {
  width: 100%;
}
a.konutTeaserLink.brown {
  background: #BFA474;
}
a.konutTeaserLink.brown span.txt i {
  background: #fff url(../images/icons/rightArrow.svg) no-repeat center;
}

.txtImgContent {
  width: 100%;
}
.txtImgContent .txt {
  padding-top: 5%;
  padding-bottom: 5%;
}
.txtImgContent .txt p {
  font-family: Roboto;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: #220728;
  max-width: 560px;
}
.txtImgContent .txt a.arrowLink {
  margin-top: 75px;
}
.txtImgContent .imgWithBoxes {
  width: 100%;
  position: relative;
}
.txtImgContent .imgWithBoxes i {
  border-radius: 10px;
  background: transparent;
  opacity: 0.65;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
  content: "";
  width: 10%;
  padding-bottom: 10%;
  position: absolute;
  top: 10%;
  right: -5%;
  z-index: 3;
}
.txtImgContent .imgWithBoxes:before {
  border-radius: 10px;
  background: transparent;
  opacity: 0.65;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
  content: "";
  width: 25%;
  padding-bottom: 25%;
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: 3;
}
.txtImgContent .imgWithBoxes:after {
  border-radius: 10px;
  background: #fff;
  opacity: 0.65;
  display: block;
  content: "";
  width: 50%;
  padding-bottom: 15%;
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: 1;
}
.txtImgContent .img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  box-shadow: 1px 12px 36px 0px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 1px 12px 36px 0px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 1px 12px 36px 0px rgba(0, 0, 0, 0.24);
  z-index: 2;
  position: relative;
}
.txtImgContent .img img {
  display: block;
  width: 100%;
}
.txtImgContent .img .links {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 60px 60px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.txtImgContent .img .links a {
  position: relative;
  border-radius: 3px;
  display: block;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
  overflow: hidden;
  width: 47%;
  border: 1px solid #fff;
  padding: 25px;
}
.txtImgContent .img .links a span {
  position: relative;
  z-index: 2;
}
.txtImgContent .img .links a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  display: block;
  background: #fff;
}
.txtImgContent .img .links a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 100%;
  position: absolute;
  background: url(../images/icons/rightArrow2.svg) no-repeat center;
  background-size: 100% auto;
  top: 0;
  right: 10%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.txtImgContent .img .links a:hover {
  color: #220728;
}
.txtImgContent .img .links a:hover:before {
  width: 100%;
}
.txtImgContent .img .links a:hover:after {
  right: 5%;
  background: url(../images/icons/rightArrow2Hover.svg) no-repeat center;
  background-size: 100% auto;
}

.boxArea .odul {
  height: 100%;
  padding: 60px !important;
}
.boxArea .odul .img {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.boxArea .odul .img img {
  margin-right: 30px;
}
.boxArea .odul .img strong {
  font-size: 14px;
  color: #BFA474;
  display: block;
  width: calc(100% - 130px);
}
.boxArea .odul .right {
  float: none;
  width: 100%;
}
.boxArea .odul .right strong {
  color: #BFA474;
  font-size: 14px;
  display: block;
  margin-bottom: 50px;
}
.boxArea .odul .right span {
  color: #220728;
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: 1.5;
}
.boxArea .odul .right i {
  position: absolute;
  right: 60px;
  bottom: 60px;
  font-size: 12px;
  color: #ccc;
}

section.teaser {
  padding-top: 150px !important;
}

.webTeaser {
  width: 100%;
  background: #FAFAFA url(../images/img/teaser.jpg) no-repeat center;
  background-size: auto 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  align-items: center;
}
.webTeaser p {
  font-size: 20px;
  max-width: 360px;
}
.webTeaser a {
  height: 69px;
  padding: 15px 0 0 61px;
  background: url(../images/icons/globe.svg) no-repeat left center;
}
.webTeaser a span {
  display: block;
  line-height: 34px;
  border: 2px solid #220728;
  border-radius: 0 34px 34px 0;
  font-size: 15px;
  font-weight: bold;
  color: #220728;
  border-left: none;
  padding: 0 35px 0 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.webTeaser a:hover span {
  background: #220728;
  color: #fff;
}

.mahalTeaser {
  width: 100%;
  background: #BFA474 url(../images/img/mahalBg.png) no-repeat left bottom;
  background-size: auto 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  align-items: center;
  color: #220728;
}
.mahalTeaser span {
  font-size: 32px;
  letter-spacing: -2px;
}
.mahalTeaser img {
  width: 32%;
  margin-right: 15%;
}
.mahalTeaser:before {
  display: block;
  width: 80px;
  line-height: 80px;
  background: #220728;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  color: #fff;
  content: "\eab8";
  text-align: center;
  position: absolute;
  right: 6%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mahalTeaser:hover:before {
  background: #fff;
  color: #220728;
  right: 3%;
}

section.about .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
section.about .left {
  width: 50%;
}
section.about .left h3 {
  font-size: 60px;
  color: #220728;
  font-weight: 500;
  padding-bottom: 30px;
  letter-spacing: -5px;
  font-weight: normal;
}
section.about .left p {
  font-size: 16px;
  max-width: 570px;
}
section.about .right {
  width: 50%;
}
section.about .aboutNav {
  width: 100%;
  position: relative;
  margin-top: 60px;
}
section.about .aboutNav a.aNext, section.about .aboutNav a.aPrev {
  position: absolute;
  width: 50px;
  line-height: 50px;
  background: #220728;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: block;
  color: #fff;
  text-align: center;
}
section.about .aboutNav a.aPrev {
  top: 50%;
  margin-top: -25px;
  left: 5%;
}
section.about .aboutNav a.aPrev:before {
  content: "\eab5";
}
section.about .aboutNav a.aNext {
  top: 50%;
  margin-top: -25px;
  right: 5%;
}
section.about .aboutNav a.aNext:before {
  content: "\eab8";
}
section.about .aboutNav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  margin: auto;
  justify-content: space-between;
}
section.about .aboutNav ul li {
  display: block;
  width: 32%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: 1px solid rgba(34, 7, 40, 0.2);
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.about .aboutNav ul li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
}
section.about .aboutNav ul li a img {
  display: block;
  margin: auto;
}
section.about .aboutNav ul li a small {
  color: #220728;
  font-size: 12px;
  font-weight: bold;
}
section.about .aboutNav ul li.selected, section.about .aboutNav ul li:hover {
  background: #BFA474;
}

section.plan .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
section.plan .left {
  position: relative;
  width: 60%;
  padding-left: 20px;
}
section.plan .left .planImgList {
  width: 100%;
  position: relative;
}
section.plan .left .planImgList a {
  display: block;
  width: 100%;
  display: none;
}
section.plan .left .planImgList a img {
  display: block;
  width: 100%;
}
section.plan .left .planImgList a:first-child {
  display: block;
}
section.plan .right {
  width: 40%;
  padding: 0 50px;
}
section.plan .right h3 {
  background: #220728;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #BFA474;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  padding: 30px 0;
}
section.plan .right h3 img {
  margin-right: 20px;
}
section.plan .planList {
  padding-top: 50px;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.plan .planList .planCategory {
  width: 45%;
}
section.plan .planList .planCategory a {
  display: block;
  width: 100%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background: #fff;
  color: #220728;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  padding: 90px 0;
}
section.plan .planList .planCategory a:hover, section.plan .planList .planCategory a.selected {
  background: #BFA474;
}
section.plan .planList .planTypes {
  width: 45%;
}
section.plan .planList .planTypes div {
  display: none;
}
section.plan .planList .planTypes div:first-child {
  display: block;
}
section.plan .planList .planTypes a {
  display: block;
  width: 100%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background: transparent;
  color: #220728;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  line-height: 45px;
  border: 1px solid #220728;
}
section.plan .planList .planTypes a:hover, section.plan .planList .planTypes a.selected {
  background: #BFA474;
}

section.location {
  background: #220728;
}
section.location .left {
  padding-right: 60px;
}
section.location .left img {
  width: 100%;
}
section.location .right p {
  color: rgba(255, 255, 255, 0.6);
}
section.location .right p span {
  display: block;
  color: white;
  margin-top: 45px;
  margin-bottom: 20px;
}
section.location .transport {
  margin-top: 60px;
}
section.location .transport ul {
  display: flex;
  background-color: #BFA474;
  max-width: 1063px;
  border-radius: 3px;
}
section.location .transport ul li {
  width: 17%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-left: 1px solid rgba(34, 7, 40, 0.5);
  padding: 30px;
}
section.location .transport ul li span {
  display: block;
  font-weight: bold;
  color: #fff;
}
section.location .transport ul li span:nth-child(1) {
  font-size: 14px;
}
section.location .transport ul li span:nth-child(2) {
  font-size: 30px;
}

section.contact .left {
  padding-right: 50px;
}
section.contact .left .item {
  margin-top: 40px;
}
section.contact .left .item span {
  color: #BFA474;
  display: block;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 17px;
}
section.contact .left .item p {
  font-size: 20px;
}
section.contact .left .item p a {
  color: #220728;
}
section.contact .right {
  border-radius: 3px;
  background: linear-gradient(#220728 0%, #bfa474 100%);
  box-shadow: 20px 20px 60px rgba(34, 7, 40, 0.05);
  padding: 20px;
}
section.contact .right img {
  width: 100%;
  display: block;
}
section.contact .right iframe {
  width: 100%;
  height: 100%;
}

.checkbox-box {
  display: block;
  color: #707070;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  padding-top: 10px;
}

.checkbox-box input {
  position: absolute;
  opacity: 0;
}

.checkbox-box label {
  margin-right: 0;
  position: relative;
  padding-left: 60px;
  min-width: auto;
  line-height: 1.5;
  display: block;
  padding-top: 5px;
  font-size: 10px;
}

.checkbox-box label:before {
  width: 30px;
  height: 30px;
  background-color: #D2D7D7;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-box input:checked + label:before {
  background-image: url(../images/icons/check.svg);
}

footer {
  background: #220728;
  padding: 100px 230px 50px 140px;
}
footer .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .right {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .social {
  margin-right: 40px;
}
footer .social a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #BFA474;
  color: #BFA474;
  margin-right: 6px;
  float: left;
  text-align: center;
  position: relative;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
footer .social a i {
  position: relative;
  font-size: 20px;
}
footer .social a:before {
  width: 0%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  background: #BFA474;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .social a:hover {
  color: #fff;
}
footer .social a:hover:before {
  width: 100%;
}
footer #footer-menu {
  padding: 0;
  background: none;
}
footer #footer-menu ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer #footer-menu ul li {
  width: auto !important;
  min-width: auto !important; list-style: none!important;
}
footer #footer-menu ul li strong {
  font-size: 14px;
  font-family: "Roboto";
  font-weight: bold;
}
footer #footer-menu ul li ul {
  display: block;
}
footer #footer-menu ul li ul li a {
  font-size: 11px;
  opacity: 0.6;
}
footer #footer-menu ul li ul li a:hover {
  opacity: 1;
}
footer .copyright-bar {
  background: #BFA474;
  padding: 25px 40px;
  height: auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  justify-content: space-between;
  align-items: center;
}
footer .copyright-bar .ppasa-logo {
  position: relative;
  transform: none;
  left: 0;
}
footer .copyright-bar .copy {
  position: relative;
  transform: none;
  font-size: 12px;
  color: #220728;
  left: 0;
}
footer .copyright-bar .polat-logo {
  position: relative;
  transform: none;
  left: 0;
}
footer .social-bar {
  position: relative;
  top: auto;
  left: auto;
  color: #220728;
  font-size: 14px;
}
footer .social-bar a {
  color: #220728;
  opacity: 1;
}

#talep-formu {
  position: absolute;
  right: -600px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  width: 520px;
  background: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  padding: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#talep-formu:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ffffff;
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
}
#talep-formu .formFooter {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background: #220728;
  padding: 30px;
}
#talep-formu .formFooter a {
  width: 50%;
  font-size: 12px;
  color: #BFA474;
  display: block;
  line-height: 18px;
  text-align: center;
}
#talep-formu .formFooter a:first-child {
  background: url(../images/icons/phoneDark.svg) no-repeat left center;
  background-size: 18px auto;
  border-right: 1px solid #BFA474;
  text-align: left;
  padding-left: 25px;
}
#talep-formu .formFooter a:first-child:hover {
  color: #fff;
}
#talep-formu .formContent {
  padding: 20px;
}
#talep-formu .formContent p.info {
  font-size: 35px;
  color: #220728;
  font-weight: bold;
}
#talep-formu .formContent p.info span {
  color: #BFA474;
  display: block;
}
#talep-formu.opened {
  right: 160px;
}

/* Forms */
.codeFormData {
  display: none;
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5555;
  padding: 15px;
  left: 0px;
  top: 0px;
  border-radius: 0.5rem;
  box-sizing: border-box;
  z-index: 5;
}

.formContent {
  padding-bottom: 30px;
  position: relative;
}
.formContent .fRow {
  width: 100%;
  clear: both;
  margin-top: 10px;
}
.formContent .fRow.w75 {
  width: 75%;
}
.formContent .fRow .fCol {
  width: 100%;
}
.formContent .fRow .fCol.w50 {
  width: calc(50% - 25px);
  float: left;
  margin-left: 50px;
}
.formContent .fRow .fCol:first-child {
  margin-left: 0;
}
.formContent .fRow .fCol.w100 {
  width: 100%;
}
.formContent .fRow .fCol .element {
  width: 100%;
  height: 60px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formContent .fRow .fCol .element label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #47484B;
  padding-bottom: 7px;
}
.formContent .fRow .fCol .element textarea, .formContent .fRow .fCol .element select, .formContent .fRow .fCol .element input {
  display: block;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(109, 110, 115, 0.8);
  background: #F7F7F7;
}
.formContent .fRow .fCol .element textarea::-webkit-input-placeholder, .formContent .fRow .fCol .element select::-webkit-input-placeholder, .formContent .fRow .fCol .element input::-webkit-input-placeholder {
  color: #220728;
}
.formContent .fRow .fCol .element textarea:-moz-placeholder, .formContent .fRow .fCol .element select:-moz-placeholder, .formContent .fRow .fCol .element input:-moz-placeholder {
  color: #220728;
}
.formContent .fRow .fCol .element textarea::-moz-placeholder, .formContent .fRow .fCol .element select::-moz-placeholder, .formContent .fRow .fCol .element input::-moz-placeholder {
  color: #220728;
}
.formContent .fRow .fCol .element textarea:-ms-input-placeholder, .formContent .fRow .fCol .element select:-ms-input-placeholder, .formContent .fRow .fCol .element input:-ms-input-placeholder {
  color: #220728;
}
.formContent .fRow .fCol .element textarea:focus, .formContent .fRow .fCol .element select:focus, .formContent .fRow .fCol .element input:focus {
  border-color: #220728;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 0px 0px 17px 1px rgb(194, 194, 194);
}
.formContent .fRow .fCol .element textarea.error, .formContent .fRow .fCol .element select.error, .formContent .fRow .fCol .element input.error {
  border: 1px solid #f00 !important;
}
.formContent .fRow .fCol .element textarea.hidden, .formContent .fRow .fCol .element select.hidden, .formContent .fRow .fCol .element input.hidden {
  display: none;
}
.formContent .fRow .fCol .element select {
  padding-left: 18px;
}
.formContent .fRow .fCol .element.textarea {
  height: 150px;
  resize: none;
}
.formContent .fRow .fCol .element textarea {
  padding: 20px 0 0 18px;
}
.formContent .fRow .fCol .element .intl-tel-input {
  height: 100%;
  width: 100%;
}
.formContent .fRow .fCol .element .intl-tel-input.separate-dial-code .selected-dial-code {
  font-size: 11px;
  font-weight: bold;
}
.formContent .fRow .fCol .element .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  background: #F7F7F7 !important;
}
.formContent .fRow .fCol .element.error .intl-tel-input {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid #f00 !important;
}
.formContent .fRow .fCol #send_button, .formContent .fRow .fCol #verifyDataBtn {
  display: inline-block;
  height: 100%;
  background: #BFA474 url(../images/icons/submit.svg) no-repeat 85% center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border: none;
  padding: 0 80px 0 35px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.formContent .fRow .fCol #send_button:hover, .formContent .fRow .fCol #verifyDataBtn:hover {
  background: #856E43 url(../images/icons/submit.svg) no-repeat 90% center;
}
.formContent .fRow .fCol span.error {
  display: none !important;
}
.formContent .fRow .fCol .resendSuccess {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
.formContent .fRow input[type=checkbox] {
  display: none;
}
.formContent .fRow input[type=checkbox] + label {
  font-size: 11px;
  color: #220728;
  letter-spacing: -1px;
}
.formContent .fRow input[type=checkbox] + label:before {
  content: "✔";
  float: left;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: transparent;
  transition: 0.2s;
  border: 2px solid #707070;
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
}
.formContent .fRow input[type=checkbox] + label:active:before {
  transform: scale(0);
}
.formContent .fRow input[type=checkbox]:checked + label:before {
  border: 2px solid #3742FA;
  color: #fff;
  background-color: #3742FA;
}

/* Forms*/
#cookie-notice {
  background: #220728 !important;
}
#cookie-notice p #cookie-link, #cookie-notice p #privacyinfo-link {
  color: #BFA474 !important;
}
#cookie-notice #cookie-notice-close {
  background: #BFA474 !important;
  color: #220728 !important;
}

section .content.infoPage {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
section .content.infoPage p {
  font-size: 16px;
  margin: 0 0 10px 0;
  font-family: "Roboto";
}
section .content.infoPage ol, section .content.infoPage ul {
  font-size: 16px;
  line-height: 1.4rem;
  font-family: "Roboto";
}
section .content.infoPage table {
  border-collapse: collapse;
  font-size: 16px;
}
section .content.infoPage table, section .content.infoPage th, section .content.infoPage td {
  border: 1px solid black;
  padding: 10px;
  vertical-align: top;
}
section .content.infoPage table th {
  background: #323e4f;
  color: white;
}
section .content.infoPage table tr:nth-child(even) {
  background-color: #d9e2f3;
}
section .content.infoPage table .center {
  text-align: center;
}

@media screen and (max-width: 1600px) {
  section.contact .row .rightArea .map .contactNav ul {
    min-height: 80px !important;
  }
  section.contact .row .rightArea .map .contactNav ul li {
    padding: 10px 0 !important;
  }
  section.contact .row .rightArea .map .contactNav ul li small {
    font-size: 9px !important;
  }
  section.contact .row .rightArea .map .contactNav ul li span {
    font-size: 20px !important;
  }
  aside {
    width: 100px;
    height: calc(100vh - 100px);
  }
  main {
    padding: 0 100px 0 0;
  }
  main.subPage {
    padding-top: 100px;
  }
  header {
    height: 100px;
  }
  header .content {
    padding-left: 60px;
  }
  header .navTools a {
    width: 100px;
  }
  header nav {
    padding: 100px 100px 0 60px;
  }
  header nav .right .rightInner {
    padding: 0 45px;
  }
  header nav .right .rightInner a.phone-link {
    font-size: 22px;
  }
  header nav .right .rightInner .social a {
    font-size: 20px;
  }
  header nav .left ul li a {
    font-size: 14px;
  }
  header nav .left ul li ul li a {
    font-size: 12px;
  }
  main section {
    padding: 60px 60px 60px 60px !important;
  }
  main .breadcrumb {
    left: 60px !important;
  }
  section.mainSlider .item .caption h2 {
    font-size: 45px;
  }
  section.mainSlider .item .caption p {
    font-size: 14px;
  }
  section.mainSlider .owl-nav {
    height: 50px;
  }
  section.mainSlider .owl-nav button {
    width: 50px;
  }
  section.mainSlider .owl-dots {
    bottom: 75px;
    right: 210px;
  }
  section.mainSlider .active .item .caption {
    left: 60px;
  }
  h2 {
    font-size: 38px;
  }
  footer {
    padding: 60px 160px 60px 60px;
  }
  .txtImgContent .txt p {
    font-size: 14px;
  }
  .boxArea .odul {
    padding: 30px !important;
  }
  .boxArea .odul .right span {
    font-size: 14px;
  }
  section.contact {
    width: 100% !important;
    padding-right: 100px;
  }
  section.contact .row .leftArea .info {
    padding: 0 60px !important;
  }
  section.contact .row .leftArea .info p {
    font-size: 14px !important;
  }
  section.teaser {
    padding-top: 100px !important;
  }
  section.about .left h3 {
    font-size: 40px;
  }
  section.about .left p {
    padding-right: 50px;
  }
  section.plan .right h3 {
    padding: 20px 0;
  }
  section.plan .planList {
    padding-top: 20px;
  }
  section.plan .planList .planCategory a {
    padding: 50px 0;
  }
  h3 {
    font-size: 40px;
  }
  .mahalTeaser span {
    width: 50%;
  }
  .pl8 {
    padding-left: 3%;
  }
  section.contact .left .item p {
    font-size: 15px;
  }
}
@media screen and (max-width: 780px) {
    section.mainSlider{
        bottom: 40px !important;
        height: auto;
    }
    section.mainSlider .item .caption{
        top: 70%;
    }
  .showOnMobile {
    display: block;
  }
  aside .content a.showOnMobile{display: flex!important;}
  header {
    height: 80px;
  }
  header .content {
    padding: 0 0 0 20px;
  }
  header a.logo {
    width: 120px;
    height: 41px;
    background-size: 100% auto !important;
  }
  header .navTools a {
    display: none;
  }
  header .navTools a.menuLink {
    width: 80px;
    display: block;
  }
  header .navTools a.menuLink .menuLinkContent {
    margin-top: 15px;
  }
  header .navTools a.menuLink:before {
    display: none;
  }
  header nav {
    padding: 100px 20px 90px;
    overflow: scroll;
  }
  header nav .left {
    width: 100%;
    height: auto;
  }
  header nav .left ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  header nav .right {
    width: 100%;
    height: auto;
  }
  header nav .right .rightInner {
    padding: 20px;
  }
  aside {
    width: 100%;
    padding-top: 0;
    height: 70px;
    top: auto;
    bottom: 0;
  }
  aside .content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  aside .content a {
    width: 25%;
    height: 100%;
    font-size: 10px;
    border-right: 2px solid #e8e5e9;
    border-bottom: none;
    padding: 0 5px;
  }
  aside .content a img {
    margin: 0 auto 5px;
    width: 20px;
  }
  aside .content a br {
    display: none;
  }
  aside .content a small {
    display: block;
    min-height: 20px;
  }
  main {
    padding: 0;
  }
  main section {
    padding: 20px !important;
  }
  .pl-5 {
    padding-left: 0;
  }
  .pr-40 {
    padding-right: 0;
  }
  h2.small {
    font-size: 26px;
  }
  section.mainSlider .item {
    background-position: center;
  }
  section.mainSlider .item .caption h2 {
    font-size: 28px;
  }
  section.mainSlider .item .caption p {
    font-size: 12px;
    max-width: 300px;
  }
  section.mainSlider .active .item .caption {
    left: 20px;
  }
    section.mainSlider .active .item .caption h1 {
        font-size: 22px !important;
        top: 10px !important;
    }
    section.mainSlider .active .item .caption h1 span{
        font-size: 22px !important;
        top: 10px !important;
    }
    section.mainSlider .active .item .caption p {
        font-size: 10px;
        max-width: 200px;
    }

  section.mainSlider .owl-nav {
    right: 20px;
    bottom: 90px;
  }
  section.mainSlider .owl-nav button.owl-prev {
    margin-right: 10px;
    margin-top: 100px;
      width: 25px;
      height: 30px;
  }
    section.mainSlider .owl-nav button {
        width: 25px;
        height: 25px;
    }
  section.mainSlider .owl-dots {
      bottom: 3px;
      width: 100px;
      right: 130px;
  }
    a.scroll span {
        top: 375% !important;
        width: 50% !important;
        height: 50% !important;
    }

  section.mainSlider a.scroll {
    left: 30px;
    bottom: 100px;
  }
  section.mainSlider a.scroll small {
    display: none;
  }
  .txtImgContent .imgWithBoxes:after {
    right: 0;
  }
  .txtImgContent .txt {
    padding: 20px !important;
  }
  a.teaserLink {
    margin-bottom: 20px;
  }
  a.teaserLink span.img {
    width: 100%;
  }
  a.teaserLink span.txt {
    width: 100%;
    padding: 20px 0 0;
    justify-content: space-between;
  }
  a.teaserLink span.txt small {
    width: auto;
  }
  .boxArea.prices li {
    width: 100% !important;
  }
  .boxArea .odul .right strong {
    margin-bottom: 20px;
  }
  .boxArea .odul .right i {
    position: relative;
    width: 100%;
    display: block;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
  section.location .transport ul {
    flex-wrap: wrap;
  }
  section.location .transport ul li {
    width: 50%;
    border-bottom: 1px solid rgba(34, 7, 40, 0.5);
  }
  section.location .transport ul li span:nth-child(1) {
    font-size: 11px;
  }
  section.location .left {
    padding-right: 0;
  }
  section.location .right {
    padding-top: 20px;
  }
  .row .col {
    width: 100% !important;
  }
  h3 {
    font-size: 30px;
  }
  section {
    padding: 20px !important;
  }
  section.teaser {
    padding-top: 20px !important;
  }
  .webTeaser {
    padding: 30px;
    background-size: 100% auto;
    background-position: center 60px;
  }
  .webTeaser p {
    font-size: 15px;
    margin-bottom: 80px;
  }
  .webTeaser a {
    background-size: 40px 40px;
    height: 40px;
    padding: 5px 0 0 33px;
  }
  .webTeaser a span {
    line-height: 25px;
  }
  section.about .left {
    width: 100%;
    padding-bottom: 20px;
  }
  section.about .left p {
    padding-right: 0;
    font-size: 14px;
  }
  section.about .right {
    width: 100%;
  }
  section.about .aboutNav {
    margin-top: 20px;
  }
  section.about .aboutNav a.aPrev {
    left: -10px;
    width: 40px;
    line-height: 40px;
  }
  section.about .aboutNav a.aNext {
    right: -10px;
    width: 40px;
    line-height: 40px;
  }
  section.about .aboutNav ul {
    width: 77%;
  }
  section.about .aboutNav ul li a {
    padding: 5px;
  }
  section.about .aboutNav ul li a small {
    font-size: 10px;
    line-height: 1;
  }
  .mahalTeaser {
    padding: 20px;
  }
  .mahalTeaser span {
    font-size: 20px;
    width: 100%;
  }
  .mahalTeaser img {
    width: 66%;
    margin: 20px 0 0 0;
  }
  .mahalTeaser:before {
    width: 40px;
    line-height: 40px;
    right: 20px;
    bottom: 30px;
  }
  .pl8 {
    padding: 0 !important;
  }
  section.contact .right {
    margin-top: 25px;
  }
  footer {
    padding: 25px 25px 100px;
  }
  footer .left {
    width: 100%;
  }
  footer .left img {
    width: 100px;
    display: block;
    margin: auto;
  }
  footer .right {
    justify-content: center;
  }
  footer .social {
    margin: 30px 0;
  }
  footer .social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  section.plan .left {
    width: 100%;
    padding: 0 0 25px 0;
  }
  section.plan .right {
    width: 100%;
    padding: 0;
  }
  #talep-formu {
    width: 90%;
    top: auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    bottom: 90px;
    padding: 20px;
  }
  #talep-formu.opened {
    right: 5%;
  }
  #talep-formu .formContent p.info {
    font-size: 22px;
  }
  #talep-formu .formContent .fRow .fCol .element {
    height: 40px;
  }
  #talep-formu .formFooter {
    padding: 15px;
  }
}

@media only screen and (max-width: 600px) {
  section.contact .row .leftArea .info{
    padding: 0 !important;
  }


}
/***********************************************************************************************************************
MessageBox - A jQuery Plugin to replace Javascript's window.alert(), window.confirm() and window.prompt() functions
    Author          : Gaspare Sganga
    Version         : 2.0.1
    License         : MIT
    Documentation   : http://gasparesganga.com/labs/jquery-message-box/
***********************************************************************************************************************/
/*
    You can customize your MessageBox style directly in this file
    or override some classes/styles using an external CSS file loaded after this.
*/
/* Overlay */
.messagebox_overlay {
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 9999;
}

.messagebox_overlay *:focus {
  outline: 0;
}

/* MessageBox */
.messagebox {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 10pt;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  color: #303030;
  background-color: #fcfcfc;
  border: 1px solid #c8c8c8;
  box-shadow: 0px 2px 4px #a0a0a0;
  max-height: 90%; /* This value is useful only when "top" option is set to "auto" */
  max-width: 90%;
  min-width: 300px;
}

/* Content */
.messagebox_content {
  padding: 20px;
  padding-bottom: 0; /* In order to preserve "padding-bottom" when the content is taller than the MessageBox and thus scrolled on the Y-axis, use the following's :after pseudo-class "height" value instead of "padding-bottom" here! */
}

.messagebox_content:after {
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 20px; /* Use this value as if it was #messagebox_content's "padding-bottom" to preserve it when the content overflows Y-axis and the scrollbar is shown */
}

/* Input's Label */
.messagebox_content_label {
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 10px;
  font-style: italic;
}

/* Input (it applies to selects too) */
.messagebox_content_input {
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 10px;
  padding: 3px;
  color: #303030;
  border: 1px solid #909090;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  text-align: left;
}

.messagebox_content_input:hover {
  border-color: #707070;
}

.messagebox_content_input:focus {
  border-color: #707070;
  box-shadow: inset 0px 0px 3px #ffd540;
}

/* Input's style when placed inside a label */
.messagebox_content_label .messagebox_content_input {
  margin-top: 4px;
}

/* Select's "fake placeholder" */
.messagebox_content_input_selectplaceholder {
  color: #909090;
}

/* Buttons */
.messagebox_buttons {
  background-color: #f5f5f5;
  border-top: 1px solid #c8c8c8;
  padding: 10px 20px;
  text-align: center;
}

.messagebox_buttons button {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  min-width: 75px;
  margin: 0px 4px;
  padding: 5px 10px;
  cursor: pointer;
  color: #404040;
  background-color: #e9e9e9;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 51%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid #c0c0c0;
  border-radius: 2px;
}

.messagebox_buttons button:hover {
  color: #202020;
  background-color: #f0f0f0;
}

.messagebox_buttons button:active {
  background-color: #e6e6e6;
  border: 1px solid #a0a0a0;
  box-shadow: inset 0px 0px 6px #d0d0d0;
}

.messagebox_buttons button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.modal-content {
  max-width: 1000px;
}

.pt120 {
  padding-top: 120px !important;
}

.row .col.col-11 {
  width: 8%;
}
.row .col.col-12 {
  width: 92%;
}
.row .col.col-13 {
  width: 44%;
}
.row .col.col-14 {
  width: 56%;
}
.row .col.col-15 {
  width: 66.66666%;
}

.breadcrumb {
  left: 7% !important;
  top: 170px !important;
}
.breadcrumb a {
  color: #220728;
  font-size: normal;
  font-size: 12px;
  position: relative;
}
.breadcrumb a:last-child {
  font-weight: bold;
}
.breadcrumb a:last-child::before {
  display: none;
}
.breadcrumb a:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  width: 3px;
  height: 3px;
  background-color: #220728;
}
.breadcrumb a:after {
  display: none;
}

.imgArea {
  width: 100%;
  height: 100%;
  position: relative;
}
.imgArea img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.imgArea .blurBox {
  position: absolute;
  z-index: 2;
}
.imgArea .blurBox.blurBox1 {
  width: 250px;
  height: 230px;
  border-radius: 10px;
  opacity: 0.65;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.5);
}
.imgArea .blurBox.blurBox2 {
  width: 72px;
  height: 77px;
  border-radius: 10px;
  opacity: 0.7;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.5);
}
.imgArea .blurBox.blurBox3 {
  width: 470px;
  height: 222px;
  border-radius: 10px;
  background: #fff;
  opacity: 0.6;
}
.imgArea .blurBox.blurBox4 {
  width: 250px;
  height: 140px;
  border-radius: 10px;
  background: transparent;
  opacity: 0.65;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.5);
}
.imgArea .blurBox.blurBox5 {
  width: 250px;
  height: 100px;
  border-radius: 10px;
  background: transparent;
  opacity: 0.65;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.5);
  top: -50px;
  left: 100px;
}
.imgArea .blurBox.blurBox6 {
  width: 72px;
  height: 77px;
  border-radius: 10px;
  background: transparent;
  opacity: 0.7;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 70px;
  right: -35px;
}

.news-list {
  width: auto;
}

.pagination {
  margin-bottom: 0px;
}
.pagination a {
  color: #220728;
}
.pagination li.active span {
  background-color: #BFA474;
}

.news-grid ul li {
  height: 360px;
}

.boxArea {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.boxArea li {
  width: 32% !important;
  margin-bottom: 2%;
  height: 360px;
}
.boxArea li a {
  padding: 50px !important;
  margin-bottom: 0px !important;
  height: 100%;
  transition: 0.3s;
  display: block;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.boxArea li a i {
  font-size: 14px;
  font-weight: 500;
  color: #BFA474;
  margin-bottom: 40px;
  display: block;
}
.boxArea li a strong {
  font-size: 20px !important;
  font-weight: normal;
  color: #220728;
}
.boxArea li a .downloadBtn {
  position: absolute;
  bottom: 50px;
  right: 50px;
  border: 1px solid #BFA474;
  color: #BFA474;
  padding: 20px 30px;
  font-weight: bold;
  font-size: 17px;
  background: url(../images/icons/goldDownArrow.svg) no-repeat right 30px center;
  width: 186px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  transition: 0.3s;
}
.boxArea li a .title {
  display: flex;
  align-items: baseline;
  color: #BFA474;
}
.boxArea li a .title strong {
  font-size: 14px !important;
  font-weight: 500;
  color: #BFA474;
  margin-bottom: 40px;
  padding-right: 10px;
}
.boxArea li a .title i {
  padding-left: 10px;
}
.boxArea li a figure img {
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}
.boxArea li:hover a {
  background-color: #BFA474;
  transition: 0.3s;
}
.boxArea li:hover a i {
  color: #220728;
}
.boxArea li:hover a .downloadBtn {
  background: #220728 url(../images/icons/goldDownArrow.svg) no-repeat right 30px center;
  color: #BFA474;
}
.boxArea li:hover a .title {
  color: #220728;
}
.boxArea li:hover a .title strong {
  color: #220728;
}

.captionSelect {
  position: relative;
  width: 300px;
  height: 44px;
  z-index: 9;
  background-color: #fff;
}
.captionSelect > .caption {
  background-color: white;
  padding: 17px 24px;
  cursor: pointer;
  display: block;
  width: 100%;
  position: relative;
  font-size: 15px;
  color: #220728;
  border-radius: 3px;
}
.captionSelect > .caption:after {
  content: "";
  position: absolute;
  width: 17px;
  height: 12px;
  background: url(../images/icons/arrowDownGold.svg) no-repeat center;
  top: 18px;
  right: 20px;
  transition: 0.3s;
}
.captionSelect > .tab-links {
  position: absolute;
  background-color: #f2f2f2;
  width: 100%;
  display: none;
  height: 250px;
  overflow-y: scroll;
}
.captionSelect > .tab-links > .button {
  cursor: pointer;
  display: block;
  color: #220728;
  padding: 10px;
  border-radius: 0px;
}
.captionSelect > .tab-links > .button.selected {
  color: white !important;
}
.captionSelect > .tab-links > .button.active {
  background-color: #BFA474;
  border: none;
}
.captionSelect.open .caption {
  border-radius: 3px 3px 0 0;
  border-bottom: solid 1px #999;
}
.captionSelect.open .caption:after {
  transform: rotateX(180deg);
  transition: 0.3s;
}
.captionSelect.open .tab-links {
  display: block;
}

section.gallery {
  width: 100%;
  height: 100%;
  height: calc(100vh - 120px);
  margin: 0;
  padding: 0px !important;
}
section.gallery .tabsBtn a {
  border-bottom: 1px solid #fff;
  width: 100%;
  height: 140px;
  display: flex;
  color: #220728;
  font-size: 25px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}
section.gallery .tabsBtn a span {
  display: block;
  text-align: center;
}
section.gallery .tabsBtn a:hover {
  background-color: #BFA474;
}
section.gallery .tabsBtn a.active-tab {
  border-bottom: 1px solid transparent;
  background-color: #fff;
  color: #BFA474;
}
section.gallery .tabsBtn a.active-tab:nth-child(1) {
  box-shadow: 1px 8px 14px -3px rgba(209, 209, 209, 0.75) inset;
}
section.gallery .tabs-content .tabs {
  display: none;
}
section.gallery .tabs-content .tabs .gallerySlider .owl-stage-outer .item img {
  width: 100%;
  height: calc(100vh - 120px);
  object-fit: contain;
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav {
  position: absolute;
  bottom: 100px;
  left: -114px;
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav button {
  width: 60px;
  height: 60px;
  position: absolute;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav button:before {
  color: #220728;
  font-size: 20px;
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav button.owl-prev:before {
  content: "\eab5";
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav button.owl-next {
  bottom: 20px;
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav button.owl-next:before {
  content: "\eab8";
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav button:hover {
  background-color: #BFA474 !important;
}
section.gallery .tabs-content .tabs .gallerySlider .owl-nav button:hover:before {
  color: #220728;
  width: 120%;
}
section.gallery .tabs-content .tabs .num {
  color: #220728;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: 50px;
  bottom: 275px;
  width: 40px;
}
section.gallery .tabs-content .tabs .num span {
  display: block;
  font-size: 30px;
  color: #BFA474;
  border-bottom: 1px solid #220728;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

section.contact {
  width: 100%;
  height: 100vh;
  padding: 0 !important;
}
section.contact .row .leftArea {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
section.contact .row .leftArea .info {
  padding: 0 190px;width: 100%;
}
section.contact .row .leftArea .info p {
  font-size: 20px; width: 100%; margin: 15px 0;
}
section.contact .row .leftArea .info p a.arrowBtn{float: none; display: block;}
section.contact .row .leftArea .info p:nth-child(1) {
  font-weight: normal;
}
section.contact .row .leftArea .info p.mb45 {
  margin-bottom: 45px;
}
section.contact .row .rightArea .map {
  position: relative;
  height: 100%;
}
section.contact .row .rightArea .map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.contact .row .rightArea .map .contactNav {
  position: absolute;
  bottom: 0px;
  width: 100%;
}
section.contact .row .rightArea .map .contactNav ul {
  display: flex;
  min-height: 190px;
}
section.contact .row .rightArea .map .contactNav ul li {
  width: 16.6666%;
  background: #220728;
  display: flex;
  font-weight: bold;
  flex-direction: column;
  text-align: center;
  padding: 40px 0px;
}
section.contact .row .rightArea .map .contactNav ul li small {
  font-size: 13px;
  color: #BFA474;
  margin-bottom: auto;
}
section.contact .row .rightArea .map .contactNav ul li span {
  font-size: 30px;
  color: #fff;
}

section.howCanIGo .row {
  background-color: #fff;
  padding: 80px 100px 80px 20px;
  align-items: center;
}
section.howCanIGo .row .col:nth-child(1) img {
  width: 100%;
}
section.howCanIGo .row .col .tab .tab-links {
  margin-bottom: 55px;
}
section.howCanIGo .row .col .tab .tab-links .button {
  width: 200px;
  height: 60px;
  line-height: 60px;
  background-color: #ECECEC;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  color: #220728;
  display: inline;
  border: none;
  margin-right: 20px;
}
section.howCanIGo .row .col .tab .tab-links .button.active {
  background-color: #BFA474;
  color: #220728;
}

section.contactUs .section {
  padding: 0px !important;
}
section.contactUs .row {
  align-items: flex-end;
}
section.contactUs .row .col:nth-child(1) {
  padding-right: 130px;
}
section.contactUs .row .col:nth-child(1) small {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 40px;
  display: block;
}
section.contactUs .row .col section {
  margin-bottom: 0px;
}
section.contactUs .form {
  background: none !important;
  width: auto !important;
  padding: 0px !important;
}
section.contactUs .form .caption {
  display: none;
}
section.contactUs .form .info {
  display: none;
}
section.contactUs .form .form-item input, section.contactUs .form .form-item select, section.contactUs .form .form-item textarea {
  border: none;
  background: #fff;
}
section.contactUs .form .form-item.select .selectboxit-container .selectboxit-btn {
  border: none;
  background-color: #fff;
}
section.contactUs .form .formRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.contactUs .form .formRow .formCol.col60 {
  width: 60%;
}
section.contactUs .form .formRow .formCol.col40 {
  width: 40%;
}
section.contactUs .form .formRow .formCol.col40 button {
  float: right;
}

div.pressNews .head {
  display: flex;
  justify-content: space-between;
}
div.pressNews .news-grid {
  width: 100%;
  padding: 0px;
}
div.pressNews .news-grid ul li {
  margin: 0px 0px 40px 0px;
  float: none;
  width: auto;
}

section.visualMaterial {
  background-color: #220728;
}
section.visualMaterial h2 {
  text-align: center;
  color: #fff;
}
section.visualMaterial .news-grid {
  padding: 0px;
  width: 100%;
}
section.visualMaterial .news-grid ul li {
  width: auto;
  text-align: center;
}
section.visualMaterial .news-grid ul li a {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: center;
}
section.visualMaterial .news-grid ul li a figure img {
  height: auto;
}
section.visualMaterial .news-grid ul li a .downloadBtn {
  position: relative;
  bottom: auto;
  right: auto;
}

section.ourAds .news-grid {
  padding: 0px;
  width: 100%;
}
section.ourAds .news-grid ul li {
  margin: 0px;
  margin-bottom: 2%;
  width: auto;
}
section.ourAds .news-grid ul li a {
  padding: 25px !important;
}
section.ourAds .news-grid ul li a figure {
  margin-bottom: 20px;
}

section.news .news ul li {
  height: 450px !important;
}
section.news .news ul li a {
  padding: 40px !important;
}
section.news .news ul li a .img {
  margin-bottom: 20px;
}
section.news .news ul li a .img img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
}
section.news .news ul li a .right {
  float: none;
}
section.news .news ul li a .right i {
  margin-bottom: 20px;
}

section.projectPhotos {
  background-color: #fff;
}
section.projectPhotos .group-cap {
  display: none;
}
section.projectPhotos .construction .image-grid {
  width: 100%;
}
section.projectPhotos .construction .image-grid ul {
  display: flex;
  flex-wrap: wrap;
}
section.projectPhotos .construction .image-grid ul li {
  float: none;
  width: 23%;
  padding-bottom: 15%;
}
section.projectPhotos .construction .image-grid ul li a img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
  h2 {
    font-size: 26px;
  }
  .news-list {
    padding-top: 0px;
  }
  .news-grid ul li {
    border-radius: 10px;
    margin-bottom: 2%;
  }
  .imgArea .blurBox.blurBox6 {
    right: -20px;
  }
  main section {
    padding: 3% !important;
  }
  .boxArea li {
    width: 49% !important;
    height: 250px !important;
  }
  .boxArea li a {
    padding: 15px !important;
    border-radius: 10px !important;
  }
  .boxArea li a strong {
    font-size: 12px !important;
  }
  .boxArea li a p {
    font-size: 12px;
  }
  .boxArea li a figure img {
    height: auto;
  }
  .boxArea li a .downloadBtn {
    width: 80%;
    right: auto;
    left: 10%;
    bottom: 25px;
    padding: 15px;
  }
  .boxArea li a .title strong {
    margin-bottom: 10px;
    font-size: 10px !important;
  }
  .boxArea li a .title i {
    margin-bottom: 10px;
    font-size: 10px;
  }
  section.news .news ul li {
    height: auto !important; width: 100%!important;
  }
  section.news .news ul li a {
    padding: 15px !important;
  }
  section.news .news ul li a .img img {
    height: auto;
  }
  section.projectPhotos .construction .image-grid ul {
    justify-content: space-between;
  }
  section.projectPhotos .construction .image-grid ul li {
    width: 48%;
    padding-bottom: 32%;
    margin: 0 0 2% 0;
  }
  section.projectPhotos .construction .text-center {
    margin-top: 20px;
  }
  section.projectPhotos .construction .text-center a {
    font-size: 15px;
  }
  section.ourAds .news-grid ul li a {
    padding: 15px !important;
  }
  .pressNews .news-grid ul li {
    margin-bottom: 2% !important;
  }
  .pressNews .news-grid ul li a {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
  .pressNews .news-grid ul li a figure {
    width: 100%;
  }
  .pressNews .news-grid ul li a figure img {
    height: 160px;
  }
  section.contact {
    width: 100%;
    margin-bottom: 60px;
  }
  section.contact .row .leftArea {
    padding: 20px;
  }
  section.contact .row .leftArea .info {
    padding: 0;
  }
  section.contact .row .leftArea .info p {
    font-size: 15px;
  }
  section.contact .row .leftArea .info p.mb45 {
    margin-bottom: 20px;
  }
  section.contact .row .rightArea .map {
    padding-bottom: 55%;
  }
  section.contact .row .rightArea .map .contactNav ul {
    min-height: auto;
    flex-wrap: wrap;
  }
  section.contact .row .rightArea .map .contactNav ul li {
    width: 33.3%;
  }
  section.contact .row .rightArea .map .contactNav ul li small {
    font-size: 12px;
    margin-bottom: 10px;
  }
  section.contact .row .rightArea .map .contactNav ul li span {
    font-size: 15px;
  }
  section.howCanIGo .row {
    padding: 20px;
  }
  section.howCanIGo .row .col .tab .tab-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  section.howCanIGo .row .col .tab .tab-links .button {
    width: 49%;
    margin-right: 0px;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
  }
  section.howCanIGo .row .col .tab .tab-contents p {
    font-size: 13px;
  }
  section.contactUs .row .col:nth-child(1) {
    padding-right: 0px;
    margin-bottom: 100px;
  }
  section.contactUs .row .col section {
    background-color: transparent !important;
  }
  section.contactUs .form .formRow {
    flex-wrap: wrap;
  }
  section.contactUs .form .formRow .formCol.col60 {
    width: 100%;
  }
  section.contactUs .form .formRow .formCol.col40 {
    width: 100%;
  }
  section.visualMaterial .news-grid ul li {
    margin-bottom: 2%;
  }
  section.visualMaterial .news-grid ul li a {
    justify-content: inherit;
  }
  section.gallery {
    height: auto;
  }
  section.gallery .tabsBtn {
    display: flex;
  }
  section.gallery .tabsBtn a {
    height: 45px;
    font-size: 15px;
  }
  section.gallery .tabsBtn a.active-tab:nth-child(1) {
    box-shadow: none;
  }
  section.gallery .tabs-content .tabs .gallerySlider .owl-stage-outer .item img {
    height: 60vh;
  }
  section.gallery .tabs-content .tabs .gallerySlider .owl-nav {
    display: flex;
    bottom: 20px;
    left: 20px;
  }
  section.gallery .tabs-content .tabs .gallerySlider .owl-nav button {
    bottom: 0px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
  }
  section.gallery .tabs-content .tabs .gallerySlider .owl-nav button.owl-next {
    bottom: 0px;
    left: 50px;
  }
  section.gallery .tabs-content .tabs .num {
    display: none;
  }
}
@media screen and (max-width: 1540px) {
  .boxArea li a i {
    margin-bottom: 20px;
  }
  .boxArea li a strong {
    font-size: 16px !important;
  }
  .boxArea li a .downloadBtn {
    padding: 15px 20px;
  }
}
#paging {
  padding: 0 20px 20px 20px;
  font-size: 13px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#paging a {
  color: #000;
  font-size: 22px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: transparent;
  text-align: center;
  line-height: 50px;
}

#paging a.aktif {
  background-color: #BFA474;
}

.hidden {
  display: none;
}


.footerphones{
  width: 100%;
  text-align: right;
}
/*# sourceMappingURL=style.css.map */

.formkapatclass{
text-align: right;
}
.formkapatclass a{
  padding: 8px 11px;
  background: #bfa474;
  color: #220728;
  text-align: right;
  font-size: 15px;
transition: all 0.3s;
}
.formkapatclass a:hover{
  padding: 8px 11px;
  background: #856E43;
  color: #220728;
  text-align: right;
  font-size: 15px;

}
.navTools .headertel{
  border: none;
    font-size: 16px;
}
.navTools .headertel::before{
  background: none;
  border: none;
    font-size: 16px;
}

	/* ORTA EKRAN CSS KODLARI */
	@media only screen and (max-width: 1366px) {

	}
	/* TABLET2 Ä°PAD PRO CSS KODLARI */
	@media only screen and (max-width: 1024px) {

	}

	/* TABLET Ä°PAD  CSS KODLARI */
	@media only screen and (max-width: 769px) {

	}


	/* MOBÄ°L CSS KODLARI */
	@media only screen and (max-width: 600px) {
.footerphones{
  display: none;
}
footer #footer-menu ul li{
  width: 100% !important;
}
footer .social-bar{
  margin-left: 100px;
}
footer .copyright-bar .ppasa-logo img{
  max-width: 130px !important;
  width: 75px;
}
.modal-privacy .modal-wrapper{
  width: 95% !important;
}
#talep-formu{
  width: 90%;
    top: auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    bottom: 180px;
    padding: 20px;
}

	}
