@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css);
* {
  padding: 0;
  margin: 0;
  outline: 0;
}

:root {
  --primary: #13226B;
  --secondary: #D52D3C;
}

html {
  scroll-padding-top: 150px;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
}

header {
  --headerHeight: 100px;
  --textColor: #000;
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 10;
}
header .container {
  height: var(--headerHeight);
  display: flex;
  align-items: center;
}
header .logo img {
  height: 40px;
}
header #hamburger {
  width: 50px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
}
header .nav {
  margin-left: auto;
}
header .nav .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--textColor);
  padding-block: 0;
  line-height: var(--headerHeight);
}
header.inside {
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
}
header.active {
  background: #fff;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.nav-is-toggled .nav-drill {
  transform: translateX(0);
}
.nav-is-toggled::after {
  opacity: 1;
  visibility: visible;
}

.nav-drill {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(105%);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  transition: 0.45s;
  padding-top: 100px;
  display: none;
  z-index: 11;
}
.nav-drill i {
  margin-right: 5px;
}
.nav-drill .closeBtn {
  inset: 15px 15px auto auto;
}
.nav-drill .closeBtn:hover {
  background: #eee;
}
.nav-drill .nav-items {
  flex: 0 0 100%;
  padding: 0;
  list-style-type: none;
}
.nav-drill .nav-item:not(:last-child) {
  border-bottom: solid 1px #eee;
}
.nav-drill .nav-link {
  display: block;
  padding: 0.75em 1em;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  line-height: 2.5em;
  font-weight: 400;
  cursor: pointer;
}
.nav-drill .nav-link .fa-solid {
  margin-right: 15px;
}
.nav-drill .nav-expand-content {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  transform: translateX(100%);
  background-color: #fff;
  transition: 0.3s;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
}
.nav-drill .nav-expand-content .nav-expand-content {
  top: 0px;
}
.nav-drill .nav-expand-content .nav-item:not(:last-child) {
  border-bottom: solid 1px #eee;
}
.nav-drill .nav-expand-content .nav-item:first-child {
  background: #000;
}
.nav-drill .nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: #000 !important;
  color: #fff;
}
.nav-drill .nav-expand-content .nav-back-link::before {
  content: "\e5e0";
  font-family: "Material Symbols Outlined";
  margin-right: 10px;
}
.nav-drill .nav-expand-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav-drill .nav-expand-link::after {
  content: "\e5e1";
  font-family: "Material Symbols Outlined";
  margin-left: auto;
}
.nav-drill .nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}

#banner {
  position: relative;
  background: #fff;
}
#banner .container {
  height: 100vh;
  min-height: 700px;
  display: grid;
  place-items: center;
}
#banner .before {
  position: absolute;
  inset: auto auto 0 0;
  max-width: 100%;
  width: auto;
  height: 100%;
  object-fit: cover;
}
#banner .after {
  position: absolute;
  inset: auto 0 -50px auto;
  width: 40%;
  height: auto;
  object-fit: cover;
}
#banner .content {
  position: relative;
  text-align: right;
  z-index: 9;
}
#banner h1 {
  font-size: clamp(20px, 8vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: clamp(30px, 8vw, 70px);
}
#banner p {
  font-size: 20px;
  font-weight: 300;
  margin-top: 30px;
}
#banner .more {
  background: var(--secondary);
  padding: 15px 30px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

#slogan {
  margin-top: 50px;
}
#slogan .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#slogan .slogan-item {
  background: rgba(0, 0, 0, 0.025);
  font-size: 20px;
  font-weight: 500;
  padding: 50px;
  flex: 1 1 250px;
  aspect-ratio: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#slogan .slogan-item:nth-child(1) {
  background: #D4D4D4;
}
#slogan .slogan-item:nth-child(2) {
  background: #D1D5DB;
}
#slogan .slogan-item:nth-child(3) {
  background: #CBD5E1;
}
#slogan p {
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}
#slogan .go-item {
  background: transparent;
  width: 50px;
  height: 50px;
  color: #000;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px #000;
  margin-left: auto;
}
#slogan .go-item:hover {
  background: #000;
  color: #fff;
}

#kurumsal-slogan {
  margin-top: 50px;
}
#kurumsal-slogan .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#kurumsal-slogan .kurumsal-slogan-item {
  font-size: 20px;
  font-weight: 500;
  padding: 50px;
  flex: 1 1 250px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#kurumsal-slogan p, #kurumsal-slogan li {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  margin: 15px 0 0;
}

#about {
  margin-top: 50px;
}
#about .about-content h4 {
  max-width: 500px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}
