.container {
  max-width: 1170px;
}

body {
  font-family: "Poppins";
}

.header a, .footer a {
  color: #2F4E37;
  font-size: 1em;
  text-decoration: none;
}
.header a:hover, .footer a:hover {
  color: #426e4d;
}
.header .active, .footer .active {
  color: #2f4e37;
}

.headerHome {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
}

.doviz {
  background-color: white;
  overflow: hidden;
  height: 32px;
  position: relative;
  border-top: 1px solid #efefef;
  scrollbar-width: 0px;
  border-bottom: 1px solid #efefef;
}
.doviz iframe {
  position: absolute;
  left: 0px;
  right: 0px;
  top: -4px;
}

/* width */
@media (max-width: 600px) {
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    border-radius: 10px;
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: red;
  }
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #b30000;
  }
}
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #efefef;
  overflow-x: auto;
}
.header .container {
  display: grid;
  grid-template-columns: 70% auto;
  align-items: center;
  height: 50px;
}
@media (max-width: 600px) {
  .header .container {
    grid-template-columns: 1fr;
  }
  .header .container .bi-list {
    display: inline;
    position: absolute;
    right: 24px;
    color: white;
    font-size: 2em;
  }
}
.header .container .bi-list {
  display: none;
}
.header .container .menus {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
  text-wrap: nowrap;
}
.header .container .menus a {
  margin-right: 24px;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 500;
}
.header .container .menusRight {
  justify-content: flex-end;
}

.headerTop {
  background-color: white;
}
.headerTop .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.headerTop .container .facebook {
  display: none;
}
@media (max-width: 600px) {
  .headerTop .container {
    height: 50px;
    display: flex;
    justify-content: center;
  }
}
.headerTop .container a {
  color: #161719;
}
.headerTop .container .logoArea img {
  height: 30px;
}
.headerTop .container .socialMedia a {
  margin-left: 12px;
  font-size: 1.2em;
}
.headerTop .container .socialMedia a img {
  height: 20px;
  margin-top: -4px;
}
@media (max-width: 600px) {
  .headerTop .container .socialMedia {
    display: none;
  }
}
.headerTop .container .bi-list {
  display: none;
}
@media (max-width: 600px) {
  .headerTop .container .bi-list {
    display: inline-block;
    font-size: 2em;
  }
}

.headerTopHome a {
  color: #FAF3E5;
}

.soft {
  color: rgba(250, 243, 229, 0.5);
  font-weight: 300;
}

.footer {
  background-color: #444a4f;
  font-size: 0.9em;
  color: white;
}
.footer .footerBottom {
  padding-top: 24px;
  padding-bottom: 90px;
}
.footer .footerBottom .footerbottomLeft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer .footerBottom .footerbottomLeft img {
  height: 30px;
  opacity: 0.4;
  margin-left: -3px;
}
.footer li a {
  color: white;
}
.footer i {
  display: none;
}

.socialFix {
  position: fixed;
  right: 12px;
  padding: 6px;
  bottom: 64px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  border-radius: 6px;
  gap: 6px;
  z-index: 999;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}
.socialFix a {
  background-color: white;
  color: #202124;
  padding: 6px;
  display: block;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  border-radius: 3px;
}
.socialFix a img {
  height: 18px;
}

.footerTop, .footerBottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 48px 0px;
}

.footerDeep {
  background-color: #0f1011;
  padding: 24px 0px;
  color: rgba(250, 243, 229, 0.5);
}
.footerDeep .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.8em;
}
.footerDeep .container a {
  text-decoration: none;
}
.footerDeep .container img {
  height: 14px;
  margin-left: 12px;
  margin-top: -1px;
  transition: all 0.3s;
  opacity: 1;
}
.footerDeep .container img:hover {
  opacity: 1;
}
.footerDeep .container .ring {
  height: 20px;
  margin: 0px 12px;
  margin-right: 10px;
  margin-top: -4px;
}

