@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  box-sizing: border-box;
}

:root {
  --primary: rgb(10, 10, 82);
  --primaryR: 10;
  --primaryG: 10;
  --primaryB: 82;
  --secondary: rgb(230, 230, 230);
  --thirdary: #99e9a5;
}

body {
  font-family: "Poppins", sans-serif;
}

header {
  width: 100%;
  z-index: 10;
}
header #top-header {
  width: 100%;
}
header #top-header .container {
  min-height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 5px;
}
header #top-header .container a {
  font-size: clamp(12px, 3vw, 14px);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
header #top-header .container a:hover {
  color: #fff;
}
header #bottom-header {
  --height: 80px;
  --text-color: #eee;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header #bottom-header .container {
  position: relative;
  height: var(--height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #bottom-header .logo img {
  width: auto;
  height: 55px;
}
header #bottom-header .logo img.active {
  display: none;
}
header #bottom-header .logo img.transparent {
  display: block;
}
header #bottom-header #hamburger {
  background: transparent;
  width: 40px;
  height: 40px;
  color: var(--text-color);
  text-align: center;
  line-height: 40px;
}
header #bottom-header #hamburger .bi {
  font-size: 30px;
}
header #bottom-header .nav {
  display: flex;
}
header #bottom-header .nav .nav-item {
  position: relative;
}
header #bottom-header .nav .nav-item .nav-link {
  color: var(--text-color);
  padding: 20px 15px;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
header #bottom-header .nav .nav-item .dropdown {
  position: absolute;
  inset: calc(100% - 0px) auto auto 0;
  background: #fff;
  max-width: 350px;
  width: 250px;
  padding: 10px;
  border-radius: 0 10px 10px;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50px);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  transition: 300ms ease-in-out;
}
header #bottom-header .nav .nav-item .dropdown .dropdown-item {
  width: 100%;
}
header #bottom-header .nav .nav-item .dropdown .dropdown-item:not(:last-child) {
  box-shadow: 0 1px 0 0 rgb(245, 245, 245);
}
header #bottom-header .nav .nav-item .dropdown .dropdown-item .dropdown-link {
  width: 100%;
  min-height: 50px;
  border-radius: 5px;
  font-weight: 300;
  font-size: 16px;
  color: #111;
  line-height: 25px;
  padding: 15px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
header #bottom-header .nav .nav-item .dropdown .dropdown-item:hover .dropdown-link {
  background: rgb(245, 245, 245);
}
header #bottom-header .nav .nav-item:nth-child(1) .nav-link, header #bottom-header .nav .nav-item:nth-child(2) .nav-link {
  border-radius: 10px 10px 0 0;
}
header #bottom-header .nav .nav-item:nth-child(1) .dropdown, header #bottom-header .nav .nav-item:nth-child(2) .dropdown {
  top: 100%;
}
header #bottom-header .nav .nav-item:hover > .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header #bottom-header .nav .nav-item:hover > .nav-link {
  background: #fff;
  color: #111;
}
header#opacity-header {
  position: absolute;
  top: 0;
}
header#opacity-header #bottom-header .logo img.active {
  display: block;
}
header#opacity-header #bottom-header .logo img.transparent {
  display: none;
}
header#opacity-header.active {
  position: fixed;
  top: 0;
  animation: came-header 300ms forwards;
}
header#opacity-header.active #top-header {
  display: none;
}
header#opacity-header.active #bottom-header {
  --text-color: #333;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
header#opacity-header.active #bottom-header .logo img.active {
  display: none;
}
header#opacity-header.active #bottom-header .logo img.transparent {
  display: block;
}
header#sticky-header {
  position: sticky;
  top: 0;
}
header#sticky-header #top-header {
  position: relative;
  background: #eee;
  z-index: 11;
}
header#sticky-header #top-header .container a {
  color: rgba(0, 0, 0, 0.75);
}
header#sticky-header #top-header .container a:hover {
  color: #000;
}
header#sticky-header #bottom-header {
  background: #fff;
  --text-color: #555;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

