/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  /* color */
  --color-I     : #4a5562;/* footer bottom, aktif olmayan linkler ve section başlık rengi */
  --color-II    : #515d6a;/* footer top  */
  --color-III   : #556270; /* ana yazı ve logo rengi */
  --color-IV    : #f8f9fa; /* section arka plan */
  --color-V     : #1abc9c; /* yukarı butonu hoverı */
  --color-VI    : #16a085; /* icon, hover ve active rengi  */
  --color-VII   : #18d26e; /* tamam rengi */
  --color-VIII  : #fff;
  --color-IX    : #000; /* ana logo hariç svg rengi */
  --color-X     : #f00; /* hata rengi */
}

::selection {
  background: var(--color-III);
  color: var(--color-VIII);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--color-III);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: transparent;
}

/* ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
} */

::-webkit-scrollbar-thumb {
  background: var(--color-I);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-VI); 
}

.truncate-after {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-after-1 {
  -webkit-line-clamp: 1;
}

.truncate-after-2 {
  -webkit-line-clamp: 2;
}

.truncate-after-3 {
  -webkit-line-clamp: 3;
}

.truncate-after-4 {
  -webkit-line-clamp: 4;
}

a {
  text-decoration: none;
  color: var(--color-VI);
}

a:hover {
  color: var(--color-V);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.form-control:focus {
  border-color: var(--color-VI);
  outline: 0 none;
  border-radius: 10px;
  box-shadow: none;
}

.form-control {
  resize: none;
}

/*--------------------------------------------------------------
# Popup Modal
--------------------------------------------------------------*/

/* .modal.show .modal-dialog {
  transform: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
} */

#popupModal .modal-header,
#popupModal .modal-footer {
  border: none;
}

#popupModal .modal-footer {
  justify-content: center;
}

#popupModal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 80vh;
  overflow: hidden;
  overflow-y: scroll;
}

#popupModal img {
  max-height: 50vh;
  width: auto;
}

#popupModal a.button {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--color-VIII);
  background: var(--color-V);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

#popupModal a.button:hover {
  background: var(--color-VI);
  color: var(--color-VIII);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--color-IV);
}

/* .section-head {
  padding-bottom: 40px;
  padding-top: 40px;
} */

.section-head h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-I);
  font-family: "Poppins", sans-serif;
}

.section-head h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--color-VI);
  margin: 4px 10px;
}

.section-head p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: var(--color-III);
}

.section-title h2 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-I);
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 24px;
    font-weight: 600;
  }
}

.section-title h2::after {
  content: "";
  display: block;
  width: 250px;
  height: 3px;
  background: var(--color-VI);
  border-radius: 10px;
  margin: 10px auto;
  margin-bottom: 20px;
}

.section-title p {
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  color: var(--color-III);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-V);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 20px;
  color: var(--color-VIII);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-VI);
  color: var(--color-VIII);
  transform: translateY(-5px); /* Y ekseninde -5 piksel kaydır */
  animation: bounce 1s infinite; /* Sonsuz bounce animasyonu */
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); /* Başlangıç ve bitiş noktası */
  }
  40% {
    transform: translateY(-20px); /* Zirve noktası */
  }
  60% {
    transform: translateY(-10px); /* Orta nokta */
  }
}

/*--------------------------------------------------------------
# Cookie
--------------------------------------------------------------*/
#cookie-notice {
  position: fixed;
  visibility: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 360px;
  left: 10px;
  bottom: 10px;
  padding: 10px;
  background: transparent;
  margin: 0px;
  z-index: 999;
}

#cookie-notice .content{
  font-family: "Poppins", sans-serif;
  background: var(--color-VIII);
  color: var(--color-III);
  width: 100%;
  padding: 15px;
  border-radius: 10px;
}

#cookie-notice button {
  width: 100%;
  font-weight: 500;
  color: var(--color-VIII);
  background: var(--color-V);
  border-radius: 10px;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

#cookie-notice button:hover {
  background: var(--color-VI);
}

@media (max-width: 767px){
  #cookie-notice{
    max-width:100%;
    bottom:0;
    left:0;
  }
} 

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--color-VIII);
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
/* 
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
} */