.fixBottom {
  position: fixed;
  z-index: 9999;
  left: 0px;
  bottom: 0px;
  right: 0px;
  padding: 12px;
  background-color: white;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  display: none;
  text-decoration: none;
  color: #202124 !important;
  border-radius: 6px 6px 0px 0px;
}
.fixBottom a {
  text-decoration: none;
  color: #202124 !important;
}
@media (max-width: 600px) {
  .fixBottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .fixBottom .column {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.9em;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .fixBottom .column:first-child {
    border: none;
    padding: 0px;
  }
  .fixBottom .column .iconic {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fixBottom .column .red {
    background-color: red;
    color: white;
  }
  .fixBottom .column .green {
    background-color: green;
    color: white;
    font-size: 13px;
  }
}

.offcanvas {
  height: auto !important;
  padding-bottom: 50px;
}
.offcanvas h5 {
  text-align: center;
  width: 100%;
  margin-bottom: 0px;
}
.offcanvas h5 span {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  margin-top: -3px;
}
.offcanvas .canvasitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  border-top: 1px solid #efefef;
  font-weight: 500;
}
.offcanvas .canvasitem:first-child {
  border: none;
}
.offcanvas .canvasitem .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0px 8px;
  height: 35px;
}
.offcanvas .canvasitem .btn i {
  font-size: 1.1em;
  margin-right: 6px;
}

.pageHeader {
  background-color: #efefef;
  padding: 24px 0px;
  border-bottom: 1px solid #efefef;
}
@media (max-width: 600px) {
  .pageHeader {
    padding: 12px 0px;
  }
}
.pageHeader h1 {
  font-size: 27px;
  font-weight: 400;
  margin: 0px;
  color: #50535a;
}
@media (max-width: 600px) {
  .pageHeader h1 {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    text-align: center;
  }
}

.pageContent {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 24px;
  padding: 48px 0px;
}
.pageContent h3, .pageContent h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
}
@media (max-width: 600px) {
  .pageContent {
    grid-template-columns: 1fr;
    padding: 24px 0px;
  }
}
.pageContent p {
  line-height: 1.9em;
}
.pageContent .subpage {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pageContent .subpage li a {
  text-decoration: none;
  color: #737d86;
}
.pageContent .subpage li a:hover {
  color: #202124;
}
.pageContent .right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 0.9em;
  color: #737d86;
}
.pageContent .right span {
  display: block;
}
.pageContent .right .sticky-top {
  top: 20px;
}
.pageContent .right .sticky-top div {
  margin-bottom: 12px;
}
.pageContent .right .sticky-top .contactBtn {
  padding: 8px 24px;
  display: inline-block;
  background-color: #202124;
  color: #efefef;
  text-decoration: none;
  margin-top: 8px;
}
.pageContent .center {
  padding: 0px 24px;
}
@media (max-width: 600px) {
  .pageContent .center {
    padding: 0px;
  }
}
.pageContent .center h3, .pageContent .center h2 {
  font-size: 1.7em !important;
  line-height: 1.5em;
  margin-bottom: 24px;
}
.pageContent .center p {
  font-size: 0.9em;
}

.listGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 48px 0px;
}
.listGrid a {
  text-decoration: none;
  color: #737d86;
}
.listGrid .thumbnail {
  margin-bottom: 12px;
}
.listGrid h3 {
  font-size: 1em;
  line-height: 1.4em;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  color: #202124;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .listGrid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    column-gap: 12px;
    padding: 24px 0px;
  }
  .listGrid h3 {
    font-size: 0.8em;
    line-height: 1.4em;
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    margin: 0px;
    text-transform: uppercase;
  }
  .listGrid .thumbFrame {
    margin-bottom: 12px;
  }
}

.guideContent {
  padding: 24px 0px;
}
@media (max-width: 600px) {
  .guideContent {
    padding: 12px 0px;
  }
}
.guideContent h1 {
  font-size: 3.2em;
  font-family: "Roboto Slab", serif;
  margin: auto;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .guideContent h1 {
    font-size: 1.8em;
    padding: 0px;
    line-height: 1.3em;
  }
}
.guideContent .paragraph {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.2em;
  line-height: 1.8em;
  margin: auto;
}
.guideContent .paragraph h3, .guideContent .paragraph h2 {
  margin: 24px 0px;
  line-height: 1.6em;
  font-weight: 500;
  font-family: "Roboto Slab", serif;
  font-size: 1.3em;
}
@media (max-width: 600px) {
  .guideContent .paragraph {
    font-size: 0.9em;
    line-height: 1.6em;
    padding: 0px;
    max-width: 100%;
  }
}

.embed-responsive .embed-responsive-item {
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 16/9;
}

.adsDesktop {
  display: block;
}
@media (max-width: 600px) {
  .adsDesktop {
    display: none;
  }
}

.adsMobile {
  display: none;
}
@media (max-width: 600px) {
  .adsMobile {
    display: block;
  }
}