@keyframes came-header {
  from {
    transform: translateY(-50px);
    visibility: hidden;
    opacity: 0;
  }
  to {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
#mobile-menu {
  background: #fff;
  height: 0px;
  max-height: calc(100vh - 100px);
  visibility: hidden;
  transition: all 300ms ease-in-out;
  opacity: 0;
  overflow: auto;
  border-top: 0;
  overflow: auto;
}
#mobile-menu .accordion {
  background: #fff;
}
#mobile-menu .accordion .mobile-menu {
  width: 100%;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  color: #000;
  display: block;
}
#mobile-menu .accordion .accordion-item, #mobile-menu .accordion .accordion-header {
  background-color: #fff;
}
#mobile-menu .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
#mobile-menu .accordion-button {
  background: #fff;
  color: #000;
  font-weight: 400;
  box-shadow: 0 0 0 0 transparent !important;
  padding: 20px;
}
#mobile-menu .accordion-button:not(.collapsed) {
  background: rgba(0, 0, 0, 0.1);
}
#mobile-menu .accordion-body {
  background: rgb(240, 240, 240);
  padding: 0;
}
#mobile-menu .accordion-body .mobile-menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#mobile-menu #accordionflushDrop .accordion-button {
  background: rgb(240, 240, 240);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#mobile-menu #accordionflushDrop .accordion-button:not(.collapsed) {
  background: rgba(0, 0, 0, 0.2);
}
#mobile-menu #accordionflushDrop .accordion-body {
  background: rgb(220, 220, 220);
}
#mobile-menu.active {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

#banner {
  position: relative;
}
#banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  background: linear-gradient(rgba(0, 0, 0, 0.75), transparent);
  width: 100%;
  height: 300px;
  z-index: 9;
}
#banner .container {
  position: relative;
  min-height: 700px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  z-index: 9;
}
#banner .banner-item {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
#banner .content {
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#banner .content .banner-head {
  font-weight: 600;
  font-size: clamp(30px, 5vw, 53px);
  line-height: clamp(35px, 5vw, 58px);
  color: #fff;
}
#banner .content .banner-desc {
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  margin-block: 20px;
}
#banner .content .go-more {
  background: var(--thirdary);
  color: #000;
  padding: 12.5px 39px;
  text-decoration: none;
  border-radius: 40px;
}
#banner .content .go-more:hover {
  background: #77b680;
}
#banner .content .go-solution {
  background: transparent;
  color: #fff;
  padding: 12.5px 39px;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 40px;
}
#banner .content .go-solution:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 767px) {
  #banner .content {
    align-items: center;
  }
  #banner .content > * {
    text-align: center;
  }
}
#banner .owl-item.active .banner-head {
  animation: bounce;
}
#banner .owl-nav {
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  width: 100%;
  height: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
#banner .owl-next, #banner .owl-prev {
  background: transparent;
  color: #fff;
}
#banner .owl-next i, #banner .owl-prev i {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  transition: 0.2s ease-in-out;
  display: block;
}
#banner .owl-next i:hover, #banner .owl-prev i:hover {
  transform: scale(1.2);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
}
#banner .owl-dots {
  transform: translateY(-50px);
}
#banner .owl-dots .owl-dot span {
  background: #aaa;
  width: 25px;
  height: 3px;
}
#banner .owl-dots .owl-dot.active span {
  background: #fff;
}

#slogan {
  background: var(--primary);
  width: 100%;
  padding: 34px 15px;
}
#slogan .slogan-head {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 300;
  color: #fff;
}
@media (max-width: 767px) {
  #slogan .slogan-head {
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
  }
}

#about {
  padding: 50px 0;
}
#about .about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 25px;
  aspect-ratio: 1;
}
#about .content-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}
#about .about-info {
  background: transparent;
  font-size: 16px;
  color: var(--primary);
}
#about .about-head {
  font-weight: 700;
  font-size: clamp(20px, 5vw, 35px);
  color: #222;
}
#about .about-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin: 0;
}
#about .btn-more {
  background: #99e9a5;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}
#about .btn-more:hover {
  background: #82c58c;
}
#about .btn-contact {
  background: transparent;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px #000;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}