#about .about-content p, #about .about-content li {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #555;
}
#about .about-content .btn-dark {
  background: #000;
  border-radius: 0;
  padding: 10px 25px;
}
#about .about-content .btn-dark:hover {
  background: #333;
}

#product {
  margin-top: 50px;
}
#product h4 {
  text-align: center;
  margin-bottom: 50px;
}
#product .product-wrap {
  gap: 15px;
}
#product .product-item {
  position: relative;
  min-width: calc(20% - 15px);
  max-width: 250px;
  flex: 1 1 200px;
  aspect-ratio: 1;
}
#product .product-item img {
  width: 100%;
}
#product .product-item .proname {
  position: absolute;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: grid;
  opacity: 0;
  place-items: center;
  transition: 200ms ease-in-out;
}
#product .product-item:hover .proname {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  opacity: 1;
}

#comment {
  margin-top: 50px;
}
#comment .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#comment .owl-dots .owl-dot {
  background: #eee;
  width: 30px;
  height: 3px;
  margin-inline: 5px;
}
#comment .owl-dots .owl-dot.active {
  background: #aaa;
}
#comment h4 {
  text-align: center;
  margin-bottom: 50px;
}
#comment .comment-item {
  background: rgba(0, 0, 0, 0.05);
  padding: 50px;
  font-size: 16px;
  font-weight: 400;
}
#comment .profil-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50px;
  border: 3px solid #fff;
}
#comment .name {
  font-weight: 600;
}
#comment .role {
  font-weight: 400;
}

#referans {
  margin-top: 50px;
}
#referans .container {
  padding-top: 50px;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1);
}
#referans .logos {
  margin-bottom: 50px;
}
#referans .logos .owl-item {
  display: flex;
  justify-content: center;
}
#referans .logos img {
  width: 95%;
  height: 75px;
  object-fit: contain;
}

#fotoalbum {
  margin-top: 50px;
}
#fotoalbum .flog {
  margin-bottom: 50px;
}
#fotoalbum .flog .owl-item {
  display: flex;
  justify-content: center;
}
#fotoalbum .flog img {
  width: 95%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

#pagebanner {
  position: relative;
  background-position: center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: flex-end;
}
#pagebanner .content {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  z-index: 3;
}
#pagebanner .content h5 {
  font-size: 16px;
}
#pagebanner .content h4 {
  font-weight: 600;
  font-size: clamp(20px, 8vw, 40px);
  margin-bottom: 50px;
}
#pagebanner .content p {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
#pagebanner.hizmet-page {
  height: 450px;
}

#iletisim-wrap {
  margin-top: 50px;
}
#iletisim-wrap .explain {
  font-size: 16px;
  font-weight: 300;
}
#iletisim-wrap .iletisim-item {
  background: rgb(245, 245, 245);
  min-height: 120px;
  padding: 20px;
  display: flex;
  gap: 15px;
  border-radius: 10px;
}
#iletisim-wrap .iletisim-item p {
  margin: 0;
}
#iletisim-wrap .iletisim-item i {
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #555;
  box-shadow: 0 0 0 1px #555;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  flex: 0 0 50px;
  margin-top: 5px;
}
#iletisim-wrap .iletisim-item a {
  font-weight: 400;
  color: #555;
  text-decoration: none;
  margin-top: 3px;
}
#iletisim-wrap .iletisim-item:hover i {
  background: #555;
  color: #fff;
}
#iletisim-wrap form .form-floating label {
  left: auto;
  font-weight: 400;
}
#iletisim-wrap form .form-floating textarea {
  min-height: 100px;
  height: 150px;
  max-height: 250px;
}

#productx {
  background: #fff;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
}
#productx .head-name {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
}
#productx .head-name::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  background: var(--primary);
  width: 50px;
  height: 3px;
  margin-inline: auto;
}
#productx .head-explain {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  padding-inline: 20px;
}
#productx .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px 20px;
}
#productx .container .product-item .product-cover {
  background: #fff;
  position: relative;
  transition: 0.2s ease-in-out;
  border: 1px solid rgb(235, 235, 245);
  text-decoration: none;
}
#productx .container .product-item:hover .product-cover {
  transform: translateY(-51px);
}
#productx .container .product-item .product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
#productx .container .product-item .product-kategori {
  background: linear-gradient(#333 50%, rgb(245, 245, 255) 50%);
  background-position: bottom;
  background-size: 100% 200%;
  color: #333;
  font-size: 14px;
  padding: 15px 20px;
  margin: 0;
  transition: 0.2s ease-in-out;
}
#productx .container .product-item .product-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 10px 20px;
  margin: 5px 0 0;
}
#productx .container .product-item .product-explain {
  background: #fff;
  max-height: 45px;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  padding: 0px 20px 20px;
  z-index: 2;
  line-clamp: 2;
  -webkit-line-lamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
