/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Poppins';
  background-color: #fff;
  /*background-color: hsl(220, 100%, 97%);*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 1.5rem;
}

.tel {
  font-size: 12px;
  padding: 5px 80px;
}

/*=============== HEADER ===============*/
.header {
  position: sticky;
  padding: 0px 80px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #820009;

  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0px;
  }
}

/*=============== NAV ===============*/
.nav {
  height: 3rem;
}

.nav__logo,
.nav__burger,
.nav__close {
  color: #fff;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: 600;
}

.nav__logo img {
  width: 100%;
  height: 48px;
}


.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
}

.nav__link {
  color: #fff;
  background-color: #820009;
  font-size: 13px;
  font-weight: 400;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: #9f464c;
}

.show-menu {
  opacity: 1;
  top: 48px;
  pointer-events: initial;
}

.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 13px;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 10px 20px;
  font-size: 11px;
  color: #fff;
  background-color: #820009;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: 400;
  transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: #9f464c;
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: hsl(220, 20%, 18%);
}


@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: 62px;
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 1.5rem;
  }

  .nav__link {
    height: 100%;
    padding: 0px 10px;
    justify-content: initial;
    column-gap: .25rem;
    transition: .3s;
  }

  .nav__link:hover {
    background-color: #9f464c;
    border: none;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    min-width: 250px;
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    font-size: 13px;
    padding: 1rem 1.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 62px;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

.page-title {
  background: rgb(235, 235, 235);
  /* background: linear-gradient(180deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 75%) 50%, rgb(0 0 0) 100%), url(../images/background.jpg) center center; */
  background-size: cover;
  width: 100%;
  height: 30vh;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .5em;
}

.page-title-nav {
  display: flex;
  gap: .4em;
}

.page-title-nav a {
  font-size: .7rem;
  white-space: nowrap;
  text-transform: uppercase;
  max-width: none !important;
  z-index: 1;
  position: relative;
  padding-right: 15px;
  cursor: pointer;
  color: rgb(166 156 140);
}

.page-title-nav a:hover {
  color: rgb(0, 0, 0);
}

.page-title-nav a:before {
  content: "/";
  position: absolute;
  right: 5px;
  font-style: italic;
  transform: translateX(50%);
  color: rgb(166 156 140);
  opacity: .4;
}

.page-title .largetitle {
  color: rgb(0, 0, 0);
  font-size: 48px;
  font-family: "Poppins";
  font-weight: 600;
}

.page-title .smalltitle {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  margin-top: 10px;
}

.page-title .smalltitle span {
  position: relative;
  font-size: 24px;
  margin: 0px 10px;
  top: 3px;
}

@media screen and (max-width: 768px) {
  .page-title {
    height: 25vh;
  }
}

@media screen and (max-width: 480px) {
  .page-title-nav a {
    font-size: .65rem;
  }

  .page-title {
    padding-left: 24px;
  }

  .page-title .largetitle {
    font-size: 32px;
  }
}

footer {
  border-top: 1px solid rgb(0 0 0 / 5%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__uls {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 100px;
}

.footer__uls ul {
  margin: 30px 30px;
  padding: 15px;
}

.footer__uls ul li {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: .8;
  margin: 10px 0;
}

.footer__uls ul li a {
  color: #000;
  font-size: .85rem;
  opacity: .5;
  transition: all .25s ease;
  font-weight: 400;
  padding: 5px;
  display: block;
}

.footer__uls ul li a:hover {
  opacity: 1;
  color: rgba(26, 92, 255);
}

.footer__uls .title {
  text-align: left;
  margin: 0;
  width: 100%;
  padding: 5px 6px;
}

footer .copy {
  position: relative;
  bottom: 0;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  padding: 20px 50px;
  color: #000;
  border-top: 1px solid rgb(0 0 0 / 5%);
  opacity: .5;
}

footer .copy div {
  flex: 1;
}

@media (width:768px) {
  .footer__uls ul {
    margin: 30px 15px;
    padding: 15px;
  }
}

@media screen and (max-width:767px) {
  .footer__uls {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 50px;
  }

  .footer__uls ul {
    margin: 0px 30px;
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .copy {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

.contact-section {
  display: flex;
  justify-content: center;
  gap: 6em;
  padding: 100px 30px;
}

@media screen and (max-width:767px) {
  .contact-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 50px 30px;
    gap: 0em;
  }

  .contact-column {
    gap: 16px !important;
  }
}

.contact-row {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.contact-column {
  display: flex;
  flex-direction: row;
  padding: 16px 0px;
  gap: 32px;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-info:hover .contact-title {
  color: rgba(26, 92, 255);
}

.contact-info:hover .contact-text {
  color: rgba(26, 92, 255);
}

.contact-title {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.contact-text {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  /transform: translateY(-2px);/
}

.bosluk {
  margin-left: 55px;
}

@media screen and (max-width:767px) {
  .bosluk {
    margin-left: 39px;
  }
}

.about-page {
  width: 100%;
  height: auto;
  padding: 100px;
}

.about-page-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
}

@media screen and (max-width: 768px) {
  .about-page-container .image img {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .about-page {
    padding: 40px;
  }

  .about-page-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-page-container .image {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .about-page-container .image img {
    float: left;
  }

  .about-page-container .content .vizyon {
    margin: 25px 0px !important;
  }

  .about-page-container .content .misyon {
    margin: 25px 0px !important;
  }
}

.about-page-container .content h2 {
  font-size: 32px;
  padding: 15px 0px;
}

.about-page-container .content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.1em;
  color: #707070;
}

.about-page-container .image img {
  width: 80%;
  height: auto;
  float: right;
}

.main {
  display: flex;
}

@media screen and (max-width: 767px) {
  .main {
    display: flex;
    flex-direction: column
  }
}

.left-container {
  padding: 3rem 3rem;
}

.categorys {
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 1px solid #000;
}

.category {
  font-size: 14px;
  font-family: 'Poppins';
  color: #000;
  padding: 15px 30px;
}

.category:hover {
  border-radius: 15px;
  background: rgb(240, 240, 240);
}

.main .container {
  width: 80%;
  padding: 3rem 3rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  justify-content: center;
  align-items: center;
}

.main .card {
  color: #252a32;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
  border-radius: 20px;
}

.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media only screen and (max-width: 1100px) {
  .main .container {
    padding: 6rem 6rem;
  }
}

@media only screen and (max-width: 950px) {
  .main .container {
    padding: 6rem 5rem;
  }
}

@media only screen and (max-width: 800px) {
  .main .container {
    grid-template-columns: repeat(2, 1fr);
    padding: 6rem 4rem;
  }
}

@media only screen and (max-width: 600px) {
  .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    padding: 2em 2rem;
  }
}

.swiper-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

@media only screen and (max-width: 600px) {
  .swiper-container {
    height: 45vh;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.button-container button {
  position: relative;
  padding: 0px 20px;
  height: 52px;
  overflow: hidden;
  transition: 0.5s;
  border: 1px solid rgb(0 0 0 / 0.2);
  margin-top: 20px;
  font-family: 'Poppins';
  font-size: 14px;
  background: none;
  color: #000;
  cursor: pointer;
}

.button-container button:hover {
  background-color: #820009;
  color: #fff;
}

.siparis-button {
  z-index: 9999;
  background-color: #820009;
  border-radius: 100px;
  font-size: 16px;
  color: #fff;
  padding: 12px 25px;
  position: fixed;
  bottom: 10px;
  right: 10px;
}