:root {
  --primary-color: #007BFF;
}

/*-------------------------- Global Styles ---------------------------*/
body {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--primary-color);
  color: #ffffff;
}

a {
  color: var(--primary-color);
  transition: color 0.3s linear;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

textarea {
  resize: none;
}

section {
  position: relative;
  padding: 110px 0;
}

img {
  max-width: 100%;
}

.wrapper-boxed {
  padding: 0 50px 50px 50px;
}

/* Import Droid Serif Font*/
@font-face {
  font-family: 'Droidserif italic';
  src: url("../fonts/DroidSerif-Italic.ttf");
}

/*-------------------------
    RESET Default Styles
--------------------------*/
*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

*,
:active,
:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
}

button,
button:focus,
.btn.focus,
.btn:focus,
.form-control,
.form-control:focus {
  outline: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea {
  resize: none;
}

select {
  background-color: transparent;
}

.left-bottom-btn {
  position: fixed;
  z-index: 1903;
  left: 30px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  box-shadow: 5px 5px 15px #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-whatsapp-btn {
  bottom: 140px;
  background-color: #17b753;
}

.fixed-f-messenger-btn {
  background-color: #168AFF;
}

.left-bottom-btn>a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  z-index: 1904;
}

.fixed-whatsapp-btn:hover {
  background-color: #fff;
}

.fixed-whatsapp-btn:hover svg {
  fill: #17b753 !important;
}

.fixed-f-messenger-btn:hover {
  background-color: #fff;
}

.fixed-f-messenger-btn:hover svg {
  fill: #168AFF !important;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .wrapper-boxed {
    padding: 0 10px 10px 10px;
  }
}

/*----------------------------
      Helper Classes
----------------------------*/
.col-padding-0>.row {
  margin: 0;
}

.col-padding-0,
.col-padding-0>.row>[class*="col-"] {
  padding: 0;
}

.inner-padding {
  padding: 138px 70px;
}

.lh-1 {
  line-height: 1 !important;
}

