/* #region TOP && HTML TAGS */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap");

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

:root {
  /* #region Renk Paleti */
  --color-light: #ffffff;
  --color-light-dark: #f3f3f3;

  /* --color-light:  */
  --color-main: #c8102e;
  --color-main-dark: #991026;
  --color-main-last: #4595f4;
  --color-dark: #101010;
  --color-dark-soft: #27282c;
  --color-dark-blur: #1e1f28;
  /* #endregion Renk Paleti */
}

body {
  color: var(--color-dark-blur);
}

img {
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: var(--color-dark-blur);
}

a:hover {
  color: var(--color-dark-soft);
}

ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

/* #endregion TOP && HTML TAGS */

/* #region CUSTOM ELEMENTS*/

.top-padding {
  padding-top: 7rem !important;
}

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

@media screen and (max-width: 992px) {
  .top-padding {
    padding-top: 80px !important;
  }
}

.dropdown-toggle::after {
  vertical-align: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-bottom-left-radius: 2px;
  transform: rotate(-45deg) translate(0%, 0%);
  transform-origin: center center;
  transition: transform ease-in-out 300ms;
  margin-top: 7px;
}

.filter-btn {
  background-color: transparent;
  padding: 20px 30px;
  border: 1px solid #ddd;
  border-radius: 7px;
}

/* #region CUSTOM ELEMENTS > Buttons*/
.custom-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 32px;
  transition: ease 0.5s;
}

.custom-btn.first {
  background-color: var(--color-main);
  color: var(--color-light);
  border: 1px solid var(--color-main-dark);
}

.custom-btn.second {
  color: var(--color-dark-blur);
  border: 1px solid var(--color-light);
  background: linear-gradient(90deg, rgba(220, 220, 220, 1) 0%, rgba(239, 239, 239, 1) 35%, rgba(255, 255, 255, 1) 100%);
}

.custom-btn.third {
  background-color: var(--color-light);
  color: var(--color-dark-blur);
  border: 1px solid var(--color-dark-soft);
}

.custom-btn.first:hover {
  color: var(--color-light);
  background-color: #df1b3b;
  border-color: #c8102e;
}

.custom-btn.second:hover {
  background: linear-gradient(90deg, rgba(189, 189, 189, 1) 0%, rgba(220, 220, 220, 1) 35%, rgba(239, 239, 239, 1) 100%);
}

.custom-btn.third:hover {
  background-color: #ededed;
}

@media screen and (max-width: 992px) {
  .custom-btn {
    padding: 13px 26px;
    font-size: 14px;
    line-height: 26px;
  }
}

/* #endregion CUSTOM ELEMENTS > Buttons*/

/* #region CUSTOM ELEMENTS > Section Title */
.section-title {
  color: var(--color-dark);
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  width: 30px;
  height: 2px;
}

.section-title span:last-child {
  margin-right: 0;
  margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 0;
  right: -20px;
}

.section-title span:last-child::after {
  right: auto;
  left: -20px;
}

.section-title span:first-child,
.section-title span:last-child,
.section-title span:first-child::after,
.section-title span:last-child::after {
  background: var(--color-main-dark);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
  background: #ffffff;
}

.section-title.title-light {
  color: var(--color-light);
}

.section-title.title-light span:first-child,
.section-title.title-light span:last-child,
.section-title.title-light span:first-child::after,
.section-title.title-light span:last-child::after {
  background: var(--color-light);
}

/* #endregion CUSTOM ELEMENTS > Section Title */

/* #region CUSTOM ELEMENTS > Path Nav */
.path-nav {
  display: flex;
}

.path-nav span {
  margin: 0 10px;
}

/* #endregion CUSTOM ELEMENTS > Path Nav */

/* #endregion CUSTOM ELEMENTS*/

/********** HEADER CSS **********/
/* #region HEADER */

/*Header*/

.shadow-sm {
  box-shadow: none !important;
}

.navbar-header {
  background-color: white;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;

  border-bottom: 0.5px solid #dddddd93;
}

.navbar-header a {
  color: var(--color-dark);
}

a.nav-link {
  font-size: 18px;
  font-weight: 500;
}

.navbar-header a:hover,
.navbar-header a:focus,
.navbar-header a:active {
  color: var(--color-dark) !important;
  border: 0 !important;
}