#about .btn-contact:hover {
  background: #000;
  color: #fff;
}

#services {
  margin-top: 50px;
}
#services .service-areas .owl-nav {
  position: absolute;
  inset: -100px 0px auto auto;
  display: block;
}
#services .service-areas .owl-next {
  background: transparent;
  border-radius: 5px 25px 25px 5px;
  overflow: hidden;
}
#services .service-areas .owl-prev {
  background: transparent;
  border-radius: 25px 5px 5px 25px;
  overflow: hidden;
}
#services .service-areas .owl-next i,
#services .service-areas .owl-prev i {
  background-color: #eee;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 40px;
  transition: 0.2s ease-in-out;
  display: block;
}
#services .service-areas .owl-next i:hover,
#services .service-areas .owl-prev i:hover {
  background-color: #ccc;
  transform: scale(1.05);
}
#services .service-areas .owl-next i:active,
#services .service-areas .owl-prev i:active {
  background-color: #aaa;
  transform: scale(1.05);
}
#services .service-info {
  color: #aaa;
}
#services .service-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  margin-block: 0 30px;
}
#services .service-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: 0;
  border-radius: 25px;
  transition: box-shadow 300ms ease-in-out;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}
#services .service-item > * {
  z-index: 2;
}
#services .service-item .service-img {
  border-radius: 10px;
}
#services .service-item .service-info {
  color: #aaa;
  font-weight: 300;
}
#services .service-item .service-name {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-inline: 10px;
}
#services .service-item .learn-more {
  color: #aaa;
  font-weight: 300;
  text-decoration: none;
  margin-left: 10px;
}
#services .service-item .learn-more:hover {
  color: #000;
}

#our {
  margin-top: 50px;
}
#our .our-item {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow 200ms;
}
#our .our-item:hover {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
#our .our-item .item-img {
  width: auto;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 25px;
  margin-inline: auto;
}
#our .our-item .item-info {
  color: #99e9a5;
}
#our .our-item .item-name {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 40px);
  color: #000;
}
#our .our-item .item-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin-top: 20px;
  text-align: center;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

#referans {
  margin-top: 50px;
}
#referans .referans-info {
  color: #aaa;
  margin-top: 100px;
}
#referans .referans-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  margin-block: 0 50px;
}
#referans .logos {
  margin-bottom: 50px;
}
#referans .logos .owl-item {
  display: flex;
  justify-content: center;
}
#referans .logos img {
  background: #fff;
  width: 95%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
  margin: 15px 0;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.belge-item {
  text-decoration: none;
}
.belge-item .belge-img {
  width: 100%;
  height: auto;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
}
.belge-item .belge-img img {
  width: 100%;
}
.belge-item .belge-name {
  font-size: 18px;
  font-weight: 300;
  margin-top: 25px;
  color: #000;
  word-break: break-all;
  text-align: center;
}

#career {
  padding-block: 100px;
}
@media (max-width: 991px) {
  #career {
    padding-block: 50px;
  }
}
#career .btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0;
  border: 0;
}
#career .btn-primary:hover {
  background: rgba(var(--primaryR), var(--primaryG), var(--primaryB), 0.9);
}
#career iframe {
  width: 100%;
}
#career .career-head {
  font-size: clamp(25px, 5vw, 60px);
  line-height: clamp(35px, 5vw, 70px);
  font-weight: 900;
  color: #000;
}
#career .career-text {
  font-size: 18px;
  font-weight: 300;
  color: #333;
  margin-top: 20px;
}
#career .support {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  text-decoration: none;
  margin-top: 10px;
  display: block;
}