.contactContent {
  padding: 48px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .contactContent {
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
  }
}
.contactContent h3 {
  font-size: 1.1em;
}
.contactContent .language {
  color: #737d86 !important;
}
.contactContent a {
  text-decoration: none;
  color: #737d86;
}
.contactContent a:hover {
  color: #202124;
}
.contactContent p {
  line-height: 1.9em;
}

.thumbFrame {
  display: block;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 6px;
}
.thumbFrame .thumbnail {
  transition: all 0.4s;
  margin-bottom: 0px;
}
.thumbFrame:hover .thumbnail {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.uppercase {
  text-transform: uppercase;
}

.widgetGrid {
  display: grid;
  grid-template-columns: 1fr;
}
.widgetGrid img {
  width: 100%;
  border-radius: 6px;
}

#owl1 {
  width: 100%;
  height: 530px;
  overflow: hidden;
  position: relative;
}
#owl1 .item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 530px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
#owl1 .item:after {
  content: " ";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 50%;
  z-index: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
#owl1 .item h3 {
  color: white;
  font-weight: 600;
  text-align: left;
  font-size: 2.3em;
  max-width: 75%;
  margin-bottom: 24px;
  margin-left: 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
@media (max-width: 600px) {
  #owl1 .item h3 {
    margin: 16px;
    max-width: 80%;
    font-size: 1.3em;
    line-height: 1.2em;
    text-align: left;
  }
}

#owl2 {
  height: 200px;
  width: 100%;
}
#owl2 .item {
  height: 200px;
  width: 200px;
  background-color: #efefef;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  #owl2 {
    height: 150px;
  }
  #owl2 .item {
    height: 150px;
    width: 150px;
  }
}

#owl3 {
  height: 200px;
  width: 100% !important;
  overflow: hidden !important;
}
#owl3 .item {
  height: 200px;
  width: 200px;
  background-color: #efefef;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  #owl3 {
    height: 150px;
  }
  #owl3 .item {
    height: 150px;
    width: 150px;
  }
}

#owl4 .owl-nav {
  display: none !important;
}

.owl-dots {
  display: none;
}

.galeriMacbook {
  display: block;
}

.galeriiPhone {
  display: none;
}

.headerSide {
  display: block;
}

.headerMobile {
  display: none;
}

.lightgallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.lightgallery .firstIMG {
  grid-column: 1/span 5;
}

.homeContent {
  display: flex;
  align-items: flex-end;
  justify-content: start;
  height: 80vh;
  background-size: cover;
  background-position: center center;
}
.homeContent h1 {
  font-size: 3.7em;
  font-family: Georgia, "Times New Roman", Times, serif;
  width: 40%;
  color: white;
  margin: 0px;
  font-weight: 600;
  margin-bottom: 48px;
}
.homeContent h1 span {
  display: inline-block;
  text-decoration: none !important;
  background-image: url("../img/splashgreen.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .homeContent {
    padding: 0px 12px;
    height: 50vh;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .homeContent h1 {
    line-height: 1em;
    font-size: 2em;
  }
}

.thumbnail, .wide {
  background-size: cover;
  background-position: center center;
  margin-bottom: 24px;
  border-radius: 6px;
}

.thumbnail {
  padding-top: 75%;
}

.wide {
  padding-top: 60%;
}

.xWide {
  padding-top: 45%;
}

.negative100 {
  margin-top: -100px;
}

.negative50 {
  margin-top: -50px;
}

@media (max-width: 600px) {
  #owl1 {
    height: 305px;
  }
  #owl1 .item {
    margin: 0px !important;
    height: 305px;
  }
}
.flexColumn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 600px) {
  .flexColumn {
    gap: 12px;
  }
}

.xPadding {
  padding: 24px 0px;
}
@media (max-width: 600px) {
  .xPadding {
    padding: 12px 0px;
  }
}

.xMargin {
  margin: 24px 0px;
}
@media (max-width: 600px) {
  .xMargin {
    margin: 12px 0px;
  }
}