@media (min-width: 992px) {
  .col-lg-5th {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Margin  */
.m-0 {
  margin: 0 !important;
}

/*  margin Top */
.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

.mb-50 {
  margin-bottom: 50px !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;
}

/* Margin Right */
.mr-0 {
  margin-right: 0 !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

/* Margin Left */
.ml-0 {
  margin-left: 0 !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

/*  padding  */
.p-0 {
  padding: 0 !important;
}

/* padding Top */
.pt-0 {
  padding-top: 0 !important;
}
.pt-10{
  padding-top: 10 !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

/*  Padding Bottom */
.pb-0 {
  padding-bottom: 0 !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

/* padding Right */
.pr-0 {
  padding-right: 0 !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

/* padding Left */
.pl-0 {
  padding-left: 0 !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.vh-100 {
  height: 100vh !important;
}

.h-70 {
  height: 70px;
}

/*.h-100 {
  height: 100px !important;
}*/

.list-inline>li {
  display: inline-block;
}

.align-v {
  display: flex;
  align-items: center;
}

.align-v-h {
  display: flex;
  justify-content: center;
  align-items: center;
}

.font-secondary {
  font-family: "Droidserif italic";
}

/* Mobile Phones */
@media only screen and (max-width: 575px) {
  .justify-content-xs-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .text-center-xs {
    text-align: center !important;
  }

  .text-left-xs {
    text-align: left !important;
  }

  .text-right-xs {
    text-align: right !important;
  }

  .pull-none-xs {
    float: none !important;
  }

  .mb-0-xs {
    margin-bottom: 0 !important;
  }

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

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

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

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

/* Tablets */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .text-center-sm {
    text-align: center !important;
  }

  .text-left-sm {
    text-align: left !important;
  }

  .text-right-sm {
    text-align: right !important;
  }

  .mb-0-sm {
    margin-bottom: 0 !important;
  }

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

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

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

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

  .p-0-sm {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .pb-15-sm {
    padding-bottom: 15px !important;
  }

  .pb-20-sm {
    padding-bottom: 20px !important;
  }

  .pb-30-sm {
    padding-bottom: 30px !important;
  }

  .pb-50-sm {
    padding-bottom: 50px !important;
  }

  .pb-60-sm {
    padding-bottom: 60px !important;
  }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .text-center-xs-sm {
    text-align: center !important;
  }

  .inner-padding {
    padding: 50px 30px !important;
  }
}

/* Medium Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-padding {
    padding: 100px 50px !important;
  }
}

/*-------------------------
   Background & Colors
--------------------------*/
/* Colors */
.color-white {
  color: #ffffff !important;
}

.color-gray {
  color: #f9f9f9 !important;
}

.color-dark {
  color: #282828 !important;
}

.color-theme {
  color: var(--primary-color) !important;
}

.color-heading {
  color: #222222 !important;
}

.color-body {
  color: #545454 !important;
}

/* backgrounds */
.bg-white {
  background-color: #ffffff !important;
}

.bg-gray {
  background-color: #f9f9f9 !important;
}

.bg-dark {
  background-color: #282828 !important;
}

.bg-heading {
  background-color: #1e2228 !important;
}

.bg-theme {
  background-color: var(--primary-color) !important;
}

.bg-img {
  position: relative;
  z-index: 1;
}

.bg-overlay:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(27, 26, 26, 0.05);
}

.bg-overlay-2:before {
  background-color: rgba(27, 26, 26, 0.50);
}

.bg-overlay-3:before {
  background-color: rgba(27, 26, 26, 0.75);
}

.bg-overlay-4:before {
  background-color: rgba(27, 26, 26, 0.55);
}

.bg-overlay-5:before {
  background-color: rgba(27, 26, 26, 0.15);
}

.bg-parallax {
  background-attachment: fixed;
}

/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color) ;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 23px;
  line-height: 1.1;
  /* text-transform: capitalize; */
}

p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 15px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

.heading__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 31px;
}

.heading__title {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 30px;
}

.heading__desc {
  font-size: 17px;
  line-height: 27px;
  color: #a5a5a5;
  margin-bottom: 0;
}

.divider__line+.heading__desc {
  margin-top: 32px;
}

.heading-2 .heading__desc {
  margin-bottom: 44px;
}

.heading-3 .heading__title {
  margin-bottom: 13px;
}

.heading-3 .heading__desc {
  margin-bottom: 24px;
}

.heading-4 .heading__title {
  margin-bottom: 21px;
}

.heading-4 .divider__line+.heading__desc {
  margin-top: 23px;
}

.heading-8 .heading__desc {
  padding-top: 35px;
}

.heading-9 .heading__title {
  margin-bottom: 22px;
}

.heading-9 .heading__desc {
  margin-bottom: 43px;
}

.heading-10 .heading__title {
  font-size: 48px;
  line-height: 52px;
}

.heading__shape {
  display: inline-block;
  width: 70px;
  height: 48px;
  background-image: url(../images/remove/shapes/plantshape.png);
  margin-bottom: 27px;
}

.heading__shape-white {
  background-image: url(../images/remove/shapes/plantshape-white.png);
}

/*-------------------------
    page title 
-------------------------*/
.header-transparent+.page-title {
  margin-top: -100px;
}

.pagetitle__subheading {
  font-family: "Droidserif italic";
  font-size: 17px;
  line-height: 1;
  color: #f9f9f9;
  display: block;
  margin-bottom: 24px;
}

.pagetitle__heading {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 25px;
}

.pagetitle__desc {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 0;
}

.page-title {
  height: 300px; /* İstediğiniz yüksekliği piksel cinsinden ayarlayın */
  min-height: 250px; 
}

.page-title .breadcrumb {
  margin-top: 27px;
  margin-bottom: 0;
}

.page-title .breadcrumb-item a,
.page-title .breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff;
}

.page-title .breadcrumb-item a:hover {
  color: var(--primary-color);
}

.page-title .breadcrumb-item.active {
  color: #fff;
}

.page-title-layout2 {
  padding: 271px 0 168px;
}

.page-title-layout2 .breadcrumb {
  margin-top: 26px;
}

.page-title-layout4 {
  padding: 276px 0 29px;
}

.page-title-layout4 .pagetitle__heading {
  margin-bottom: 7px;
}

.page-title-layout4 .breadcrumb {
  margin-top: 140px;
}

.page-title-layout5 {
  padding: 249px 0 156px;
}

.page-title-layout5 .breadcrumb {
  margin-top: 24px;
}

.page-title-layout6 {
  padding: 246px 0 29px;
}

.page-title-layout6 .pagetitle__heading {
  margin-bottom: 20px;
}

.page-title-layout6 .breadcrumb {
  margin-top: 107px;
}

.page-title-layout7 {
  padding: 276px 0 184px;
}

.page-title-layout7 .pagetitle__heading {
  margin-bottom: 7px;
}

.page-title-8 {
  padding: 275px 0 169px;
}

.page-title-layout9 {
  padding: 312px 0 29px;
}

.page-title-layout9 .breadcrumb {
  margin-top: 165px;
}

.page-title-layout10 {
  padding: 312px 0 209px;
}

.page-title-layout12 {
  padding: 220px 0 127px;
}

.page-title-layout13 {
  padding: 425px 0 96px;
}

.page-title-layout14 {
  padding: 230px 0 137px;
}

.page-title-layout15 {
  padding: 259px 0 29px;
}

.page-title-layout15 .breadcrumb {
  margin-top: 116px;
}

.page-title-layout16 {
  padding: 234px 0 126px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .page-title {
    padding: 100px 0 50px;
  }

  .pagetitle__desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
  }

  .pagetitle__heading {
    font-size: 32px;
  }

  .page-title .breadcrumb {
    margin-top: 20px;
  }
}

/*-----------------------
    Buttons
----------------------*/
.btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  width: 170px;
  height: 50px;
  line-height: 48px;
  border-radius: 0;
  text-align: center;
  padding: 0;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn:focus,
.btn.active,
.btn:active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.btn__block {
  width: 100%;
}

.btn__primary {
  /*background-color: var(--primary-color);*/
  background-color: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.btn__primary:active,
.btn__primary:focus,
.btn__primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn__primary.btn__hover2:active,
.btn__primary.btn__hover2:focus,
.btn__primary.btn__hover2:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: #ffffff;
}

.btn__primary.btn__hover3:active,
.btn__primary.btn__hover3:focus,
.btn__primary.btn__hover3:hover {
  background-color: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
}

.btn__secondary {
  background-color: #282828;
  color: #ffffff;
  border: 2px solid #282828;
}

.btn__secondary:active,
.btn__secondary:focus,
.btn__secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.btn__secondary.btn__hover2:active,
.btn__secondary.btn__hover2:focus,
.btn__secondary.btn__hover2:hover {
  background-color: #ffffff;
  color: #282828;
  border-color: #ffffff;
}

.btn__white {
  background-color: #ffffff;
  color: #222222;
  border: 2px solid #ffffff;
}

.btn__white:active,
.btn__white:focus,
.btn__white:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.btn__white.btn__hover2:active,
.btn__white.btn__hover2:focus,
.btn__white.btn__hover2:hover {
  background-color: #222222;
  color: #ffffff;
  border-color: #222222;
}

.btn__rounded {
  border-radius: 50px;
}

.btn__link {
  background-color: transparent;
  border-color: transparent;
}

.btn__link.btn__primary {
  color: var(--primary-color);
}

.btn__link.btn__primary:active,
.btn__link.btn__primary:focus,
.btn__link.btn__primary:hover {
  color: #282828;
  background-color: transparent;
  border-color: transparent;
}

.btn__link.btn__secondary {
  color: #282828;
}

.btn__link.btn__secondary:active,
.btn__link.btn__secondary:focus,
.btn__link.btn__secondary:hover {
  color: var(--primary-color);
  background-color: transparent;
  border-color: transparent;
}

.btn__bordered {
  background-color: transparent;
}

.btn__bordered.btn__primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn__bordered.btn__primary:active,
.btn__bordered.btn__primary:focus,
.btn__bordered.btn__primary:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn__bordered.btn__secondary {
  color: #282828;
  border-color: #282828;
}

.btn__bordered.btn__secondary:active,
.btn__bordered.btn__secondary:focus,
.btn__bordered.btn__secondary:hover {
  color: #ffffff;
  background-color: #282828;
  border-color: #282828;
}

.btn__bordered.btn__white {
  color: #ffffff;
  border-color: #ffffff;
}

.btn__bordered.btn__white:active,
.btn__bordered.btn__white:focus,
.btn__bordered.btn__white:hover {
  color: var(--primary-color);
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn__white.btn__secondary {
  color: #282828;
  border-color: #ffffff;
  background-color: #ffffff;
}

.btn__white.btn__secondary:active,
.btn__white.btn__secondary:focus,
.btn__white.btn__secondary:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn__video.popup-video {
  padding-left: 50px;
  color: #ffffff;
}

.btn__video.popup-video .video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.btn__video.popup-video .video__player img {
  width: auto;
  display: inline-block;
  text-align: center;
}

.btn__video.popup-video:hover {
  color: #282828;
}

.btn i {
  margin-right: 9px;
}

/*----------------------
        Forms
----------------------*/
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  line-height: 50px;
  border: none;
  border-bottom: 2px solid #e6e6e6;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--primary-color);
}

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

.form-control::-webkit-input-placeholder {
  color: #545454;
}

.form-control:-moz-placeholder {
  color: #545454;
}

.form-control::-moz-placeholder {
  color: #545454;
}

.form-control:-ms-input-placeholder {
  color: #545454;
}

label.error {
  color: red;
  margin-bottom: 0;
  margin-top: 5px;
}

/*--------------------
    Tabs
--------------------*/
.nav-tabs {
  border-bottom: 2px solid #e6e6e6;
}

.nav-tabs .nav__link {
  display: block;
  padding: 10px;
  margin-right: 20px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #282828;
  margin-bottom: -2px;
}

.nav-tabs .nav__link:last-of-type {
  margin-right: 0;
}

.nav-tabs .nav__link.active {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.tab-content {
  padding-top: 36px;
}

.tabs-2 .nav-tabs .nav__link {
  margin-bottom: 0;
}

.tabs-2 .nav-tabs .nav__link.active {
  border: none;
  background-color: var(--primary-color);
  color: #ffffff;
}

.nav-split {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 120;
}

.nav-split li a {
  width: 9px;
  height: 9px;
  background-color: #222222;
  border-radius: 50%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.nav-split li:last-child a {
  margin-bottom: 0;
}

.nav-split li.active a {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #222222;
  margin-left: -1px;
}

.nav-split li.active a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #222222;
  transform: translate(-50%, -50%);
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .nav-split {
    right: 10px;
  }
}

/*------------------- 
    Icons
------------------*/
.social__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social__icons a {
  font-size: 14px;
  margin-right: 10px;
  color: #222222;
}

.social__icons a:hover {
  color: var(--primary-color);
}

.social__icons a:last-of-type {
  margin-right: 0;
}

/*-------------------------
    Breadcrumb
--------------------------*/
.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item {
  line-height: 1;
}

.breadcrumb-item > a {
  color: #fff;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.footer__copyright {
  color: #fff;
}

/*----------------------
    Pagination
-----------------------*/
.pagination li {
  margin-right: 10px;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination li a {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #f9f9f9;
  color: #333333;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.pagination li a i {
  font-weight: 700;
}

.pagination li a:hover,
.pagination li a.current {
  background-color: var(--primary-color);
  color: #ffffff;
}

/*-------------------
    Lists
-------------------*/
.icon-list {
  margin-bottom: 30px;
}

.icon-list li {
  position: relative;
  padding-left: 25px;
  color: #7f7f7f;
  line-height: 30px;
}

.icon-list li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  font-family: ElegantIcons;
  font-size: 15px;
  color: #222222;
}

.icon-list.layout1 li:before {
  content: "\49";
}

.icon-list.layout2 li:before {
  content: "\52";
}

.icon-list.layout3 li:before {
  content: "\35";
}

.icon-list.layout4 li:before {
  content: "\e031";
}

.icon-list.layout5 li:before {
  content: "\e03c";
}

.icon-list.layout6 li:before {
  content: "\45";
}

.icon-list.layout7 li:before {
  font-family: 'FontAwesome';
  content: "\f111";
  font-size: 7px;
  left: 5px;
}

.icon-list.layout8 {
  counter-reset: numbers;
}

.icon-list.layout8 li:before {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  counter-increment: numbers;
  content: counter(numbers) ".";
}

.contact__list li {
  line-height: 24px;
}

.contact__list li i {
  font-size: 16px;
  margin-right: 9px;
  color: #fff;
}

/*-----------------------
    Alerts
-----------------------*/
.alert-panel {
  position: relative;
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
}

.alert__icon {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 15px;
  margin-right: 22px;
  min-width: 46px;
}

.alert__title {
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.alert__desc {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

/*----------------------------
       Header & Navbar 
-----------------------------*/
.header {
  position: absolute; /* Header'ı normal akıştan çıkarır ve en üste sabitler */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010; /* Header'ın diğer içeriklerin üzerinde kalmasını sağlar */
  background-color: transparent !important;
  transition: background-color 0.3s ease;
}
.navbar-nav a{
  /* color:white !important; */
  transition: color 0.3 ease;
}

/* Navbar */
.navbar {
  padding: 0;
  height: 100px;
  max-height: 100px;
  /*border-bottom: 1px solid #ededed;*/
  /*  dropdown-menu  */
}
.header.scrolled {
  background-color: white !important;
}
.header.scrolled .navbar-nav a {
  color: black !important;
}
.header.scrolled .logo-dark {
  display: block !important;
}
.header.scrolled .logo-light {
  display: none !important;
}

.header:hover .navbar.navbar-transparent {
    background-color: white !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
.navbar-nav a {
    /* color: white !important; */
}
.header:hover .navbar-nav a {
    color: black !important;
}
.header.logo-dark {
    display: none !important;
}
.header.logo-light {
    display: block !important;
}

.navbar>.container,
.navbar>.container-fluid {
  position: relative;
  height: 100px;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 100px;
}

.navbar .navbar-brand > img {
  height: 85px;
}

.navbar .logo-dark {
  display: none;
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  border-radius: 0;
  width: 23px;
  position: relative;
}

.navbar .navbar-toggler .menu-lines {
  display: inline-block;
}

.navbar .navbar-toggler .menu-lines:before,
.navbar .navbar-toggler .menu-lines:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 23px;
  height: 2px;
  display: inline-block;
  background-color: #333333;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar .navbar-toggler .menu-lines:after {
  top: 10px;
}

.navbar .navbar-toggler .menu-lines span {
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 2px;
  background-color: #333333;
}

.navbar .navbar-toggler.actived .menu-lines>span {
  opacity: 0;
}

.navbar .navbar-toggler.actived .menu-lines:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar .navbar-toggler.actived .menu-lines:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .nav__item {
  position: relative;
  margin-right: 18px;
}

.call-to-form-container {
  width: 500px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 0 auto;
}

.banner-call-to-form .call-to-form-container {
  width: 100%;
  margin-top: 100px;
  background-color: #ffffffcc;
  background-color: rgb(255 255 255 / 80%);
}

.banner-call-to-form .call-to-form-container .mfp-close {
  display: none;
}

.banner-call-to-form .call-to-form-container .form-control {
  color: #000;
  border-bottom: 2px solid #c1c1c1;
}

.banner-call-to-form .call-to-form-container .form-control::placeholder {
  color: #000;
  opacity: 1;
}

.banner-call-to-form .call-to-form-container .form-control::-ms-input-placeholder {
  color: #000;
}

.banner-call-to-form .call-to-form-container .form-group {
  margin-bottom: 0;
}

.banner-call-to-form .call-to-form-container form>div:last-child {
  margin-top: 15px;
}

.navbar .nav__item:last-child {
  margin-right: 0;
}

.navbar .nav__item .nav__item-link {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  position: relative;
  color: #333333;
  line-height: 100px;
  letter-spacing: .4px;
}

.navbar .nav__item .nav__item-link.active:before {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  bottom: 39px;
  right: 0;
  content: " ";
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

/*.navbar .nav__item .nav__item-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  margin: auto;
  display: block;
  background-color: #333333;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.navbar .nav__item .nav__item-link.active:before,
.navbar .nav__item .nav__item-link:hover:before {
  width: 100%;
}*/

.navbar .dropdown-toggle:after {
  content: "\f105";
  font-family: fontAwesome;
  border: none;
  vertical-align: middle;
  margin-left: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  margin: 0;
  background-color: #ffffff;
}

.navbar .dropdown-menu .nav__item {
  padding: 0 40px;
  margin-right: 0;
}

.navbar .dropdown-menu .nav__item .nav__item-link {
  color: #7f7f7f;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 35px;
  white-space: nowrap;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  flex-direction: column;
}

.navbar .dropdown-menu .nav__item .nav__item-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu .nav__item .nav__item-link>span {
  color: #7f7f7f;
  white-space: normal;
  line-height: 20px;
  padding-bottom: 10px;
  font-size: 10px;
}

.navbar .dropdown-menu .nav__item:last-child>.nav__item-link {
  border-bottom: none;
}

.navbar .dropdown-menu .dropdown-toggle:after {
  right: 0;
}

/* header topbar */
.header__topbar {
  max-height: 45px;
  border-bottom: 1px solid #ededed;
}

.header__topbar .contact__list {
  display: flex;
  flex-wrap: wrap;
}

.header__topbar .contact__list li {
  line-height: 45px;
  margin-right: 20px;
}

.header__topbar .contact__list li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.header__topbar .contact__list li:last-child {
  margin-right: 0;
}

.header__topbar .social__icons a {
  line-height: 45px;
  margin-right: 20px;
}

.header__topbar .social__icons a:last-child {
  margin-right: 0;
}

.header__topbar .social__icons span {
  margin-right: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .header__topbar {
    display: none;
  }
}

.header__topbar-dark {
  background-color: #282828;
  border-bottom: 0;
}

.header__topbar-dark .social__icons a {
  color: var(--primary-color);
}

.header__topbar-dark .social__icons a:hover {
  color: #ffffff;
}

/* navbar-transparent */
.header-transparent .navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
}

.header-transparent .navbar .navbar-toggler .menu-lines:before,
.header-transparent .navbar .navbar-toggler .menu-lines:after,
.header-transparent .navbar .navbar-toggler .menu-lines span {
  background-color: #ffffff;
}

.header-transparent .navbar .nav__item .nav__item-link:before {
  background-color: #ffffff;
}

.header-transparent .logo-light {
  display: inline-block;
}

.header-transparent .logo-dark {
  display: none;
}

.header-transparent .module__btn,
.header-transparent .nav__item .nav__item-link {
  color: #ffffff;
}

.header-transparent .module__btn-contact {
  border-color: #ffffff;
  color: #ffffff;
}

.header-transparent .module__btn-contact:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #222222;
}

.header-transparent .navbar.fixed-navbar .nav__item .nav__item-link:before {
  background-color: #333333;
}

.header-6 .module__btn-contact {
  border-radius: 0;
}

.header-7 {
  background-color: transparent;
}

.header-7 .header__topbar {
  border-bottom: 0;
  background-color: transparent;
}

.header-7 .header__topbar .container {
  padding: 0 30px;
}

.header-7 .header__topbar .contact__list li,
.header-7 .header__topbar .contact__list li i {
  color: #f9f9f9;
}

.header-7 .header__topbar .social__icons a {
  color: #f9f9f9;
}

.header-7 .header__topbar .social__icons a:hover {
  color: #ffffff;
}

.header-7 .navbar {
  background-color: transparent;
  border-bottom: 0;
}

.header-7 .navbar>.container {
  background-color: #fff;
}

.header-7+.page-title {
  margin-top: -145px;
}

.header-8 .module__btn-contact {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.header-8 .module__btn-contact:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.header-9 .navbar,
.header-11 .navbar {
  border-bottom: 0;
}

/* fixed-navbar */
.fixed-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  background-color: #ffffff !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  -webkit-animation: translateHeader 0.8s;
  -moz-animation: translateHeader 0.8s;
  -ms-animation: translateHeader 0.8s;
  -o-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
}

.fixed-navbar .nav__item .nav__item-link {
  color: #333333;
}

.fixed-navbar .logo-light {
  display: none;
}

.fixed-navbar .logo-dark {
  display: inline-block;
}

.fixed-navbar .module__btn {
  color: #333333;
}

.fixed-navbar .module__btn-contact {
  border-color: #333333;
  color: #333333;
}

.fixed-navbar .module__btn-contact:hover {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}

/* Header Animation */
@-webkit-keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes translateHeader {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

/* navbar-modules */
.module__btn {
  position: relative;
  margin-right: 20px;
  color: #333333;
}

.module__btn:hover {
  color: var(--primary-color);
}

.module__btn:last-child {
  margin-right: 0;
}

.module__btn-contact {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  width: 98px;
  height: 30px;
  line-height: 26px;
  font-size: 13px;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  transition: .3s ease;
}

.module__btn-contact:hover {
  background-color: #333333;
  color: #ffffff;
}

.cart__label {
  position: absolute;
  top: -7px;
  right: -9px;
  width: 16px;
  height: 16px;
  line-height: 18px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
}

/* module-search  */
.module__search-container,
.module__sidenav-container {
  position: fixed;
  z-index: 2300;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(27, 26, 26, 0.98);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.module__search-container .close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 35px;
  height: 35px;
  line-height: 33px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
}

.module__search-container .module__search-form {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 550px;
  margin: -40px auto 0;
  -webkit-transform: translateY(-50%) scaleX(0);
  -moz-transform: translateY(-50%) scaleX(0);
  -ms-transform: translateY(-50%) scaleX(0);
  -o-transform: translateY(-50%) scaleX(0);
  transform: translateY(-50%) scaleX(0);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transition-delay: .5s;
}

.module__search-container .module__search-btn {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 80px;
  text-align: center;
  font-size: 28px;
  cursor: pointer;
  transition: .3s ease;
  color: #ffffff;
}

.module__search-container .module__search-btn:hover {
  color: var(--primary-color);
}

.module__search-container .search__input {
  z-index: 1;
  height: 80px;
  padding: 0 40px 0 0;
  background: transparent;
  border: none;
  width: 100%;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.module__search-container .search__input::-webkit-input-placeholder {
  color: #ffffff;
}

.module__search-container .search__input:-moz-placeholder {
  color: #ffffff;
}

.module__search-container .search__input::-moz-placeholder {
  color: #ffffff;
}

.module__search-container .search__input:-ms-input-placeholder {
  color: #ffffff;
}

.module__search-container .search__input::placeholder {
  color: #ffffff;
}

.module__search-container.active,
.module__sidenav-container.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.module__search-container.inActive,
.module__sidenav-container.inActive {
  opacity: 0;
  transition-delay: .5s;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.module__search-container.active .module__search-form {
  -webkit-transform: translateY(-50%) scaleX(1);
  -moz-transform: translateY(-50%) scaleX(1);
  -ms-transform: translateY(-50%) scaleX(1);
  -o-transform: translateY(-50%) scaleX(1);
  transform: translateY(-50%) scaleX(1);
}

.module__search-container.inActive .module__search-form {
  transition-delay: 0ms;
  -webkit-transform: translateY(-50%) scaleX(0);
  -moz-transform: translateY(-50%) scaleX(0);
  -ms-transform: translateY(-50%) scaleX(0);
  -o-transform: translateY(-50%) scaleX(0);
  transform: translateY(-50%) scaleX(0);
}

/* Module sidenav */
.sidenav__menu {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  width: 370px;
  height: 100%;
  padding: 100px 50px 0;
  opacity: 0;
  transition-delay: .6s;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.sidenav__menu .close-sidenav {
  position: absolute;
  top: 50px;
  right: 50px;
  line-height: 1;
  cursor: pointer;
}

.sidenav__menu .close-sidenav:hover {
  color: #222222;
}

.module__sidenav-container.active .sidenav__menu {
  opacity: 1;
}

/* Module Cart */
.module__cart-container {
  background-color: #ffffff;
  width: 310px;
  padding: 40px;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1055;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.module__cart-container .cart-item {
  position: relative;
  display: flex;
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.module__cart-container .cart-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.module__cart-container .cart-item .cart__item-img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 2px;
  margin-right: 15px;
}

.module__cart-container .cart-item .cart__item-content {
  flex: 1;
  padding-right: 22px;
}

.module__cart-container .cart-item .cart__item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 4px;
}

.module__cart-container .cart-item .cart__item-detail {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.module__cart-container .cart-item .cart__item-detail span:first-child {
  padding-right: 4px;
}

.module__cart-container .cart-item .cart__item-delete {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.module__cart-container .cart-item .cart__item-delete:hover {
  background-color: var(--primary-color);
}

.module__cart-container .cart-subtotal {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #f4f4f4;
  border-bottom: 2px solid #f4f4f4;
  padding: 18px 0;
  margin-bottom: 20px;
}

.module__cart-container .cart-subtotal span {
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 700;
}

.module__cart-container .cart-action .btn {
  height: 42px;
  line-height: 40px;
}

.module__cart-container.active,
.module__popupMenu-container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.module__popupMenu-container {
  position: fixed;
  z-index: 2300;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  text-align: center;
  background-color: rgba(27, 26, 26, 0.98);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.popupMenu__header {
  padding: 20px 100px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popupMenu__header .close-popupMenu {
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
}

.popupMenu__header .close-popupMenu:hover {
  color: var(--primary-color);
}

.popupMenu__list {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.popupMenu__list li a {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 64px;
  display: inline-block;
}

.popupMenu__list li a:hover {
  color: var(--primary-color);
}

.popupMenu__copyright {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .sidenav__menu {
    width: 270px;
    padding: 40px 20px 0;
  }

  .sidenav__menu .close-sidenav {
    top: 30px;
    right: 30px;
  }

  .sidenav__menu .instagram__images li {
    width: 60px;
    height: 60px;
  }

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

  .module__search-container .search__input {
    font-size: 20px;
    font-weight: 600;
  }
}

/* Mobile and Tablets */
@media only screen and (max-width: 991px) {

  .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    height: 13px;
  }

  .navbar .collapse:not(.show) {
    display: block;
  }

  .navbar .navbar-nav {
    margin: 0 !important;
  }

  .navbar .nav__item {
    margin-right: 0;
  }

  .navbar .nav__item .nav__item-link {
    color: #282828;
    line-height: 35px;
    padding-left: 15px;
  }

  .navbar .nav__item .nav__item-link:hover {
    color: var(--primary-color);
  }

  .navbar .nav__item .nav__item-link:before {
    display: none;
  }

  .navbar .navbar-collapse {
    background-color: white;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
    z-index: 50;
    padding: 15px 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }

  .navbar .navbar-collapse .navbar-modules {
    padding: 0 15px;
  }

  .navbar .menu-opened.navbar-collapse {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .navbar .dropdown-toggle:after {
    right: 15px;
    content: "";
    content: "\4c";
    font-family: ElegantIcons;
  }

  .navbar .nav__item.opened>.dropdown-toggle:after,
  .navbar .nav__item.show>.dropdown-toggle:after {
    content: "\4b";
  }

  .navbar .dropdown-menu {
    background-color: white;
  }

  .navbar .dropdown-menu .nav__item {
    padding: 0 15px 0 30px;
  }

  .navbar .dropdown-menu .nav__item .nav__item-link {
    padding-left: 0;
  }

  .navbar .nav__item.dropdown-submenu>.dropdown-menu.show {
    padding-left: 10px;
  }

  .navbar .dropdown-submenu .dropdown-menu .nav__item {
    padding: 0 0 0 15px;
  }

  .navbar .navbar-nav .dropdown-menu.show {
    padding: 0;
  }

  .navbar .mega-dropdown-menu .container {
    max-width: none;
  }

  .navbar .mega-dropdown-menu>.nav__item {
    padding: 0 10px;
  }

  .navbar .mega-dropdown-menu .nav__item {
    padding: 0;
  }

  .fixed-navbar {
    position: static;
    animation: none;
  }

  .modules__wrapper {
    position: absolute;
    top: 50%;
    right: 38px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .module__btn-contact {
    display: none;
  }

  .header-transparent+.page-title {
    margin-top: 0;
  }

  .header .navbar,
  .header-transparent .navbar {
    background-color: #ffffff;
  }

  .header .logo-dark,
  .header-transparent .logo-dark {
    display: inline-block;
  }

  .header .logo-light,
  .header-transparent .logo-light {
    display: none;
  }

  .header .navbar-brand img,
  .header-transparent .navbar-brand img {
    height: 70px;
  }

  .blog-item .blog__img>a {
    width: 100%;
    display: block;
  }

  .blog-item .blog__img>a>img {
    width: 100%;
  }

  .header .module__btn,
  .header-transparent .module__btn {
    color: #333333;
  }

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

  .header .navbar .navbar-toggler .menu-lines:before,
  .header .navbar .navbar-toggler .menu-lines:after,
  .header .navbar .navbar-toggler .menu-lines span,
  .header-transparent .navbar .navbar-toggler .menu-lines:before,
  .header-transparent .navbar .navbar-toggler .menu-lines:after,
  .header-transparent .navbar .navbar-toggler .menu-lines span {
    background-color: #333333;
  }

  .header .navbar-expand-lg>.container,
  .header .navbar-expand-lg>.container-fluid,
  .header-transparent .navbar-expand-lg>.container,
  .header-transparent .navbar-expand-lg>.container-fluid {
    width: 100%;
    max-width: none;
  }

  .header .navbar,
  .header .navbar>.container,
  .header .navbar>.container-fluid,
  .header-transparent .navbar,
  .header-transparent .navbar>.container,
  .header-transparent .navbar>.container-fluid {
    height: 80px;
  }

  .header .navbar-brand,
  .header-transparent .navbar-brand {
    margin-left: 15px;
    line-height: 80px;
  }

  .module__cart-container {
    right: 15px;
  }

  .header__topbar>.container {
    max-width: none;
  }

  .module__btn-popupMenu {
    margin-right: 15px !important;
  }

  .popupMenu__header {
    padding: 20px 40px;
  }

  .popupMenu__list li a {
    font-size: 14px;
    line-height: 30px;
  }

  .popupMenu__copyright {
    bottom: 20px;
  }

  .module__btn-sidenav {
    display: none;
  }
}

/* Medium and large Screens */
@media only screen and (min-width: 992px) {
  .navbar .dropdown-menu {
    width: auto;
    min-width: 235px;
    box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
    padding: 25px 0 23px;
  }

  .navbar .dropdown-menu .nav__item .nav__item-link:before {
    display: none;
  }

  .navbar .dropdown-menu.mega-dropdown-menu {
    padding: 30px;
  }

  .navbar .nav__item.with-dropdown>.dropdown-menu,
  .navbar .nav__item.dropdown-submenu>.mega-menu,
  .navbar .nav__item.with-dropdown>.mega-menu,
  .navbar .nav__item.with-dropdown>.dropdown-menu>.nav__item.dropdown-submenu>.dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
    opacity: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
  }

  .navbar .nav__item.with-dropdown>.dropdown-menu>.nav__item.dropdown-submenu>.dropdown-menu,
  .navbar .nav__item.dropdown-submenu>.dropdown-menu>.nav__item.with-dropdown>.dropdown-menu {
    top: 0;
    left: 100%;
  }

  .navbar .nav__item.with-dropdown:hover>.dropdown-menu,
  .navbar .nav__item.dropdown-submenu:hover>.mega-menu,
  .navbar .nav__item.with-dropdown:hover>.mega-menu,
  .navbar .nav__item.with-dropdown>.dropdown-menu>.nav__item.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }

  .navbar .nav__item.with-dropdown.mega-dropdown {
    position: static;
  }

  .navbar .nav__item.with-dropdown .mega-dropdown-menu {
    width: 100%;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav__item {
    padding: 0;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link {
    overflow: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:after {
    font-family: "FontAwesome";
    content: "\f111";
    position: absolute;
    top: auto;
    left: -7px;
    font-size: 7px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    opacity: 0;
    color: var(--primary-color);
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:hover {
    padding-left: 15px;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav__item .nav__item-link:hover:after {
    opacity: 1;
    left: 4px;
  }

  .navbar-nav>.nav__item>.dropdown-toggle:after {
    display: none;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .dropdown-menu.mega-dropdown-menu>.nav__item {
    padding: 0 15px;
  }

  .dropdown-menu.mega-dropdown-menu .nav__item:last-child>.nav__item-link {
    border-bottom: 1px solid #f2f2f2;
  }

  .dropdown-menu.mega-dropdown-menu [class^="col-"]:last-child .nav__item:last-child>.nav__item-link {
    border-bottom: none;
  }
}

/*----------------------
    Accordions
------------------------*/
/*.accordion-item {
  border: 1px solid #ededed;
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 30px 30px 24px;
}*/

/*.accordion__item-header {
  padding: 20px 30px; 
  transition: background-color 0.3s ease; 
  cursor: pointer;
}*/

/*.accordion-item:last-child {
  margin-bottom: 0;
}*/

/*.accordion-item .accordion__item-title {
  font-family: "Montserrat", sans-serif;
  color: #282828;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: block;
  position: relative;
}*/

/*.accordion-item .accordion__item-title:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "\f068";
  font-family: fontawesome;
  background-color: #222222;
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
}*/

/*.accordion-item .accordion__item-header.opened .accordion__item-title {
  color: var(--primary-color);
}*/

/*.accordion-item .accordion__item-header.opened .accordion__item-title:after {
  background-color: var(--primary-color);
  content: "\f067";
}*/

/*.accordion-item .accordion__item-body {
  padding-top: 25px;
}*/

/*.accordion-item .accordion__item-body p {
  margin-bottom: 0;
} */

/* Genel kart görünümü için yeni stil Stajyer Selin*/
.accordion-item {
  background-color:#f3f3f3;
  margin-bottom: 15px;
  border-radius: 12px; /* Köşeleri yuvarlar */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Hafif gölge */
  border: 1px solid #e0e0e0; /* Çok hafif kenarlık */
  overflow: hidden;
  /* Başlık ve cevap bölümlerini hizalamak için flex kullanıyoruz */
  display: flex;
  flex-direction: column;
  padding: 20px;
}


.accordion-item:last-child {
  margin-bottom: 0;
}



/*.accordion__item-header.opened .accordion__item-title {
  color: #fff;
}*/

/* Başlıkta bulunan ikonun stili */
.accordion__item-title:after {
  content: "\f054" !important; 
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  background-color: transparent !important; 
  color: #435166 !important; 
  font-size: 14px !important; 
  text-align: center !important;
  width: 30px !important;
  height: 30px !important;
  line-height: 28px !important;
  border-radius: 50% !important;
  border: 1px solid #ededed !important;
  transition: all 0.3s ease !important;
}

/* Tıklanmış karttaki ikonun stili  */
.accordion__item-header.opened .accordion__item-title:after {
  content: "\f078" !important; 
  background-color: transparent !important; 
  color: #fff !important; 
  border: 1px solid #fff !important; 
}
/* Cevap bölümünün stili 
.accordion__item-body {
  padding: 25px 30px 24px;
  background-color: #f8f9fa;
}*/

.accordion-item .accordion__item-body p {
  margin-bottom: 0;
}
.accordion__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

/* Başlık alanının stili 
.accordion__item-header.opened {
  background-color: #e3001a;
  color: #fff;
  padding: 20px 30px; 
  cursor: pointer;
  transition: all 0.3s ease; 
}*/

/* Başlık içindeki metin stili */
.accordion__item-title {
  font-family: "Montserrat", sans-serif;
  color: #282828;
  font-weight: 600;
  font-size: 16px;
  display: flex; /* Başlık ve ikonun aynı satırda olmasını sağlar */
  width: 100%; /* İçinde bulunduğu konteynerin tamamını kaplamasını sağlar */
  justify-content: space-between; /* Metni ve ikonu zıt köşelere iter */
  align-items: center; /* Dikeyde ortalar */
}

/* Tıklandığında başlık renginin değişmesi
.accordion__item-header.opened .accordion__item-title {
  color: #fff;
}*/

/* Başlıkta bulunan ikonun stili */
.accordion__item-title:after {
  content: "\f054" !important; 
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  background-color: transparent !important; 
  color: #435166 !important; 
  font-size: 14px !important; 
  text-align: center !important;
  width: 30px !important;
  height: 30px !important;
  line-height: 28px !important;
  border-radius: 50% !important;
  border: 1px solid #ededed !important;
  transition: all 0.3s ease !important;
}


.accordion__item-header.opened .accordion__item-title:after {
  content: "\f078" !important; 
  background-color: transparent !important; 
  color: #fff !important; 
  border: 1px solid #fff !important; 
}

.accordion__item-body {
  padding: 25px 30px 24px; 
}

.accordion-item .accordion__item-body p {
  margin-bottom: 0;
}
.accordion__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*-----------------------
    Banners
------------------------*/
.banner__img {
  height: 720px;
}

.banner-3 .inner-padding {
  padding-bottom: 20px;
}

.banner-3 .fancybox-item {
  padding-top: 10px;
}

.banner-3 .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.banner-4 .piechart-item-data .percentage {
  background-color: #ffffff;
  box-shadow: 0 0 0 7px #ffffff;
}

.banner-4 .inner-padding {
  padding-bottom: 100px;
}

.banner-5 .inner-padding {
  padding-bottom: 0;
}

.banner-5 .fancybox-item {
  margin-bottom: 46px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .banner__img {
    height: 400px;
  }

  .banner-3 .inner-padding {
    padding-bottom: 30px;
  }

  .banner-5 .fancybox-item {
    margin-bottom: 30px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-3 .inner-padding {
    padding-bottom: 50px;
  }
}

/*----------------------
     Dividers 
------------------------*/
.divider__line {
  position: relative;
  height: 6px;
}

.divider__line:before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 5px);
  width: 20px;
  height: 2px;
  background-color: #222222;
}

.divider__line:after {
  content: '';
  position: absolute;
  top: 4px;
  right: calc(50% - 5px);
  width: 20px;
  height: 2px;
  background-color: #222222;
}

.divider__left:before {
  left: 10px;
}

.divider__left:after {
  right: calc(100% - 20px);
}

.divider__white:before {
  background-color: #ffffff;
}

.divider__white:after {
  background-color: #ffffff;
}

.divider__theme:before {
  background-color: var(--primary-color);
}

.divider__theme:after {
  background-color: var(--primary-color);
}

.dotted__line {
  position: relative;
  width: 16px;
  height: 3px;
  display: inline-block;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.dotted__line span {
  width: 4px;
  height: 3px;
  background-color: #dedede;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.dotted__line span:before,
.dotted__line span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 6px;
  width: 4px;
  height: 3px;
  background-color: #dedede;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.dotted__line span:after {
  left: 12px;
}

.dotted__white span {
  background-color: #ffffff;
}

.dotted__white span:before,
.dotted__white span:after {
  background-color: #ffffff;
}

/*-------------------------
    Footer
--------------------------*/
.footer {
  padding-top: 20px;   /* üst boşluk */
  padding-bottom: 20px; /* alt boşluk */
  font-size: 14px;      /* metin daha kompakt olsun */
}
.footer__widget {
  padding-top: 90px;
  padding-bottom: 60px;
}

.footer__widget .footer__widget-title {
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 40px;
}

.footer__widget .footer__logo {
  margin-bottom: 27px;
}

.footer__widget p {
  font-size: 15px;
  line-height: 22px;
}

.footer__widget .post-item {
  margin-bottom: 20px;
}

.footer__widget .post-item:last-of-type {
  margin-bottom: 0;
}

.footer__widget .post-item .post__title {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
}

.footer__widget .post-item .post__title a {
  color: #cecece;
}

.footer__widget .post-item .post__title a:hover {
  color: var(--primary-color);
}

.footer__widget .post-item .post__date {
  display: inline-block;
  color: #616161;
  line-height: 1;
  margin-bottom: 11px;
}

.footer__widget .social__icons a {
  color: #646464;
  margin-right: 24px;
}

.footer__widget .social__icons a:hover {
  color: #ffffff;
}

.footer__widget .social__icons a:last-of-type {
  margin-right: 0;
}

.footer__widget-newsletter .widget__newsletter-form {
  margin-bottom: 23px;
}

.footer__widget-newsletter .widget__newsletter-form .form-control {
  border: 1px solid #1d1d1d;
  background-color: #1d1d1d;
  font-size: 14px;
  color: #ffffff;
  height: 42px;
  padding-left: 17px;
}

.footer__widget-newsletter .widget__newsletter-form .form-control::-webkit-input-placeholder {
  color: #474747;
  font-style: italic;
}

.footer__widget-newsletter .widget__newsletter-form .form-control:-moz-placeholder {
  color: #474747;
  font-style: italic;
}

.footer__widget-newsletter .widget__newsletter-form .form-control::-moz-placeholder {
  color: #474747;
  font-style: italic;
}

.footer__widget-newsletter .widget__newsletter-form .form-control:-ms-input-placeholder {
  color: #474747;
  font-style: italic;
}

.footer__widget-newsletter .widget__newsletter-form .form__submit {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: #ffffff;
  width: 42px;
  height: 42px;
  transition: .3s ease;
}

.footer__widget-newsletter .widget__newsletter-form .form__submit:hover {
  background-color: #ffffff;
  color: var(--primary-color);
}

.footer__widget-newsletter p {
  margin-bottom: 21px;
}

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

.instagram__images li {
  position: relative;
  padding: 1px;
  width: 80px;
  height: 80px;
}

.instagram__images li .img__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: var(--primary-color);
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
  transform: scale(0);
}

.instagram__images li .img__overlay a {
  display: block;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}

.instagram__images li .img__overlay a .dotted__line {
  margin: auto;
}

.instagram__images li:hover .img__overlay {
  opacity: 1;
  transform: scale(1);
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid #474747;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .footer__widget {
    margin-bottom: 30px;
  }

  .footer-widget .footer__widget-title {
    margin-bottom: 20px;
  }
}

/* Scroll Top Button */
#scrollTopBtn {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  opacity: 0;
  z-index: 1000;
  font-size: 20px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #282828;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: var(--primary-color);
}

#scrollTopBtn.actived {
  right: 30px;
  opacity: 1;
}

/*-----------------------
    Blockquote
 ------------------------*/
.blockquote {
  position: relative;
  font-family: "Droidserif italic";
  font-size: 20px;
  line-height: 28px;
  padding: 26px 37px;
  border-radius: 5px;
  margin-bottom: 40px;
}

.blockquote .quote__author {
  font-family: "Montserrat", sans-serif;
  color: #222222;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  margin-top: 16px;
  display: block;
}

.blockquote-1 {
  border-left: 6px solid #222222;
  border-radius: 0;
}

.blockquote-2 {
  background-color: #f4f4f4;
  color: var(--primary-color);
}

.blockquote-3:before,
.blockquote-3:after {
  position: absolute;
  font-family: fontawesome;
  font-size: 16px;
  color: #222222;
  font-style: normal;
  line-height: 1;
}

.blockquote-3:before {
  content: "\f10d";
  top: 0;
  left: 0;
}

.blockquote-3:after {
  content: "\f10e";
  bottom: 0;
  right: 0;
}

.blockquote-4 {
  background-color: #222222;
  color: #ffffff;
}

.blockquote-4 .quote__author {
  color: #ffffff;
}

/*----------------------
    Carousel
-----------------------*/
[data-nav="false"] .owl-nav.disabled {
  display: none;
}

.owl-carousel .owl-item img {
  width: 100%;
}

.carousel-dots .owl-dots .owl-dot {
  margin: 0 3px;
}

.carousel-dots .owl-dots .owl-dot span {
  position: relative;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #222222;
  border: 2px solid #222222;
  margin: 0;
  display: inline-block;
}

.carousel-dots .owl-dots .owl-dot.active span {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-color: #222222;
}

.carousel-dots .owl-dots .owl-dot.active span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #222222;
  transform: translate(-50%, -50%);
}

.carousel-dots-white .owl-dots .owl-dot span {
  background-color: #ffffff;
  border-color: #ffffff;
}

.carousel-dots-white .owl-dots .owl-dot.active span {
  border-color: #ffffff;
}

.carousel-dots-white .owl-dots .owl-dot.active span:before {
  background-color: #ffffff;
}

/*.carousel-arrows .owl-nav .owl-prev,
.carousel-arrows .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #999999;
  font-size: 0;
  font-weight: 400;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateY(-50%);
}

.carousel-arrows .owl-nav .owl-prev:hover,
.carousel-arrows .owl-nav .owl-next:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.carousel-arrows .owl-nav .owl-prev:after,
.carousel-arrows .owl-nav .owl-next:after {
  content: '';
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.7s ease;
  -webkit-transition: opacity 0.7s ease;
  -moz-transition: opacity 0.7s ease;
  -ms-transition: opacity 0.7s ease;
  -o-transition: opacity 0.7s ease;
}

.carousel-arrows .owl-nav .owl-prev:hover:after,
.carousel-arrows .owl-nav .owl-next:hover:after {
  opacity: 1;
}

.carousel-arrows .owl-nav .owl-prev {
  left: 0;
}

.carousel-arrows .owl-nav .owl-prev:before {
  font-family: FontAwesome;
  content: "\f177";
  font-size: 20px;
}

.carousel-arrows .owl-nav .owl-next {
  right: 0;
}

.carousel-arrows .owl-nav .owl-next:before {
  font-family: FontAwesome;
  content: "\f178";
  font-size: 20px;
}*/

.carousel-arrows .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  line-height: 1;
}

/*------------------------
    Slider 
--------------------------*/
.header-transparent+.slider {
  margin-top: -100px;
}

.header-transparent+.slider .slide__content {
  padding-top: 100px;
}

.slider {
  padding: 0;
}

.slider .heading__shape {
  margin-bottom: 18px;
}

.slider .slide-item {
  height: 80vh;
}

.slider .slide__subtitle {
  display: inline-block;
  font-family: "Droidserif italic";
  font-size: 17px;
  line-height: 1;
  color: #f9f9f9;
  margin-bottom: 25px;
}

.slider .slide__title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 37px;
}

.slider .slide__desc {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 33px;
}

.slider .carousel-arrows .owl-nav .owl-prev,
.slider .carousel-arrows .owl-nav .owl-next {
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  line-height: 46px;
  opacity: 0;
  transform: scale(0.8);
  transition: border .3s linear, opacity .5s ease, transform .4s ease;
}

.slider:hover .carousel-arrows .owl-nav .owl-prev,
.slider:hover .carousel-arrows .owl-nav .owl-next {
  transform: scale(1);
  opacity: 1;
}

.slider:hover .carousel-arrows .owl-nav .owl-prev:hover,
.slider:hover .carousel-arrows .owl-nav .owl-next:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.slider .carousel-arrows .owl-nav .owl-next:before,
.slider .carousel-arrows .owl-nav .owl-prev:before {
  font-family: eleganticons;
  font-size: 20px;
  transition: .4s ease;
}

.slider .carousel-arrows .owl-nav .owl-next:before {
  content: "\35";
}

.slider .carousel-arrows .owl-nav .owl-prev:before {
  content: "\34";
}

.slider .carousel-arrows .owl-nav .owl-prev {
  left: 30px;
}

.slider .carousel-arrows .owl-nav .owl-next {
  right: 30px;
}

.slider .carousel-arrows .owl-nav .owl-prev:after,
.slider .carousel-arrows .owl-nav .owl-next:after {
  display: none;
}

.slider .carousel-arrows .owl-dots {
  bottom: 30px;
  text-align: center;
}

.slider .carousel-dots .owl-dots .owl-dot span {
  background-color: #ffffff;
  border-color: #ffffff;
}

.slider .carousel-dots .owl-dots .owl-dot.active span {
  background-color: transparent;
  border-color: #ffffff;
}

.slider .carousel-dots .owl-dots .owl-dot.active span:before {
  background-color: #ffffff;
}

.slider-2 .slide__title,
.slider-3 .slide__title,
.slider-4 .slide__title {
  margin-bottom: 22px;
}

.slider-5 .slide__title {
  margin-bottom: 24px;
}

.slider-5 .slide__desc {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.slider-6 .slide__subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}

.slider-6 .slide__title {
  margin-bottom: 27px;
}

.header-7+.slider {
  margin-top: -145px;
}

.header-7+.slider .slide__content {
  padding-top: 145px;
}

.slider-7 .slide__title {
  margin-bottom: 22px;
}

.slider-8 .slide__title {
  margin-bottom: 20px;
}

.slider-8 .carousel-arrows .owl-nav .owl-prev,
.slider-8 .carousel-arrows .owl-nav .owl-next {
  display: none;
}

.slider-8 .slide-item,
.slider-9 .slide-item {
  height: 540px;
}

.slider-9 .slide__title {
  margin-bottom: 11px;
}

.slider-9 .slide__desc {
  margin-bottom: 23px;
}

.slider-10 .slide__title {
  margin-bottom: 22px;
}

.slider-10 .slide__desc {
  margin-bottom: 36px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .header-transparent+.slider {
    margin-top: 0;
  }

  .slider .slide-item {
    height: calc(100vh - 80px);
  }

  .header-transparent+.slider .slide__content {
    padding-top: 0;
  }

  .slider .carousel-arrows .owl-nav .owl-prev,
  .slider .carousel-arrows .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .slider .carousel-arrows .owl-nav .owl-next:before,
  .slider .carousel-arrows .owl-nav .owl-prev:before {
    font-size: 15px;
  }

  .slider-9 .container {
    max-width: none;
    padding: 0;
  }

  .slider-9 .slide__content {
    padding: 0 50px;
  }
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .slider .slide__subtitle {
    margin-bottom: 15px;
  }

  .slider .slide__title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .slider .slide__desc {
    font-size: 15px;
    font-weight: 400;
  }

  .slider .carousel-arrows .owl-nav .owl-prev,
  .slider .carousel-arrows .owl-nav .owl-next {
    display: none;
  }

  .slider-9 .slide__content {
    padding: 0 20px;
  }
}

/* tablets */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider .slide__title {
    font-size: 40px;
    margin-bottom: 17px;
  }

  .slider .carousel-arrows .owl-nav .owl-prev {
    left: 10px;
  }

  .slider .carousel-arrows .owl-nav .owl-next {
    right: 10px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider .carousel-arrows .owl-nav .owl-next {
    right: 0;
  }

  .slider .carousel-arrows .owl-nav .owl-prev {
    left: 0;
  }

  .slide__title {
    font-size: 50px;
  }

  .slider-9 .container {
    max-width: none;
    padding: 0;
  }

  .slider-9 .slide__content {
    padding: 0 50px;
  }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider .carousel-arrows .owl-nav .owl-next {
    right: 10px;
  }

  .slider .carousel-arrows .owl-nav .owl-prev {
    left: 10px;
  }

  .slider-9 .container {
    max-width: none;
    padding: 0;
  }
}

/*-----------------------
    Skills
------------------------*/
.skills .progress-item {
  margin-bottom: 32px;
  overflow: hidden;
}

.skills .progress-item:last-of-type {
  margin-bottom: 0;
}

.skills .progress {
  background-color: #ebebeb;
  border-radius: 9px;
  width: 100%;
  height: 9px;
  overflow: visible;
  position: relative;
}

.skills .progress-bar {
  position: relative;
  border-radius: 9px;
  height: 9px;
  width: 0;
  -webkit-transition: width 2s ease;
  -moz-transition: width 2s ease;
  -ms-transition: width 2s ease;
  -o-transition: width 2s ease;
  transition: width 2s ease;
  background-image: -webkit-linear-gradient(0deg, #f4bb52 0%, var(--primary-color) 100%);
  background-image: -moz-linear-gradient(0deg, #f4bb52 0%, var(--primary-color) 100%);
  background-image: -ms-linear-gradient(0deg, #f4bb52 0%, var(--primary-color) 100%);
  background-image: linear-gradient(0deg, #f4bb52 0%, var(--primary-color) 100%);
}

.progress__title {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 7px;
}

.progress__percentage {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  top: -18px;
  right: 0;
  color: #545454;
}

.skills-3 .inner-padding {
  padding: 120px 80px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .skills-3 .inner-padding {
    padding: 60px 40px;
  }
}

/*--------------------------
      Video
--------------------------*/
.video__btn {
  position: relative;
}

.popup-video {
  text-align: center;
  display: inline-block;
  position: relative;
}

.popup-video .video__player {
  font-size: 18px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #222222;
  position: relative;
  display: inline-block;
}

.popup-video .video__player-animation {
  position: relative;
  width: 66px;
  height: 66px;
}

.popup-video .video__player-animation:before {
  content: '';
  position: absolute;
  left: -3px;
  top: -24px;
  width: 66px;
  height: 66px;
  opacity: 1;
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-animation: pulsing 1s infinite linear;
  -moz-animation: pulsing 1s infinite linear;
  -ms-animation: pulsing 1s infinite linear;
  -o-animation: pulsing 1s infinite linear;
  animation: pulsing 1s infinite linear;
}

.popup-video .video__player-title {
  text-transform: uppercase;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 0;
  line-height: 1;
}

.popup-video:hover .video__player-animation:before {
  opacity: 0;
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  -o-animation: none;
  animation: none;
}

/* video #1 */
.video-1 {
  padding: 0;
}

.video-1 .video__btn {
  height: 720px;
}

.video-1 .inner-padding {
  padding: 178px 80px 180px;
}

.video-2 {
  padding-top: 190px;
  padding-bottom: 200px;
}

.video-2 .heading__title {
  font-size: 38px;
  line-height: 48px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .video-1 .video__btn {
    height: 400px;
  }

  .video-1 .inner-padding {
    padding: 50px 30px;
  }
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-moz-keyframes pulsing {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-ms-keyframes pulsing {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-o-keyframes pulsing {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

/*-----------------------
    Features
------------------------*/
.feature-item {
  position: relative;
}

.feature-item .feature__img {
  margin-bottom: 24px;
  position: relative;
}

.feature-item .feature__img:before,
.feature-item .feature__img:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
  background: #ffffff;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.feature-item .feature__img:after {
  opacity: .6;
}

.feature-item .feature__img:before,
.feature-item .feature__img:hover:before {
  right: 0;
  top: 0;
}

.feature-item .feature__img:after,
.feature-item .feature__img:hover:after {
  left: 0;
  bottom: 0;
}

.feature-item .feature__img:hover:before,
.feature-item .feature__img:hover:after {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.feature-item .feature__subtitle {
  font-family: "Droidserif italic";
  font-size: 14px;
  display: inline-block;
  margin-bottom: 6px;
}

.feature-item .feature__title {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  line-height: 1;
  margin-bottom: 29px;
}

.feature-item .feature__desc {
  margin-bottom: 0;
}

.feature-item .btn__link {
  line-height: 1;
  border: none;
  width: auto;
  height: auto;
  margin-top: 21px;
}

.feature-item:hover .btn__link {
  color: var(--primary-color);
}

.features-2 .feature-item .feature__title {
  margin-bottom: 23px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .feature-item {
    margin-bottom: 30px;
  }
}

/*-----------------------
     Fancybox 
------------------------*/
.fancybox-item {
  position: relative;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Hafif gölge */
  /*border: 2px solid transparent;  Çok hafif kenarlık */
  border-bottom: 2px solid transparent;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.border-color-1 {
    border-color: #FF0000; /* Kırmızı */
}

.border-color-2 {
    border-color: #008CBA; /* Mavi */
}

.border-color-3 {
    border-color: #4CAF50; /* Yeşil */
}

.border-color-4 {
    border-color: #FFC107; /* Sarı */
}

.border-color-5 {
    border-color: #9C27B0; /* Mor */
}

.border-color-6 {
    border-color: #E91E63; /* Pembe */
}
.border-color-7 {
    border-color: #007bff; 
}
.border-color-8 {
    border-color: #8111bdff; 
}
.border-color-9 {
    border-color: #2b8b15ff; 
}
.border-color-10 {
    border-color: #d40e0eff; 
}
.border-color-11 {
    border-color: rgb(32, 4, 156); 
}
.border-color-12 {
    border-color: #E1306C; 
}
.border-color-13 {
    border-color: #00B2FF; 
}
.border-color-14 {
    border-color: #128C7E; 
}
.border-color-15 {
    border-color: #127688; 
}
.border-color-16 {
    border-color: #3298dc; 
}
.border-color-17 {
    border-color: #3c0579; 
}
.border-color-18 {
    border-color: #e4ad12; 
}
.border-color-19 {
    border-color: #ff4f00; 
}
.border-color-20 {
    border-color: #db0632; 
}
.border-color-21 {
    border-color: #9fdb06; 
}
.fancybox-row .col-md-4,
.fancybox-row .col-lg-4 {
  flex-basis: calc(33.333% - 20px);

}

.fancybox-item .fancybox__icon {
  font-size: 64px;
  line-height: 1;
  color: var(--primary-color);
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.fancybox-item:hover .fancybox__icon {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

.fancybox-item:hover .fancybox__title {
  color: var(--primary-color);
}

.fancybox-item .fancybox__title {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fancybox-item .fancybox__desc {
  margin-bottom: 0;
}

.fancybox-item .fancybox__desc+.dotted__line {
  margin-top: 21px;
}

.fancybox-layout1 .fancybox-item {
  padding: 0 20px;
}

.fancybox-layout3 .fancybox__icon {
  position: absolute;
  top: 40px;
  left: 0;
  margin-bottom: 0;
}

.fancybox-layout3 .fancybox__content {
  padding-left: 100px;
}

.fancybox-layout3 .fancybox-item:hover .fancybox__icon {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}


.fancybox-layout4 .fancybox-item {
  padding: 64px 25px 52px;
}

.fancybox-layout4 .fancybox-item .fancybox__icon {
  margin-bottom: 25px;
}

.fancybox-layout4 .fancybox-item .fancybox__title {
  margin-bottom: 20px;
}

.fancybox-layout4 .fancybox-item .fancybox__icon,
.fancybox-layout4 .fancybox-item .fancybox__title,
.fancybox-layout4 .fancybox-item .fancybox__desc {
  color: #ffffff;
}

.fancybox-bordered .fancybox-item {
  padding: 8px 30px 35px;
}

.fancybox-bordered .fancybox-item:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ededed;
}

.fancybox-bordered .fancybox-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ededed;
}

.fancybox-bordered .fancybox-item:last-child:before {
  display: none;
}

.fancybox-bordered .fancybox-row:last-of-type .fancybox-item {
  padding-top: 42px;
  padding-bottom: 0;
}

.fancybox-bordered .fancybox-row:last-of-type .fancybox-item:after {
  display: none;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  
  .fancybox-item {
    margin-bottom: 30px;
  }
  
  .fancybox-row .col-sm-12,
  .fancybox-row .col-md-4,
  .fancybox-row .col-lg-4 {
    flex-basis: 100% !important; /* Tek satır */
    max-width: 100% !important;
  }


  .fancybox-item .fancybox__icon {
    font-size: 40px;
  }

  .fancybox-layout4 .fancybox-item {
    padding: 0 10px
  }

  .fancybox-bordered .fancybox-item:before,
  .fancybox-bordered .fancybox-item:after {
    display: none;
  }

  .fancybox-bordered .fancybox-row:last-of-type .fancybox-item {
    padding: 20px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fancybox-item {
    margin-bottom: 30px;
  }

  .fancybox-bordered .fancybox-item,
  .fancybox-bordered .fancybox-row:last-of-type .fancybox-item {
    padding-right: 15px;
    padding-left: 15px;
  }

  .fancybox-layout1 .fancybox-item {
    padding: 0;
  }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .fancybox-layout4 .fancybox-item {
    padding: 63px 15px 52px;
  }
}



/*-----------------------
    Projects
------------------------*/
.project-item {
  position: relative;
  margin-bottom: 30px;
}

.project-item .project__img {
  position: relative;
}

.project-item .project__img img {
  width: 100%;
}

.project-item .project__hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.project-item .hover__content {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.project-item .hover__content-inner {
  position: absolute;
  bottom: 30px;
}

.project-item:hover .hover__content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.project-item .project__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.project-item .project__title a {
  color: #222222;
}

.project-item .project__title a:hover {
  color: var(--primary-color);
}

.project-item .project__cat {
  line-height: 1;
}

.project-item .project__cat a {
  position: relative;
  font-family: "Droidserif italic";
  font-size: 13px;
  font-style: italic;
  color: #333333;
  padding-right: 7px;
}

.project-item .project__cat a:hover {
  color: var(--primary-color);
}

.project-item .project__cat a::after {
  content: ',';
  position: absolute;
  top: 2px;
  right: 2px;
}

.project-item .project__cat a:last-child:after {
  display: none;
}

.project-item .project__desc {
  margin-bottom: 0;
}

.project-item .project__link {
  color: #222222;
  line-height: 1;
}

.project-item .zoom__icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.project-item .zoom__icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #333333;
}

.project-item .zoom__icon:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #333333;
}

.projects-gallery .project-item {
  margin-bottom: 0;
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.projects-filter li {
  margin-right: 20px;
}

.projects-filter li:last-child {
  margin-right: 0;
}

.projects-filter li a {
  font-family: "Montserrat", sans-serif;
  color: #222222;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0;
}

.projects-filter li a:hover,
.projects-filter li a.active {
  color: var(--primary-color);
}

/* projects Standard */
.project__info {
  padding: 30px 20px 28px;
}

.projects-standard .project-item .hover__content-inner,
.projects-gallery-link .project-item .hover__content-inner {
  top: 40%;
  left: 50%;
  bottom: auto;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.projects-standard .project-item .hover__content-inner a,
.projects-gallery-link .project-item .hover__content-inner a {
  display: block;
}

.projects-standard .project-item .hover__content-inner .dotted__line span,
.projects-standard .project-item .hover__content-inner .dotted__line span:before,
.projects-standard .project-item .hover__content-inner .dotted__line span:after,
.projects-gallery-link .project-item .hover__content-inner .dotted__line span,
.projects-gallery-link .project-item .hover__content-inner .dotted__line span:before,
.projects-gallery-link .project-item .hover__content-inner .dotted__line span:after {
  background-color: #222222;
}

.projects-gallery-link .project-item .hover__content-inner {
  top: 30%;
}

.projects-standard .project-item:hover .hover__content-inner,
.projects-gallery-link .project-item:hover .hover__content-inner {
  opacity: 1;
  top: 50%;
}

/* project single */
.projects-single .project__single-title {
  font-size: 30px;
  font-weight: 600;
}

.projects-single .divider__line {
  margin-bottom: 21px;
}

.projects-single .project__single-desc {
  margin-bottom: 40px;
}

.projects-single .project__single-desc p {
  margin-bottom: 27px;
}

.projects-single .project__single-desc p:last-of-type {
  margin-bottom: 0;
}

.project__meta-list {
  background-color: #f9f9f9;
  margin-bottom: 30px;
  padding: 30px;
}

.project__meta-list li {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #9e9e9e;
  line-height: 29px;
}

.project__meta-list li span {
  color: #222222;
  padding-right: 3px;
  margin-right: 2px;
  display: inline-block;
  position: relative;
}

.project__meta-list li span:after {
  content: ':';
  position: absolute;
  top: 0;
  right: 0;
}

.project__share {
  background-color: #f9f9f9;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
}

.project__share .project__share-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  line-height: 1;
}

.project__share .social__icons {
  display: inline-flex;
}

.project__share .social__icons a {
  line-height: 1;
  margin-right: 20px;
  color: #5d5d5d;
}

.project__share .social__icons a:last-child {
  margin-right: 0;
}

.project__share .social__icons a:hover {
  color: var(--primary-color);
}

.projects__nav {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #f5f5f5;
  padding-top: 50px;
}

.projects__nav .projects__prev,
.projects__nav .projects__next {
  position: relative;
}

.projects__nav .projects__prev .projects__nav-icon,
.projects__nav .projects__next .projects__nav-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.projects__nav .projects__prev:hover h6,
.projects__nav .projects__next:hover h6 {
  color: var(--primary-color);
}

.projects__nav .projects__next {
  text-align: right;
}

.projects__nav .projects__next .projects__nav-icon {
  right: 0;
  left: auto;
}

.projects__nav .projects__nav-icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #333333;
}

.projects__nav .projects__nav-icon:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.projects__nav .projects__nav-content span {
  font-family: "Droidserif italic";
  font-size: 13px;
  color: #b8b8b8;
  display: block;
  margin-bottom: 3px;
}

.projects__nav .projects__nav-content h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.projects__nav .projects__next .projects__nav-content {
  padding-right: 63px;
}

.projects__nav .projects__prev .projects__nav-content {
  padding-left: 63px;
}

.projects__nav .projects__nav-all {
  font-size: 23px;
  line-height: 50px;
  color: #616161;
  display: block;
  text-align: center;
}

.projects__nav .projects__nav-all:hover {
  color: var(--primary-color);
}

/* portfolio single images */
.projects-single-images .project__img img {
  margin-bottom: 30px;
}

/* portfolio single slider */
.projects-single-slider .project__img img {
  margin-bottom: 0;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev,
.projects-single-slider .carousel-arrows .owl-nav .owl-next {
  background-color: #ffffff;
  border-color: transparent;
  color: #333333;
  border-radius: 50%;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev:hover,
.projects-single-slider .carousel-arrows .owl-nav .owl-next:hover {
  background-color: #333333;
  color: #ffffff;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev:after,
.projects-single-slider .carousel-arrows .owl-nav .owl-next:after {
  display: none;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev {
  left: 30px;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-prev:before {
  content: "\f104";
}

.projects-single-slider .carousel-arrows .owl-nav .owl-next {
  right: 30px;
}

.projects-single-slider .carousel-arrows .owl-nav .owl-next:before {
  content: "\f105";
}

/* projects-masonry */
.projects-masonry .project__img,
.projects-pinterest .project__img {
  margin-bottom: 30px;
}

/* custom-grid */
.custom-grid-2col {
  column-count: 2;
  column-gap: 30px;
}

.custom-grid-3col {
  column-count: 3;
  column-gap: 30px;
}

.mix {
  display: none;
}

#filtered-items-wrap .project-hidden>.project-item {
  display: none;
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {

  .projects-gallery .project-item,
  .project-item {
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .project__share .social__icons a {
    margin-right: 15px;
  }

  .projects-single-slider .carousel-arrows .owl-nav .owl-prev {
    left: 15px;
  }

  .projects-single-slider .carousel-arrows .owl-nav .owl-next {
    right: 15px;
  }

  .projects-filter li {
    margin-right: 15px;
    margin-bottom: 10px;
  }

  .projects-masonry .project-item,
  .projects-masonry .project__img {
    max-width: 370px;
    margin: 0 auto 30px;
  }

  .projects-masonry .project-item img,
  .projects-masonry .project__img img {
    width: 100%;
  }

  .custom-grid-2col,
  .custom-grid-3col {
    column-count: 1;
  }

  .projects-pinterest .project__img {
    max-width: 370px;
    margin: 0 auto 30px;
  }
}

/* tablets */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .projects-grid .container {
    max-width: none;
  }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .projects-single .project__title {
    font-size: 24px;
  }

  .projects__nav {
    display: block;
  }

  .projects__nav .projects__nav-content h6 {
    font-size: 14px;
    line-height: 24px;
  }

  .custom-grid-3col {
    column-gap: 15px;
  }

  .custom-grid-3col .project__img {
    margin-bottom: 15px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects__nav .projects__nav-content h6 {
    font-size: 14px;
    line-height: 24px;
  }

  .custom-grid-3col {
    column-gap: 15px;
  }

  .custom-grid-3col .project__img {
    margin-bottom: 15px;
  }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .project__share .social__icons a {
    margin-right: 15px;
  }
}

/*--------------------
     Team
---------------------*/
.member {
  position: relative;
  margin-bottom: 30px;
}

.member .member__img {
  position: relative;
  overflow: hidden;
}

.member .member__img img {
  width: 100%;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.member .member__info {
  padding-top: 29px;
}

.member .member__info .member__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}

.member .member__info .member__desc {
  font-family: "Droidserif italic";
  font-size: 13px;
  margin-bottom: 7px;
}

.team-1 .member:hover .member__img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.team-2 .member .member__info .member__desc {
  margin-bottom: 0;
}

.team-2 .member .member__hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.team-2 .member .member__content {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.team-2 .member .member__content .member__content-inner {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}

.team-2 .member:hover .member__content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.team-3 .member {
  margin-bottom: 0;
}

.team-4 .member .member__info .member__desc {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  font-style: normal;
  margin-bottom: 21px;
}

.team-4 .member .member__img:before,
.team-4 .member .member__img:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
  background: #ffffff;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.team-4 .member .member__img:after {
  opacity: .6;
}

.team-4 .member .member__img:before,
.team-4 .member:hover .member__img:before {
  right: 0;
  top: 0;
}

.team-4 .member .member__img:after,
.team-4 .member:hover .member__img:after {
  left: 0;
  bottom: 0;
}

.team-4 .member:hover .member__img:before,
.team-4 .member:hover .member__img:after {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.team-5 .member .member__content .member__content-inner {
  bottom: auto;
  top: 30%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.team-5 .member:hover .member__content .member__content-inner {
  top: 50%;
  opacity: 1;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .member {
    max-width: 400px;
    margin: 0 auto 30px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-3 .member .member__hover {
    padding: 15px;
  }

  .team-3 .member .member__info .member__name {
    font-size: 16px;
  }
}

/*----------------------
     Testimonials
----------------------*/
.testimonial-item {
  background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* width: 450px; */
    max-width: 100%;
    flex-shrink: 0;
    text-align: left;
}

.testimonial1 .owl-nav {
    position: absolute; /* Butonların konumunu belirler */
    top: 50%; /* Dikeyde ortalar */
    width: 100%;
    transform: translateY(-50%); /* Dikeyde tam ortalamak için */
    display: flex;
    justify-content: space-between; /* Butonları sağa ve sola yaslar */
    padding: 0 20px; /* Kenarlardan boşluk bırakır */
    pointer-events: none; /* Bu div'in tıklanabilirliğini kaldırır */
}

#testimonial1 .owl-nav button {
    pointer-events: all;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#testimonial1 .owl-nav button:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial__header {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-bottom: 20px;
}
.testimonial-item .testimonial__thumb {
  width: 70px;
  height: 70px;
  line-height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 29px;
}

.testimonial-item .testimonial__thumb img {
  max-width: 100%;
  align-items: left;
}

.testimonial-item .testimonial__icon {
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-bottom: 25px;
}

.testimonial-item .testimonial__icon:before {
  font-family: 'york';
  content: "\e903";
  font-size: 30px;
  color: var(--primary-color);
  display: inline-block;
}

.testimonial-item .testimonial__content {
  position: relative;
}

.testimonial-item .testimonial__desc {
  font-size: 23px;
  line-height: 35px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
  height: 300px;
}

.testimonial-item .testimonial__meta {
  position: relative;
  text-align: left;
}

.testimonial-item .testimonial__meta .testimonial__meta-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.testimonial-item .testimonial__meta .testimonial__meta-desc {
  font-family: "Droidserif italic";
  font-size: 13px;
  font-style: italic;
  color: #616161;
  margin-bottom: 0;
}

/*.testimonial-1 .testimonial-item .testimonial__content {
  padding: 0 80px;
}*/

.testimonial-2 .testimonial-item {
  background-color: #f9f9f9;
  padding: 40px 35px;
  border-radius: 2px;
}

.testimonial-2 .testimonial-item .testimonial__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.testimonial-2 .testimonial-item .testimonial__icon {
  margin-bottom: 0;
}

.testimonial-2 .testimonial-item .testimonial__meta-desc {
  margin-bottom: 17px;
}

.testimonial-2 .owl-dots {
  margin-top: 48px;
}

.testimonial-white-text {
  color: #ffffff;
}

.testimonial-white-text .heading .heading__title,
.testimonial-white-text .testimonial-item .testimonial__desc,
.testimonial-white-text .testimonial-item .testimonial__meta .testimonial__meta-title {
  color: #ffffff;
}

.testimonial-white-text .testimonial-item .testimonial__meta .testimonial__meta-desc {
  color: #f9f9f9;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .testimonial-1 .testimonial-item .testimonial__content {
    padding: 0 30px;
  }

  .testimonial-1 .testimonial-item .testimonial__desc {
    font-size: 17px;
    line-height: 27px;
  }
}

/* Yazar bilgilerinin yatayda hizalanması */
.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Yazar fotoğrafının yuvarlak olması ve boyutları */
.author-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Yuvarlak profil fotoğrafı için */
    margin-right: 15px; /* Fotoğraf ile metin arasına boşluk */
}

/* Yorum metninin altında, isim ve başlıkların üstünde boşluk oluşturur */
.testimonial__content {
    margin-top: 20px;
    margin-bottom: 20px;
}
.carousel-arrows .owl-nav {
    position: absolute;
    width: calc(100% + 100px); /* Kapsayıcıdan daha geniş bir alan kaplasın */
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}
.errormessage {
  color: var(--primary-color);
}

.call-to-form-container .mfp-close {
  color: #fff;
}

/*-------------------------
    Call To Action
---------------------------*/
.cta__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 9px;
}

.cta__desc {
  font-family: "Droidserif italic";
  font-size: 16px;
  color: #616161;
  line-height: 1;
  margin-bottom: 0;
}

.cta-4 {
  padding: 125px 0;
}

.cta-4 .cta__title {
  font-size: 70px;
  color: #ffffff;
}

.cta-4 .cta__desc {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .cta__desc {
    margin-bottom: 25px;
  }

  .cta-4 .cta__title {
    font-size: 24px;
  }
}

/*----------------------- 
    Clients
-----------------------*/
.clients .client {
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.clients .client>a {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}

.clients .client img {
  display: inline-block;
  width: auto !important;
  max-width: 100%;
}

.clients-3 .clients-row .client {
  padding: 25px 0;
}

.clients-3 .clients-row .client:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 30px);
  background-color: rgba(206, 206, 206, 0.3);
}

.clients-3 .clients-row .client:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  height: 1px;
  background-color: rgba(206, 206, 206, 0.3);
}

.clients-3 .clients-row .client:last-child:before {
  display: none;
}

.clients-3 .clients-row:last-child .client {
  margin-bottom: 0;
}

.clients-3 .clients-row:last-child .client:after {
  display: none;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {

  .clients-3 .clients-row .client:before,
  .clients-3 .clients-row .client:after {
    display: none;
  }
}

/*--------------------
     Blog
-------------------*/
.blog-item {
  position: relative;
  margin-bottom: 30px;
  width:100%; 
}

.blog-item .blog__img {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
}

.blog-item .blog__img:before,
.blog-item .blog__img:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
  background: #ffffff;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.blog-item .blog__img:after {
  opacity: .6;
}

.blog-item .blog__img:before,
.blog-item .blog__img:hover:before {
  right: 0;
  top: 0;
}

.blog-item .blog__img:after,
.blog-item .blog__img:hover:after {
  left: 0;
  bottom: 0;
}

.blog-item .blog__img:hover:before,
.blog-item .blog__img:hover:after {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.blog-item .blog__meta .blog__meta-cat {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 0 7px;
  margin-right: 6px;
  margin-bottom: 7px;
}

.blog-item .blog__meta .blog__meta-cat a {
  position: relative;
  color: #ffffff;
  line-height: 19px;
  padding-right: 5px;
}

.blog-item .blog__meta .blog__meta-cat a:hover {
  color: #222222;
}

.blog-item .blog__meta .blog__meta-cat a:after {
  content: ',';
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
}

.blog-item .blog__meta .blog__meta-cat a:last-child {
  padding: 0;
}

.blog-item .blog__meta .blog__meta-cat a:last-child:after {
  display: none;
}

.blog-item .blog__meta .blog__meta-date {
  font-size: 13px;
  line-height: 1;
  display: inline-block;
  color: #616161;
  font-weight: 600;
}

.blog-item .blog__title {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 18px;
}

.blog-item .blog__title a {
  color: #222222;
}

.blog-item .blog__title a:hover {
  color: var(--primary-color);
}

.blog-item .btn__link {
  line-height: 1;
  width: auto;
  height: auto;
  border: none;
}

/* Blog Standard */
.blog-standard .blog-item .blog__title {
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
}

.blog-standard .blog-item .blog__desc {
  margin-bottom: 22px;
}

/* Blog Single */
.blog-single-item .blog__title {
  font-size: 22px;
  font-weight: 700;
}

.blog-single-item .blog__desc {
  margin-bottom: 32px;
}

.blog-single-item .blog__desc p {
  line-height: 23px;
  margin-bottom: 20px;
}

.blog-widget {
  padding-top: 50px;
  margin-bottom: 50px;
  border-top: 2px solid #f5f5f5;
}

.blog__widget-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
}

.related-posts {
  margin-bottom: 8px;
}

.blog-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 30px;
  margin-bottom: 50px;
}

.blog-share .blog__share-title {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 0;
}

.blog-share .social__icons a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  transition: .3s linear;
}

.blog-share .social__icons a:hover {
  background-color: #282828;
  color: #ffffff;
}

.blog-nav {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #f5f5f5;
  padding-top: 50px;
}

.blog-nav .blog__prev,
.blog-nav .blog__next {
  position: relative;
  min-height: 66px;
}

.blog-nav .blog__prev .blog__nav-img,
.blog-nav .blog__next .blog__nav-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 66px;
}

.blog-nav .blog__prev:hover h6,
.blog-nav .blog__next:hover h6 {
  color: var(--primary-color);
}

.blog-nav .blog__next {
  text-align: right;
}

.blog-nav .blog__next .blog__nav-img {
  right: 0;
  left: auto;
}

.blog-nav .blog__nav-img {
  width: 100px;
  height: 66px;
}

.blog-nav .blog__nav-img img {
  width: 100%;
  height: 100%;
}

.blog-nav .blog__nav-content span {
  font-family: "Droidserif italic";
  font-size: 13px;
  color: #b8b8b8;
  display: block;
  margin-bottom: 1px;
}

.blog-nav .blog__nav-content h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-nav .blog__next .blog__nav-content {
  padding-right: 120px;
}

.blog-nav .blog__prev .blog__nav-content {
  padding-left: 120px;
}

.blog-author {
  display: flex;
}

.blog-author .blog__author-avatar {
  width: 90px;
  height: 90px;
  min-width: 90px;
  margin-right: 30px;
}

.blog-author .blog__author-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 22px;
}

.blog-author .blog__author-bio {
  line-height: 23px;
  margin-bottom: 20px;
}

.blog-author .social__icons a {
  font-size: 15px;
  margin-right: 27px;
  color: #5d5d5d;
}

.blog-author .social__icons a:hover {
  color: #282828;
}

.blog-author .social__icons a:last-child {
  margin-right: 0;
}

.comments-list .comment__item {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 2px solid #f5f5f5;
  margin-bottom: 30px;
}

.comments-list .comment__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.comments-list .comment__item .comment__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.comments-list .comment__item .comment__content {
  padding-left: 90px;
}

.comments-list .comment__item .comment__content .comment__author {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 11px;
}

.comments-list .comment__item .comment__content .comment__date {
  font-family: "Droidserif italic";
  color: #616161;
  font-size: 12px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.comments-list .comment__item .comment__content .comment__desc {
  margin-bottom: 6px;
}

.comments-list .comment__item .comment__content .comment__reply {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
  display: inline-block;
}

.comments-list .comment__item .comment__content .comment__reply:hover {
  color: #222222;
}

.comments-list .comment__item .nested__comment {
  border-top: 2px solid #f5f5f5;
  padding: 30px 0 0 0;
  margin: 30px 0 0 90px;
}

.blog-comments-form .form-group {
  margin-bottom: 30px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .blog-item .blog__title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .blog-share {
    padding: 15px;
  }

  .blog-share .social__icons a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }

  .comments-list .comment__item .comment__avatar {
    width: 40px;
    height: 40px;
  }

  .comments-list .comment__item .comment__content {
    padding-left: 60px;
  }

  .blog-nav {
    display: block;
  }

  .blog-nav .blog__prev {
    margin-bottom: 20px;
  }
}

/*----------------------------
    Contact
----------------------------*/
.contact .inner-padding {
  padding: 100px 110px 110px;
}

.contact .contact__banner {
  height: 100%;
  min-height: 500px;
}

.contact .contact__banner .heading__shape {
  margin-bottom: 37px;
}

.contact-panel {
  margin-bottom: 30px;
}

.contact-panel .contact__panel-title {
  font-size: 22px;
  line-height: 1;
}

.contact-panel .contact__panel-desc {
  line-height: 22px;
  margin-bottom: 21px;
}

.contact-panel .btn__link {
  width: auto;
  height: auto;
  line-height: 1;
  color: var(--primary-color);
  margin-top: 18px;
}

.contact-panel .btn__link:hover {
  color: #222222;
}

/* Mobile Phones*/
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .contact .inner-padding {
    padding: 50px 30px;
  }

  .contact .contact__banner .heading .heading__title {
    font-size: 22px;
    line-height: 32px;
  }

  .contact .contact__banner .heading .heading__shape {
    margin-bottom: 20px;
  }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .contact .inner-padding {
    padding: 50px 30px;
  }

  .contact .contact__banner {
    height: 400px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact .inner-padding {
    padding: 100px 30px 110px;
  }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact .inner-padding {
    padding: 100px 40px 110px;
  }
}

/*-----------------------
     Pricing
----------------------*/
.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 614px;
}

.pricing-item {
  position: relative;
  padding: 70px 50px 50px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 6px 0px rgba(40, 40, 40, 0.1);
}

.pricing-item:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.pricing-item .pricing__header {
  margin-bottom: 66px;
}

.pricing-item .pricing__title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 28px;
}

.pricing-item .pricing__price {
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  color: #222222;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}

.pricing-item .pricing__currency {
  font-size: 28px;
}

.pricing-item .pricing__time {
  font-size: 13px;
}

.pricing-item .pricing__desc {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 0;
}

.pricing-item .pricing__list {
  padding: 25px 0;
  border-top: 2px solid #f5f5f5;
}

.pricing-item .pricing__list li {
  position: relative;
  line-height: 40px;
  text-transform: capitalize;
}

.pricing-item .pricing__list li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  display: inline-block;
  background-color: #e5e4e4;
}

.pricing-item .pricing__list li:last-child:after {
  display: none;
}

.pricing-item .pricing__label {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #222222;
  color: #ffffff;
  line-height: 23px;
  font-size: 13px;
  font-weight: 600;
  padding: 0 8px;
}

.pricing-item .btn {
  width: 190px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .pricing-item {
    margin-bottom: 30px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-item {
    padding: 50px 10px 30px;
  }

  .pricing-item .pricing__header {
    margin-bottom: 30px;
  }

  .pricing-item .pricing__title {
    margin-bottom: 15px;
  }

  .pricing-item .pricing__price {
    font-size: 50px;
  }

  .pricing-item .pricing__label {
    top: 15px;
    left: 15px;
  }
}

/*---------------------------
    Counters
--------------------------*/
.counters {
  padding: 60px 0;
}

.counter-item {
  text-align: center;
}

.counter-item .counter {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.counter-item .counter__divider {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #4e4e4e;
  margin-bottom: 10px;
}

.counter-item .counter__desc {
  font-size: 13px;
  line-height: 1;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.counters-2 .counter,
.counters-2 .counter__desc {
  color: #ffffff;
}

.counters-2 .counter-item .counter__divider {
  background-color: #ffffff;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .counter-item {
    margin-bottom: 30px;
  }
}

/*-------------------------
    process 
--------------------------*/
.process-item {
  padding: 100px 55px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.process-item:hover {
  background-color: var(--primary-color) !important;
}

.process-item:hover .process__number,
.process-item:hover .process__title,
.process-item:hover .process__desc {
  color: #ffffff;
}

.process-item:hover .dotted__line span {
  background-color: #ffffff;
}

.process-item:hover .dotted__line span:before,
.process-item:hover .dotted__line span:after {
  background-color: #ffffff;
}

.process-item .process__number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #222222;
  margin-bottom: 27px;
  transition: .3s ease;
}

.process-item .process__title {
  font-size: 18px;
  font-weight: 600;
}

.process-item .process__desc {
  margin-bottom: 27px;
}

.process-item:hover .process__number {
  transform: translateY(-4px);
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .process-item {
    padding: 50px 30px;
  }
}

/*-----------------------
    Pie Charts
------------------------*/
.piechart-item {
  text-align: center;
  margin-bottom: 30px;
}

.piechart-item-data .percentage {
  position: absolute;
  width: 144px;
  height: 144px;
  line-height: 144px;
  text-align: center;
  border-radius: 50%;
  border: 3px solid #ebebeb;
  margin: 11px;
}

.piechart-item-data .percentage i {
  font-size: 64px;
  color: var(--primary-color);
  line-height: 144px;
}

.piechart-item-data span {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: var(--primary-color);
  font-weight: 600;
}

.piechart__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 22px;
  margin-bottom: 0;
}

/*-------------------------
    Timeline
-------------------------*/
.timeline-wrap {
  position: relative;
}

.timeline-wrap:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 85px;
  width: 2px;
  height: 100%;
  background-color: #cecece;
}

.timeline-wrap:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 85px;
  width: 2px;
  height: 20px;
  background-color: #cecece;
}

.timeline__item {
  position: relative;
  margin-bottom: 61px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item .timeline__item-date {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--primary-color);
}

.timeline__item .timeline__item-content {
  padding-left: 121px;
}

.timeline__item .timeline__item-title {
  position: relative;
  color: #282828;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
}

.timeline__item .timeline__item-title:before {
  position: absolute;
  top: 0;
  left: -42px;
  font-family: fontawesome;
  content: "\f017";
  font-size: 16px;
  font-weight: 400;
  width: 30px;
  height: 25px;
  line-height: 25px;
  color: #282828;
  background: #ffffff;
}

.timeline__item .timeline__item-desc {
  line-height: 23px;
  margin-bottom: 0;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .timeline__item {
    margin-bottom: 40px;
  }

  .timeline__item .timeline__item-title {
    font-size: 16px;
  }

  .timeline__item .timeline__item-desc {
    font-size: 14px;
  }
}

/*---------------------
    Newsletter
---------------------*/
.newsletter {
  padding: 125px 0;
}

.newsletter .newsletter__title {
  font-size: 70px;
  color: #ffffff;
}

.newsletter .newsletter__desc {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
}

.newsletter__form {
  justify-content: center;
}

.newsletter__form .form-control {
  width: 370px;
  height: 50px;
  border: 2px solid #ffffff;
  padding-left: 20px;
  color: #ffffff;
  margin-right: 30px;
}

.newsletter__form .form-control:focus {
  border-color: var(--primary-color);
}

.newsletter__form .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.newsletter__form .form-control:-moz-placeholder {
  color: #ffffff;
}

.newsletter__form .form-control::-moz-placeholder {
  color: #ffffff;
}

.newsletter__form .form-control:-ms-input-placeholder {
  color: #ffffff;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .newsletter .newsletter__title {
    font-size: 30px;
  }

  .newsletter__form .form-control {
    margin: 0 auto 30px;
  }
}

/*------------------------
    Shop
--------------------------*/
.product-item {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.product-item .product__img {
  overflow: hidden;
  position: relative;
}

.product-item .product__img img {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.product-item .product__content {
  padding: 35px 10px 40px;
}

.product-item .product__action {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.product-item .product__action .btn {
  width: 100%;
}

.product-item:hover .product__action {
  bottom: 0;
}

.product-item:hover .product__img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.product__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}

.product__title a {
  color: #282828;
}

.product__title a:hover {
  color: var(--primary-color);
}

.product__price {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}

.list-view {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.list-view .product-item {
  display: flex;
  border: 1px solid #eee;
}

.list-view .product-item .product__img {
  position: static;
  flex-basis: 50%;
}

.list-view .product-item .product__content {
  padding: 20px;
  text-align: left;
}

.list-view .product-item .product__action {
  bottom: 20px;
  left: calc(50% + 20px);
  width: auto;
}

.list-view .product-item .product__action .btn {
  width: 170px;
}

/* Shop Single */
.shop-single .product__single-img {
  margin-bottom: 45px;
}

.shop-single .product__title {
  font-weight: 700;
}

.shop-single .product__rating {
  margin-right: 37px;
}

.shop-single .product__rating i {
  font-size: 15px;
}

.shop-single .product__rating i.active {
  color: var(--primary-color);
}

.product__meta {
  display: flex;
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 24px;
}

.product__meta-review {
  font-size: 14px;
}

.product__meta-review a {
  position: relative;
  color: #545454;
  padding-left: 10px;
}

.product__meta-review a:hover {
  color: var(--primary-color);
}

.product__meta-review a:before {
  content: '/';
  position: absolute;
  top: 0;
  left: 0;
}

.product__desc {
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.product__desc p {
  line-height: 22px;
}

.product__details {
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.product__details li {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #959595;
  line-height: 26px;
}

.product__details li span {
  color: var(--primary-color);
  padding-right: 4px;
}

.product__details-title,
.product__quantity-title,
.product__share-title,
.related__products-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.product__form-wrap {
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 22px;
  margin-bottom: 30px;
}

.product__form-wrap form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product__quantity-title {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 10px;
}

.quantity__input-wrap {
  display: inline-flex;
}

.quantity__input-wrap i {
  width: 25px;
  height: 25px;
  border: 1px solid #eeeeee;
  text-align: center;
  color: #222222;
  display: inline-block;
  cursor: pointer;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.qty-input {
  background-color: transparent;
  width: 30px;
  height: 25px;
  border: 1px solid #eeeeee;
  text-align: center;
  color: #222222;
  font-size: 14px;
  padding: 0;
  margin: 0 5px;
  border-radius: 2px;
  text-align: center;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.product__action-btns .btn {
  margin-right: 17px;
}

.product__action-btns .btn:last-child {
  margin-right: 0;
}

.product__share {
  margin-bottom: 70px;
}

.product__share a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  background-color: var(--primary-color);
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.product__share a:hover {
  background-color: #282828;
  color: #ffffff;
}

.product__tabs {
  border: 1px solid #eeeeee;
  margin-bottom: 50px;
}

.product__tabs .tab-content {
  padding: 18px 20px;
}

.product__tabs .tab-content p {
  line-height: 22px;
}

.product__tabs .tab-content p :last-child {
  margin-bottom: 0;
}

.product__tabs .nav-tabs {
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.product__tabs .nav-tabs .nav__link {
  padding: 20px 16px;
  margin-right: 0;
  border-right: 1px solid #eeeeee;
  margin-bottom: -1px;
}

.product__tabs .nav-tabs .nav__link:last-of-type {
  border-right: 0;
}

.product__tabs .nav-tabs .nav__link.active {
  background-color: #ffffff;
  border-bottom-color: white;
}

.product__tabs .reviews__form .form-control {
  border: 1px solid #e6e6e6;
  height: 40px;
  padding: 0 10px;
}

.product__tabs .reviews__form .form-control:focus {
  border-color: var(--primary-color);
}

.product__tabs .reviews__form label {
  font-weight: 700;
}

.product__tabs .reviews__form textarea.form-control {
  min-height: 100px;
}

/* Shop Filtering */
.filtering-options {
  display: flex;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 1px;
  margin-bottom: 30px;
}

.filtering-options .select-box {
  position: relative;
  display: inline-block;
}

.filtering-options .select-box:before {
  content: "\f107";
  font-family: fontAwesome;
  position: absolute;
  top: 5px;
  right: 10px;
}

.filtering-options .select-box select {
  padding: 0 20px 0 10px;
  height: 30px;
  border: 1px solid #eeeeee;
  min-width: 128px;
  color: #545454;
  font-size: 13px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.filtering-options .sort-box {
  margin-right: 30px;
}

.filtering-options .sort-box:last-of-type {
  margin-right: 0;
}

.filter-option-sorting {
  display: flex;
  align-items: center;
}

.filter-option-view span,
.sort-box span {
  font-family: "Montserrat", sans-serif;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-right: 8px;
}

.filter-option-view a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #eeeeee;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: #545454;
  margin-right: 8px;
}

.filter-option-view a:last-child {
  margin-right: 0;
}

.filter-option-view a.active,
.filter-option-view a:hover {
  color: var(--primary-color);
}

/* shop-categories */
.shop__cat-item {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  margin-bottom: 30px;
}

.shop__cat-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(27, 26, 26, 0.25);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.shop__cat-item .btn {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shop__cat-item img {
  width: 100%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.shop__cat-item:hover:before {
  background-color: rgba(27, 26, 26, 0.75);
}

.shop__cat-item:hover .btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.shop__cat-item:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .product-item {
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .product-item img {
    width: 100%;
  }

  .product-item .product__content {
    padding: 15px 10px;
  }

  .list-view .product-item {
    max-width: none;
  }

  .list-view .product-item .product__action {
    left: calc(50% + 10px);
    bottom: 10px;
  }

  .list-view .product-item .product__action .btn {
    width: 140px;
    font-size: 11px;
    height: 35px;
    line-height: 33px;
    overflow: hidden;
  }

  .list-view .product-item .product__content {
    padding: 10px 15px;
  }

  .list-view .product-item .product__title {
    font-size: 15px;
    line-height: 1.1;
  }

  .shop__cat-item .btn {
    bottom: 20px;
    left: 20px;
    width: 130px;
    height: 40px;
    line-height: 38px;
  }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .filtering-options {
    justify-content: center;
  }

  .filtering-options .sort-box,
  .filter-option-sorting {
    margin-right: 15px;
  }

  .filter-option-view span,
  .sort-box span {
    display: block;
    margin-bottom: 5px;
  }

  .product__form-wrap form {
    display: block;
  }

  .product__action-btns .btn {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .product__quantity-title {
    margin-bottom: 14px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filtering-options {
    display: block;
    text-align: center;
    padding: 15px;
  }

  .filtering-options .sort-box {
    margin-right: 15px;
  }

  .filtering-options .select-box {
    margin-left: 0;
  }

  .filter-option-sorting {
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .product__form-wrap form {
    display: block;
  }

  .product__action-btns .btn {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .product__quantity-title {
    margin-bottom: 14px;
  }
}

/* Large Size Devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product__form-wrap form {
    display: block;
  }

  .product__action-btns .btn {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .product__quantity-title {
    margin-bottom: 10px;
  }

  .shop__cat-item .btn {
    bottom: 20px;
    left: 20px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 440px) {
  .filtering-options {
    display: block;
  }

  .filtering-options .sort-box,
  .filter-option-sorting {
    margin: 0 0 10px 0;
    display: block;
  }

  .filtering-options .select-box {
    display: block;
  }

  .filtering-options .select-box select {
    width: 100%;
    height: 35px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 350px) {
  .list-view .product-item .product__action .btn {
    width: 40px;
    font-size: 17px;
    padding: 0 11px;
  }
}

/*--------------------
    Sidebar
----------------------*/
.sidebar-wide {
  padding: 50px 50px 40px;
  background-color: #f9f9f9;
  border-radius: 1px;
}

.widget {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 2px solid #f5f5f5;
}

.widget:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.widget .widget__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1;
  margin-bottom: 30px;
}

.widget-search {
  padding-bottom: 0;
  border-bottom: 0;
}

.widget-search .widget__form-search {
  position: relative;
}

.widget-search .widget__form-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  color: var(--primary-color);
}

.widget-about img {
  margin-bottom: 26px;
}

.widget-about p {
  margin-bottom: 11px;
}

.widget-about .btn__link {
  line-height: 1;
  width: auto;
  height: auto;
  border: none;
  color: var(--primary-color);
}

.widget-about .btn__link:hover {
  color: #282828;
}

.widget-categories li a {
  display: block;
  color: #7f7f7f;
  line-height: 31px;
}

.widget-categories li a:hover {
  color: var(--primary-color);
}

.widget-tags ul {
  display: flex;
  flex-wrap: wrap;
}

.widget-tags ul li a {
  display: block;
  font-size: 14px;
  color: #545454;
  line-height: 1;
  text-transform: capitalize;
  padding: 7px 9px;
  border: 1px solid #ededed;
  margin: 0 10px 10px 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.widget-tags ul li a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

/*widget products*/
.widget-poducts .widget-product-item {
  display: flex;
  margin-bottom: 30px;
}

.widget-poducts .widget-product-item:last-of-type {
  margin-bottom: 0;
}

.widget-poducts .widget-product-item .widget__product-title {
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 0;
  padding-top: 6px;
}

.widget-poducts .widget-product-item .widget__product-title a {
  color: #282828;
}

.widget-poducts .widget-product-item:hover .widget__product-title a {
  color: var(--primary-color);
}

.widget-poducts .widget-product-item .widget__product-img {
  margin-right: 20px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

.widget-poducts .widget-product-item .widget__product-img img {
  width: 100%;
  height: 100%;
}

.widget-poducts .widget-product-item .widget__product-price {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

/*widget posts*/
.widget-posts .widget-post-item {
  display: flex;
  margin-bottom: 28px;
}

.widget-posts .widget-post-item:last-of-type {
  margin-bottom: 0;
}

.widget-posts .widget-post-item .widget__post-title {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
}

.widget-posts .widget-post-item .widget__post-title a {
  color: #282828;
}

.widget-posts .widget-post-item:hover .widget__post-title a {
  color: var(--primary-color);
}

.widget-posts .widget-post-item .widget__post-img {
  margin-right: 20px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

.widget-posts .widget-post-item .widget__post-img img {
  width: 100%;
  height: 100%;
}

.widget-posts .widget-post-item .widget__post-date {
  line-height: 1;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 6px;
}

/* Widget Filter */
.ui-slider {
  position: relative;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-widget.ui-widget-content {
  border: none;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 10px;
  height: 10px;
  background-color: #222222;
  border-radius: 50%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.widget-filter .ui-slider {
  background-color: rgba(34, 34, 34, 0.06);
  border-radius: 0;
  height: 4px;
  margin-bottom: 18px;
}

.widget-filter .ui-slider-range {
  height: 4px;
  background-color: var(--primary-color);
}

.widget-filter .price-output {
  line-height: 1;
  margin-bottom: 26px;
}

.widget-filter label {
  color: #545454;
  font-size: 15px;
  margin-bottom: 0;
}

.widget-filter input {
  background-color: transparent;
  color: var(--primary-color);
  font-size: 15px;
  border: none;
}

.widget-filter .btn {
  width: 128px;
  height: 42px;
  line-height: 40px;
  font-weight: 700;
  color: #222222;
}

/*----------------------
    Countdown
-----------------------*/
.countdown-row {
  display: flex;
}

.countdown-section {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.countdown-section:last-of-type {
  display: none;
}

.countdown-amount {
  font-family: "Montserrat", sans-serif;
  color: #222222;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  display: block;
  padding-bottom: 14px;
  margin-bottom: 19px;
}

.countdown-amount:after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  width: 20px;
  height: 2px;
  transform: translateX(-50%);
  background-color: #222222;
}

.countdown-period {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .countdown-section {
    padding: 0 5px;
  }

  .countdown-amount {
    font-size: 30px;
    padding-bottom: 5px;
  }

  .countdown-amount:after {
    top: 40px;
  }
}

/*------------------------
    Utilities Pages
-------------------------*/
/*----------------------
    Page 404
-----------------------*/
.page-404 {
  padding: 170px 0;
}

.page-404 .divider__line {
  margin-bottom: 28px;
}

.page-404 .heading__title {
  font-size: 150px;
  line-height: 1;
  margin-bottom: 20px;
}

.page-404 .heading__desc {
  line-height: 24px;
  margin-bottom: 43px;
}

/*----------------------
    Page maintenance
-----------------------*/
.page-maintenance {
  padding: 170px 0 150px;
}

.page-maintenance .divider__line {
  margin-bottom: 38px;
}

.page-maintenance .heading__title {
  font-size: 100px;
  line-height: 1;
  margin-bottom: 30px;
}

.page-maintenance .heading__desc {
  line-height: 24px;
  margin-bottom: 35px;
}

.page-maintenance.skills .progress__heading .progress__title {
  margin-bottom: 0;
  text-transform: capitalize;
}

/*----------------------
    Page Soon
-----------------------*/
.page-soon {
  padding: 170px 0;
}

.page-soon .divider__line {
  margin-bottom: 38px;
}

.page-soon .heading__title {
  font-size: 100px;
  line-height: 1;
  margin-bottom: 30px;
}

.page-soon .heading__desc {
  line-height: 24px;
  margin-bottom: 35px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .page-404 {
    padding: 100px 0;
  }

  .page-404 .divider__line {
    margin-bottom: 18px;
  }

  .page-404 .heading__title {
    font-size: 100px;
    margin-bottom: 10px;
  }

  .page-404 .heading__desc {
    font-size: 15px;
    margin-bottom: 33px;
  }

  .page-maintenance,
  .page-soon {
    padding: 100px 0;
  }

  .page-maintenance .divider__line,
  .page-soon .divider__line {
    margin-bottom: 28px;
  }

  .page-maintenance .heading__title,
  .page-soon .heading__title {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .page-maintenance .heading__desc,
  .page-soon .heading__desc {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {

  .page-soon .heading__title,
  .page-maintenance .heading__title {
    font-size: 70px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 400px) {

  .page-soon .heading__title,
  .page-maintenance .heading__title {
    font-size: 30px;
  }
}

/*--------------------------
      Landing
--------------------------*/
.landing-wrapper .header-transparent .module__btn-contact {
  width: 152px;
  height: 40px;
  line-height: 38px;
}

.landing-wrapper .navbar .nav__item .nav__item-link:before {
  display: none;
}

.header-transparent+.landing-hero {
  margin-top: -100px;
}

.landing-wrapper>section {
  position: relative;
  z-index: 2;
}

/* landing Hero */
.landing-hero {
  padding: 223px 0;
}

.landing-hero .heading__shape {
  margin-bottom: 14px;
}

.landing__hero-title {
  font-size: 70px;
  color: #ffffff;
  margin-bottom: 26px;
}

.landing__hero-desc {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
}

.landing-portfolio .portfolio-item {
  margin-bottom: 50px;
}

.landing-portfolio .portfolio__item-img {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: 0px 1px 73px 0px rgba(40, 40, 40, 0.1);
  margin-bottom: 24px;
}

.landing-portfolio .portfolio__item-img img {
  width: 100%;
}

.landing-portfolio .portfolio-item:hover .portfolio__item-img {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

.landing-portfolio .portfolio-item .portfolio__item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio__item-title {
  color: var(--primary-color);
}

.landing-wrapper .fancybox-item {
  margin-bottom: 30px;
  padding-top: 10px;
}

.landing-wrapper .carousel-arrows .owl-dots {
  bottom: 0;
}

/* landing fancybox*/
/*  landing carousel */
.landing-carousel .owl-item {
  padding: 30px;
}

.landing-carousel .owl-item .slide-item {
  box-shadow: 0px 1px 23px 0px rgba(40, 40, 40, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.landing-carousel .carousel-arrows .owl-nav .owl-prev {
  left: 23%;
}

.landing-carousel .carousel-arrows .owl-nav .owl-next {
  right: 23%;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .landing-hero {
    padding: 100px 0;
  }

  .header-transparent+.landing-hero {
    margin-top: 0;
  }

  .landing__hero-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .landing-carousel .owl-item {
    padding: 30px 50px;
  }

  .landing-carousel .carousel-arrows .owl-nav .owl-prev {
    left: 0;
  }

  .landing-carousel .carousel-arrows .owl-nav .owl-next {
    right: 0;
  }
}

/* Medium Size Devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .landing-hero {
    padding: 120px 0;
  }

  .header-transparent+.landing-hero {
    margin-top: 0;
  }

  .landing__hero-title {
    font-size: 40px;
  }

  .landing-carousel .owl-item {
    padding: 30px 50px;
  }

  .landing-carousel .carousel-arrows .owl-nav .owl-prev {
    left: 0;
  }

  .landing-carousel .carousel-arrows .owl-nav .owl-next {
    right: 0;
  }
}

/* Mobile Phones */
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .landing-carousel .owl-item {
    padding: 20px 30px;
  }

  .landing-carousel .carousel-arrows .owl-nav .owl-prev,
  .landing-carousel .carousel-arrows .owl-nav .owl-next {
    top: 100%;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .landing-carousel .carousel-arrows .owl-nav .owl-prev {
    left: 33%;
  }

  .landing-carousel .carousel-arrows .owl-nav .owl-next {
    right: 33%;
  }
}

.mfp-content div#call-to-form {
  display: block !important;
}

/* Genel blog bölümü düzeni için Stajyer kısmı*/
.blog-grid .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.blog-grid .col-lg-4 {
    padding-left: 5px;  
    padding-right: 5px; 
    margin-bottom: 30px;
}

/* Yeni blog kartı tasarımı için */
.blog-card-modern {
    background-color: #fff;
    border-radius: 20px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
    position: relative; 
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    height: 250px; 
    overflow: hidden; 
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease; 

}

.blog-card-img img:hover {
    transform: scale(1.05); /
}

.blog-card-tag {
    background-color: #fff;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 15px; 
    left: 15px; 
    z-index: 3; 
    /* Özel renkler için */
    /* background-color: #ff6b6b; color: #fff; */
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow:1 
}

.blog-card-title {
    color: #282828;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-card-title a:hover{
   color: var(--primary-color);
}

.blog-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

/* Header kısmında iconların yazıların yanına gelmesi için Stajyer Selin */
.nav__item-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px; 
  white-space: nowrap; 
}

.nav__item-link i {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

#call-to-form {
    scroll-margin-top: 100px;
}



.gradient-icon {
    background-clip: text;
    -webkit-background-clip: text;
    color: var(--primary-color);
}
.contact-cards {
  margin-bottom: 50px; 
}
.contact-cards .card {
   display: flex;
  flex-direction: column;
  /* `min-height` burada en uzun içeriğe göre ayarlanabilir. */
  min-height: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-cards .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.form-control {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 12px 15px;
  box-shadow: 0 4px 6px rgba(58, 9, 164, 0.1); 
}


.form-control:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-color: #c01f21; 
}
.bg-gray .inner-padding {
  padding-top: 30px !important;  
  padding-bottom: 30px !important; 
}

.separator-gradient {
    width: 100%; 
    height: 4px; 
    background: linear-gradient(
        to right,
        #0000FF,    
        #4169E1,   
        #FF0000,    
        #E14B4B,    
        #8B0000    
    );
    margin-top: 200px; 
    margin-bottom: 50px; 
}
.bg-img video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}

.bg-overlay {
    z-index: 1; 
}

.section-heading {
  font-weight: 600;
  color: #333;
}

/*-----------------------
    Services-NavBar
-----------------------*/
.services {
  padding: 80px 0; 
  background-color: #f7f9fc; 
}

.services-card {
  background-color: #ffffff; 
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
  transition: all 0.3s ease-in-out;
  border: 1px solid #e9e9f2; 
}
.services-card .services-card-style {
  padding: 40px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.services-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.services-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.services-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-card ul li {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.services-card ul li::before {
  content: "✓"; 
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
}
.services-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.services-icon i {
  font-size: 30px;
  background-clip: text; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #3bb29c; /* Fallback renk, genellikle görünmez ama önemli */
}
.services-icon.icon-green {
  background: linear-gradient(to bottom right, #e2f5ee, #d1efe4); 
}
.services-icon.icon-green i {
  background: linear-gradient(to right, #5ed6b7, #3bb29c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-icon.icon-blue {
  background: linear-gradient(to bottom right, #e0f2ff, #cce0ff); 
}
.services-icon.icon-blue i {
  background: linear-gradient(to right, #007bff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-icon.icon-orange {
  background: linear-gradient(to bottom right, #fff0e0, #ffe7cc); 
}
.services-icon.icon-orange i {
  background: linear-gradient(to right, #ff9900, #cc7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-icon.icon-purple {
  background: linear-gradient(to bottom right, #f6e0ff, #edd6ff); 
}
.services-icon.icon-purple i {
  background: linear-gradient(to right, #8a2be2, #6a1aae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-icon.icon-teal {
  background: linear-gradient(to bottom right, #e0fafa, #ccf5f5); 
}
.services-icon.icon-teal i {
  background: linear-gradient(to right, #20c997, #17a2b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-icon.icon-pink {
  background: linear-gradient(to bottom right, #ffe6f2, #ffb3d9);
}
.services-icon.icon-pink i {
  background: linear-gradient(to right, #ff66b2, #e60073);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*Solutions*/
.solutions-hero {
  background: linear-gradient(90deg, #a02a3a 0%, var(--primary-color) 100%);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}
.hero-vawe {
  position: absolute;
  bottom:0;
  left: 0;
  width:100%;
  line-height: 0;
}
.solutions {
  padding: 80px 0; 
  background-color: #f7f9fc; 
}

.solutions-card {
  background-color: #ffffff; 
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
  transition: all 0.3s ease-in-out;
  border: 1px solid #e9e9f2; 
}
.solutions-card .solutions-card-style {
  padding: 40px;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.solutions-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.solutions-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.solutions-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.solutions-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solutions-card ul li {
  color: #777;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.solutions-card ul li::before {
  content: "✓"; 
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
}
.solutions-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.solutions-icon i {
  font-size: 30px;
  background-clip: text; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #3bb29c; /* Fallback renk, genellikle görünmez ama önemli */
}
.solutions-icon.icon-blue {
  background: linear-gradient(to bottom right,#e0e7ffff, #e0e7ffff); 
}
.solutions-icon.icon-blue i {
  background: linear-gradient(to right, #007bff, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutions-icon.icon-purple {
  background: linear-gradient(to bottom right,#f2e6f9, #f2e6f9); 
}
.solutions-icon.icon-purple i {
  background: linear-gradient(to right, #8111bdff , #8111bdff );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutions-icon.icon-red {
  background: linear-gradient(to bottom right,#fde6e6, #fde6e6); 
}
.solutions-icon.icon-red i {
  background: linear-gradient(to right, #d40e0eff, #d40e0eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solution-btn {
  display:inline-block;
  background: var(--primary-color);
}

/*Features Stajyer Selin*/
.features2-hero {
  background: linear-gradient(90deg, #a02a3a 0%, var(--primary-color) 100%);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}
.features2-vawe {
  position: absolute;
  bottom:0;
  left: 0;
  width:100%;
  line-height: 0;
}
.features2 {
  padding: 80px 0; 
  background-color: #f7f9fc; 
}

.features2-card {
  background-color: #ffffff; 
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
  transition: all 0.3s ease-in-out;
  border: 1px solid #e9e9f2; 
}
.features2-card .features2-card-style {
  padding: 40px;
}

.features2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.features2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.features2-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.features2-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
/*.features2-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features2-card ul li {
  color: #777;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.features2-card ul li::before {
  content: "✓"; 
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
}*/
.features2-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.features2-icon i {
  font-size: 30px;
  background-clip: text; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #3bb29c; 
}
.features2-icon.icon-red {
  background: linear-gradient(to bottom right, #fbe0e0, #fbe0e0); 
}
.features2-icon.icon-red i {
  background: linear-gradient(to right, #FF0000, #FF0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-blue {
  background: linear-gradient(to bottom right, #c5e6f1, #c5e6f1); 
}
.features2-icon.icon-blue i {
  background: linear-gradient(to right, #008CBA , #008CBA );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-green {
  background: linear-gradient(to bottom right,#e2f5ee, #e2f5ee); 
}
.features2-icon.icon-green i {
  background: linear-gradient(to right, #4CAF50, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-yellow {
  background: linear-gradient(to bottom right,#fae092, #fae092); 
}
.features2-icon.icon-yellow i {
  background: linear-gradient(to right, #FFC107, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-purple {
  background: linear-gradient(to bottom right,#d4c8e9, #d4c8e9); 
}
.features2-icon.icon-purple i {
  background: linear-gradient(to right, #9C27B0, #9C27B0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-pink {
  background: linear-gradient(to bottom right,#ffd5e6, #ffd5e6); 
}
.features2-icon.icon-pink i {
  background: linear-gradient(to right, #e83e8c, #e83e8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-bluetone {
  background: linear-gradient(to bottom right,#b8dee2, #b8dee2); 
}
.features2-icon.icon-bluetone i {
  background: linear-gradient(to right, #17a9b8, #17a9b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-orange {
  background: linear-gradient(to bottom right,#ffcca2, #ffcca2); 
}
.features2-icon.icon-orange i {
  background: linear-gradient(to right, #fd7e14, #fd7e14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-redtone {
  background: linear-gradient(to bottom right,#bbd7dc, #bbd7dc); 
}
.features2-icon.icon-redtone i {
  background: linear-gradient(to right, #17a2b8, #17a2b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-pinktone {
  background: linear-gradient(to bottom right,#ef76ad, #ef76ad); 
}
.features2-icon.icon-pinktone i {
  background: linear-gradient(to right, #eb1f7c, #eb1f7c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-redtone2 {
  background: linear-gradient(to bottom right,#ff5364, #ff5364); 
}
.features2-icon.icon-redtone2 i {
  background: linear-gradient(to right, #e60016, #e60016);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-greentone2 {
  background: linear-gradient(to bottom right,#8ae69f, #8ae69f); 
}
.features2-icon.icon-greentone2 i {
  background: linear-gradient(to right, #019d25, #019d25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-indigo {
  background: linear-gradient(to bottom right,#c2abe7, #c2abe7); 
}
.features2-icon.icon-indigo i {
  background: linear-gradient(to right, #6610f2, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-bluetone2 {
  background: linear-gradient(to bottom right,#accdf1, #accdf1); 
}
.features2-icon.icon-bluetone2 i {
  background: linear-gradient(to right, #004691, #004691);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features2-icon.icon-purpletone {
  background: linear-gradient(to bottom right,#c892ca, #c892ca); 
}
.features2-icon.icon-purpletone i {
  background: linear-gradient(to right, #8c2d91, #8c2d91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*integrations Stajyer Selin*/
.integrations2-hero {
  background: linear-gradient(90deg, #a02a3a 0%, var(--primary-color) 100%);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}
.integrations2-vawe {
  position: absolute;
  bottom:0;
  left: 0;
  width:100%;
  line-height: 0;
}
.integrations2 {
  padding: 80px 0; 
  background-color: #f7f9fc; 
}

.integrations2-card {
  background-color: #ffffff; 
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
  transition: all 0.3s ease-in-out;
  border: 1px solid #e9e9f2; 
}
.integrations2-card .integrations2-card-style {
  padding: 40px;
}

.integrations2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.integrations2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.integrations2-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.integrations2-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.integrations2-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.integrations2-card ul li {
  color: #777;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.integrations2-card ul li::before {
  content: "✓"; 
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
}
.integrations2-icon {
  margin-bottom: 30px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.12);
}
.integrations2-icon-rounded {
  border-radius: 50% !important;
}

