
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Poppins:300,400,500,600,700&display=swap");
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #6c6c86;
}




p {
  font-weight: 400;
  color: #6c6c86;
  font-size: 15px;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

.lead {
  font-size: 18px;
}

.display-1 {
  font-size: 100px;
}
@media (max-width: 575px) {
  .display-1 {
    font-size: 50px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 40px;
  }
}

h2, .h2 {
  font-size: 44px;
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 36px;
}
@media (max-width: 575px) {
  h3, .h3 {
    font-size: 28px;
  }
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 14px;
}

.icon-lg {
  font-size: 50px;
}

.icon {
  font-size: 40px;
}

.icon-sm {
  font-size: 30px;
}

.icon-xs {
  font-size: 20px;
}

/* Button style */
.btn {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 13px 45px;
  border-radius: 35px;
  font-weight: 600;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}
.btn:hover, .btn:active, .btn:focus {
  outline: 0;
  box-shadow: none !important;
  box-shadow: 0px 18px 18px 0px rgba(20, 28, 91, 0.19);
}

.btn-lg {
  font-size: 20px;
  padding: 20px 90px;
}

.btn-primary {
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, rgb(247, 70, 58) 100%);
  color: #fff;
  border: 0;
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary.active {
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, rgb(247, 70, 58) 100%) !important;
  color: #fff;
  border: 0;
}

.btn-outline-primary {
  background: transparent;
  color: #f7463a;
  border-color: #f7463a;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary.active {
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, rgb(247, 70, 58) 100%) !important;
  color: #fff;
  border-color: #f7463a;
}

.btn-secondary {
  background: #07085d;
  color: #fff;
  border: 0;
}
.btn-secondary:active, .btn-secondary:hover, .btn-secondary.focus, .btn-secondary.active {
  background: #07085d !important;
  color: #fff;
  border: 0;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:active, .btn-outline-light:hover, .btn-outline-light.focus, .btn-outline-light.active {
  background: #fff !important;
  color: #000;
  border-color: #fff;
}

.btn-transparent {
  color: #f7463a;
  border: 0;
  padding-left: 0;
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, rgb(247, 70, 58) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-transparent:active, .btn-transparent:hover, .btn-transparent.focus, .btn-transparent.active {
  color: #f7463a;
  border: 0;
  padding-left: 0;
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, rgb(247, 70, 58) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: none;
  text-decoration: underline;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #f9746b;
  color: #fff;
}

::selection {
  background: #f9746b;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #f7463a;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.hover-text-underline:hover {
  text-decoration: underline;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #f7463a;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 60px;
  padding-bottom: 30px;
  border-radius: 80;
}
.section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-lg {
  padding-top: 370px;
  padding-bottom: 37px;
}

.section-border {
  height: 9px;
  width: 500px;
  background: linear-gradient(37deg, rgb(130, 255, 234) 1%, rgb(80, 247, 58) 100%);
  border-radius: 80px;
  margin: 40px auto 190px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

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

.border-primary {
  border-color: #d2d2e2 !important;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}
.overlay-primary {
  position: relative;
}
.overlay-primary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #f7463a;
  opacity: 0.8;
}
.overlay-secondary {
  position: relative;
}
.overlay-secondary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #385d07;
  opacity: 0.8;
}
.overlay-secondary-half {
  position: relative;
}
.overlay-secondary-half::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #07085d 60%, transparent);
}
.overlay-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #f7463a !important;
}

.bg-secondary {
  background: rgb(255, 166, 166) !important;
}

.text-primary {
  color: #f7463a !important;
}

.text-secondary {
  color: #1b5d07 !important;
}