#blog {
  margin-block: 100px;
}
#blog .blog-areas .owl-nav {
  position: absolute;
  inset: -100px 0px auto auto;
  display: block;
}
#blog .blog-areas .owl-next {
  background: transparent;
  border-radius: 5px 25px 25px 5px;
  overflow: hidden;
}
#blog .blog-areas .owl-prev {
  background: transparent;
  border-radius: 25px 5px 5px 25px;
  overflow: hidden;
}
#blog .blog-areas .owl-next i,
#blog .blog-areas .owl-prev i {
  background-color: #eee;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 40px;
  transition: 0.2s ease-in-out;
  display: block;
}
#blog .blog-areas .owl-next i:hover,
#blog .blog-areas .owl-prev i:hover {
  background-color: #ccc;
  transform: scale(1.05);
}
#blog .blog-areas .owl-next i:active,
#blog .blog-areas .owl-prev i:active {
  background-color: #aaa;
  transform: scale(1.05);
}
#blog .blog-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  margin-bottom: 40px;
}
#blog .blog-info {
  color: #aaa;
  margin-bottom: 50px;
}
#blog .blog-item {
  padding: 0 10px 5px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}
#blog .blog-item .blog-img {
  border-radius: 10px;
  aspect-ratio: 9/6;
  aspect-ratio: 1;
  object-fit: cover;
}
@media (max-width: 767px) {
  #blog .blog-item .blog-img {
    aspect-ratio: 1;
  }
}
#blog .blog-item .blog-info {
  color: #aaa;
  margin-top: 20px;
}
#blog .blog-item .blog-name {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-block: 15px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
#blog .blog-item .blog-explain {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  margin-block: 0 30px;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
#blog .blog-item .go-blog {
  color: #000;
  text-align: right;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  margin-left: auto;
  display: block;
}
#blog .blog-item .go-blog:hover {
  background: var(--primary);
  color: #fff;
}
#blog .blog-item .go-blog .bi {
  margin-left: 10px;
}
#blog .logos {
  margin-bottom: 50px;
}
#blog .logos .owl-item {
  display: flex;
  justify-content: center;
}
#blog .logos img {
  width: 95%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1;
}

#iletisim .iletisim-banner {
  background: #eee;
  height: 400px;
}
@media (max-width: 767px) {
  #iletisim .iletisim-banner {
    height: 300px;
  }
}
#iletisim .iletisim-banner iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(100%) invert(0%);
}
@media (max-width: 767px) {
  #iletisim .iletisim-banner iframe {
    height: 300px;
  }
}
#iletisim .content-iletisim {
  margin-block: 50px;
}
@media (max-width: 767px) {
  #iletisim .content-iletisim {
    margin-block: 0px;
  }
}
#iletisim .content-iletisim .contact-small {
  font-size: 15px;
  color: #aaa;
}
#iletisim .content-iletisim .contact-big {
  font-size: 16px;
  word-break: break-all;
  color: #000;
}
#iletisim .content-iletisim .content-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
#iletisim .content-iletisim .about-info {
  background: transparent;
  font-size: 16px;
  color: var(--primary);
}
#iletisim .content-iletisim .about-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  color: #222;
}
#iletisim .content-iletisim .about-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin: 0;
}
#iletisim .content-iletisim .btn-more {
  background: #99e9a5;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}
#iletisim .content-iletisim .btn-more:hover {
  background: #82c58c;
}
#iletisim .content-iletisim .btn-contact {
  background: transparent;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px #000;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}
#iletisim .content-iletisim .btn-contact:hover {
  background: #000;
  color: #fff;
}

.page-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 40px);
  text-align: center;
  margin-top: 50px;
}