.header-dropdown-toggle::after,
.header-dropdown-children-toggle::after {
  content: "";
  display: inline-block;
  float: right;
  margin-left: 8px;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-bottom-left-radius: 2px;
  transform: rotate(-45deg) translate(0%, 0%);
  transform-origin: center center;
  transition: transform ease-in-out 300ms;
  margin-top: 7px;
}

.header-dropdown-toggle.open::after {
  margin-top: 10px;
  transform: rotate(135deg) translate(50%, 0%);
}

.header-dropdown-children-toggle.open::after {
  margin-top: 10px;
  transform: rotate(-135deg) translate(50%, 0%);
}

.navbar-header .dropdown-menu {
  background-color: var(--color-light);
  border: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a:active,
.dropdown-menu a:focus,
.dropdown-menu a:visited {
  background-color: var(--color-light);
}

@media screen and (max-width: 992px) {
  .navbar-header {
    /* height: 80px; */
    background-color: white;
  }

  .navbar-header .dropdown-menu {
    border: 0;
  }

  .navbar-header .dropdown-menu.header-nav-dropdown > li {
    /* width: 50%; */
    padding: 3px 20px 3px 5px;
    margin: 2px 0px;
    border-bottom: 1px solid #3d3d3d;
  }

  .navbar-header .dropdown-menu.header-nav-dropdown ul {
    padding: 5px 0 5px 20px !important;
  }

  .header-dropdown-children-toggle.open::after {
    margin-top: 10px;
    transform: rotate(135deg) translate(50%, 0%);
  }
}

/*Header Finish*/

/* #endregion HEADER */

/********** FOOTER CSS **********/
/* #region FOOTER */

.footer-section ul {
  margin: 0px;
  padding: 0 !important;
}

.footer-section {
  background: var(--color-light);
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.single-cta i {
  color: var(--color-main);
  font-size: 25px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: var(--color-dark-soft) !important;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: gray;
  font-size: 15px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .single-cta h4,
  .single-cta span {
    font-size: 13px;
  }
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  width: auto;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--color-dark-soft);
  line-height: 28px;
}

.footer-social-icon span {
  color: var(--color-dark-soft);
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: var(--color-light);
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.footer-social-icon a:nth-child(2) i {
  background: -moz-linear-gradient(top, #3b5998, #2b4170);
  background: -ms-linear-gradient(top, #3b5998, #2b4170);
  background: -webkit-linear-gradient(top, #3b5998, #2b4170);
}

.footer-social-icon a:nth-child(3) i {
  background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
}

.footer-social-icon a:nth-child(4) i {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-widget-heading h3 {
  color: var(--color-dark-soft) !important;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--color-main);
}

.footer-widget ul li {
  display: inline-block;
  width: 48%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--color-main);
}

.footer-widget ul li a {
  color: var(--color-dark-soft);
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.5s;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: var(--color-light);
  border: 1px solid #ddd;
  color: var(--color-main-dark);
}

.subscribe-form input:active {
  border: 1px solid #ddd !important;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--color-main);
  padding: 15px 20px;
  border: 1px solid #c9d4d8;
  top: 0;
}

.subscribe-form button i {
  color: var(--color-light);
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: var(--color-dark-soft);
  padding: 1rem 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: var(--color-light) !important;
}

.copyright-text p a {
  color: var(--color-main);
}

.footer-menu li {
  display: inline-block;
}

.footer-menu li:not(:first-child) {
  margin-left: 5px;
}

.footer-menu li:not(:first-child)::before {
  margin-right: 8px;
  content: "\007c";
  color: #5c8ba0;
}

.footer-menu li:hover a {
  color: var(--color-main);
}

.footer-menu li a {
  font-size: 14px;
  color: var(--color-light);
  text-decoration: none;
  transition: 0.7s;
}

/* #endregion FOOTER */

/********** Index CSS **********/

/* #region INDEX */

/* #region SLIDER */

#hero {
  position: relative;
  padding: 5rem 1rem;
  min-height: 800px;
  height: calc(100vh - 80px);
}

.slider-nav {
  margin-bottom: 50px;
}

#slide-flters li {
  display: inline-block;
  margin: 0 0.5rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#slide-flters li:hover,
#slide-flters li.active {
  color: var(--color-main-dark);
  border-color: var(--color-main-dark);
}

.slide-item img {
  max-height: 500px;
  transition: 1s;
}

.slide-item:hover img {
  transform: scale(1.1);
}

.slide-container-wrapper {
  height: 100%;
}

/* Slide-container bloklarını dikey olarak ortala */
.slide-container {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}

@media (max-width: 996px) {
  #hero {
    margin-bottom: 0;
    padding: 1rem;
  }

  .slide-item img {
    width: 80%;
  }

  #slide-flters {
    display: flex;
    grid-gap: 30px;
    justify-content: space-between;
    width: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #slide-flters::-webkit-scrollbar {
    display: none;
  }

  #slide-flters li {
    font-size: 14px;
    text-align: center;
    padding-bottom: 5px;
    white-space: nowrap;
  }

  .slide-item > div > div:first-child {
    margin-bottom: 7rem;
  }

  .slide-container {
    top: 0;
    transform: translateY(0);
  }
}

