@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comfortaa", cursive;
}

:root {
  /* COLORS */
  --color-white: #fff;
  --color-red: #ec1d21;
  --color-light_red: #f15b5d;
  --color-gray: #808080;
  --color-matte: #333;
  --color-black: #000;

  --transition: all ease 0.3s;

  --box-shadow-md: 0 0 20px 0px rgba(0, 0, 0, 0.4);
  --box-shadow-lg: 0 0 50px 0px rgba(0, 0, 0, 0.4);
  --box-shadow-red: 0 0 20px 0px #ec1d21;

  --margin-xs: 1rem;
  --margin-s: 2rem;
  --margin-m: 3rem;
  --margin-l: 4rem;
  --margin-xl: 5rem;

  --padding-xs: 1rem;
  --padding-s: 2rem;
  --padding-m: 3rem;
  --padding-l: 4rem;
  --padding-xl: 5rem;

  --fs-xs: 1rem;
  --fs-s: 2rem;
  --fs-m: 3rem;
  --fs-l: 4rem;
  --fs-xl: 5rem;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  margin-bottom: var(--margin-xl) !important;
}

.site-main {
  overflow: hidden;
}

/* GLOBAL CLASSES */
.d-none {
  display: none;
}

.last {
  width: 100%;
}

.container {
  margin: 0 auto;
  padding: 0 2.4rem !important;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-grow {
  flex-grow: 1;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.t-upper {
  text-transform: uppercase;
}

.t-center {
  text-align: center;
}

.p-absolute {
  position: absolute;
}

.p-relative {
  position: relative;
}

.w-100 {
  width: 100%;
}

.d-inline {
  display: inline-block;
}

.btn {
  padding: var(--padding-xs);
  color: var(--color-white);
  background-color: var(--color-red);
  border: none;
  border-radius: 20px;
  width: 7rem;
  height: 3rem;
}

.mt {
  margin-top: var(--margin-m);
}

.margin-mb {
  margin-bottom: var(--margin-m);
}

.margin-lr {
  margin-right: var(--margin-l);
}

.cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.text-left {
  text-align: left;
}

.text-lg {
  font-size: 2.2em;
  line-height: var(--margin-m);
  padding-bottom: var(--padding-xs);
}

.btn-shadow {
  box-shadow: var(--box-shadow-lg);
}

/* HEADER */
.header {
  top: 0;
  left: 0;
  height: 150px;
  z-index: 100;
}

.nav {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray);
}

.nav-black {
  color: black !important;
}

.nav-item .nav-item-black,
.talep .nav-item-black {
  color: var(--color-black);
}

.collapse {
  max-height: 0px;
  overflow-y: hidden;
  transition: all 0.9s ease;
}

.toggle-btn > button {
  display: none;
  font-size: 2em;
  padding: 0.5rem;
  position: absolute;
  right: 100px;
  top: 40px;
}

.logo-box img {
  height: 100px;
}

.logo-box a {
  display: inline-block;
  transition: var(--transition);
}

.logo-box:hover a {
  transform: scale(1.1);
  transition: var(--transition);
}

.nav-list {
  gap: 1.5rem;
}

.nav-item a,
.talep a {
  display: inline-block;
  color: var(--color-white);
  transition: var(--transition);
  font-weight: 500;
  font-size: 1.5rem;
}

.nav-item a:hover,
.talep a:hover {
  color: var(--color-red);
  transform: scale(1.1);
  transition: var(--transition);
}

.nav-close,
.nav-open {
  display: none !important;
}

.nav-open.nav-item-black {
  fill: var(--color-black);
}

/* HERO */

.particles {
  z-index: -1;
  height: 100vh;
}

.hero-container {
  height: 100vh;
  z-index: 100;
}

.hero-section {
  background: url(img/background.webp) center/cover;
  z-index: 1;
}

.hero-title {
  letter-spacing: 0.3rem;
  color: var(--color-white);
  margin-bottom: var(--margin-xs);
}

.hero-description {
  letter-spacing: 0.2rem;
  color: var(--color-white);
}

.btn-kesfet {
  font-weight: 500;
  background-color: var(--color-white);
  color: var(--color-red);
  transition: var(--transition);
  text-align: center;
  z-index: 1000000;
}

.btn-kesfet:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px 0px #fff;
}

/* MOBILE CARDS */
.cards {
  margin-top: var(--margin-m);
}

.cards-title {
  text-align: center;
}

.cards-container {
  gap: 20px;
}

.card-item {
  position: relative;
  height: 380px;
  border-radius: 20px;
  background: white;
  overflow: hidden;
  transition: var(--transition);
}