#hakkimizda .hakkimizda-banner {
  background: #eee center/cover;
  background-image: url("https://images.unsplash.com/photo-1689890075754-f36045eaadc7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  #hakkimizda .hakkimizda-banner {
    height: 400px;
    border-radius: 0;
    margin-bottom: 50px;
  }
}
#hakkimizda .hakkimizda-banner .banner-name {
  font-weight: 900;
  font-size: clamp(20px, 7vw, 50px);
  color: #fff;
  text-align: center;
  line-height: clamp(30px, 10vw, 60px);
}
#hakkimizda .content-hakkimizda {
  margin-block: 100px;
}
@media (max-width: 767px) {
  #hakkimizda .content-hakkimizda {
    margin-block: 25px;
  }
}
#hakkimizda .content-hakkimizda .content-wall {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
}
#hakkimizda .content-hakkimizda .contact-small {
  font-size: 15px;
  color: #aaa;
}
#hakkimizda .content-hakkimizda .contact-big {
  font-size: 17px;
  color: #000;
}
#hakkimizda .content-hakkimizda .content-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}
#hakkimizda .content-hakkimizda .about-info {
  background: transparent;
  font-size: 16px;
  color: var(--primary);
}
#hakkimizda .content-hakkimizda .about-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  color: #222;
}
#hakkimizda .content-hakkimizda .about-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin: 0;
}
#hakkimizda .content-hakkimizda .btn-more {
  background: #99e9a5;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  transition: all 300ms ease-in-out;
}
#hakkimizda .content-hakkimizda .btn-more:hover {
  background: #82c58c;
}
#hakkimizda .content-hakkimizda .btn-contact {
  background: transparent;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px #000;
  transition: all 300ms ease-in-out;
}
#hakkimizda .content-hakkimizda .btn-contact:hover {
  background: #000;
  color: #fff;
}

#hizmetdetay .hizmetdetay-banner {
  background: #eee url("https://images.unsplash.com/photo-1689890075754-f36045eaadc7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80") center/cover;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  #hizmetdetay .hizmetdetay-banner {
    height: 400px;
    border-radius: 0;
  }
}
#hizmetdetay .hizmetdetay-banner .banner-name {
  font-weight: 900;
  font-size: clamp(20px, 10vw, 50px);
  color: #fff;
  text-align: center;
  line-height: clamp(30px, 10vw, 60px);
}
#hizmetdetay .docside-menu {
  border-radius: 15px;
}
#hizmetdetay .docside-menu .nav-item {
  width: 100%;
}
#hizmetdetay .docside-menu .nav-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#hizmetdetay .docside-menu .nav-item:hover .nav-link {
  background: rgba(0, 0, 0, 0.1);
}
#hizmetdetay .docside-menu .nav-link {
  width: 100%;
  color: #000;
  padding: 15px;
  border-radius: 5px;
}
#hizmetdetay .docside-menu .nav-link.active {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px #ddd
}
#hizmetdetay .docside-menu .nav-link .bi {
  margin-right: 10px;
}
#hizmetdetay .docside-form {
  background: rgb(245, 245, 245);
  border-radius: 15px;
  padding: 20px 15px;
}
#hizmetdetay .go-phone {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  color: #000;
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 25px;
  text-decoration: none;
}
#hizmetdetay .go-phone i {
  font-size: 25px;
}
#hizmetdetay .go-phone .info-phone {
  color: #333;
  font-size: 14px;
}
#hizmetdetay .go-phone .a {
  color: #000;
}
#hizmetdetay .go-phone:hover {
  background: #eee;
}
#hizmetdetay .content-hizmet {
  margin-block: 100px 0;
}
@media (max-width: 767px) {
  #hizmetdetay .content-hizmet {
    margin-block: 25px;
  }
}
#hizmetdetay .content-hizmet .content-wall {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 25px;
}
#hizmetdetay .content-hizmet .contact-small {
  font-size: 15px;
  color: #aaa;
}
#hizmetdetay .content-hizmet .contact-big {
  font-size: 17px;
  color: #000;
}
#hizmetdetay .content-hizmet .content-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}
#hizmetdetay .content-hizmet .about-info {
  background: transparent;
  font-size: 16px;
  color: var(--primary);
}
#hizmetdetay .content-hizmet .service-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  color: #222;
  margin-bottom: 24px;
}
#hizmetdetay .content-hizmet hr {
  margin-block: 3rem;
}
#hizmetdetay .content-hizmet .service-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin: 0;
}
#hizmetdetay .content-hizmet .service-desc strong {
  color: #000;
}
#hizmetdetay .content-hizmet .btn-more {
  background: #99e9a5;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  transition: all 300ms ease-in-out;
}
#hizmetdetay .content-hizmet .btn-more:hover {
  background: #82c58c;
}
#hizmetdetay .content-hizmet .btn-contact {
  background: transparent;
  color: #000;
  padding: 12.5px 35px;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px #000;
  transition: all 300ms ease-in-out;
}
#hizmetdetay .content-hizmet .btn-contact:hover {
  background: #000;
  color: #fff;
}