.manset {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .manset {
    grid-template-columns: 1fr;
  }
  .manset .reklamHava {
    display: none;
  }
}
.manset .mansetHaber {
  background-color: #efefef;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.manset .mansetHaber h3 {
  font-size: 2em !important;
}
@media (max-width: 992px) {
  .manset .mansetHaber h3 {
    font-size: 1em !important;
    max-width: calc(100% - 70px) !important;
  }
}
@media (max-width: 600px) {
  .manset .mansetHaber .owl-nav {
    display: none;
  }
}
.manset .mansetHaber .owl-nav button {
  position: absolute;
  top: 0px;
  bottom: 0px;
  color: white;
  font-size: 100px;
}
.manset .mansetHaber .owl-nav .owl-prev {
  left: 24px;
}
.manset .mansetHaber .owl-nav .owl-next {
  right: 110px;
}
.manset .mansetHaber .owl-dots {
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 102px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0px 8px 8px 0px;
}
@media (max-width: 600px) {
  .manset .mansetHaber .owl-dots {
    width: 51px;
  }
}
.manset .mansetHaber .owl-dots .owlbigDot {
  width: 100%;
  aspect-ratio: 1.1;
  background-color: none;
  background-size: cover;
  background-position: center center;
  border: none;
  border-radius: 3px;
  filter: brightness(0.8);
}
@media (max-width: 600px) {
  .manset .mansetHaber .owl-dots .owlbigDot {
    aspect-ratio: unset;
    height: 44px;
  }
}
.manset .mansetHaber .owl-dots .owl-dot {
  position: relative;
  transition: all 0.2s;
}
.manset .mansetHaber .owl-dots .active {
  filter: brightness(1.7);
}
.manset .mansetHaber .owl-dots .active:after {
  content: " ";
  position: absolute;
  left: -9px;
  top: 0px;
  bottom: 5px;
  width: 3px;
  background-color: red;
}
.manset .mansetHaber a {
  text-decoration: none;
}
.manset .reklamHava .reklam img {
  width: 100%;
  height: auto;
}

.galeriTitle {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.galeriTitle h3 {
  font-weight: 500;
  font-size: 1.2em;
}
.galeriTitle h3 span {
  display: block;
  font-size: 0.7em;
  margin-left: 33px;
  margin-top: 2px;
  color: #737d86;
  font-weight: 300;
}
.galeriTitle i {
  margin-right: 6px;
  color: red;
}

.galery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 48px;
}
.galery .thumbnail {
  margin: 0px;
}

.haberDetayReklam {
  background-color: none;
}
.haberDetayReklam img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.reklamalani {
  min-height: 80px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.reklamalani:hover {
  transform: scale(1.02);
}
.reklamalani img {
  width: 100%;
  height: auto;
}

.homeAds {
  background-color: #002776;
}

.square {
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.kareklam {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
}
.kareklam span {
  color: #002776;
}
.kareklam:hover {
  filter: brightness(1.1);
}

.sectionTitle {
  font-size: 1.1em;
  border-bottom: 1px solid #efefef;
  height: 50px;
  display: flex;
  align-items: center;
  margin: 0px;
  color: #3E4959;
  font-weight: 500;
}
@media (max-width: 600px) {
  .sectionTitle {
    border-bottom: none;
    margin-bottom: 0px;
  }
}
.sectionTitle i {
  color: red;
}

.home {
  position: relative;
}

.pageBack {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  height: 150px;
  background-color: #444a4f;
  z-index: -1;
}

.haberDetay {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .haberDetay {
    grid-template-columns: 1fr;
  }
}

.galeriCount {
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  color: white;
  text-decoration: none;
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 3px;
}

.firstIMG {
  text-decoration: none;
  position: relative;
}

.redTag {
  display: flex;
  position: relative;
  align-items: center;
  z-index: 4;
  margin: 0px 24px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .redTag {
    margin: 0px 16px;
    margin-bottom: -6px;
  }
}
.redTag span {
  display: flex;
  align-items: center;
  background-color: #feeb1a;
  color: #202124;
  padding: 0px 8px;
  border-radius: 3px;
  font-size: 13px;
}
.redTag span i {
  margin-right: 4px;
  font-size: 1.2em;
  margin-bottom: -1.5px;
  margin-left: -3px;
}

.videoTag span {
  background-color: red;
  color: white;
}

.haberMetni {
  font-size: 1.1em;
  line-height: 1.7em;
}
.haberMetni p {
  max-width: 100%;
}
.haberMetni img {
  max-width: 100%;
  height: auto;
}

.addContent {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}
.addContent .adHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.addContent .adHeader .logo {
  width: 150px;
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.addContent .adHeader h3 {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.5em;
}
.addContent .adcontact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6px;
}
.addContent .adButtons {
  padding: 10px;
  background-color: #002776;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  gap: 12px;
}
.addContent .adButtons i {
  font-size: 1.2em;
}
.addContent .adGallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.addContent .adGallery .fotos {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 6px;
  background-size: cover;
  background-position: center center;
}/*# sourceMappingURL=style.css.map */