.text-gradient-primary {
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, rgb(247, 70, 58) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-light {
  color: #050402 !important;
}

.text-color {
  color: #6c6c86 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 200px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.zindex-1 {
  z-index: 1;
}

.top-100 {
  top: 100px;
}

.overflow-hidden {
  overflow: hidden !important;
}

.font-primary {
  font-family: "Poppins", sans-serif !important;
}

.font-secondary {
  font-family: "Noto Sans", sans-serif !important;
}

.shadow {
  box-shadow: 0px 46px 65px 0px rgba(181, 188, 236, 0.16) !important;
}

.bg-gradient-primary {
  background: linear-gradient(37deg, rgb(180, 62, 121) 1%, rgb(247, 70, 58) 100%) !important;
}

.transition {
  transition: 0.3s ease;
}

.vertical-align-middle {
  vertical-align: middle;
}

/* form control */
.form-control {
  height: 50px;
  border-radius: 22;
  border: 0;
  border-bottom: 1px solid #d2d2e2;
}
.form-control:focus {
  box-shadow: none !important;
  border-color: #f7463a;
}

textarea.form-control {
  height: 150px;
}

/* /form control */
/* page-title */
.page-title {
  padding: 100px 0 100px;
}

/* /page-title */
/* list style */
.list-styled {
  padding-left: 0;
}
.list-styled li {
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}
.list-styled li::before {
  position: absolute;
  content: "\e65d";
  font-family: "themify";
  font-size: 14px;
  left: 0;
  top: 0px;
  color: #07085d;
  transition: 0.3s ease;
}

/* social icons */
.social-icons a {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  background: #fafca1;
  color: #fff;
  text-align: center;
}

/* /social icons */
.navigation {
  padding: 20px 100px;
  transition: 0.3s ease;
  /* Melih imza */
  /* Bu 2 satır sonradan eklendi */
  display: grid;
  place-items: center;  
  
}
.navigation.nav-bg {
  background-color: #07085d;
  padding: 15px 100px;
}
@media (max-width: 991px) {
  .navigation.nav-bg {
    padding: 15px 20px;
  }
}
@media (max-width: 991px) {
  .navigation {
    padding: 20px;
    background: rgb(144, 252, 234);
  }
}

.navbar .nav-item .nav-link {
  font-family: "Poppins", sans-serif;
  padding: 15px;
  font-size: 18px;
}
.navbar .nav-item.active {
  font-weight: bold;
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  border: 0;
  top: calc(100% - 2px);
  left: -10px;
  border-radius: 184;
  background: #fff;
}
.navbar .dropdown-menu.show {
  display: block !important;
}
.navbar .dropdown-item {
  position: relative;
  color: #000;
  transition: 0.2s ease;
  font-family: "Poppins", sans-serif;
  padding: 10px;
  text-decoration: none;
  margin-bottom: 0 !important;
}
.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}




.banner {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh; /* Yüksekliği ayarla */
}




.content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hover-bg-secondary {
  transition: 0.2s ease;
}
.hover-bg-secondary * {
  transition: inherit;
}
.hover-bg-secondary:hover {
  background: #c0c1f8;
}
.hover-bg-secondary:hover * {
  color: #fff;
}
.hover-bg-secondary.active {
  background: #07085d;
}
.hover-bg-secondary.active * {
  color: #fff;
}

.hover-bg-primary {
  transition: 0.2s ease;
}
.hover-bg-primary * {
  transition: inherit;
}
.hover-bg-primary:hover {
  background: #f7463a;
}
.hover-bg-primary:hover * {
  color: #fff;
}
.hover-bg-primary.active {
  background: #f7463a;
}
.hover-bg-primary.active * {
  color: #fff;
}

.icon-box {
  height: 100px;
  width: 100px;
  line-height: 100px;
}

.icon-box-sm {
  height: 80px;
  width: 80px;
  line-height: 80px;
}

.icon-watermark {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  transition: inherit;
}

.card:hover .icon-watermark {
  transform: translate(-50%, -50%) scale(1.5);
}

.bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
}
.bg-image img {
  height: 100%;
  max-width: 100%;
}
@media (max-width: 991px) {
  .bg-image img {
    display: none;
  }
}
@media (max-width: 767px) {
  .bg-image img {
    display: block;
    height: auto;
  }
}

.hover-shadow::before {
  transition: 0.3s ease;
  position: absolute;
  height: 100%;
  box-shadow: 0px 33px 49px 0px rgba(190, 193, 228, 0.31);
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  content: "";
  opacity: 0;
}
.hover-shadow:hover::before {
  opacity: 1;
}

