:root {
  --bg-color: #151414;
  --dark-color: #231f20;
  --primary-color: #fbfbff;
  --secondary-color: #0075f2;
  --accent-color: #da2c38;
  --green-color-1: #19a50c;

  --third-color: #da2c38;
  --fourth-color: #da2c38;
  --text-color: #fbfbff;
  --p-color: #515151;

  /* #F93943 */
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  background-color: #d9d9d9 !important;
  overflow-x: hidden;
  font-family: "Rubik", serif;
}
a{
  text-decoration: none !important;
}
.dark-text {
  color: var(--dark-color);
}
p {
  color: var(--p-color);
}
.red-text {
  color: var(--accent-color);
}
.blue-text {
  color: var(--secondary-color);
}
nav #navbar {
  /*background-color: var(--bg-color);*/
  background-color: var(--dark-color);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
main {
  /* background-color: var(--bg-color); */
}
.navbar .nav-link {
  color: var(--text-color) !important;
  font-size: 1.1rem;
}
.herobg {
  background-image: url("images/herobg1.png");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top center;
  z-index: -1;
}
.herobg-works {
  background-image: url("images/image-gen.png");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top center;
  z-index: -1;
}
.location-mark {
  width: 80%;
  animation: updown 3s linear infinite;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}

.herotext {
  height: 100%;
  margin-top: -110px;
}
.herotext h1 {
  color: var(--dark-color);
  font-weight: 700;
  font-size: 4.7rem;
}

.herotext-works {
  height: 100%;
  margin-top: -110px;
}
.herotext-works h1 {
  color: var(--dark-color);
  font-weight: 400;
  font-size: 8rem;
}

header {
  position: relative;
  height: 103vh;
}

