@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400&family=Josefin+Sans:wght@700&family=Manrope:wght@200;300;400;800&family=Playfair+Display:wght@400;500;600;900&family=Roboto:wght@100;300;400;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Literata:wght@200;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@100;200;300;400;600;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  color: white;
}

:root {
  --text-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-family: "Manrope", sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: black;
}

a {
  text-decoration: none;
  display: block;
}

ul {
  list-style: none;
}

input, button, textarea {
  border: none;
  background: none;
}

textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.container-sm {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
}

.container-md {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.container-lg {
  padding: 0 120px;
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 2000px;
  margin: 0 auto;
  width: 100%;
}

.margin-b {
  margin-bottom: 9rem;
}

.opacity1 {
  -webkit-transition: .4s;
  transition: .4s;
}

.opacity1:hover {
  opacity: 1;
}

.basic-arrow {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  height: 2rem;
  width: 2rem;
  position: absolute;
  cursor: pointer;
}

.left-arrow {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.right-arrow {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

section.page {
  min-height: calc(100vh - 400px);
}

.sc-title {
  font-weight: bolder;
  padding: 1rem 0;
  font-size: 20px;
}

.text-bg {
  text-align: center;
  font-size: 2.5rem;
}

.text-bg::after {
  content: attr(data-text);
  position: relative;
  font-size: 50px;
  letter-spacing: 2px;
  line-height: 55px;
  display: block;
  text-align: center;
  bottom: 70px;
  opacity: .1;
}

.page-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

.main-button {
  height: 50px;
  width: 50px;
  -webkit-transition: all .5s;
  transition: all .5s;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 1;
}

.main-button .float-circle {
  height: 40px;
  width: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 50%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-button .float-circle .share-icon {
  color: #e2cd7d;
  font-size: 1.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.main-button .float-circle.open {
  border: 1px solid #e2cd7d;
  opacity: 1;
  /* ÜÇLÜ */
  /* ÜÇLÜ */
}

.main-button .float-circle.open:first-child {
  -webkit-transform: translate3d(85%, -165%, 0);
          transform: translate3d(85%, -165%, 0);
}

.main-button .float-circle.open:nth-child(2) {
  -webkit-transform: translate3d(-55%, -215%, 0);
          transform: translate3d(-55%, -215%, 0);
}

.main-button .float-circle.open:nth-child(3) {
  -webkit-transform: translate3d(-185%, -165%, 0);
          transform: translate3d(-185%, -165%, 0);
}

.share {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e2cd7d;
}

.share::before {
  content: '\f2a0';
  font-family: fontawesome;
  line-height: 50px;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  position: relative;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.share:hover {
  -webkit-box-shadow: 0 0 8px #e2cd7d;
          box-shadow: 0 0 8px #e2cd7d;
}

.closeMenubtn {
  right: 0;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: lighter;
  position: absolute;
}

.overlay {
  top: 0;
  right: 0;
  width: 0%;
  z-index: 1;
  height: 100%;
  position: fixed;
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* accordion */
.menu-list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  scrollbar-width: none;
}

.menu-list::-webkit-scrollbar {
  width: 0;
}

.menu-list::-webkit-scrollbar-button {
  width: 0;
}

.menu-item {
  width: 100%;
  position: relative;
}

.menu-accordionTitle {
  padding: 50px 0 0 55px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
  -webkit-transition: ease-in-out 0.2s all;
  transition: ease-in-out 0.2s all;
  cursor: pointer;
  height: 100%;
  background: #E2CD7D70;
}

.menu-accordionTitle .moving-title {
  white-space: nowrap;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  position: absolute;
  -webkit-transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
  transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.menu-accordionTitle:hover .moving-title {
  text-shadow: 0 0 3px white;
  -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
          transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
  letter-spacing: 7px;
}

/* Text Content */
.menu-accordion .menu-item .menu-content {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.42, 0.2, 0.08, 1);
  transition: all 0.6s cubic-bezier(0.42, 0.2, 0.08, 1);
  overflow: hidden;
  width: 8vw;
  scrollbar-width: none;
}

.menu-accordion .menu-item .menu-content::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.menu-accordion .menu-item .menu-content::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

/* Text Content - Class for JS to hide and show */
.menu-accordion .menu-item .menu-content.show {
  opacity: 1;
  height: calc(100% - 50px);
  width: 60vw;
  padding: 55px;
  position: relative;
  top: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

/* accordion */
.menu-item img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s cubic-bezier(0, 0, 0.2, 1);
  transition: 1s cubic-bezier(0, 0, 0.2, 1);
}

.h-unset {
  height: unset;
  background: rgba(0, 0, 0, 0.5);
}

.p-unset {
  position: unset !important;
  -webkit-transform: unset !important;
          transform: unset !important;
}

/* menu iç*/
.menu-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu-item:last-child .menu-content {
  min-width: 16vw;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.sublist-item {
  min-width: 20rem;
  margin-bottom: 2rem;
}

.sublist-item a {
  padding: 2px 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: .8;
}

.sublist-item a:hover {
  opacity: 1;
}

.sublist-item-title {
  font-weight: bold;
  color: #e2ce7d;
  margin-bottom: 1rem;
  opacity: 1 !important;
}

/* main menu*/
.main-menu-list {
  position: absolute;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.main-menu-list a {
  font-weight: 400;
  padding: 3px 5px;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  -webkit-transition: 0.5s cubic-bezier(0, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.main-menu-list a:hover {
  text-shadow: -15px 4px 9px #e2cd7d;
}

.main-menu .menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-menu .social-icons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-menu .social-link {
  border: NONE;
  background: #2E2E2E;
  margin: 0 .8rem 0 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-menu .social-link:last-child {
  margin: unset;
}

.main-menu .social-link:hover {
  background: transparent;
}

.main-menu .social-link i {
  color: #C5C5C5;
  font-size: 18px;
}

.main-menu .mini-footer .address {
  margin: 1rem 10px;
  text-align: center;
  font-size: 14px;
  opacity: .7;
  -webkit-transition: .5s;
  transition: .5s;
}

.main-menu .mini-footer .address:hover {
  opacity: 1;
}

.header-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 0;
}

.header-wrapper .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-wrapper .header-left .language {
  padding: 3px 5px;
}

.header-wrapper .header-mid {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.text-logo {
  font-family: "Literata", serif;
  font-size: 1.5rem;
}

.hamburger-menu {
  cursor: pointer;
}

.hamburger-menu .line {
  width: 1.8rem;
  height: 1px;
  background-color: white;
  margin: .3rem;
}

.hero {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-wrapper {
  min-height: calc(100vh - 121px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, black 50%);
}

.main-slogan {
  font-size: 45px;
  font-family: "Literata", serif;
  text-shadow: 0 0 15px white;
}

.main-slogan pre {
  color: #e2cd7d;
}

.main-contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 13rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 0;
}

.main-call a {
  border: 1px solid;
  padding: 5px 10px;
  display: inline;
  cursor: pointer;
}

.main-call a:hover {
  -webkit-box-shadow: 0 0 10px;
          box-shadow: 0 0 10px;
}

.main-form input {
  border-bottom: 1px solid #fff6;
  padding: 10px 0;
  margin: 0 .5rem;
  border-radius: 0;
}

.main-form input[type=submit] {
  border: 1px solid;
  padding: 5px;
  cursor: pointer;
  margin: 10px auto;
}

.services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.services-list .services-text {
  margin: 1rem 0;
  text-align: center;
}

.services-item {
  margin: 0 1rem;
}

.services-img {
  height: 10rem;
  width: 9rem;
}

.process-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.process-list .col {
  width: 100%;
  margin-right: 2rem;
  height: 35rem;
}

.process-list .col:last-child {
  margin-right: unset;
}

.process-list .col .img-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.process-list .col .img-wrapper img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.process-list .col .img-wrapper:last-child {
  margin-bottom: unset;
}

.process-list .col .img-wrapper-10 {
  height: 100%;
}

.process-list .col .img-wrapper-6 {
  height: calc(60% - 1rem);
}

.process-list .col .img-wrapper-5 {
  height: calc(50% - 1rem);
}

.process-list .col .img-wrapper-4 {
  height: calc(40% - 1rem);
}

.img-wrapper::after {
  content: attr(data-text);
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.img-wrapper:hover::after {
  background: none;
  text-shadow: 0 0 10px black;
}

.travel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.travel-text {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-right: 2rem;
}

.travel-text p {
  margin-top: 10px;
}

.travel-half {
  width: 50%;
}

.flip {
  position: relative;
  display: inline-block;
  margin: 0 2rem 1rem 0;
  width: calc(calc(100% / 4) - 1.7rem);
}

.flip:last-child {
  margin-right: 0;
}

.flip > .front,
.flip > .back {
  display: block;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  color: white;
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  height: 350px;
  padding: 1em 2em;
  background: #313131;
  border-radius: 10px;
}

.flip > .front h3,
.flip > .back h3 {
  position: absolute;
}

.flip > .front {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.flip > .back {
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.flip:hover > .front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flip:hover > .back {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.flip img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.text-shadow {
  position: absolute;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04), 3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04), 0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04), 7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04), 9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04), 11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04), 13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04), 0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04), 17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04), 19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}

.comment-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comment-wrapper .tirnak {
  opacity: .3;
}

.comment-wrapper .tirnak.tirnak-sag {
  text-align: end;
}

.comment-wrapper .tirnak.tirnak-sol {
  text-align: start;
}

.comment-content {
  width: 90%;
}

.comment-content .comment-name {
  font-size: 18px;
  margin-bottom: 10px;
}

.comment-content .comment-text {
  font-size: 16px;
}

.swiper {
  width: 93%;
  height: 100%;
  cursor: -moz-grab;
  z-index: 0;
}

.swiper-slide {
  font-size: 18px;
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section#contactPage {
  background: url("../../images/map.PNG");
  min-height: calc(100vh - 121px);
  background-repeat: no-repeat;
  background-position-x: center;
}

.half-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.half-wrapper .half-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.half-wrapper .half-page.left {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.half-wrapper .half-page.right {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feedback-form {
  background: white;
  padding: 40px 25px;
  max-width: 85%;
  min-width: 450px;
  width: 100%;
  border-radius: 15px;
}

.feedback-form * {
  color: black;
  font-family: "Montserrat", sans-serif;
}

.form-elem {
  margin-bottom: 3rem;
}

.form-elem:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: unset;
}

.form-elem .fbform-title {
  font-weight: 700;
}

.form-elem .border {
  border-bottom: 1px solid #000d;
  width: 100%;
  padding: 7px 0;
  font-size: 13.5px;
  resize: none;
  opacity: .8;
}

.form-elem input {
  border-radius: unset;
}

.form-elem input[type="submit"] {
  background: black;
  color: white;
  padding: 13px 20px;
  border-radius: 8px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  cursor: pointer;
}

.form-elem input[type="submit"]:hover {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.contact-page-wrapper {
  min-height: 80vh;
}

.btnmap-wrapper {
  margin-bottom: 1rem;
}

.btnmap-wrapper .btn-map {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 5px;
  background: #e2cd7d70;
  padding: 6px 10px;
  font-size: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btnmap-wrapper .btn-map i {
  margin-left: 7px;
}

.contact-us {
  color: #e2cd7d;
  font-size: 2rem;
}

.filupp {
  position: relative;
  display: block;
  width: 40%;
  color: black;
  cursor: pointer;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: auto;
  padding: 5px;
}

.filupp > input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.filupp:before {
  content: "\f382";
  position: absolute;
  font-family: fontAwesome;
}

.filupp .filupp-file-name {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  margin-left: 2rem;
  font-size: 14px;
}

.blog-cards {
  margin: 0 -1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-card {
  width: calc(33.33333% - 3rem);
  margin: 1.5rem;
  overflow: hidden;
  position: relative;
}

.card-img {
  height: 14rem;
  position: relative;
}

.card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-content .card-title {
  margin: 10px 0;
  color: #e2cd7d;
}

.card-foot {
  padding: 5px 0;
}

.card-foot * {
  color: #e2cd7d;
  font-size: 14px;
}

.card-foot .blog-share {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 10px;
}

.card-foot .blog-share:hover {
  -webkit-box-shadow: 0px 0px 5px #e2cd7d;
          box-shadow: 0px 0px 5px #e2cd7d;
}

.blog-share-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  color: #e2cd7d;
}

.special-page {
  color: #e2cd7d;
  line-height: 1;
}

.detail-info {
  margin-bottom: 1rem;
}

.detail-info span {
  opacity: .7;
}

.detail-img {
  float: left;
  position: relative;
  width: 50%;
  height: 30rem;
  margin: 0 1rem 1rem 0;
}

.detail-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.basin-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.basin-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-bottom: 0.5rem;
  position: relative;
  padding: 8px 0;
}

.basin-card .basin-card-img {
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.basin-card .basin-card-img i {
  color: #e2cd7d;
  font-size: 1.5rem;
}

.basin-card .basin-card-txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.basin-card .basin-kaynak {
  font-size: 13px;
}

.basin-card .basin-kaynak span {
  color: #e2cd7d;
}

.basin-card::after {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#e2cd7d), to(transparent));
  background: linear-gradient(to right, #e2cd7d, transparent);
  position: absolute;
  bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.basin-card:hover::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#e2cd7d), to(transparent));
  background: linear-gradient(to right, #e2cd7d, transparent);
  position: absolute;
  bottom: 0;
}

.hakkimizda-wrapper {
  text-align: center;
}

.hakkimizda-wrapper img {
  max-width: 800px;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.hakkimizda-wrapper .page-title {
  color: #e2cd7d;
}

.hakkimizda-wrapper .hakkimizda-txt {
  max-width: 1200px;
  margin: 0 auto;
}

/* c - p */
.sss-item {
  margin-bottom: 1rem;
}

.sss-accordionTitle {
  padding: 10px;
  position: relative;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #e2cd7d;
  -webkit-transition: ease-in-out 0.2s all;
  transition: ease-in-out 0.2s all;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sss-accordionTitle:hover {
  padding-left: 25px;
}

/* Accordion Item line */
.sss-accordionTitle:before,
.sss-accordionTitle:after {
  content: '';
  position: absolute;
  height: 2px;
  border-radius: 50px;
  -webkit-transition: ease-in-out 0.6s all;
  transition: ease-in-out 0.6s all;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sss-accordionTitle:before {
  width: 100%;
  /* background-color: #0000; */
}

.sss-accordionTitle:after {
  background-image: -webkit-gradient(linear, left top, right top, from(#e2cd7d), to(#00000000));
  background-image: linear-gradient(90deg, #e2cd7d, #00000000);
  width: 0%;
}

.sss-accordionTitle:hover::after {
  width: 100%;
}

/* Accordion Item line - Active */
.sss-accordionTitleActive:after {
  content: '';
  position: absolute;
  height: 2px;
  border-radius: 50px;
  -webkit-transition: ease-in-out 0.6s all;
  transition: ease-in-out 0.6s all;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sss-accordionTitleActive:after {
  background-image: -webkit-gradient(linear, left top, right top, from(#e2cd7d), to(#e2cd7d));
  background-image: linear-gradient(90deg, #e2cd7d, #e2cd7d);
  width: 100%;
}

/* Accordion Item Icon  */
.sss-accIcon {
  float: right;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sss-accIcon:before,
.sss-accIcon:after {
  content: '';
  position: absolute;
  border-radius: 50px;
  background-color: #e2cd7d;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}

.sss-accIcon:before {
  width: 2px;
  height: 20px;
}

.sss-accIcon:after {
  width: 20px;
  height: 2px;
}

.sss-accordionTitle:hover .sss-accIcon:before,
.sss-accordionTitle:hover .sss-accIcon:after {
  background-color: grey;
}

.sss-accIcon.anime.sss-accIcon:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* Text Content */
.sss-accordion .sss-item .sss-content {
  opacity: 0;
  height: 0;
  padding: 0px 20px;
  position: relative;
  line-height: 24px;
  font-weight: 200;
  -webkit-transition: all 0.6s cubic-bezier(0.42, 0.2, 0.08, 1);
  transition: all 0.6s cubic-bezier(0.42, 0.2, 0.08, 1);
  overflow: hidden;
  letter-spacing: 0.5px;
}

/* Text Content - Class for JS to hide and show */
.sss-accordion .sss-item .sss-content.show {
  opacity: 1;
  height: auto;
  padding: 15px;
  position: relative;
  z-index: 0;
  border-radius: 0px 0px 3px 3px;
}

footer {
  background: url("../../images/Repeat Grid 6.png");
  background-position: center;
}

.footer-wrapper {
  margin-top: 2rem;
  padding-top: 4rem;
}

.footer-img {
  text-align: center;
  padding-top: 5rem;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
}

.footer-list .footer-list-item {
  width: 100%;
  font-size: 13px;
}

.footer-list .footer-list-item .footer-title {
  margin-bottom: 1rem;
}

.footer-list .footer-list-item .footer-link {
  margin-bottom: 10px;
  -webkit-transition: .4s;
  transition: .4s;
}

.footer-list .footer-list-item .footer-link:hover {
  background: transparent;
}

.footer-list .footer-list-item .social-link:first-child {
  margin-left: 0;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-link {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #2e2e2e;
  margin-left: 1rem;
}

.social-link i {
  color: white;
  font-size: 16px;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0;
}

.footer-bottom #ex-selectLang {
  border-radius: unset;
  border: none;
  background: transparent;
}

.footer-bottom #ex-selectLang option {
  background: #2B2A33;
}

.footer-bottom .copyright {
  font-size: 12px;
  text-align: center;
}

.footer-bottom .company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  opacity: .5;
  -webkit-transition: .5s;
  transition: .5s;
}

.footer-bottom .company a {
  font-weight: bold;
}

.footer-bottom .company:hover {
  opacity: 1;
}

@media only screen and (max-width: 1200px) {
  .container-lg {
    padding: 0 80px;
  }
  .container {
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 992px) {
  .container-lg {
    padding: 0 40px;
  }
  /* hero */
  .services-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1rem;
  }
  .services-list .services-item {
    width: calc(33.3333% - 4rem);
    margin: 1rem;
  }
  .services-list .services-item .services-img {
    width: 100%;
    height: 8rem;
  }
  /* menu */
  .menu-accordionTitle {
    padding: 50px 0 0 40px;
  }
  .menu-accordionTitle:hover .moving-title {
    letter-spacing: 4px;
  }
  .menu-accordion .menu-item .menu-content.show {
    width: 50vw;
    padding: 40px;
  }
  .menu-item.main-menu {
    min-width: 200px;
  }
  /* blog page */
  /* main.css | http://127.0.0.1:5501/dist/css/main.css */
  .blog-card {
    width: calc(33.33333% - 2rem);
    margin: 1rem;
  }
  .blog-cards {
    margin: 0 -1rem;
  }
}

@media only screen and (max-width: 768px) {
  .container-lg {
    padding: 0 20px;
  }
  .margin-b {
    margin-bottom: 5rem !important;
  }
  section.page {
    min-height: calc(100vh - 325px);
  }
  /* share contact button */
  .main-button {
    height: 40px;
    width: 40px;
  }
  .main-button.share:before {
    line-height: 40px;
    font-size: 1rem;
  }
  .main-button .float-circle {
    height: 35px;
    width: 35px;
  }
  .main-button .float-circle .share-icon {
    font-size: .9rem;
  }
  /*hero*/
  .hero-wrapper {
    min-height: calc(100vh - 132px);
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .main-slogan {
    font-size: 6vw;
  }
  .main-contact-wrapper {
    height: unset;
  }
  .main-contact-wrapper .main-call {
    line-height: 1.3;
    font-size: 15px;
  }
  .main-contact-wrapper .main-call .my-btn {
    padding: 2px 7px;
  }
  .main-contact-wrapper .main-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    width: 100%;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .main-contact-wrapper .main-form form input[type=submit] {
    width: 50%;
  }
  /* menu */
  .menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    overflow: auto;
    font-family: unset;
  }
  .menu-list .menu-item {
    height: 100%;
  }
  .menu-list .menu-item .menu-accordionTitle:hover .moving-title {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  .menu-list .menu-item .menu-accordionTitle .moving-title {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  .menu-list .menu-item .menu-content {
    width: unset;
    height: 0;
  }
  .menu-list .menu-item .menu-content .sublist-item {
    min-width: 18rem;
  }
  .menu-list .menu-item.main-menu {
    min-height: 290px;
    font-family: 'Montserrat', sans-serif;
  }
  .menu-list .menu-item.main-menu .menu-content {
    height: 100%;
  }
  .menu-list .menu-item.main-menu .menu-content .main-menu-list {
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    position: unset;
  }
  .menu-list .menu-item.main-menu .menu-content .main-menu-list a {
    font-size: 1rem;
    line-height: 0.7;
  }
  .menu-accordion .menu-item .menu-content.show {
    width: 100%;
    height: 100%;
  }
  /* process */
  .process-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .process-list .col {
    height: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: unset;
    margin-bottom: 1rem;
  }
  .process-list .col .img-wrapper {
    margin-bottom: unset;
    margin-right: 1rem;
    width: 100%;
    height: 100%;
  }
  .process-list .col .img-wrapper:last-child {
    margin-right: 0;
  }
  .process-list .col .img-wrapper-6 {
    height: unset;
    width: 60%;
  }
  .process-list .col .img-wrapper-5 {
    height: unset;
    width: 50%;
  }
  .process-list .col .img-wrapper-4 {
    height: unset;
    width: 40%;
  }
  /* travel */
  section.travel {
    background: -webkit-gradient(linear, left top, left bottom, from(#00000091), to(#00000042)), url("../../images/ist.jpg");
    background: linear-gradient(#00000091, #00000042), url("../../images/ist.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
  .travel-wrapper {
    height: 15rem;
  }
  .travel-wrapper .travel-half {
    width: unset;
  }
  .travel-wrapper .travel-half.travel-text {
    padding-right: 2rem;
  }
  .travel-wrapper .travel-half.travel-text h2 {
    font-size: 3vw;
  }
  .travel-wrapper .travel-half.travel-text p {
    font-size: 15px;
    line-height: 1.5;
  }
  .travel-wrapper .travel-half:last-child {
    display: none;
  }
  /*shadowlu text data-text*/
  .text-bg {
    font-size: 1.5rem;
  }
  .text-bg::after {
    font-size: 25px;
  }
  /* flip cards */
  .flip > .front, .flip > .back {
    height: 150px;
    padding: 10px;
    font-size: 12px;
  }
  /* comments */
  .comment-text {
    font-size: 15px;
    line-height: 1.5;
  }
  /* footer query*/
  .footer-wrapper {
    padding-top: unset;
  }
  .footer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding-bottom: unset;
  }
  .footer-list .footer-list-item.social-icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-list .footer-list-item > * {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  /* blog page */
  .blog-card {
    width: calc(50% - 2rem);
  }
  .blog-card .card-content {
    padding-top: 7px;
  }
  .blog-card .card-content .cart-txt {
    font-size: 14px;
  }
  /* detail page */
  .detail-img {
    height: 18rem;
  }
  .detail-txt {
    font-size: 15px;
    line-height: 1.5;
  }
  /* contact page */
  .half-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feedback-form {
    background: rgba(255, 255, 255, 0.7);
  }
}

@media only screen and (max-width: 576px) {
  .container-lg {
    padding: 0 14px;
  }
  .page-title {
    font-size: 1rem;
  }
  .header-wrapper {
    padding: 1.5rem 0;
  }
  /* menu baslangic */
  .menu-accordionTitle {
    font-size: 13px;
    padding: 30px 0 0 30px;
  }
  .menu-accordion .menu-item .menu-content.show {
    padding: 30px;
  }
  .header-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header-wrapper .header-left {
    display: none;
  }
  /* menu son */
  .process-list .col {
    height: 11rem;
  }
  .process-list .col .img-wrapper::after {
    font-size: 14px;
  }
  .sc-title {
    font-size: 16px;
  }
  .text-bg {
    font-size: 4.5vw;
  }
  .text-bg::after {
    font-size: 5vw;
  }
  .services-list {
    margin: 0 -10px;
  }
  .services-list .services-item {
    width: calc(33.3333% - 40px);
    margin: 10px;
  }
  .results-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .results-list .flip {
    margin: 10px;
    width: calc(50% - 20px);
  }
  .comment-content .comment-text {
    line-height: 1.3;
    font-size: 14px;
  }
  /* footer */
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer-bottom .selectboxLang {
    display: ruby;
  }
  .footer-bottom > * {
    margin-bottom: 5px;
  }
  .footer-title {
    display: none;
  }
  /* blog page */
  .blog-cards {
    margin: unset;
  }
  .blog-cards .blog-card {
    margin: 0 0 1.5rem 0;
    width: 100%;
  }
  .blog-cards .blog-card .card-img {
    height: 10rem;
  }
  .blog-cards .blog-card .card-title {
    font-size: 16px;
  }
  /* detail page */
  .detail-info span {
    font-size: 13px;
  }
  .detail-img {
    width: 100%;
    margin: 0 0 1rem 0;
  }
  .detail-txt {
    font-size: 14px;
  }
  /* basin page*/
  .basin-card {
    width: 100%;
  }
  .basin-card .basin-card-txt {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .basin-card .basin-kaynak {
    font-size: 12px;
  }
  /* hakkimizda */
  .hakkimizda-wrapper .hakkimizda-txt {
    font-size: 14px;
  }
  /* sss */
  .sss-title {
    font-size: 15px;
  }
  .sss-txt {
    font-size: 14px;
  }
  /* contact page */
  .feedback-form {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
  .form-elem {
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 400px) {
  .container-lg {
    padding: 0 10px;
  }
  .text-logo {
    font-size: 1rem;
  }
  /*detail page*/
  .detail-img {
    height: 14rem;
  }
}

@media only screen and (max-width: 350px) {
  .container {
    padding: 0 10px !important;
  }
  .container-lg {
    padding: 0 5px;
  }
}
/*# sourceMappingURL=main.css.map */