/* pricing */
.bottom-shape {
  position: relative;
  overflow: hidden;
}
.bottom-shape * {
  position: relative;
  z-index: 1;
}
.bottom-shape::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 60%;
  opacity: 0.5;
}
.bottom-shape::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 20%;
  top: 55%;
}

/* /pricing */
/* project */
.project-item {
  position: relative;
}
.project-item:hover .project-hover {
  visibility: visible;
  opacity: 1;
  transform: rotateX(0deg);
}

.project-hover {
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: rotateX(90deg);
  transition: 0.3s ease;
  transform-origin: bottom;
}
.project-hover i {
  height: 55px;
  width: 55px;
  line-height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  display: block;
}
.project-hover i:hover {
  border-color: #f45e5e;
}

/* /project */
/* footer */
footer .overlay-image {
  height: 80%;
  width: 80%;
  left: 10%;
  top: 10%;
}

/* progressbar */
.progress-block .progress {
  height: 8px;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: visible;
  position: relative;
  box-shadow: 0px 9px 24px 0px rgba(19, 5, 44, 0.21);
}
.progress-block .progress-bar {
  background: linear-gradient(37deg, rgb(62, 180, 72) 1%, rgb(247, 70, 58) 100%);
  width: 0;
  transition: all 3s ease-in-out;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
}
.progress-block .progress-bar .skill-number {
  position: absolute;
  top: -22px;
  right: 0px;
}