.footer-hr {
  background: #eee;
  height: 1px;
  margin-block: 50px;
}
@media (max-width: 767px) {
  .footer-hr {
    display: none;
  }
}

.our-skill {
  padding-block: 50px;
}
@media (max-width: 767px) {
  .our-skill {
    padding-block: 50px;
  }
}
.our-skill .skill-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.our-skill .skill-img {
  width: 100px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}
.our-skill .skill-name {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}
.our-skill .skill-desc {
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
}

#sssAccordion {
  margin-top: 100px;
}
@media (max-width: 767px) {
  #sssAccordion {
    margin-top: 25px;
  }
}
#sssAccordion .accordion-item {
  border: 0;
  margin-bottom: 25px;
}
#sssAccordion .accordion-item .accordion-button {
  height: 70px;
  border-radius: 15px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}
#sssAccordion .accordion-item .accordion-button:not(.collapsed) {
  background: rgba(var(--primaryR), var(--primaryG), var(--primaryB), 0.1);
  box-shadow: 0 0 0 0 transparent;
}

.hakkimizda-slogan {
  width: 100%;
  height: 350px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .hakkimizda-slogan {
    margin-bottom: 25px;
  }
}
.hakkimizda-slogan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.anasayfa-slogan {
  width: 100%;
  margin-block: 75px 25px;
  display: block;
}
@media (max-width: 767px) {
  .anasayfa-slogan {
    margin-bottom: 25px;
  }
}
.anasayfa-slogan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.page-slogan-text {
  background: #eee url("https://arino-html.vercel.app/assets/img/case_study_img_1.jpeg") center/cover;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 8vw, 100px);
  line-height: clamp(20px, 8vw, 120px);
  margin-top: 40px;
}

#blogpage .blogpage-banner {
  background: #eee url("https://images.unsplash.com/photo-1689890075754-f36045eaadc7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80") center/cover;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #blogpage .blogpage-banner {
    height: 400px;
    border-radius: 0;
  }
}
#blogpage .blogpage-banner .banner-name {
  font-weight: 900;
  font-size: clamp(20px, 10vw, 50px);
  color: #fff;
  text-align: center;
  line-height: clamp(30px, 10vw, 60px);
}

#blog-wrapper .blog-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 50px;
}
#blog-wrapper .blog-item .blog-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
#blog-wrapper .blog-item .blog-image-wrap .share-buttons {
  position: absolute;
  inset: 25px 25px auto auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 9;
}
#blog-wrapper .blog-item .blog-image-wrap .share-buttons .share-item {
  background: #fff;
  background-size: 80px 80px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  transition: 100ms ease-in-out;
}
.blog-item a {
  text-decoration: none !important;
}
#blog-wrapper .blog-item .blog-image-wrap .share-buttons .share-item:hover {
  background: #aaa;
}
#blog-wrapper .blog-item .blog-image-wrap .blog-image {
  width: 100%;
  height: 100%;
  max-height: 500px;
  overflow: hidden;
  aspect-ratio: 16/11;
  transition: transform 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