#productx .more-product {
  background: rgb(245, 245, 255);
  background-position: 0 50px;
  background-size: 100% 200%;
  color: #333;
  text-decoration: none;
  padding: 15px 20px;
  margin: 25px auto;
  display: inline-block;
}
#productx .more-product:hover {
  background: rgb(225, 225, 235);
}

#detail-product {
  margin-top: 50px;
}
#detail-product .product-pics .owl-nav {
  position: absolute;
  top: 42.5%;
  width: 100%;
  height: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
#detail-product .product-pics .owl-next, #detail-product .product-pics .owl-prev {
  background: transparent;
}
#detail-product .product-pics .owl-next i, #detail-product .product-pics .owl-prev i {
  background-color: #fff;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  transition: 0.2s ease-in-out;
}
#detail-product .product-pics .owl-next i:hover, #detail-product .product-pics .owl-prev i:hover {
  transform: scale(1.2);
}
#detail-product .product-pics .owl-dots {
  height: 0;
  transform: translateY(-50px);
}
#detail-product .product-pics .owl-dots .owl-dot span {
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  opacity: 0.5;
  transition: 0.2s;
}
#detail-product .product-pics .owl-dots .owl-dot.active span {
  padding: 0 25px;
  opacity: 1;
  transition: 0.2s;
}
#detail-product .product-pics img {
  aspect-ratio: 1;
  object-fit: cover;
}
#detail-product .product-title {
  font-size: clamp(18px, 8vw, 30px);
  font-weight: 400;
  margin: 15px 0 25px;
}
#detail-product .product-desc {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 25px;
}
#detail-product .product-table {
  display: flex;
  flex-direction: column;
}
#detail-product .product-table .table-row {
  font-size: 16px;
  font-weight: 400;
  padding: 15px;
  box-shadow: 0 0 0 1px rgb(245, 245, 245);
  display: flex;
}
#detail-product .product-table .table-row span {
  width: 125px;
  font-weight: 600;
}
#detail-product .product-table .table-row:nth-child(odd) {
  background: rgb(250, 250, 250);
}
#detail-product .btn-whatsapp {
  background: #25D366;
  padding: 15px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
#detail-product .btn-whatsapp i {
  font-size: 20px;
}
#detail-product .btn-phone {
  background: #1877F2;
  padding: 15px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
#detail-product .btn-phone i {
  font-size: 20px;
}

.filter-product .container .product-item:hover .product-cover {
  transform: translateY(0px) !important;
}
.filter-product .container .product-item .go-product {
  position: static !important;
}
.filter-product .hashkategori {
  background: transparent;
  width: 100%;
  text-align: left;
  color: #333;
  font-weight: 400;
  padding: 15px 20px;
  border-radius: 0;
  box-shadow: 0 1px 0 0 rgb(225, 225, 235);
  border: 0;
}
.filter-product .hashkategori:hover {
  background: rgb(235, 235, 245);
}
.filter-product .hashkategori:focus {
  background: #111;
  color: #fff;
  box-shadow: 0 0 0 0;
}
.filter-product .hashkategori::before {
  content: " + ";
}

.accordion-item {
  border-radius: 0 !important;
}

.accordion-button {
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  background: #ddd;
  color: #111;
  font-weight: 500;
  box-shadow: 0 0 0 0;
  border: 0;
}

.accordion-button.collapsed {
  box-shadow: 0 0 0 0;
  border: 0;
}

#fast-slogan {
  margin-top: 50px;
}
#fast-slogan img {
  object-fit: cover;
}
#fast-slogan .content {
  background: #111;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#fast-slogan .content h4 {
  font-size: clamp(20px, 8vw, 60px);
  margin-bottom: 25px;
}
#fast-slogan .content p, #fast-slogan .content li {
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #eee;
  margin: 0;
}

#getcontact {
  background: var(--primary) url(../img/banner.png) left/cover;
  background-blend-mode: multiply;
}
#getcontact .container {
  max-width: 750px;
  height: 400px;
  color: #fff;
  text-align: center;
  margin-bottom: -50px;
  padding-block: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
#getcontact h2 {
  font-size: clamp(20px, 8vw, 40px);
}
#getcontact p {
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}
#getcontact .call {
  background: #fff;
  color: #000;
}
#getcontact .mail {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px #fff;
}
#getcontact a {
  text-decoration: none;
  padding: 15px 30px;
  display: block;
}
#getcontact a:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 0 0 1px #000;
}