/* /progressbar */
/* video */
.video-player iframe {
  width: 100%;
  height: 100%;
}
.video-player .play-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* ripple animation */
.ripple {
  border-radius: 50%;
  position: absolute;
  height: 130%;
  width: 130%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ripple::after {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #d2d2e2;
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
.ripple::before {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #d2d2e2;
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
/* /video */
/* card slider */
@media (max-width: 991px) {
  .ui-card-slider .left-slide::before {
    left: -100px;
  }
}
@media (max-width: 767px) {
  .ui-card-slider .left-slide::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .ui-card-slider .right-slide::before {
    right: -100px;
  }
}
@media (max-width: 767px) {
  .ui-card-slider .right-slide::before {
    display: none;
  }
}

/* /card slider */
/* google map */
.map {
  height: 750px;
}

/* /google map */
/* team */
.img-thumb-circle {
  border-radius: 50%;
  overflow: hidden;
  max-height: 260px;
  max-width: 260px;
}

.card {
  border: 0;
  border-radius: 30px;
}
.card-img-top {
  border-radius: 30px;
  cursor: pointer;
}
.card-header {
  border: 0;
  
}
.card-body {
  border: 0;
  border-radius: 30px;
  margin-bottom: 80px;
  cursor: pointer;
}


.card-footer {
  border: 50;
  border-radius: 30px;
}
/*# sourceMappingURL=style.css.map */




.rowno-gutters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Öğeler arasındaki boşluk */
}

.rowno-gutters > * {
  flex: 1 1 calc(25% - 20px); /* Dört sütun düzeni için genişlik */
  box-sizing: border-box;
  min-width: 200px; /* Minimum genişlik belirleyin */
}

@media (max-width: 1024px) {
  .rowno-gutters > * {
    flex: 1 1 calc(33.333% - 20px); /* Üç sütun düzeni için genişlik */
  }
}

@media (max-width: 768px) {
  .rowno-gutters > * {
    flex: 1 1 calc(50% - 20px); /* İki sütun düzeni için genişlik */
  }
}

@media (max-width: 480px) {
  .rowno-gutters > * {
    flex: 1 1 calc(100% - 20px); /* Tek sütun düzeni için genişlik */
  }
}



/*    scss csss */
/*    scss csss */




/*    scss csss */
/*    scss csss */
button {
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 1em;
  padding: 1em 2em;
  box-shadow: inset 0 0 0 2px rgb(131, 6, 16);
  color: rgb(165, 6, 6);
  font-size: inherit;
  font-weight: 700;
  position: relative;
  vertical-align: middle;
}
button::before, button::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.draw {
  transition: color 0.25s;
}
.draw::before, .draw::after {
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.draw::before {
  top: 0;
  left: 0;
}
.draw::after {
  bottom: 0;
  right: 0;
}
.draw:hover {
  color: #000000;
}
.draw:hover::before, .draw:hover::after {
  width: 100%;
  height: 100%;
}
.draw:hover::before {
  border-top-color: rgb(64, 45, 233);
  border-right-color:rgb(64, 45, 233);
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.draw:hover::after {
  border-bottom-color: rgb(64, 45, 233);
  border-left-color: rgb(64, 45, 233);
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

.meet:hover {
  color: #fafafa;
}
.meet::after {
  top: 0;
  left: 0;
}
.meet:hover::before {
  border-top-color: rgb(76, 233, 45);
  border-right-color: rgb(76, 233, 45);
}
.meet:hover::after {
  border-bottom-color: rgb(76, 233, 45);
  border-left-color: rgb(76, 233, 45);
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}









button {
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 1em;
  padding: 1em 2em;
  box-shadow: inset 0 0 0 2px rgb(10, 178, 230);
  color: rgb(10, 178, 230);
  font-size: inherit;
  font-weight: 700;
  position: relative;
  vertical-align: middle;
}
button::before, button::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}



button3 {
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 1em;
  padding: 1em 2em;
  box-shadow: inset 0 0 0 2px rgb(89, 4, 248);
  color: rgb(89, 4, 248);
  font-size: inherit;
  font-weight: 700;
  position: relative;
  vertical-align: middle;
}
button3::before, button3::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

button4 {
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 1em;
  padding: 1em 3em;
  box-shadow: inset 0 0 0 2px rgb(255, 102, 0);
  color: rgb(255, 102, 0);
  font-size: inherit;
  font-weight: 700;
  position: relative;
  vertical-align: middle;
}
button4::before, button4::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}




.draw2 {
  transition: color 0.25s;
}
.draw2::before, .draw2::after {
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.draw2::before {
  top: 0;
  left: 0;
}
.draw2::after {
  bottom: 0;
  right: 0;
}
.draw2:hover {
  color: #000000;
}
.draw2:hover::before, .draw2:hover::after {
  width: 100%;
  height: 100%;
}
.draw2:hover::before {
  border-top-color: #000000;
  border-right-color: #0c0c0c;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.draw2:hover::after {
  border-bottom-color: #000000;
  border-left-color: #000000;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

.meet2:hover {
  color: #000000;
}
.meet2::after {
  top: 0;
  left: 0;
}
.meet2:hover::before {
  border-top-color: rgb(64, 45, 233);
  border-right-color: rgb(126, 45, 233);
}
.meet2:hover::after {
  border-bottom-color: rgb(37, 21, 182);
  border-left-color: rgb(73, 45, 233);
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}










.center:hover {
  color: #3dff4d;
}
.center::before, .center::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform-origin: center;
}
.center::before {
  border-top: 2px solid #52ff0d;
  border-bottom: 2px solid #52ff0d;
  transform: scale3d(0, 1, 1);
}
.center::after {
  border-left: 2px solid #52ff0d;
  border-right: 2px solid #52ff0d;
  transform: scale3d(1, 0, 1);
}
.center:hover::before, .center:hover::after {
  transform: scale3d(1, 1, 1);
  transition: transform 0.5s;
}

.spin {
  width: 5em;
  height: 5em;
  padding: 0;
}
.spin:hover {
  color: #0eb7da;
}
.spin::before, .spin::after {
  top: 0;
  left: 0;
}
.spin::before {
  border: 2px solid transparent;
}
.spin:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}
.spin::after {
  border: 0 solid transparent;
}
.spin:hover::after {
  border-top: 2px solid #ffffff;
  border-left-width: 2px;
  border-right-width: 2px;
  transform: rotate(270deg);
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}

.circle {
  border-radius: 100%;
  box-shadow: none;
}
.circle::before, .circle::after {
  border-radius: 100%;
}

.thick {
  color: #5edef4;
}
.thick:hover {
  color: #fff;
  font-weight: 700;
}
.thick::before {
  border: 2.5em solid transparent;
  z-index: -1;
}
.thick::after {
  mix-blend-mode: color-dodge;
  z-index: -1;
}
.thick:hover::before {
  background: #f48d5e;
  border-top-color: #f4b85e;
  border-right-color: #f45ee0;
  border-bottom-color: #ece931;
  transition: background 0s linear 0.4s, border-top-color 0.15s linear, border-right-color 0.15s linear 0.15s, border-bottom-color 0.15s linear 0.25s;
}
.thick:hover::after {
  border-top: 2.5em solid rgb(244, 94, 94);
  border-left-width: 2.5em;
  border-right-width: 2.5em;
}



.b { font-size: 23px; } 




.items-vertical{
  display: inline;
  flex-direction: row;

}


.dropdown-content a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  white-space: nowrap;
}


.dropdown img { 
padding-right: 10px;
}

.dropdown-content a:hover {
  background-color: #ddd;
  border-radius: 16px;
}

.containerPNG {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.img2 {
  max-width: 100%;
  height: auto;
}




.tick-text{
  padding-top: 1px;
  padding-bottom: 1px; /* Alt tarafta boşluk bırakır */
  margin-bottom: 30px !important;
}



.tick-text::before {
  content: none; /* Eğer tik başta eklenmişse kaldır */
}

.tick-text::after {
  

  content: "\2713 "; /* Tik işareti (Unicode) */
  color: green;      /* Tik işaretinin rengi */
  font-size: 24px;   /* Tik işaretinin boyutu */
}



.circle-tick {
  display: inline-flex;
  justify-content: center;  /* Tik işaretini yatay ortalar */
  align-items: center;      /* Tik işaretini dikey ortalar */
  width: 20px;              /* Dairenin genişliği */
  height: 20px;             /* Dairenin yüksekliği */
  background-color: green;  /* Dairenin arka plan rengi */
  border-radius: 60%;       /* Daire şekli */
  color: white;             /* Tik işaretinin rengi */
  font-size: 12px;          /* Tik işaretinin boyutu */
  font-weight: bold;        /* Tik işaretini kalın yap */
  margin-right: 6px; 
  margin-left: 14px;      /* Yazı ile daire arasındaki boşluk */
}


.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 1000;
}

.navigation fixed-top{
  position: fixed;
}


.image-section2 {
  display: flex;
  justify-content: center; /* Resimleri ortala */
  flex-wrap: wrap; /* Ekrana göre sarmalama */
  margin: 0 auto; /* Tüm bölüm ortalansın */
}

.image-container2 {
  flex: 0 0 50%; /* Her biri %50 genişlik alır */
  max-width: 450px; /* Maksimum genişlik 350px */
  text-align: center; /* Yazıları ortala */
  padding: 0; /* Padding sıfırlandı */
  margin: 30px; /* Arada biraz boşluk bırak */
}

.image-container2 a {
  display: block; /* Tüm alanı tıklanabilir yapmak için */
}

.image-container2 img {
  width: 100%; /* Resmin genişliği container'ın %100'ü olacak */
  height: auto;
  border-radius: 25px; /* Kenarları kıvrımlı yapar */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: block; /* Resmi blok seviyesinde yaparak etrafındaki boşluğu kaldır */
}

@media (max-width: 768px) {
  .image-container2 {
      flex: 0 0 100%; /* Küçük ekranlarda tam genişlik alır */
      max-width: none; /* Maksimum genişliği kaldır */
  }

  .image-container2 img {
      width: 90%; /* Mobil cihazlarda resmi biraz küçült */
  }
}



.image-section2 {
  display: flex;
  justify-content: center; /* Resimleri ortala */
  flex-wrap: wrap; /* Ekrana göre sarmalama */
  margin: 0 auto; /* Tüm bölüm ortalansın */
}

.image-container2 {
  flex: 0 0 50%; /* Her biri %50 genişlik alır */
  max-width: 450px; /* Maksimum genişlik 350px */
  text-align: center; /* Yazıları ortala */
  padding: 0; /* Padding sıfırlandı */
  margin: 30px; /* Arada biraz boşluk bırak */
}

.image-container2 a {
  display: block; /* Tüm alanı tıklanabilir yapmak için */
}

.image-container2 img {
  width: 100%; /* Resmin genişliği container'ın %100'ü olacak */
  height: auto;
  border-radius: 25px; /* Kenarları kıvrımlı yapar */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: block; /* Resmi blok seviyesinde yaparak etrafındaki boşluğu kaldır */
}

@media (max-width: 768px) {
  .image-container2 {
      flex: 0 0 100%; /* Küçük ekranlarda tam genişlik alır */
      max-width: none; /* Maksimum genişliği kaldır */
  }

  .image-container2 img {
      width: 90%; /* Mobil cihazlarda resmi biraz küçült */
  }
}



.sectionT1 {
 padding-top:200px
  
}


/* Mobil cihazlar için dropdown menü ayarları */
@media (max-width: 767px) {
  .navbar .dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px;
    text-align: left; /* Menü öğelerini sola hizala */
    border-radius: 10px; /* Varsayılan köşe yuvarlama */
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  }

  .dropdown-content {
    width: 100%;
    padding: 0;
  }

  .items-vertical {
    display: flex; /* Flex düzeni kullan */
    flex-direction: column; /* Dikey sıralama */
    align-items: flex-start; /* Öğeleri sola hizala */
    width: 100%;
  }

  .dropdown-content a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px; /* Mobil için daha küçük font */
  }

  .dropdown-content a img {
    margin-right: 10px;
    width: 24px; /* İkon boyutunu küçült */
    height: 24px;
  }

  .dropdown-content a:hover {
    background-color: #ddd;
    border-radius: 10px;
  }
}