/* #header .logo img {
  max-height: 40px;
} */

#header .logo svg {
  height: 37px;
  max-width: 150px;
  fill: var(--color-III);
}

@media (max-width: 767px) {
  #header .logo svg {
    height: 30px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li img {
  max-height: 20px;
  max-width: 30px;
  border-radius: 2px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-III);
  white-space: nowrap;
  transition: 0.3s;
}

/* .navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
} */

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-VI);
}

.navbar .cursor-default {
  cursor: default;
}

.navbar .cursor-pointer {
  cursor: pointer;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-VIII);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
  margin: 2px auto;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  border-radius: 10px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active,
.navbar .dropdown ul li:hover>a {
  color: var(--color-VIII);
  background: var(--color-VI);
  border-radius: 10px;
}

.navbar .dropdown ul .active a {
  color: var(--color-VIII);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar .dropdown ul {
    max-height: 90vh;
    overflow-y: scroll;
  }

  .navbar .dropdown ul li {
    margin-right: -5px;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: var(--color-III);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--color-VIII);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: scroll;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  /* bottom: 15px; */
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--color-VIII);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-III);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-VI);
}

/* .navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
} */

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--color-VIII);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active a,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-VIII);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
#slider {
  width: 100%;
  height: 100vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#slider .carousel,
#slider .carousel-inner,
#slider .carousel-item,
#slider .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#slider .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#slider .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.6);
}

#slider .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 120px;
  /*bottom: 0;
   top: 70px; */
  left: 50px;
  right: 50px;
}

#slider .container {
  text-align: center;
}

#slider h2 {
  color: var(--color-VIII);
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#slider p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--color-VIII);
}

#slider .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#slider .carousel-inner .carousel-item,
#slider .carousel-inner .active.carousel-item-start,
#slider .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#slider .carousel-inner .active,
#slider .carousel-inner .carousel-item-next.carousel-item-start,
#slider .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#slider .carousel-inner .carousel-item-next,
#slider .carousel-inner .carousel-item-prev,
#slider .carousel-inner .active.carousel-item-start,
#slider .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#slider .carousel-control-next-icon,
#slider .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slider .carousel-control-next-icon:hover,
#slider .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#slider .carousel-indicators li {
  cursor: pointer;
  background: var(--color-VIII);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#slider .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-VI);
}

#slider .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: var(--color-VIII);
  animation-delay: 0.8s;
  background: var(--color-VI);
}

#slider .btn-get-started:hover {
  background: var(--color-V);
}

@media (max-width: 992px) {
  #slider {
    height: 100vh;
  }

  /* #slider .carousel-container {
    top: 8px;
  } */
}

@media (max-width: 768px) {
  #slider h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #slider .carousel-control-prev,
  #slider .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #slider {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  position: relative;
  padding: 30px;
  width: 100%;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
}

.counts .count-box:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  border-color: var(--color-VI);
}

.counts .count-box .count-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 24px;
  height: 24px; */
  top: -27px;
  left: 50%;
  padding: 13px;
  transform: translateX(-50%);
  background: var(--color-VIII);
  color: var(--color-VI);
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.counts .count-box .count-icon svg {
  width: 24px;
  height: 24px;
}


.counts .count-box:hover .count-icon {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: var(--color-IX);
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-VI);
}

/*--------------------------------------------------------------
# Brand Web
--------------------------------------------------------------*/
.brand {
  padding-bottom: 30px;
}

.brand .card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border-bottom: 5px solid transparent;
  transition: all ease-in-out 0.3s;
}

.brand .card:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  border-color: var(--color-VI);
}

.brand .card img {
  display: block;
  transition: all ease-in-out 0.3s;
}

.brand .card:hover img {
  filter: brightness(0.7);
}

.brand .brand-btn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}

.brand .brand-btn svg {
  width: 40px;
  height: 40px;
  background: var(--color-VIII);
  color: var(--color-VI);
  border-radius: 100%;
}

/* .brand .brand-btn:hover svg{
  background: var(--color-VIII);
  color: var(--color-VI);
} */