#blog-wrapper .blog-item .blog-image-wrap:hover .blog-image {
  transform: scale(1.1);
}
#blog-wrapper .blog-item .blog-info {
  font-size: clamp(16px, 5vw, 18px);
  font-weight: 400;
  color: #aaa;
  margin-top: 20px;
}
#blog-wrapper .blog-item .blog-name {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
#blog-wrapper .blog-item .blog-name:hover {
  color: var(--primary);
}
#blog-wrapper .blog-item .blog-desc {
  font-weight: 400;
  color: #777;
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 14px;
  height: 40px;
  line-height: normal;
  overflow: hidden;
}
#blog-wrapper .blog-item .go-blog {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  margin-top: 10px;
  line-height: 30px;
  text-decoration: none;
}
#blog-wrapper .blog-item .go-blog:hover {
  color: var(--primary);
  text-decoration: underline;
}
#blog-wrapper .pagination {
  gap: 10px;
}
#blog-wrapper .pagination li.page-item .page-link {
  background: var(--primary);
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 10px !important;
  border: 0px;
  padding: 0;
}
#blog-wrapper .pagination li.page-item .page-link:hover {
  opacity: 0.75;
}
#blog-wrapper .blog-aside-head {
  font-weight: 500;
  font-size: 22px;
  color: #000;
}
#blog-wrapper .blog-search-wrap {
  background: rgb(240, 240, 240);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#blog-wrapper .blog-search-wrap .blog-search-input {
  background: transparent;
  width: auto;
  height: 50px;
  flex: 1 1;
  padding: 0 15px;
  color: #000;
}
#blog-wrapper .blog-search-wrap .vr {
  width: 1px;
  height: 30px;
  opacity: 0.2;
  margin-block: auto;
}
#blog-wrapper .blog-search-wrap .blog-search-btn {
  background: transparent;
  width: 50px;
  height: 50px;
  color: #666;
  flex: 0 0 50px;
}
#blog-wrapper .blog-kategoriler-wrap .category {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#blog-wrapper .blog-kategoriler-wrap .category .nav-item {
  --textColor: #777;
  color: var(--textColor);
  display: flex;
  align-items: center;
}
#blog-wrapper .blog-kategoriler-wrap .category .nav-item::before {
  content: ">>";
}
#blog-wrapper .blog-kategoriler-wrap .category .nav-item .nav-link {
  font-size: 16px;
  color: var(--textColor);
}
#blog-wrapper .blog-kategoriler-wrap .category .nav-item:hover {
  --textColor: #000;
}
#blog-wrapper .blog-etiketler-wrap .tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
#blog-wrapper .blog-etiketler-wrap .tags .nav-item {
  background: rgb(240, 240, 240);
  --textColor: #777;
  color: var(--textColor);
  display: flex;
  align-items: center;
  border-radius: 10px;
}
#blog-wrapper .blog-etiketler-wrap .tags .nav-item .nav-link {
  font-size: 16px;
  color: var(--textColor);
}
#blog-wrapper .blog-etiketler-wrap .tags .nav-item:hover {
  --textColor: #fff;
  background: rgb(40, 40, 40);
}
#blog-wrapper .blog-recent-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#blog-wrapper .blog-recent-wrap .recent-item {
  padding: 10px 15px 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  gap: 10px;
}
#blog-wrapper .blog-recent-wrap .recent-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
#blog-wrapper .blog-recent-wrap .recent-item .recent-img {
  width: 75px;
  height: 55px;
  border-radius: 5px;
}
#blog-wrapper .blog-recent-wrap .recent-item .recent-name {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  word-break: break-all;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
#blog-wrapper .blog-recent-wrap .recent-item .recent-info {
  font-weight: 400;
  font-size: 15px;
  color: #777;
}
#blog-wrapper .blog-recent-wrap .recent-item .recent-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
#blog-wrapper .detail-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 20px;
}
#blog-wrapper .detail-tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#blog-wrapper .detail-tags .nav-item {
  background: rgb(240, 240, 240);
  --textColor: #777;
  color: var(--textColor);
  display: flex;
  align-items: center;
  border-radius: 10px;
}
#blog-wrapper .detail-tags .nav-item .nav-link {
  font-size: 16px;
  color: var(--textColor);
}
#blog-wrapper .detail-tags .nav-item:hover {
  --textColor: #fff;
  background: rgb(40, 40, 40);
}