footer {
  color: #fff;
  margin-top: 50px;
}
footer .container {
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1);
}
footer .logo img {
  height: 40px;
}
footer p, footer a {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-decoration: none;
}
footer .social a {
  width: 40px;
  height: 40px;
  color: #ddd;
  border-radius: 40px;
  text-align: center;
  line-height: 40px;
  box-shadow: 0 0 0 1px #ddd;
  transition: 200ms ease-in-out;
}
footer .social a:hover {
  background: #fff;
  color: #000;
}
footer .name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
footer .links a {
  font-size: 16px;
  color: #ddd;
  line-height: 40px;
  text-decoration: none;
}
footer .links a:hover {
  color: #fff;
}

@media (max-width: 1200px) {
  #banner .before {
    inset: auto auto 0 0;
    max-width: 75%;
    height: auto;
  }
}
@media (max-width: 992px) {
  .nav-drill {
    display: flex;
  }
}
@media (max-width: 768px) {
  #banner .before {
    inset: auto auto 0 0;
    max-width: 100%;
    width: auto;
    height: 50%;
  }
  #banner .after {
    inset: auto 0 0 auto;
    width: 50%;
  }
  #banner .content {
    margin-bottom: 200px;
  }
  #productx .container .product-item:hover .product-cover {
    transform: translateY(0px);
  }
  #productx .container .product-item .go-product {
    position: static;
  }
}
@media (max-width: 576px) {
  #product .product-item {
    width: calc(50% - 10px);
    flex: 1 1 auto;
  }
}
.kilimanjaro_area {
  position: relative;
  z-index: 1;
}

.foo_top_header_one {
  background-color: rgb(10, 10, 10);
  color: #fff;
}
.foo_top_header_one .kilimanjaro_part > h5 {
  color: #fff;
}

.section_padding_100_70 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.kilimanjaro_part {
  margin-bottom: 30px;
}

.kilimanjaro_part h4, .kilimanjaro_part h5 {
  margin-bottom: 30px;
}

.kilimanjaro_single_contact_info > p, .kilimanjaro_single_contact_info > h5, .kilimanjaro_blog_area > a, .foo_top_header_one .kilimanjaro_part > p {
  color: rgba(255, 255, 255, 0.5);
}

p, ul li, ol li {
  font-weight: 300;
}

ul {
  margin: 0;
  padding: 0;
}

.kilimanjaro_bottom_header_one {
  background-color: rgb(15, 15, 15);
}
.kilimanjaro_bottom_header_one p {
  color: #fff;
  margin: 0;
}
.kilimanjaro_bottom_header_one a {
  font-weight: bold;
  color: #fff;
}

.section_padding_50 {
  padding: 50px 0;
}

a, h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.m-top-15 {
  margin-top: 15px;
}

.kilimanjaro_widget > li {
  display: inline-block;
}
.kilimanjaro_widget a {
  border: 1px solid #333;
  border-radius: 6px;
  color: #888;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 4px;
  padding: 7px 12px;
}

ol li, ul li {
  list-style: outside none none;
}

.kilimanjaro_links a {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  padding-bottom: 10px;
}
.kilimanjaro_links a i {
  padding-right: 10px;
}

top-15 {
  margin-top: 15px;
}

.kilimanjaro_social_links > li {
  display: inline-block;
}
.kilimanjaro_social_links a {
  border: 1px solid #333;
  border-radius: 6px;
  color: #888;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 3px;
  padding: 7px 12px;
}

.kilimanjaro_blog_area {
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
  padding: 0 0 15px 90px;
  position: relative;
  z-index: 1;
}
.kilimanjaro_blog_area .kilimanjaro_date {
  color: #27ae60;
  font-size: 13px;
  margin-bottom: 5px;
}
.kilimanjaro_blog_area > p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  margin-bottom: 0;
}

.kilimanjaro_works > a {
  display: inline-block;
  float: left;
  position: relative;
  width: 33.33333333%;
  z-index: 1;
}

.kilimanjaro_thumb {
  left: 0;
  position: absolute;
  top: 0;
  width: 75px;
}

.footer_area {
  position: relative;
  z-index: 1;
}

.footer_bottom p > i,
.footer_bottom p > a:hover {
  color: #27ae60;
}

.social_links_area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 0 30px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.social_links_area > a:hover {
  color: #27ae60;
}

.inline-style .social_links_area > a:hover {
  background-color: transparent;
  color: #27ae60;
  border: 0px solid transparent;
}

.single_feature:hover .feature_text h4 {
  color: #27ae60;
}

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