.brand .card:hover .brand-btn {
  opacity: 1;
}

/* 
.brand .card:hover img {
  transform: scale(1.2);
  overflow: hidden;
} */

.brand .card-icon {
  text-align: center;
  margin-top: -50px;
  z-index: 2;
}

/* .brand .card:hover .card-icon {
  opacity: 0;
} */

/* .brand .card-icon i {
  font-size: 32px;
  color: var(--color-VIII);
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: var(--color-VI);
  border-radius: 50%;
  text-align: center;
  border: 4px solid var(--color-VIII);
  transition: 0.3s;
  display: inline-block;
} */

.brand .card-icon svg {
  width: 100px;
  height: 100px;
  background-color: var(--color-VIII);
  padding: 10px;
  padding-bottom: 0;
  border-radius: 10px;
  fill: var(--color-IX);
}

.brand .card-body {
  padding-top: 12px;
}

.brand .card-title {
  font-weight: 700;
  text-align: center;
}

.brand .card-title a {
  display: block;
  width: 100%;
}

.brand .card-title svg {
  max-height: 50px;
  margin: 10px 20px;
  fill: var(--color-IX);
}

.brand .card:hover svg {
  fill: var(--color-VI);
  transition: all ease-in-out 0.3s;
}

.brand .card-text {
  color: var(--color-III);
}

@media (max-width: 1024px) {
  .brand {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Brand App
--------------------------------------------------------------*/

.brand-app {
  padding-bottom: 30px;
}

.brand-app .nav-tabs {
  border: 0;
}

.brand-app .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-VI);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.brand-app .nav-link:hover,
.brand-app .nav-link.active {
  background: var(--color-VI);
  border: 1px solid var(--color-VI);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

.brand-app .nav-link svg {
  width: auto;
  height: 40px;
  fill: var(--color-IX);
  transition: all ease-in-out 0.3s;
}

.brand-app .nav-link:hover svg,
.brand-app .nav-link.active svg {
  fill:var(--color-VIII);
}

.brand-app .tab-content {
  margin-top: 30px;
}

.brand-app .tab-pane h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}

.brand-app .tab-pane .brand-app-detail-list svg {
  height: 20px;
}

.brand-app .tab-pane p:last-child {
  margin-bottom: 0;
}

.our_brands_app {
  max-width: 255px;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/

.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .meta {
  margin-top: 15px;
}

.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-VI);
}

.recent-blog-posts .post-box .post-title {
  font-size: 18px;
  min-height: 44px;
  color: var(--color-I);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box p {
  margin: 15px 0 30px 0;
  color: var(--color-IX);
}

.recent-blog-posts .post-box .readmore {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 24px;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
  color: var(--color-VI);
}

.recent-blog-posts .post-box .readmore:hover {
  text-decoration: underline;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  display: flex;
  align-items: center;
  margin-left: 4px;
  height: 12px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: var(--color-VI);
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

.recent-blog-posts .post-img:hover img {
  filter: brightness(0.7);
}

.recent-blog-posts .other-blog a {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--color-VI);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border: 1px solid var(--color-VI);
}

.recent-blog-posts .other-blog a:hover {
  background: var(--color-VI);
  color: var(--color-VIII);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.page-title {
  padding: 18px 0;
  background: var(--color-IV);
  min-height: 40px;
  margin-top: 80px;
}

/* @media (max-width: 992px) {
  .page-title {
    margin-top: 58px;
  }
} */

/* Page Details Section - Page Details Page
------------------------------*/

.page-details .menu-box {
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--color-IV);
  border-radius: 10px;
}

.page-details .menu-box:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

.page-details .menu-box+.menu-box {
  margin-top: 30px;
}

.page-details .menu-box h4 {
  color: var(--color-III);
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--color-VI);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.page-details .menus-list a {
  color: var(--color-I);
  background-color: var(--color-IV);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.page-details .menus-list a:first-child {
  margin-top: 0;
}

.page-details .menus-list a i {
  font-size: 16px;
  margin-right: 8px;
  /* color: var(--color-I); */
}

.page-details .menus-list a.active {
  color: var(--color-VIII);
  background-color: var(--color-VI);
  border-radius: 10px;
}

/* .page-details .menus-list a.active i {
  color: var(--color-inverse);
} */

.page-details .menus-list a:hover {
  background-color: var(--color-VI);
  color: var(--color-VIII);
}

.page-details .pages-img {
  margin-bottom: 20px;
}

.page-details h3 {
  color: var(--color-III);
  font-size: 26px;
  font-weight: 700;
}

.page-details p {
  font-size: 15px;
}

.page-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.page-details ul li {
  padding: 5px 0;
  /* display: flex; */
  align-items: center;
}

.page-details ul i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--color-VI);
}