/* #endregion SLIDER */

/* #region Index/about, Index/Feature */
#about {
  color: var(--color-light);
  background-color: var(--color-dark-soft);
}

.feature-item {
  min-height: 280px;
  transition: 0.5s;
  /* background-color: 248, 249, 250; */
}

.feature-item:hover {
  margin-top: -15px;
}

.feature-item i {
  color: var(--color-main);
  transition: ease 0.5s;
}

.feature-item h5 {
  min-height: 50px;
}

/* #endregion Index/about, Index/Feature */

/* #region Service */
.service-item {
  position: relative;
  padding: 45px 30px;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: 0.5s;
}
.service .btn-w {
  width: 100%;
  font-size: 20px;
}

.service-item:hover {
  margin-top: -15px;
  padding-bottom: 60px;
  background: var(--color-dark-blur);
}

.service-item .service-icon {
  margin: 0 auto 20px auto;
  width: 100px;
  height: 100px;
  transition: 0.5s;
}

.service-item h5 {
  min-height: 50px;
}

.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover h5,
.service-item:hover p {
  color: #ffffff;
}

.service-item a.btn {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-dark);
  background: #ffffff;
  border-radius: 40px 40px 0 0;
  transition: 0.5s;
  z-index: 1;
}

.service-item a.btn:hover {
  color: var(--color-light);
  background: var(--color-dark-blur);
}

.service-item:hover a.btn {
  bottom: 0;
}

/* #endregion Service */

/* #region Newsletter */

.newsletter {
  background-color: var(--color-main);
  margin: 6rem 0;
  width: 100%;
  padding-right: calc(1.5rem * 0.5);
  padding-left: calc(1.5rem * 0.5);
}

/* #endregion Newsletter */

/* #region Project Portfolio */
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--color-main);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--color-main-dark);
  border-color: var(--color-main-dark);
}

.portfolio-item img {
  transition: 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-main);
  transition: 0.5s;
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 0.8;
}

.portfolio-item .portfolio-text {
  background-color: var(--color-dark-blur);
  color: var(--color-light);
}

.portfolio-item .portfolio-text a {
  color: var(--color-light);
}

/* #endregion Project Portfolio */

/* #region Testimonial */

.testimonial-carousel .testimonial-item {
  padding: 0 30px 30px 30px;
}

.testimonial-item i {
  color: var(--color-main-last);
}

.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 60px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* #endregion Testimonial */

/* #endregion INDEX */

/********** ABOUT CSS **********/
/* #region ABOUT */

.about-content h2 > span {
  color: var(--color-main);
}

/*About Content Finish*/
/*About Slide One Start*/
.about-slide {
  background: var(--color-dark-soft);
}

.searchcontainer {
  width: 100%;
}

.searchcontainer .text {
  color: var(--color-light);
}

@media screen and (max-width: 450px) {
  .searchcontainer span {
    display: inline;
    overflow: hidden;
  }
}

.sec-text {
  color: var(--color-main);
}

.sec-text,
.cursor {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

.cursor {
  font-weight: bold;
  margin-left: 2px;
}
.cursor {
  opacity: 1;
  transition: opacity 0.1s;
}
.cursor.visible {
  opacity: 0;
}

/*About Slider One Finish*/
/*About Team Start*/
.about-team-card h1 {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  font-size: 14px;
}

.about-team-card h1 span {
  display: block;
  font-size: 35px;
  text-transform: none;
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: 700;
}

.about-team h2 > span {
  color: var(--color-main);
}

.profile-card-3 {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  text-align: center;
  height: 368px;
  border: none;
  border: 0 !important;
}

.profile-card-3:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.profile-card-3 .background-block {
  float: left;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-main);
}