.our-comment .comment-head {
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin-bottom: 20px;
}
.our-comment .comment-slider .owl-nav {
  position: absolute;
  inset: -70px 0px auto auto;
  display: block;
}
.our-comment .comment-slider .owl-next {
  background: transparent;
  border-radius: 5px 25px 25px 5px;
  overflow: hidden;
}
.our-comment .comment-slider .owl-prev {
  background: transparent;
  border-radius: 25px 5px 5px 25px;
  overflow: hidden;
}
.our-comment .comment-slider .owl-next i,
.our-comment .comment-slider .owl-prev i {
  background-color: #eee;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 40px;
  transition: 0.2s ease-in-out;
  display: block;
}
.our-comment .comment-slider .owl-next i:hover,
.our-comment .comment-slider .owl-prev i:hover {
  background-color: #ccc;
  transform: scale(1.05);
}
.our-comment .comment-slider .owl-next i:active,
.our-comment .comment-slider .owl-prev i:active {
  background-color: #aaa;
  transform: scale(1.05);
}
.our-comment .comment-slider .comment-item {
  height: 400px;
  padding: 40px;
  border-radius: 20px;
  margin: 20px 1px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.our-comment .comment-slider .comment-item .comment-area {
  max-height: 300px;
  line-clamp: 7;
  -webkit-line-clamp: 7;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: 200;
}
.our-comment .comment-slider .comment-item .comment-info {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  text-align: center;
  margin-top: 25px;
}
.our-comment .comment-slider .comment-item .comment-role {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  text-align: center;
}

.go-whatsapp {
  position: fixed;
  inset: auto 25px 25px auto;
  background: #25D366;
  width: 50px;
  height: 50px;
  font-size: 24px;
  z-index: 2;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
}

footer {
  background: var(--primary) url(https://e1.pxfuel.com/desktop-wallpaper/901/1007/desktop-wallpaper-blueprint-backgrounds-graphic-new-blueprint-architecture-blueprints.jpg);
  background-blend-mode: multiply;
  padding-block: 30px;
}
footer .footer-col {
  margin-block: 20px;
}
footer .footer-big-head {
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  color: #eee;
}
footer .footer-head {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
footer .text {
  font-size: 300;
  font-size: 15px;
  color: #aaa;
  line-height: 30px;
  margin-block: 10px 20px;
}
footer .footer-link {
  font-weight: 400;
  font-size: 15px;
  color: #aaa;
  text-decoration: none;
  margin-block: 12.5px;
  display: block;
}
footer .footer-link:hover {
  color: white;
}
footer .social-area {
  margin-block: 25px;
}
footer .social-area .social-link {
  width: 35px;
  height: 35px;
  color: #aaa;
  text-align: center;
  line-height: 35px;
  border-radius: 35px;
  box-shadow: 0 0 2px 0 #aaa;
  transition: all 300ms ease-in-out;
}
footer .social-area .social-link:hover {
  background: #eee;
  color: #000;
  box-shadow: 0 0 0 0;
}
footer .search-wrap {
  background: rgb(250, 250, 250);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  margin-top: 25px;
}
footer .search-wrap input {
  background: transparent;
  width: auto;
  height: 50px;
  color: #000;
  border: 0;
  flex: 1 1;
  padding: 0 20px;
}
footer .search-wrap input::placeholder {
  color: #333;
}
footer .search-wrap button {
  background: var(--thirdary);
  height: 50px;
  font-size: 20px;
  font-weight: 900;
  color: #111;
  padding: 0 20px;
  flex: 0 0;
}
footer .accordion-item {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
footer .accordion-button {
  background: transparent;
  color: #fff;
  height: 60px;
}
footer .accordion-button::after {
  content: "+";
  background-image: none !important;
  font-size: 25px;
  font-weight: 400;
}
footer .accordion-button:focus {
  box-shadow: 0 0 0 0;
}
footer .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 0 0 0;
}
footer .accordion-button:not(.collapsed)::after {
  content: "-";
  transform: none;
}
footer #copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer #copyright .text {
  line-height: 50px;
}
footer#copyright {
  background: var(--primary) url(https://e1.pxfuel.com/desktop-wallpaper/901/1007/desktop-wallpaper-blueprint-backgrounds-graphic-new-blueprint-architecture-blueprints.jpg);
  background-blend-mode: multiply;
  padding-block: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer#copyright a:hover {
  color: #000;
  text-decoration: underline;
}
footer.desktop-footer {
  border-top: 1px solid #eee;
  padding-block: 30px 0;
}

/*# sourceMappingURL=main.css.map */