/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/


.main-timeline:after {
  content: '';
  display: block;
  clear: both;
}

.main-timeline .timeline {
  width: 100%;
  padding: 20px 0 0;
  margin: 0 0 25px 5px;
  float: right;
}

.main-timeline .timeline-card {
  position: relative;
  display: block;
  color: var(--color-VIII);
  background: var(--color-VIII);
  text-align: left;
  padding: 0 40px 40px 75px;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  transition: all ease-in-out 0.3s;
  z-index: 1;
}

.main-timeline .timeline-card:before,
.main-timeline .timeline-card:after {
  content: '';
  background: linear-gradient(var(--color-VI), var(--color-V));
  height: 100%;
  border-radius: 0 10px 10px 10px;
  position: absolute;
  left: 55px;
  right: 20px;
  top: -20px;
  z-index: -1;
}

.main-timeline .timeline-card:before {
  background: linear-gradient(to right bottom, transparent 50%, #1f695a 52%);
  height: 20px;
  width: 15px;
  border-radius: 0;
  left: 40px;
  top: -20px;
  right: auto;
}

.main-timeline .timeline-icon svg { 
  height: 40px;
  margin-bottom: 10px;
}

.main-timeline .head {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  color: var(--color-VIII);
}

.main-timeline .content p {
  font-size: 15px;
  color: var(--color-VIII);
}

.main-timeline .content li i {
  font-size: 13px;
  color: var(--color-VIII);
}

.main-timeline .timeline-date {
  color: #515d6a;
  font-size: 35px;
  font-weight: 700;
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
  left: -14px;
  top: 48%;
}

.main-timeline .timeline:hover .timeline-date {
  color: var(--color-V);
}

.main-timeline .timeline:nth-child(even) {
  margin: 0 5px 25px 0;
  float: left;
}

.main-timeline .timeline:nth-child(even) .timeline-card {
  padding: 0 75px 40px 40px;
}

.main-timeline .timeline:nth-child(even) .timeline-card:before {
  transform: rotateY(180deg);
  left: auto;
  right: 40px;
}

.main-timeline .timeline:nth-child(even) .timeline-card:after {
  border-radius: 15px 0 15px 15px;
  left: 20px;
  right: 55px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  text-align: right;
}

.main-timeline .timeline:nth-child(even) .timeline-date {
  left: auto;
  right: -11px;
}

@media (min-width: 992px) {
  .main-timeline .timeline{
    width: 50%;
  }

  .main-timeline .timeline-card {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  .main-timeline .timeline-card:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  }

  .main-timeline .timeline .timeline-card:before,
  .main-timeline .timeline .timeline-card:after {
    background: linear-gradient(#515d6a, #4a5562);
  }
  .main-timeline .timeline .timeline-card:before{
    background: linear-gradient(to right bottom, transparent 50%, #515d6a 52%);
  }

  .main-timeline .timeline:hover .timeline-card:before,
  .main-timeline .timeline:hover .timeline-card:after {
    background: linear-gradient(var(--color-VI), var(--color-V));
  }
  .main-timeline .timeline:hover .timeline-card:before{
    background: linear-gradient(to right bottom, transparent 50%, #1f695a 52%);
  }
}

/*--------------------------------------------------------------
# Certificate
--------------------------------------------------------------*/

.certificate-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--color-IV);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.certificate-wrap:hover {
  transform: scale(1.05);
}

.certificate-wrap img {
  position: relative;
  z-index: 1;
}

.certificate-wrap .certificate-info {
  padding: 0px 20px;
  position: relative;
  /* border-top: 1px solid var(--color-VI); */
  z-index: 2;
}

.certificate-wrap .certificate-info h4 {
  font-size: 14px;
  font-weight: 600;
  /* padding-right: 50px; */
}

.certificate-wrap .certificate-info p {
  font-size: 14px;
}

/* .portfolio-list a {
  color: var(--color-III);
  transition: 0.3s;
}

.portfolio-list a:hover {
  color: var(--color-VI);
  transition: 0.3s;
} */

/*--------------------------------------------------------------
# Application Form
--------------------------------------------------------------*/

.application-form {
  row-gap: 40px;
}

.application-form a {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--color-VI);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border: 1px solid var(--color-VI);
}

.application-form a:hover {
  background: var(--color-VI);
  color: var(--color-VIII);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Franchise Form
--------------------------------------------------------------*/

.franchise-form {
  width: 100%;
  /* padding: 30px; */
  background: var(--color-VIII);
  /* border-radius: 10px; */
}

.franchise-form .form-group {
  padding-bottom: 8px;
}

.franchise-form .message {
  display: none;
  color: var(--color-VIII);
  background: var(--color-III);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  font-weight: 600;
}

.franchise-form .danger {
  background: var(--color-X);
  display: block;
}

.franchise-form .success {
  background: var(--color-VII);
  display: block;
}

.franchise-form .message br+br {
  margin-top: 25px;
}

.franchise-form .loading {
  display: none;
  background: var(--color-VIII);
  text-align: center;
  padding: 15px;
}

.franchise-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-III);
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}

.franchise-form input,
.franchise-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.franchise-form button[type=submit] {
  background: var(--color-III);
  border: 0;
  padding: 10px 24px;
  color: var(--color-VIII);
  transition: 0.4s;
  border-radius: 4px;
}

.franchise-form button[type=submit]:hover {
  background: var(--color-VI);
}

.franchise-form button[type=submit]:disabled,
.franchise-form button[type=submit].is-submitting {
  cursor: not-allowed;
  opacity: 0.65;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .card {
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 0;
  /* margin-bottom: 30px; */
}

.contact .card .card-icon {
  text-align: center;
  margin-top: -30px;
  z-index: 2;
}

.contact .card .card-icon svg {
  color: var(--color-VIII);
  width: 50px;
  height: 50px;
  padding: 10px;
  background-color: var(--color-VI);
  border-radius: 15px;
}

.contact .card .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  /* background: gray; */
}

.contact .card .card-box .card-head {
  /* background: green; */
  font-size: 24px;
  font-weight: 700;
  color: var(--color-VI);
  text-align: center;
  margin-top: 10px;
}

.contact .card .card-box .card-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.contact .card .card-box .card-body p {
  width: 100%;
  margin: 0;
  text-align: left;
  font-weight: 500;
}

.contact .email-form {
  width: 100%;
  padding: 30px;
  background: var(--color-VIII);
  border-radius: 10px;
}

.contact .email-form .form-group {
  padding-bottom: 8px;
}

.contact .email-form .message {
  display: none;
  color: var(--color-VIII);
  background: var(--color-III);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  font-weight: 600;
}

.contact .email-form .danger {
  background: var(--color-X);
  display: block;
}

.contact .email-form .success {
  background: var(--color-VII);
  display: block;
}

.contact .email-form .message br+br {
  margin-top: 25px;
}

.contact .email-form .loading {
  display: none;
  background: var(--color-VIII);
  text-align: center;
  padding: 15px;
}

.contact .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-III);
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}