.profile-card-3 .background-block .background {
  width: 100%;
  vertical-align: top;
  opacity: 0.9;
  -webkit-filter: blur(0.5px);
  filter: blur(0.5px);
  -webkit-transform: scale(1.8);
  transform: scale(2.8);
}

.profile-card-3 .card-content {
  width: 100%;
  padding: 15px 25px;
  float: left;
  background: #fff;
  height: 50%;
  border-radius: 0 0 5px 5px;
  position: relative;
  z-index: 97;
}

.profile-card-3 .card-content::before {
  content: "";
  background: #fff;
  width: 120%;
  height: 100%;
  left: 9px;
  bottom: 51px;
  position: absolute;
  z-index: -1;
  transform: rotate(-13deg);
}

.profile-card-3 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  left: 50%;
  max-width: 100px;
  opacity: 1;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 1);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 98;
}

.profile-card-3 h2 {
  margin: 0 0 5px;
  font-size: 20px;
}

.profile-card-3 h2 small {
  display: block;
  font-size: 15px;
  margin-top: 10px;
  color: var(--color-main);
}

.profile-card-3 i {
  display: inline-block;
  font-size: 16px;
  color: #647e8c;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin: 0 2px;
  border: 2px solid #fff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.profile-card-3 .icon-block {
  float: left;
  width: 100%;
  margin-top: 25px;
}

.profile-card-3 .icon-block a {
  text-decoration: none;
}

.profile-card-3 a:hover {
  color: #fff;
  text-decoration: none;
}

.profile-card-3 i:hover {
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
}

.icon-block a:nth-child(1) i:hover {
  color: #3b5998;
}

.icon-block a:nth-child(2) i:hover {
  color: #1c1c1c;
}

.icon-block a:nth-child(3) i:hover {
  color: #dd2a7b;
}

.icon-block a:nth-child(4) i:hover {
  color: #0e76a8;
}

/*About Team Finish*/
/*About Slide Two Start*/
.about-slide-two {
  /* background: linear-gradient(90deg, rgba(200,16,46,1) 0%, rgba(228,26,54,1) 35%, rgba(247,60,77,1) 100%);     */
  background-color: var(--color-main);
  padding: 60px 0;
  height: 100%;
  width: 100%;
}

/*About Slide Two Finish*/
/*about-questions*/
.about-questions h2 > span {
  color: var(--color-main);
}

/*Acordion Start*/
.about-questions .accordion-button:focus {
  border-color: var(--color-main-last) !important;
  box-shadow: 0 0 0 0.25rem var(--color-main-last) !important;
}

.about-questions .accordion-button:not(.collapsed) {
  color: var(--color-main-last) !important;
  background-color: var(--color-light) !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--color-main-last) !important;
  border-color: white;
}

.about-questions .accordion-button::after {
  background-image: url("../img/icon/plus.svg") !important;
}

.about-questions .accordion-button:not(.collapsed)::after {
  /* background-color:var(--color-main-last)!important; */
  border-radius: 50%;
  background-image: url("../img/icon/plus.svg") !important;
}

/* #endregion ABOUT */

/********** BLOG CSS **********/
/* #region BLOG */
.blog {
  background-color: var(--color-light);
  overflow: hidden;
  border-radius: 0.25rem;
  position: relative;
  width: 100%;
  transition: 0.4s;
  height: 100%;
}
.blog-ozel {
  height: 300px !important;
}

.blog-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-media {
  position: relative;
}

.blog-media a {
  display: block;
  overflow: hidden;
}