.header p {
  color: var(--p-color);
}
.circle {
  position: absolute;
  right: 5px;
  top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.circle i {
  color: var(--bg-color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.btn-type-2 {
  border: 1px solid rgba(255, 255, 255,0);
  background-color: var(--dark-color);
  color: var(--text-color);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 1.1rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: .3s all ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px;
}
.btn-type-3 {
  background-color: var(--accent-color);
  color: var(--text-color);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 1.1rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btn-type-1 {
  background-image: linear-gradient(
    to right,
    #d31027 0%,
    #ea384d 51%,
    #d31027 100%
  );
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 5px #eee;
  border-radius: 10px;
  display: block;
}

.btn-type-1:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.btn-type-2:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom: 6px solid #ffb3bb;
  
  
} 
.card-item {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 9;
  padding: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
  border-radius: 20px;
  background: var(--bg-color);
  /* background: linear-gradient(115deg, rgba(45,47,150,1) 0%, rgba(169,29,58,1) 100%);} */
}
.shadow-card {
  z-index: -1;
  position: absolute;
  top: -7px;
  left: 7px;
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/*footer*/

ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #2d2f94;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.google-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #2d2f94;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #2d2f94;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #2d2f94;
  padding: 13px 20px;
  border: 1px solid #2d2f94;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #2d2f94;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/********** sonradan **********/
.about-img {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  -webkit-border-radius: 20;
  -moz-border-radius: 20;
  -ms-border-radius: 20;
  -o-border-radius: 20;
}
.about-image-bottom {
  margin-top: -50px;
  background-color: var(--primary-color);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.quote-about {
  border-left: 3px solid var(--secondary-color);
}
.hero-bottom {
  margin-top: -50px;
}
.hero-bottom img:nth-child(1),
.hero-bottom img:nth-child(3) {
  padding: 0;
  object-position: top;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  height: 250px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.hero-bottom img:nth-child(2),
.hero-bottom img:nth-child(4) {
  padding: 0;
  object-fit: cover;
  object-position: top;
  height: 200px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.headline-1 {
  font-size: 3.2rem;
}
.contact-form-area {
  position: relative;
  background-color: var(--bg-color);
  width: 100%;
  z-index: 1;
}
.contact-form-area img:nth-child(1) {
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.contact-form-area {
  color: var(--text-color);
}

/* .custom-border {
  position: relative;
  height: 500px;
  width: 100%;
  border: 4px solid var(--secondary-color);
} */

.cta {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 30px;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("images/cta.png");
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.custom-border {
  border-radius: 20px;
  background-color: #fbfbff1a;
  position: relative;
  z-index: 5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.custom-border::before,
.custom-border::after {
  margin: -30px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Tıklanabilirliği kapat */
}

.custom-border::before {
  border-top: 4px solid var(--secondary-color); /* Üst sınır */
  border-left: 4px solid var(--secondary-color); /* Sol sınır */
  width: calc(60px); /* Ortayı boş bırak */
  height: calc(60px); /* Ortayı boş bırak */
  top: 0;
  left: 0;
}

.custom-border::after {
  border-bottom: 4px solid var(--secondary-color); /* Alt sınır */
  border-right: 4px solid var(--secondary-color); /* Sağ sınır */
  width: calc(60px); /* Ortayı boş bırak */
  height: calc(60px); /* Ortayı boş bırak */
  bottom: 0;
  right: 0;
}

.highlight {
  position: relative;
}

.highlight::before,
.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Tıklanabilirliği kapat */
}

.highlight::before {
  border-top: 4px solid var(--secondary-color); /* Üst sınır */
  border-left: 4px solid var(--secondary-color); /* Sol sınır */
  width: calc(70px); /* Ortayı boş bırak */
  height: calc(70px); /* Ortayı boş bırak */
  top: 0;
  left: 0;
}

.highlight::after {
  border-bottom: 4px solid var(--secondary-color); /* Alt sınır */
  border-right: 4px solid var(--secondary-color); /* Sağ sınır */
  width: calc(70px); /* Ortayı boş bırak */
  height: calc(70px); /* Ortayı boş bırak */
  bottom: 0;
  right: 0;
}

.service {
  transition: 0.4s all ease;
  border-radius: 10px;
  padding: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
}
.service:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

input {
  color: white;
  padding-left: 10px;
  border-radius: 5px;
  height: 40px;
  border: 1px solid #383838;
  outline: none;
  background-color: #383838;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
textarea {
  color: white;
  padding-left: 10px;
  border-radius: 5px;
  border: 1px solid #383838;
  outline: none;
  background-color: #383838;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.submitbtn {
  margin-top: 10px;
  border-radius: 5px;
  font-weight: 500;
  border: none;
  height: 40px;
  color: var(--primary-color);
  outline: none;
  background-color: var(--secondary-color);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
/* #navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  width: 77%;
  transform: translate(-50%);
  transition: all 0.8s ease-in-out;
  background-color: rgba(0, 0, 0, 1);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
} */

#navbar{
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0 !important;
   transition: all 0.8s ease-in-out;
}

#navbar.scrolled {
  border-radius: 0;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  transition: all 0.8s ease-in-out;
}
.reference-images {
  border-left: 1px solid rgba(80, 80, 80, 0.1);
  border-top: 1px solid rgba(80, 80, 80, 0.1);
}

.reference-images img {
  width: 25%;
  padding: 35px;
  border-right: 1px solid rgba(80, 80, 80, 0.1);
  border-bottom: 1px solid rgba(80, 80, 80, 0.1);
  filter: grayscale(70%);
  transition: 0.4s all ease;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  -webkit-filter: grayscale(70%);
}
.reference-images img:hover {
  filter: grayscale(10%);
  -webkit-filter: grayscale(10%);
}
.navbar-toggler:focus {
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.308);
}

/* website */

.websitebg {
  background-image: url("../assets/images/website/bghero.jpg");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top center;
  z-index: -1;
}

.threeDtext {
  position: relative;
  z-index: 2;
}
.threeD1 {
  position: absolute;
  left: 3px;
  top: 3px;
  z-index: -1;
  font-weight: 700;
  font-size: 4.5rem;
  color: transparent; /* İçini boş yapar */
  -webkit-text-stroke: 1px var(--secondary-color); /* Dış çizgi kalınlığı ve rengi */
  line-height: 1.2;
}

.threeD2 {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: -1;
  font-weight: 700;
  font-size: 4.5rem;
  color: transparent; /* İçini boş yapar */
  -webkit-text-stroke: 1px var(--accent-color); /* Dış çizgi kalınlığı ve rengi */
  line-height: 1.2;
}
.threeD3 {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: -1;
  font-weight: 700;
  font-size: 4.5rem;
  color: transparent; /* İçini boş yapar */
  -webkit-text-stroke: 1px #757575; /* Dış çizgi kalınlığı ve rengi */
  line-height: 1.2;
}
.herotext h1 {
  margin: 0 !important;
  font-size: 4.5rem !important ;
}

.herotext h2 {
  margin: 0 !important;
  font-size: 2.5rem !important ;
}
.website-laptop-area {
  position: relative;
}
.website-laptop-area img {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}

.btn-type-4 {
  background-color: var(--dark-color);
  color: var(--text-color);
  padding: 12px 24px;
  border-radius: 8px;
  transition: 0.4s all ease;
}
.btn-type-4:hover {
  background-color: var(--text-color);
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
}
.btn-type-4-area {
  display: inline-block;
  position: relative;
}
.border-btn-4 {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: -1;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--dark-color);
}

#iletisim a {
  text-decoration: none;
  color: var(--p-color);
  transition: 0.4s all ease;
}

/* BLENDER SAYFASI */

.custom-blender-border {
  border-radius: 20px;
  background-color: #fbfbff1a;
  position: relative;
  z-index: 5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.custom-blender-border::before,
.custom-blender-border::after {
  margin: -20px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Tıklanabilirliği kapat */
  border-radius: 0px 20px 0px 20px;
}

.custom-blender-border::before {
  border-top: 4px solid var(--secondary-color); /* Üst sınır */
  border-right: 4px solid var(--secondary-color); /* Sol sınır */
  width: calc(80px); /* Ortayı boş bırak */
  height: calc(80px); /* Ortayı boş bırak */
  top: 0;
  right: 0;
}

.custom-blender-border::after {
  border-bottom: 4px solid var(--secondary-color); /* Alt sınır */
  border-left: 4px solid var(--secondary-color); /* Sağ sınır */
  width: calc(80px); /* Ortayı boş bırak */
  height: calc(80px); /* Ortayı boş bırak */
  bottom: 0;
  left: 0;
}
.section-how-col {
  position: relative;
  height: 500px;
  justify-content: end;
  padding: 10px;
}
.blender-image-anim {
  position: absolute;
  z-index: -2;
  height: 0;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  transition: 0.6s all ease;
  padding: 5px;
}
.blender-image-anim img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.section-how-col:hover .blender-image-anim {
  height: 100%;
  transition: 0.6s all ease;
  filter: brightness(0.7);
}
.section-how-col:nth-of-type(3) .blender-image-anim {
  height: 100%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  filter: brightness(0.7);
}
.section-how-col:nth-of-type(3) .text-area,
.section-how-col:nth-of-type(3) .text-area p,
.section-how-col:nth-of-type(3) .blender-number {
  color: var(--text-color) !important;
}
.section-how-col .text-area {
  padding-bottom: 10px;
  transition: 0.4s all ease;
}
.section-how-col:hover .text-area,
.section-how-col:hover .text-area p,
.section-how-col:hover .blender-number {
  color: var(--text-color) !important;
  transition: 0.4s all ease;
}

.blender-number {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 700;
  color: var(--dark-color);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.steps {
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.steps-bottom {
  color: var(--primary-color);
  background-color: var(--dark-color);
  border-bottom: 4px solid #6e6e6e;
  border-radius: 0 0 10px 10px;
}
.steps:nth-of-type(2) .steps-bottom {
  background-color: var(--dark-color);
  border-bottom: 4px solid #6e6e6e;
}
.steps:nth-of-type(3) .steps-bottom {
  background-color: var(--secondary-color);
  border-bottom: 4px solid #5c94cf;
}

.works-custom-wrapper {
  position: relative;
}
.works-custom-wrapper img {
  border-radius: 10px !important;
}
.works-custom-info {
  border-radius: 10px !important;
  height: 0;
  transition: 0.4s all ease;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(25, 25, 25, 0.3);
  pointer-events: none;
}
.works-custom-wrapper:hover .works-custom-info {
  height: 100%;
  transition: 0.4s all ease;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
}
.works-custom-wrapper:hover .works-custom-info h3 {
  opacity: 1;
  transition: 0.4s all ease;
}
.works-custom-wrapper:hover .works-custom-info h4 {
  opacity: 1;
  transition: 0.4s all ease;
}
.works-custom-wrapper:hover .works-custom-info img {
  opacity: 1;
  transition: 0.4s all ease;
}
.works-custom-info h3 {
  opacity: 0;
  transition: 0.4s all ease;
}
.works-custom-info h4 {
  opacity: 0;
  transition: 0.4s all ease;
}
.works-custom-info img {
  opacity: 0;
  transition: 0.4s all ease;
}
.swiper-slide img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.calismalar-item{
  position: relative;
  height: 700px;
  background: #D9D9D9;
  background: linear-gradient(180deg, rgba(217, 217, 217, 1) 0%, rgba(243, 243, 243, 1) 100%);
}
.bg-image-shape{
  position: absolute;
  top: 0 ;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.calismalar-images{
   position: relative; 
   z-index: 2
}
.start-icon{
  filter: blur(.5px);
  background-color: #6ba2d6;
  width: 60px;
  height: 60px; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-32px);
    
}
.start-icon i{
  font-size: 20px;
  color: white;
}


.calismalar-tab-area {
  background-color: rgba(0, 0, 0, 0.8);
  height: 0;
  overflow: hidden;
  transition: height .4s ease;
   pointer-events: auto; /* tıklanabilir */
}
.calismalar-tab-area h4{
  color: white;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
}
.calismalar-tab-area .content{
  opacity: .4;
  transition: .4s all ease;
}
.calismalar-tab-area .content:hover{
  opacity: 1;
}

.calismalar-tab-area.active {
  height: 200px;
}


.hover-calismalar{
  transition: .4s all ease;
}

.hover-calismalar:hover{
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  background-color: rgb(239, 239, 239);
}
.hover-calismalar:hover a{
  color: var(--bg-color) !important;
}
.nav-item{
  transition: .4s all ease;
}
.nav-item:hover{
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  background-color: rgb(239, 239, 239);
}
.nav-item:hover a{
  color: var(--bg-color) !important;
}


@media only screen and (min-width: 2200px) {
.calismalar-item{
  height: 850px;
}
}

@media only screen and (max-width: 1350px) {
  #navbar {
    width: 100%;
    top: 0;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
  }
  .btn-type-2 {
    padding: 10px 15px;
    font-size: 1rem;
  }
  .btn-type-2 img{
    width: 20px !important;
  }
  #logo-nav {
    width: 80px;
  }
  .bg-image-shape{
    display: none;
  }
  .calismalar-item{
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  .herotext h1 {
    font-size: 2.5rem !important;
  }
  .header p {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.9rem;
  }
  .location-mark {
    width: 100%;
  }
  .herotext {
    margin-top: -35px;
  }
  .hero-bottom img:nth-child(1),
  .hero-bottom img:nth-child(3) {
    height: 180px;
  }
  .hero-bottom img:nth-child(2),
  .hero-bottom img:nth-child(4) {
    height: 150px;
  }
  .btn-type-3 {
    font-size: 0.9rem;
  }
  .btn-type-2 {
    font-size: 0.9rem;
  }
  .circle {
    width: 30px;
    height: 30px;
  }
  .headline-1 {
    font-size: 2.2rem;
  }
  .reference-images img {
    width: 49%;
    padding: 25px;
  }
  .custom-border::before {
    left: 10px;
  }
  .custom-border::after {
    right: 10px;
  }
  .cta {
    background-position: right;
  }
  header {
    position: relative;
    height: 100%;
  }

  .works-custom-info {
    height: 100%;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
  }
  .works-custom-info h3 {
    opacity: 1;
    transition: 0.4s all ease;
  }
  .works-custom-info h4 {
    opacity: 1;
    transition: 0.4s all ease;
  }
  .works-custom-info img {
    opacity: 1;
    transition: 0.4s all ease;
  }
}