.contact .email-form input,
.contact .email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .email-form button[type=submit] {
  background: var(--color-III);
  border: 0;
  padding: 10px 24px;
  color: var(--color-VIII);
  transition: 0.4s;
  border-radius: 4px;
}

.contact .email-form button[type=submit]:hover {
  background: var(--color-VI);
}

.contact iframe, .contact #aydinli-maps {
  width: 100%;
  height: 375px;
  border:0;
  border-radius: 10px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--color-I);
  /* padding: 0 0 30px 0; */
  color: var(--color-VIII);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--color-II);
  padding: 40px 0 30px 0;
}

#footer .footer-top .footer-area {
  display: flex;
  align-items: center;
  row-gap: 20px;
}

/* #footer .footer-top .footer-info {
  margin-bottom: 30px;
} */

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: var(--color-VIII);
}

#footer .footer-top .social-links a svg{
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-VIII);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .footer-info .logo svg {
  margin: 0 0 20px 0;
  height: 37px;
  max-width: 210px;
  fill: var(--color-VIII);
}

@media (max-width: 767px) {
  #footer .footer-top .footer-info .logo svg {
    height: 30px;
  }
}

#footer .footer-top .social-links a svg:hover {
  background: var(--color-VI);
  color: var(--color-VIII);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-VIII);
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
  margin: 0;
}