.blog-media a img {
  overflow: hidden;
  transition: 0.4s;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media screen and (max-width: 769px) {
  .blog-media a img {
    height: 300px;
  }
}

.indexPopularBlog a img {
  height: 300px !important;
}

.blog-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-title a {
  text-decoration: none;
  font-size: 22px;
}

.blog-text {
  font-size: 18px;
}

.blog-bottom {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.blog-meta {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
  margin: 0;
}

.blog-meta li {
  display: inline-flex;
  align-items: center;

  margin: 5px 5px;
}

.blog-meta li a {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.blog-meta li i,
.blog-meta li span {
  font-size: 16px;
  color: var(--color-main);
}

.blog:hover .blog-media a img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: 1s;
}

.blog-link a {
  color: var(--color-main);
  text-decoration: none;
  font-size: 20px;
  transition: 0.5s;
}

.blog-link a:hover {
  color: var(--color-main-dark);
}

.blog-link a:hover i {
  padding-left: 5px;
}

.blog-writer-article {
  display: flex;
  flex-direction: column;
  border-radius: 0 0 10px 10px;
  padding-top: 10px;
  transition: 0.8s;
  overflow-y: scroll;
  height: auto;
  max-height: 500px;
}

.blog-writer-article img {
  width: 100px;
  height: 90px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-writer-article-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-writer-article img {
    width: 80%;
    height: 100px;
  }
}

.blog-writer-article-tags:hover img {
  transform: scale(0.9);
  transition: 0.5s;
}

.blog-writer-article-tags {
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  margin: 0 0.5rem 0.5rem 0.5rem;
  font-size: 14px;
  align-items: center;

  display: inline-block;
}

.blog-writer-article-tags a {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  text-decoration: none;
}

.blog-writer-article-tags:hover a {
  transition: 0.5s;
  color: var(--color-main);
}

.blog-writer-article::-webkit-scrollbar {
  width: 5px;
}

.blog-writer-article::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 12px;
  padding: 20px;
}

.blog-writer-article::-webkit-scrollbar-track {
  background-color: var(--color-light);
}

.blog-writer-article-title {
  border-bottom: 4px solid var(--color-main);
  text-align: center;
  margin-bottom: 5px;
  padding: 30px 0;
}

.blog-detail-bottom {
  display: flex;
  align-items: center;
  margin: auto;
}

.blog-detail-inclusive {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
}

.blog-detail-bottom i {
  color: var(--color-main);
  font-size: 15px;
}

.blog-detail-bottom span {
  font-size: 13px;
  margin-left: 8px;
}

.blog-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .blog-responsive {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.page-link {
  color: var(--color-main-last);
}

.active > .page-link,
.page-link.active {
  color: var(--color-light);
  background-color: var(--color-main-last);
  border-color: transparent !important;
}

/* #endregion BLOG */

/********** CONTACT CSS **********/
/* #region CONTACT */

.contactForm h3 span {
  color: var(--color-main);
}

.contactForm button {
  height: 50px;
  width: 150px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  background-color: var(--color-main);
  border: none;
  transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 548px) and (max-width: 992px) {
  .contactForm button {
    font-size: 14px;
    width: 250px;
  }

  .contact-form-button {
    display: flex;
    justify-content: center;
  }
}

.contactForm button:hover,
.contactFormbutton:active,
.contactForm button:focus,
.contactForm button:visited {
  background-color: #df1b3b;
}

.contactForm button i {
  font-size: 13px;
}

.contactForm button:hover i {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  /* İsteğe bağlı olarak yumuşak bir geçiş ekleyebilirsiniz */
}

.label-before,
.field input:valid + label::before,
.field input:focus + label::before,
.field textarea:valid + label::before,
.field textarea:focus + label::before,
.field select:valid + label::before,
.field select:focus + label::before {
  line-height: 20px;
  font-size: 12px;
  top: -10px;
  background: var(--color-light);
  padding: 0 6px;
  left: 9px;
}

.field {
  position: relative;
}

.field label::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 15px;
  line-height: 40px;
  font-size: 14px;
  color: #777;
  transition: 300ms all;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  line-height: 40px;
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 14px;
  color: #222;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--color-main);
}

.field input:valid + label::before,
.field textarea:valid + label::before,
.field select:valid + label::before {
  content: attr(data-title);
}

.field input:focus + label::before,
.field textarea:focus + label::before,
.field select:focus + label::before {
  color: var(--color-main);
  background-color: var(--color-light);
}

.field select {
  height: 40px;
}

/* #region pin */

.pin {
  width: 200px;
  height: 200px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-main);
  transform: rotate(-45deg);

  /* margin: -20px 0 0 -20px; */
  margin: auto;
  animation-name: bounce;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.pin:after {
  content: "";
  width: 100px;
  height: 100px;
  margin: 50px 0 50px 50px;
  background: #eeeeee;
  position: absolute;
  border-radius: 50%;
}

.pulse {
  background: rgba(30, 31, 40, 0.4);
  border-radius: 50%;
  height: 100px;
  width: 100px;

  /* margin: 11px 0px 0px -12px; */
  margin: auto;

  transform: rotateX(55deg);
  z-index: -2;
}

.pulse:after {
  content: "";
  border-radius: 50%;
  height: 280px;
  width: 280px;
  position: absolute;
  margin: -91px 0 0 -91px;
  /* margin: auto; */
  animation: pulsate 2s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  box-shadow: 0 0 1px 2px var(--color-main);
  animation-delay: 1.1s;
}

@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@-o-keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@-moz-keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px) rotate(-45deg);
  }

  60% {
    opacity: 1;
    transform: translateY(30px) rotate(-45deg);
  }

  80% {
    transform: translateY(-10px) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px) rotate(-45deg);
  }

  60% {
    opacity: 1;
    transform: translateY(30px) rotate(-45deg);
  }

  80% {
    transform: translateY(-10px) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@-o-keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px) rotate(-45deg);
  }

  60% {
    opacity: 1;
    transform: translateY(30px) rotate(-45deg);
  }

  80% {
    transform: translateY(-10px) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px) rotate(-45deg);
  }

  60% {
    opacity: 1;
    transform: translateY(30px) rotate(-45deg);
  }

  80% {
    transform: translateY(-10px) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

/* #endregion pin */

/* #endregion CONTACT */

/********** SIDEBAR-HIZMETLER.PHP CSS **********/
/* #region SIDEBAR-HIZMETLER.PHP */
.sidebar {
  padding: 0px 20px 50px 20px;
  border-right: 1px solid #dfdfdf;
  height: 100%;
}

.sidebar .btn-sidebar {
  width: 100%;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  /* transition: 0.s ease; */
}

.sidebar .btn-sidebar.active,
.sidebar .btn-sidebar:hover,
.sidebar .btn-sidebar:focus {
  /* color: var(--color-light); */
  background-color: #e5eef3;
}

.sidebar .btn-sidebar i {
  min-width: 1em;
  line-height: 0;
  margin-right: 0.5em;
  transition: transform 0.35s ease;
}

.sidebar .btn-sidebar[aria-expanded="true"] > i {
  transform: rotate(90deg);
}

.sidebar .btn-toggle-nav a {
  padding: 0.2rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.7em;
}

.sidebar .btn-toggle-nav a.active,
.sidebar .btn-toggle-nav a:hover,
.sidebar .btn-toggle-nav a:focus {
  background-color: #e5eef3;
}

@media screen and (max-width: 992px) {
  .sidebar {
    padding: 0;
    border-right: 1px solid #dfdfdf;
    height: auto;
  }
}

/* #endregion SIDEBAR-HIZMETLER.PHP */
/* #region SERVICES */
@media screen and (max-width: 992px) {
  .path-nav {
    display: flex;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .path-nav::-webkit-scrollbar {
    display: none;
  }

  .path-nav a {
    font-size: 14px;
    text-align: center;
    padding-bottom: 5px;
    white-space: nowrap;
  }
}

/* #endregion SERVICES */

/* #region FORM HONEYPOT (spam koruması — botlar doldurur, insanlar görmez) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
/* #endregion FORM HONEYPOT */

/* #region FORM BUTTON LOADING */
.btn-loading {
  cursor: wait !important;
  opacity: 0.85;
}
.btn-loading .fa-spinner {
  margin-right: 0.35em;
}
/* #endregion FORM BUTTON LOADING */

/* #region SITE TOAST */
.site-toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: min(400px, calc(100vw - 2rem));
  pointer-events: none;
}

.site-toast-container .site-toast {
  pointer-events: auto;
}

.site-toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--color-light);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.9375rem;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-toast--show {
  opacity: 1;
  transform: translateX(0);
}

.site-toast--hide {
  opacity: 0;
  transform: translateX(120%);
}

.site-toast__icon {
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

.site-toast--success .site-toast__icon { color: #22c55e; }
.site-toast--error .site-toast__icon { color: #ef4444; }
.site-toast--warning .site-toast__icon { color: #f59e0b; }
.site-toast--info .site-toast__icon { color: var(--color-main, #c8102e); }

.site-toast__message {
  flex: 1;
  color: var(--color-dark-blur);
}

.site-toast__close {
  flex-shrink: 0;
  padding: 0.25rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.site-toast__close:hover {
  color: var(--color-dark-blur);
  background: rgba(0, 0, 0, 0.05);
}

/* #endregion SITE TOAST */

/* null line */