.card-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: var(--transition);
  transition-delay: 0.25s;
}

.last {
  width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-item .card-icon {
  background: var(--bg);
}

.card-item:first-child .card-icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-item:nth-child(2) .card-icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-item:nth-child(3) .card-icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-item:nth-child(4) .card-icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-item:nth-child(5) .card-icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-item:nth-child(6) .card-icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-item:nth-child(7) .card-icon {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-item:hover .card-icon {
  top: 30px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition-delay: 0s;
  background-size: cover;
  transition: var(--transition);
}

.card-item:hover {
  box-shadow: var(--box-shadow-md);
  background: var(--i);
  transition: var(--transition);
}

.cards-container .card-item:hover .card-icon {
  transition-delay: 0s;
}

.card-content {
  position: relative;
  padding: 20px;
  color: white;
  text-align: center;
  margin-top: 7.5rem;
  z-index: 1;
  transform: scale(0);
  transition: var(--transition);
  transition-delay: 0s;
}

.card-item:hover .card-content {
  transform: scale(1);
  transition-delay: 0.25s;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-top: var(--dmarginim-xs);
  margin-bottom: var(--margin-s);
}

.card-content a {
  padding: var(--padding-xs);
  font-weight: 400;
  transition: var(--transition);
}

.btn-cards {
  display: inline-block;
  background: var(--color-white);
  color: var(--i);
  text-align: center;
}

.btn-cards:hover {
  transform: scale(1.1);
  transition: var(--transition);
  box-shadow: var(--box-shadow-md);
}

/* HIZMETLERIMIZ */
.hizmetlerimiz-header {
  display: inline-block;
  margin-bottom: 7rem;
  padding: 1rem;
  border-radius: 50px;
  background-color: var(--color-red);
  color: white;
}

.hizmetlerimiz-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
}

.orbit-container {
  display: grid;
  min-height: 50vh;
  width: 45%;
  place-content: center;
}

.text-container {
  width: 45%;
  height: 50vh;
  position: relative;
}

.text {
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  color: white;
  display: inline-block;
  padding: 2rem;
  border-radius: 25px;
  background-color: #eb1e21;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.text-container-header {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-size: 3rem;
  opacity: 0;
}

.text.active {
  opacity: 1;
}

.text-bottom {
  display: flex;
  gap: 0 3rem;
}

.text-header {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.text-bottom p {
  font-size: 1.5rem;
}

.text-img {
  width: 250px;
  border-radius: 25px;
}

.orbit {
  --speed: 120s;
}
.center-image {
  width: 12rem;
  position: relative;
  z-index: 10;
}
.foto {
  z-index: 10;
  width: 12rem;
  position: absolute;
  top: 50%;
  transform: scale(0);
  opacity: 0;
}
.orbits {
  display: grid;
  place-items: center;
  width: 12rem;
  height: 12rem;
  position: relative;
  list-style: none;
  transform-origin: center;
  animation: orbit 120s linear infinite;
}

.orbits:hover {
  animation-play-state: paused;
  --orbit-play-state: paused;
}
.orbit-item {
  position: absolute;
  width: 8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-weight: 500;
  color: var(--white-light);
  text-align: center;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: rotate(0) translate(0) rotate(0) scale(0);
  transition: transform 0.8s ease;
}
.orbit-item:hover {
  --throb-play-state: paused;
}

.orbit-item:nth-child(1) {
  --throb-delay: 0ms;
  transition-delay: 0.5s;
}
.orbit-item:nth-child(1).active {
  transform: translate(251px) scale(1);
}

.orbit-item:nth-child(2) {
  --throb-delay: 500ms;
  transition-delay: 0.7s;
}
.orbit-item:nth-child(2).active {
  transform: rotate(46deg) translate(251px) rotate(-46deg) scale(1);
}
.orbit-item:nth-child(3) {
  --throb-delay: 1000ms;
  transition-delay: 0.9s;
}
.orbit-item:nth-child(3).active {
  transform: rotate(91deg) translate(251px) rotate(-91deg);
}

.orbit-item:nth-child(4) {
  --throb-delay: 1500ms;
  transition-delay: 1.1s;
}
.orbit-item:nth-child(4).active {
  transform: rotate(136deg) translate(251px) rotate(-136deg) scale(1);
}

.orbit-item:nth-child(5) {
  --throb-delay: 2000ms;
  transition-delay: 1.3s;
}
.orbit-item:nth-child(5).active {
  transform: rotate(181deg) translate(251px) rotate(-181deg) scale(1);
}

.orbit-item:nth-child(6) {
  --throb-delay: 2500ms;
  transition-delay: 1.5s;
}
.orbit-item:nth-child(6).active {
  transform: rotate(226deg) translate(251px) rotate(-226deg) scale(1);
}

.orbit-item:nth-child(7) {
  --throb-delay: 3000ms;
  transition-delay: 1.7s;
}
.orbit-item:nth-child(7).active {
  transform: rotate(271deg) translate(251px) rotate(-271deg) scale(1);
}

.orbit-item:nth-child(8) {
  --throb-delay: 3500ms;
  transition-delay: 1.9s;
}
.orbit-item:nth-child(8).active {
  transform: rotate(316deg) translate(251px) rotate(-316deg) scale(1);
}

.orbit-item > * {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: inherit;
  position: absolute;
  animation: orbit var(--speed) linear reverse infinite,
    throb 1s var(--throb-delay) ease-in-out infinite alternate;
  animation-play-state: var(--orbit-play-state, running),
    var(--throb-play-state, running);
}

.orbit-item > div {
  border-radius: inherit;
  background-color: #eb1e21;
}
.orbit-item > div > img {
  width: 60px;
}
.orbit-item > h4 {
  background-color: #2f0405;
  color: white;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.orbit-item:hover > h4 {
  opacity: 1;
}

.orbit-item:nth-child(1) {
  transform: translate(0) scale(0);
}
.orbit-item:nth-child(2) {
  transform: rotate(46deg) translate(0) rotate(-46deg) scale(0);
}
.orbit-item:nth-child(2) div > img {
  width: 80px;
}
.orbit li:nth-child(3) {
  transform: rotate(91deg) translate(0) rotate(-91deg) scale(0);
}
.orbit-item:nth-child(4) {
  transform: rotate(136deg) translate(0) rotate(-136deg) scale(0);
}
.orbit-item:nth-child(4) div > img {
  width: 80px;
}
.orbit-item:nth-child(5) {
  transform: rotate(181deg) translate(0) rotate(-181deg) scale(0);
}
.orbit-item:nth-child(5) div > img {
  width: 80px;
}
.orbit-item:nth-child(6) {
  transform: rotate(226deg) translate(0) rotate(-226deg) scale(0);
}
.orbit-item:nth-child(6) div > img {
  width: 80px;
}
.orbit-item:nth-child(7) {
  transform: rotate(271deg) translate(0) rotate(-271deg) scale(0);
}
.orbit-item:nth-child(7) div > img {
  width: 80px;
  transform: rotate(30deg);
}
.orbit-item:nth-child(8) {
  transform: rotate(316deg) translate(0) rotate(-316deg) scale(0);
}
.orbit-item:nth-child(8) div > img {
  width: 80px;
}

@keyframes orbit {
  100% {
    rotate: 1turn;
  }
}
@keyframes hold-position {
  100% {
    rotate: -1turn;
  }
}
@keyframes throb {
  100% {
    scale: 1.1;
  }
}

/* COUNTING AREA */
.grid-one .btn {
  padding: 0.9rem 1rem;
  border-radius: 50px;
  width: 250px;
  margin-bottom: var(--margin-m);
  font-size: 1.5rem;
}

.text-xl span {
  font-size: var(--fs-s) !important;
}

.grid-one {
  width: 80%;
}

.grid-two {
  position: relative;
}

.counting-area .grid-one p {
  font-size: 1.5rem;
  line-height: 2rem;
}

.counting-area .count-box .grid {
  display: inline-grid;
  grid-gap: 10px;
  background: transparent;
}

.counting-area .count-box .grid > div {
  background-color: var(--color-red);
  color: white;
  padding: 3em 2.5em;
  border-radius: 20px;
  box-shadow: var(--box-shadow-lg);
  text-align: center;
}

.counting-area .count-box .grid > div h5 {
  font-size: var(--fs-s);
  margin-bottom: var(--margin-xs);
}

.counting-area .count-box .grid > div span {
  font-size: var(--fs-xs);
}

.grid-arrow {
  position: absolute;
  font-size: 30rem;
  top: -100px;
  right: -100px;
  z-index: -5;
  color: rgba(156, 156, 156, 0.5);
  animation: up 1s infinite alternate;
}

@keyframes up {
  0% {
    transform: translateY(5rem);
  }

  100% {
    transform: translateY(0);
  }
}

/* IMAGE CONTAINER */
.image-container-title h2 {
  font-size: 2.2em;
  line-height: 3rem;
  padding: 0 0 1.5rem;
}

#site-main .image-container .images-flex .flex-item {
  margin: 1rem auto;
}

#site-main .image-container .images-flex .flex-item img {
  border-radius: 10px;
  width: 100%;
  max-height: 500px;
}

.flex-item img,
.flex-item h3 {
  margin-bottom: 0.5rem;
}

.flex-item span {
  color: var(--color-gray);
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 15rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
}

.testimonials-top {
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}

.testimonials-header {
  font-size: 3rem;
}

.testimonials-arrow-container {
  gap: 2rem;
  display: flex;
}

.testimonials-arrow {
  display: flex;
  padding: 10px;
  border: 2px solid black;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-arrow svg {
  width: 30px;
}

.testimonials-arrow:hover {
  background-color: #ec1d21;
  border-color: #ec1d21;
  color: white;
}

.testimonials-arrow:hover svg {
  fill: var(--color-white);
}

.testimonials-content {
  margin-bottom: 3rem;
}

.testimonials-card {
  width: 350px;
  height: 450px !important;
  background-color: #ec1d21;
  border-radius: 30px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials-card-top svg {
  fill: white;
  width: 5rem;
  margin-bottom: 2rem;
}

.testimonials-card-top p {
  font-size: 1.5rem;
  color: white;
}

.testimonials-card-bottom {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}

.testimonials-img {
  width: 50px;
  border-radius: 50%;
}

.testimonals-card-user {
  display: flex;
  align-items: center;
  color: white;
}

.swiper-slide {
  width: 200px;
}

.comment-btn {
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-top: var(--margin-xs);
}

.comment-btn a {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  padding: 10px;
  border-radius: 20px;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.comment-btn a:hover {
  transition: all 0.3s ease;
  transform: scale(1.1);
}

/* REFERANSLAR */
.referanslar-container {
  flex-wrap: wrap;
}

.referanslar-section {
  width: 90%;
}

.referanslar-container {
  flex-wrap: nowrap;
  display: flex;
}

.referanslar-container img {
  width: 200px;
  margin-right: 2rem;
}

.referanslar-container img:last-child {
  margin: 0 auto;
}

/* SUBSCRIBE SECTION */
.subscribe-section {
  background-color: var(--color-red);
  box-shadow: var(--box-shadow-lg);
}

.subscribe-container {
  padding: 2rem 0 !important;
  margin-bottom: 2rem;
}

.subscribe-items h3 {
  margin-top: 1.5rem;
  color: var(--color-white);
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid var(--color-white);
  background: none;
  padding: 0.6rem 1.2rem;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: var(--transition);
}

textarea.input {
  padding: 1rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.form-container .input-container .form-btn:hover {
  transform: scale(1.1);
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: var(--transition);
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.form-btn {
  padding: 0.6rem 1.3rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  font-size: 1.25rem;
  color: var(--color-red);
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: var(--margin-xs);
}

.form-btn:hover {
  background-color: transparent;
  color: var(--color-white);
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--color-red);
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

/* ABOUT US */

.about-nav-link {
  color: var(--color-matte) !important;
}

.about-nav-link:hover {
  color: var(--color-red) !important;
}

.aboutus-section,
.hizmet-section,
.galeri-section,
.iletisim-section {
  position: relative;
  margin-bottom: 0 !important;
}

.aboutus-section::before,
.hizmet-section::before,
.galeri-section::before,
.iletisim-section::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(img/body_bg.webp);
  background-position: bottom;
  background-repeat: repeat-x;
  opacity: 0.5;
  z-index: -1;
}

.aboutus-title,
.hizmet-title,
.iletisim-title {
  align-items: flex-end;
}

.aboutus-description {
  margin-top: var(--margin-s);
}

/* HİZMETLERİMİZ */

.post-main-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.category-head {
  margin: 3rem 0;
}

.category-head ul li {
  transition: var(--transition);
  display: inline-block;
}

.category-title {
  color: var(--color-gray);
  cursor: pointer;
  transition: var(--transition);
}

.category-title.active {
  color: var(--color-red);
}

.category-title li:hover {
  transform: scale(1.2);
  color: var(--color-red);
}

.post-content {
  height: 100%;
  align-self: center;
}

.post-img img {
  border-radius: 20px;
}

.goster {
  display: flex;
}

.activee {
  max-height: 50vh !important;
}

/* GALERI */

.grid-item a {
  color: black;
}

.grid-item img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  margin-bottom: var(--gap-xs);
}

.grid-item h3 {
  margin-bottom: 0.5rem;
}

/* ILETISIM */
.iletisim-items-container {
  display: flex;
  justify-content: space-between;
}

.iletisim-info {
  gap: 2rem;
}

.info-item {
  background-color: red;
  color: white;
  border-radius: 25px;
  padding: 1rem 1rem;
  width: 100%;
}

.info-item .texts p {
  margin-bottom: 0.5rem;
}

.info-item .texts p:last-child {
  margin-bottom: 0;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  background-color: white;
  border-radius: 50%;
  margin-right: 1rem;
}

.iletisim-main {
  padding-top: 15rem;
}

.mapouter {
  margin: 2rem 0;
}

.iletisim-form {
  height: 100%;
}

.iletisim-container form {
  width: 1223px;
}

.info-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.info-item svg {
  fill: var(--color-red);
  width: 35px;
}

.form-items h3 {
  color: var(--color-black);
}

.iletisim-container .input-container {
  flex-basis: 30%;
}

.form-items .iletisim-container .input {
  border-bottom: 2px solid var(--color-black);
  border-top: none;
  border-right: none;
  border-left: 2px solid var(--color-black);
  border-radius: 0 !important;
  color: black;
}

.form-items .iletisim-container .input-container label {
  color: var(--color-black);
}

.iletisim-btn {
  padding: 0.6rem 1.3rem;
  background-color: var(--color-red);
  border: none;
  font-size: 1.25rem;
  color: var(--color-white);
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: var(--margin-xs);
}

.iletisim-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px 0px red;
}

.iletisim-container .input-container span:before,
.iletisim-container .input-container span:after {
  background-color: transparent;
}

.mapouter {
  position: relative;
  height: 500px;
  width: 100%;
  padding: 0 !important;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 500px;
  width: 100%;
  border-radius: 15px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: var(--padding-s);
}

footer a,
footer h5 {
  display: inline-block;
}

.footer-top {
  margin-top: var(--margin-s);
}

.footer-left h5,
.footer-middle h5,
.footer-right h5 {
  padding-bottom: 0.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--color-red);
}

.footer-about p {
  line-height: 1.41rem;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.footer-middle ul li {
  margin-bottom: 1.5rem;
}

.footer-middle ul li a {
  color: var(--color-gray);
  transition: var(--transition);
}

.footer-middle ul li a:hover {
  transform: scale(1.1);
  color: var(--color-red);
}

.footer-right ul li {
  margin-bottom: var(--margin-s);
}

.footer-right ul li h5 {
  font-size: var(--fs-xs);
  margin-right: 1.5rem;
}

.footer-right ul li span {
  color: var(--color-gray);
}

.social-media a {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 50%;
  margin-right: var(--margin-s);
}

.social-media a:last-child {
  margin-right: 0;
}

.social-media a svg {
  width: 70px;
  padding: var(--padding-xs);
  transition: var(--transition);
  fill: var(--color-black);
  cursor: pointer;
}

.social-media a svg:hover {
  transform: scale(1.5);
  transition: var(--transition);
  fill: var(--color-red);
}

.social-media a:hover svg {
  transform: scale(1.9);
  fill: var(--color-red);
}

.attributes {
  margin-top: 1.5rem;
}

.attributes a {
  color: var(--color-gray);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.attributes a:last-child {
  margin-bottom: 0;
}

.attributes a:hover {
  color: var(--color-red);
  transition: var(--transition);
}

/* COPYRIGHT */

.cpyrght {
  width: auto;
  background-color: #171717;
  text-align: center;
}

.cpyrght p {
  color: var(--color-gray);
  padding: 10px;
}

/* ------------ MEDIA QUERY ------------ */

@media screen and (min-width: 360px) {
  .container {
    max-width: 360px;
  }

  .talep {
    display: none;
  }

  .logo-box {
    margin: 1rem 0;
  }

  .logo-box a img {
    /* content: url(img/LOGO.png); */
    width: 93px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: inline;
  }

  .hero-section {
    background-image: url(img/background-small.webp);
  }

  .hero-title {
    font-size: var(--fs-s);
  }

  .hero-description {
    font-size: var(--fs-xs);
    width: unset;
  }

  #site-main .image-container .images-flex .flex-item {
    width: 283px;
    margin-bottom: var(--margin-xs);
  }

  .cards-container {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .card-item {
    width: 283px;
  }

  .counting-area {
    width: 100%;
  }

  .counting-area .count-box {
    justify-content: center;
  }

  .slider {
    width: 360px;
  }

  .slider-title {
    font-size: 1.5rem;
  }

  .slides {
    max-width: 283px;
  }

  .slide-content {
    flex-direction: column;
  }

  .slides .inner {
    height: 680px;
  }

  .slide-content .card {
    width: 240px;
    margin: 0 2rem 2rem;
    height: 308px;
  }

  .subscribe-container {
    flex-direction: column;
  }

  .grid-one {
    margin-bottom: 2rem;
  }

  .testimonials-arrow-container {
    display: none;
  }

  .form-container,
  .subscribe-items {
    width: 100%;
  }

  .form-container form {
    width: 90%;
  }

  .subscribe-image {
    order: 1;
  }

  .footer-left {
    flex-basis: 20%;
  }

  .footer-mobile {
    flex-wrap: wrap;
  }

  .footer-right ul {
    display: flex;
    justify-content: space-between;
  }

  .footer-right ul li h5 {
    margin-right: 0;
  }

  .footer-right ul li span {
    display: block;
  }

  .social-media {
    width: 283px;
    justify-content: space-between;
    border: none;
  }

  .social-media a {
    margin-right: 0;
  }

  .social-media a i {
    width: var(--fs-s);
    padding: 0;
  }

  .footer-right {
    margin-top: var(--margin-xs);
    width: 100%;
  }

  .footer-left h5,
  .footer-middle h5,
  .footer-right h5 {
    font-size: var(--fs-xs);
  }

  .footer-about {
    width: 150px;
  }

  .footer-about p {
    font-size: 0.9rem;
  }

  .footer-right ul li span,
  .footer-middle ul li a {
    font-size: 0.8rem;
  }

  .aboutus-section {
    height: 1200px;
  }

  .aboutus-description {
    flex-direction: column;
    justify-content: unset;
    padding-bottom: var(--padding-s);
  }

  .aboutus-title h3 {
    font-size: 3rem;
    font-weight: 100;
  }

  .aboutus-text {
    width: 100%;
    height: 100%;
    justify-content: space-between;
  }

  .aboutus-text p {
    line-height: 1.5rem;
  }

  .aboutus-text p:first-child {
    margin-bottom: 2rem;
  }

  .aboutus-image {
    display: none;
  }

  .hizmet-title h3 {
    font-size: var(--fs-s);
  }

  .aboutus-title {
    height: 400px;
    margin-bottom: var(--margin-l);
  }

  .hizmet-title {
    height: 250px;
    margin-bottom: var(--margin-l);
    justify-content: left;
  }

  .hizmet-section {
    min-height: 1400px;
    padding-bottom: 2rem;
  }

  .category-name {
    margin-bottom: var(--margin-s);
  }

  .category-head ul li {
    font-size: 1.15rem;
  }

  .category-head ul {
    flex-direction: column;
  }

  .category-title {
    margin-bottom: var(--margin-xs);
  }

  .posts-collect-mobile {
    flex-direction: column;
    justify-content: left;
  }

  .posts-collect-mobile .post-content {
    width: 100%;
    margin-top: var(--margin-xs);
  }

  .post-img {
    width: 283px;
  }

  .post-content p {
    line-height: 1.5rem;
    font-size: 1.2rem;
  }

  .post-img img {
    width: 100%;
  }

  .galeri-section {
    min-height: 100vh;
  }

  .grid-container {
    column-count: 2;
  }

  .iletisim-section {
    padding-bottom: 1rem;
  }

  .iletisim-title {
    margin-bottom: var(--margin-l);
  }

  .iletisim-title h3 {
    font-size: var(--fs-m);
  }

  .iletisim-info {
    flex-direction: column;
  }

  .info-item {
    margin-bottom: var(--margin-s);
  }

  .info-item .texts p {
    font-size: 0.8rem;
  }

  .iletisim-container {
    width: 100%;
  }

  .info-icon {
    width: 20px;
  }

  .form-container {
    padding: 0 1rem;
  }

  .form-container-mobile {
    flex-direction: column;
  }

  .form-items h3 {
    font-size: var(--fs-s);
    font-weight: 100;
  }

  .gmap_canvas iframe {
    width: 283px;
    height: 500px;
  }
}

@media screen and (min-width: 480px) {
  .container {
    max-width: 480px;
  }

  .nav-list {
    width: 50% !important;
  }

  .hero-container {
    margin: auto 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .cards-title {
    font-size: var(--fs-s);
  }

  .cards-container {
    width: 100%;
  }

  .card-item {
    width: 403px;
    margin-bottom: var(--margin-xs);
  }

  .image-container-title h2 {
    text-align: left;
  }

  .slider {
    width: 403px;
  }

  .slides {
    max-width: 403px;
  }

  .slide-content .card {
    width: 350px;
  }

  #site-main .image-container .images-flex .flex-item {
    width: 403px;
    margin-bottom: var(--margin-xs);
  }

  .form-container form {
    width: 100%;
  }

  .footer-right ul {
    display: flex;
    justify-content: space-between;
  }

  .footer-right ul li span {
    display: block;
  }

  .social-media {
    justify-content: space-between;
    width: 100%;
  }

  .footer-right {
    margin-top: var(--margin-xs);
    width: 100%;
  }

  .footer-left h5,
  .footer-middle h5,
  .footer-right h5 {
    font-size: var(--fs-s);
  }

  .footer-about p {
    font-size: 0.8rem;
  }

  .footer-right ul li span,
  .footer-middle ul li a {
    font-size: 0.9rem;
  }

  .aboutus-section {
    height: 950px;
  }

  .aboutus-title {
    height: 320px;
    justify-content: left;
    margin-bottom: 5rem;
  }

  .hizmet-title h3 {
    font-size: 3.5rem;
    font-weight: 100;
  }

  .post-content p {
    line-height: 1.5rem;
    font-size: 1.2rem;
  }

  .post-img {
    width: 403px;
  }

  .post-img img {
    height: 400px;
  }

  .form-items h3 {
    font-size: var(--fs-m);
    font-weight: 100;
  }

  .gmap_canvas iframe {
    width: 403px;
    height: 500px;
  }

  .info-icon {
    width: 75px;
    height: 75px;
  }

  .info-item .texts p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    position: fixed;
    background: var(--color-red);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    z-index: 2;
    transition: var(--transition);
  }

  .menu ul {
    flex-direction: column;
    padding-left: var(--padding-xs);
    margin-top: var(--margin-s);
  }

  .nav-list {
    align-items: flex-start;
  }

  .nav-close,
  .nav-open {
    display: inline-block !important;
    fill: var(--color-white);
    width: 100px;
    cursor: pointer;
    padding: var(--padding-s);
    text-align: right;
  }

  .mobile-nav-item a:hover {
    color: var(--color-white);
  }

  .nav-item .nav-item-black {
    color: var(--color-white);
    font-size: var(--fs-xs);
  }

  .nav-item a {
    font-size: var(--fs-xs);
  }

  .talep a {
    display: none;
  }

  .fa-xmark {
    color: var(--color-white) !important;
  }
}

@media screen and (min-width: 768px) {
  .logo-desktop {
    display: inline;
    width: 206px !important;
  }

  .logo-mobile {
    display: none;
  }

  .container {
    max-width: 768px;
  }

  .nav-list,
  .talep {
    display: flex;
  }

  .nav-item a,
  .talep a {
    font-size: 0.7rem;
  }

  .cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .card-item {
    width: 330px;
    margin-bottom: var(--margin-xs);
  }

  #site-main .image-container .images-flex {
    width: 691px !important;
  }

  #site-main .image-container .images-flex .flex-item {
    width: 310px;
  }

  .image-container-title h2 {
    text-align: center;
  }

  .slider {
    width: 691px;
  }

  .slider-title {
    font-size: var(--fs-s);
  }

  .slides {
    max-width: 691px;
  }

  .slides .inner {
    height: 500px;
  }

  .slide-content .card {
    width: 630px;
    height: 210px;
  }

  .input-container label {
    font-size: 1.3rem;
  }

  .footer-top {
    justify-content: space-between;
  }

  .footer-about {
    width: 320px;
  }

  .footer-about p {
    height: 210px;
    line-height: 2rem;
  }

  .footer-about p,
  .footer-middle ul li a {
    font-size: var(--fs-xs);
  }

  .aboutus-description {
    padding: 0;
  }

  .aboutus-title,
  .hizmet-title {
    height: 300px;
    margin-bottom: var(--margin-m);
  }

  .post-content p {
    line-height: 2rem;
    font-size: 1.3rem;
  }

  .aboutus-section {
    height: 1150px;
  }

  .aboutus-image {
    margin-top: 1rem;
    display: block;
  }

  .aboutus-image img {
    width: 400px;
  }

  .grid-container {
    column-count: 3;
  }

  .lg-cols-2-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gmap_canvas iframe {
    width: 691px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .burger {
    display: none;
  }

  .logo-box a img {
    /* content: url(img/logo_b.png); */
    width: 206px;
  }

  .nav-item a,
  .talep a {
    font-size: 0.9rem;
  }

  .hero-section {
    background-image: url(img/background.webp);
  }

  .hero-description {
    width: 850px;
  }

  .hero-container .w-100 {
    padding-top: 10rem;
  }

  .category-head ul {
    flex-direction: row;
  }

  .card-item {
    width: 380px;
  }

  /* COUNTING AREA */
  .counting-area {
    width: 70%;
    padding: 2.5rem 2.4rem 5rem !important;
  }

  #site-main .image-container .images-flex {
    width: 940px !important;
  }

  #site-main .image-container .images-flex .flex-item {
    width: 28%;
  }

  .slider {
    width: 940px;
  }

  .slides {
    max-width: 940px;
  }

  .slides .inner {
    height: 300px;
  }

  .slide-content {
    flex-direction: row;
  }

  .slide-content .card {
    width: 390px;
    margin: 0;
  }

  .slide_1 .card:first-child,
  .slide_2 .card:first-child,
  .slide_3 .card:first-child,
  .slide_4 .card:first-child {
    margin-right: 2rem;
  }

  /* TESTIMONIALS */
  .testimonials-arrow-container {
    display: flex;
  }

  .footer-right ul li h5 {
    margin-right: 1.5rem;
  }

  .footer-right ul li:first-child h5 {
    margin-right: calc(1.5rem + 15.54px);
  }

  .footer-right ul li:last-child h5 {
    margin-right: calc(1.5rem + 38.04px);
  }

  .subscribe-items {
    width: 80%;
  }

  .footer-mobile {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .footer-right {
    margin: 0;
    width: initial;
  }

  .footer-right ul {
    flex-direction: column;
  }

  .footer-right ul li span {
    display: inline-block;
  }

  .social-media {
    width: 400px;
    justify-content: space-between;
  }

  .hizmet-section {
    min-height: 1050px;
  }

  .category-title li {
    display: inline-block;
  }

  .posts-collect-mobile {
    flex-direction: row;
    justify-content: space-between;
  }

  .post-img {
    margin-right: var(--margin-s);
  }

  .post-img img {
    height: 500px;
    margin-right: 3rem;
  }

  .posts-collect-mobile .post-content {
    margin: 0;
    width: 40%;
  }

  .post-content p {
    line-height: 2rem;
    font-size: 1.5rem;
  }

  .iletisim-container form,
  .iletisim-container {
    width: 100% !important;
  }

  .gmap_canvas iframe {
    width: 947px;
  }

  .lg-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 1299px) {
  .hizmetlerimiz {
    display: none;
  }
}

@media screen and (min-width: 1300px) {
  .cards {
    display: none;
  }

  .container {
    max-width: 1800px;
  }

  .nav-item a,
  .talep a {
    font-size: var(--fs-xs);
  }

  .hero-title {
    font-size: var(--fs-l);
    width: 55%;
  }

  .hero-description {
    font-size: 1.5rem;
    width: 900px;
  }

  .hero-container .w-100 {
    padding-top: 10rem;
  }

  #site-main .image-container .images-flex {
    width: 1261px !important;
  }

  .slider {
    width: 1223px;
  }

  .slides {
    max-width: 1223px;
  }

  .slide-content .card {
    width: 550px;
  }

  .subscribe-container,
  .category-head ul,
  .iletisim-info,
  .form-container-mobile {
    flex-direction: row;
  }

  .subscribe-container {
    width: 100%;
  }

  .subscribe-image {
    order: 0;
  }

  .subscribe-items {
    flex-basis: 50%;
  }

  .subscribe-items h3 {
    font-size: 1.5rem;
  }

  .footer-left h5,
  .footer-middle h5,
  .footer-right h5 {
    font-size: var(--fs-s);
  }

  .footer-about p {
    line-height: 1.41rem;
    font-size: 0.9rem;
  }

  .aboutus-title {
    margin-bottom: 5rem;
  }

  .aboutus-image {
    margin: 0;
  }

  .hizmet-section {
    height: 1150px;
  }

  .hizmet-title,
  .iletisim-title {
    margin-bottom: 8rem;
    width: 100%;
  }

  .aboutus-title h3,
  .hizmet-title h3,
  .iletisim-title h3 {
    font-weight: 300;
    font-size: var(--fs-xl);
  }

  .aboutus-title,
  .hizmet-title {
    justify-content: center;
  }

  .aboutus-section {
    height: 970px;
  }

  .aboutus-description {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
  }

  .aboutus-text {
    width: 60%;
  }

  .aboutus-text p {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .aboutus-image img {
    width: 100%;
    height: 450px;
  }

  .grid-container {
    column-count: 4;
  }

  .posts-collect,
  .category-name {
    padding-bottom: var(--padding-s);
  }

  .category-head ul li {
    font-weight: 500;
    font-size: 1.2rem;
  }

  .gmap_canvas iframe {
    width: 100%;
  }

  .iletisim-section {
    height: 100%;
    padding-bottom: 5rem;
  }

  .iletisim-title h3,
  .form-items h3 {
    font-size: var(--fs-l);
  }
}

#phone::-webkit-outer-spin-button,
#phone::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