#footer .footer-top .footer-links {
  /* margin-bottom: 30px; */
  column-count: 3;
}

@media (max-width: 767px) {
  #footer .footer-top .footer-links {
    column-count: 1;
  }

  #footer .footer-top .footer-links h4 {
    font-size: 14px;
  }

  #footer .footer-top .footer-links ul li a {
    font-size: 12px;
  }
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  /* line-height: 1; */
  font-size: 14px;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color-VIII);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-VIII);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--color-VI);
  color: var(--color-VIII);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--color-VI);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .copyright svg {
  color: var(--color-X);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  font-weight: 600;
}

#footer .credits a:hover {
  color: var(--color-VIII);
}

/* obirdev CSS */

.box-shadow {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.box-shadow:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

.input-text {
  padding: 6px 12px;
  border-radius: 10px;
  border: 2px solid var(--color-I);
  color: var(--color-I);
  outline: none;
  height: 44px;
}

.input-textarea {
  padding: 10px 12px;
  resize: none;
  border-radius: 10px;
  border: 2px solid var(--color-I);
  outline: none;
}

.input-select {
  padding: 6px 12px;
  border-radius: 10px;
  border: 2px solid var(--color-I);
  color: var(--color-I);
  outline: none;
  height: 44px;
}

label {
  font-weight: 600;
  margin: 2px 0;
}

.sms-permission-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.title{
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
.option-list{
  text-align: center;
  padding: 5px 0;
  margin: 0;
  list-style: none;
}

/* radio button */
.radio-button{
  line-height: 1;
  margin: 0 5px;
  display: inline-block;
}
.radio-button input[type=radio]{
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  display: none;
}
.radio-button label{
  background-color: var(--color-III);
  color: var(--color-VIII);
  padding: 8px 16px;
  margin: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.radio-button.green label{ background-color: var(--color-VII); }
.radio-button.red label{ background-color: var(--color-X); }
.radio-button input[type=radio]:checked+label{ box-shadow: 0 0 0 2px var(--color-VIII),0 0 0 4px var(--color-I); }

/* checkbox */
.checkbox{ display: inline-block; }
.checkbox input[type=checkbox]{
  margin: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  display: none;
}
.checkbox label{
  background: var(--color-III);
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  position: relative;
}
.checkbox label i{
  color: var(--color-VIII);
  font-size: 20px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease-in-out 400ms;
}
.checkbox input[type=checkbox]:checked+label{
  background: var(--color-VI);
  animation: animOnTransform 1s 1 forwards;
}
.checkbox input[type=checkbox]:checked+label i{
  opacity: 1;
}
@keyframes animOnTransform{
  40%{ transform: scale(1.5, 0.5); }
  50%{ transform: scale(0.5, 1.5); }
  60%{ transform: scale(1.3, 0.6); }
  70%{ transform: scale(0.8, 1.2); }
  100%{ transform: scale(1, 1); }
}
 
@keyframes animOn{
  40%{
    height: 20px;
    width: 100px;
  }
  50%{
    height: 60px;
    width: 30px;
  }
  60%{
    height: 40px;
    width: 70px;
  }
  70%{
    height: 55px;
    width: 45px;
  }
  100%{
    height: 50px;
    width: 50px;
  }
}