/* --- ÜRÜNLER DROPDOWN DÜZELTME --- */
.nav-item.dropdown {
  position: relative;
}

/* Menü normalde sağa kaymasın */
.nav-item .dropdown-menu {
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: max-content;
  min-width: 250px;
  border: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* İçerik hizalaması */
.dropdown-content {
  padding: 10px 0;
}

.items-vertical a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: #2b2b2b;
  text-decoration: none;
  transition: background 0.2s;
}

.items-vertical a:hover {
  background: #f7f7f7;
}

.items-vertical a img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.items-vertical a:hover {
  background: rgba(83, 83, 83, 0.15); /* kırmızımsı ama çok hafif */
  border-radius: 8px; /* yuvarlak köşen kalsın */
  transition: background 0.25s ease;
}

/* İkon ve yazı rengini de hafif koyulaştırabilirsin */
.items-vertical a:hover img {
  filter: brightness(1.1);
}

.items-vertical a:hover {
  color: #000 !important;
}



/* --- Mobilde tam genişlik ve hizalama --- */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    margin-top: 5px !important;
  }

  .items-vertical {
    display: flex;
    flex-direction: column;
  }

  .items-vertical a {
    padding: 10px 16px;
    font-size: 16px;
  }

  .items-vertical a img {
    width: 50px;
    height: 50px;
  }
}





/* Genel taşma engelleme */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Banner ve içerik merkezi taşma düzeltmesi */
.banner,
.bg-image,
.content-center {
  box-sizing: border-box;
}

/* Rowno-gutters mobil düzeltmeleri */
@media (max-width: 480px) {
  .rowno-gutters > * {
    flex: 1 1 100% !important; /* Tek sütun ve taşmayı engelle */
    min-width: 0; /* Taşmayı engelle */
  }
}

/* Image container taşma düzeltmesi */
.image-container2 {
  max-width: 100%; /* Mobilde taşmayı önler */
  flex: 0 0 100%;
}

/* Fixed ve absolute elemanların taşma engellemesi */
.header-bar,
.navigation,
.bg-image {
  max-width: 100%;
  left: 0;
}

/* Banner responsive düzeltme */
@media (max-width: 768px) {
  .banner {
    width: 100%;
  }
  .bg-image img {
    max-width: 100%;
    height: auto;
  }
}
