* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "PT-Sans", sans-serif;
  font-family: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #0e1221;
  margin: 0px;
  transition: all 500ms ease;
}

@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400");
@import url("https://fonts.googleapis.com/css?family=Roboto:100");

.main-container {
  overflow: hidden;
}

/*! For Fonts  */
@font-face {
  font-family: "Playfair-Display";
  src: url("../fonts/Playfair-Display/PlayfairDisplay-Medium.woff2")
      format("woff2"),
    url("../fonts/Playfair-Display/PlayfairDisplay-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "PT-Sans";
  src: url("../fonts/PT-Sans/PTSans-Regular.woff") format("woff"),
    url("../fonts/PT-Sans/PTSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/*! For Whatsapp Button */
.whatsapp-button-wrapper {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 40;
}
.whatsapp-button {
  font-size: 40px;
  color: #25d366;
  background-color: #fff;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: background-color 1s ease;
}

.whatsapp-button:hover {
  background-color: #e9e9e9;
}

.whatsapp-button:hover .wp-icon {
  animation: scale 1000ms forwards;
}

.whatsapp-button:not(:hover) .wp-icon {
  animation: notScale 1000ms forwards;
}

@keyframes scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}

@keyframes notScale {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/*! Infinite Slider  */
.content-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26vh;
}

.slider {
  display: flex;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.slider::before,
.slider::after {
  position: absolute;
  top: 0;
  width: 210px;
  height: 100%;
  content: "";
  z-index: 2;
}

.slider::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #f3f9ff);
}

.slider::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #f3f9ff);
}

.slider:hover .slide-track {
  animation-play-state: paused;
}

.slider .slide-track {
  animation: 13s slide infinite linear;
  display: flex;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*! Navbar Section */
.sticky-navbars {
  top: 0;
  width: 100%;
  height: 100px;
  display: flex !important;
  justify-content: space-between !important;
  padding-left: 7% !important;
  padding-right: 7% !important;
  z-index: 10;
  column-gap: 5%;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
}

.navbar-left {
  display: flex;
  justify-content: space-between;
  width: 23%;
}

.black-bg {
  display: flex;
  background-color: #0000009f !important;
  position: absolute !important;
  width: 100% !important;
  height: 100vh !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 30 !important;
  animation: translateX ease 1s;
  animation-fill-mode: forwards !important;
}

.navbar-left .navbar-section-left .logo-wrapper-a .logo-wrapper .navbar-logo {
  padding: 10px;
}

.navbar-toggler {
  box-shadow: none !important;
  border: none !important;
}

.navbar-toggler .lines .line-1 {
  height: 2px;
  width: 40px;
  background-color: #f5a93f;
}

.navbar-toggler .lines .line-2 {
  margin-top: 15px;
  width: 40px;
  height: 2px;
  background-color: #f5a93f;
  transition: width 0.5s ease;
}

.navbar-toggler:hover .line-2 {
  width: 20px;
  height: 2px;
}

.navbar-right .social-media-links {
  display: none;
}

.navbar-right {
  display: flex;
  justify-content: end;
  text-decoration: none;
  column-gap: 13px;
  width: 100%;
}

.popup-menu-active {
  transform: translateX(0%);
  opacity: 1;
}

.black-bg-closed {
  animation: translateX-closed ease 1s;
  animation-fill-mode: forwards !important;
}

@keyframes translateX {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes translateX-closed {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(110%);
  }
}

.navbar-right .ham-nav-top {
  display: none;
}

.navbar-right .navbar-nav {
  display: flex;
  justify-content: end;
  align-items: center;
  text-align: start;
}

.navbar-right .dropdown .dropbtn {
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  font-family: "PT-Sans", sans-serif;
  padding: 14px 45px 13px 45px;
}

.for-dropdown-animation {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.navbar-right .dropdown::before {
  content: "";
  height: 2px;
  width: 0px;
  background-color: #f5a93f;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 400ms ease;
}
.navbar-right .dropdown:hover::before {
  content: "";
  height: 2px;
  width: 40px;
  background-color: #f5a93f;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-right .dropdown .dropdown-content {
  display: none;
  position: absolute;
  width: 250px;
  background-color: #f9f9f9;
  transform: translateY(100%);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: 1;
  bottom: 0;
  left: 0;
}

.navbar-right .dropdown .dropdown-content .link-1 {
  border-top: 2px solid #f5a93f;
}

.navbar-right .dropdown .dropdown-content a {
  display: flex;
  color: black;
  text-align: start;
  justify-content: start;
  width: 250px;
  padding: 18px 35px 17px 35px;
  text-decoration: none;
  font-size: 15px;
  transition: all 700ms ease;
  white-space: unset;
}

.navbar-right .dropdown .dropdown-content a:hover {
  background-color: #f5a93f;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border: none !important;
  padding: 0 !important;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown:not(:hover) .dropdown-content {
  display: none !important;
}

.sticky-navbars .navbar-right .a-elements {
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.navbar .navbar-left .navbar-section-left .logo-wrapper .navbar-logo {
  width: 100%;
  height: 100px;
}

#x-icon {
  transform: rotate(0deg);
  transition: transform 0.5s ease;
  color: #fff;
}

#navbar-close-div {
  padding: 0;
  transition: padding 0.5s ease;
}

/*! Secondary Navbar */
.secondary-navbar {
  position: fixed;
  width: 100%;
  display: flex;
  top: 0;
  background-color: #fff;
  opacity: 0;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transform: translateY(-100%);
}

.secondary-navbar .navbar-sections-wrapper {
  margin: 0 auto;
  width: 1170px;
}

.opened-secondary-navbar {
  opacity: 1 !important;

  transform: translateY(0%);
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-left
  .logo-wrappe-a
  .logo-wrapper {
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-left
  .logo-wrapper
  .logo {
  height: 65px;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown {
  background-color: #fff;
  transition: all 0.5s ease;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown:not(:hover)
  .dropdown-content {
  display: none !important;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown:hover {
  background-color: #f5a93f;
  color: #fff !important;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown:hover
  .dropbtn {
  color: #fff !important;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown
  .dropbtn {
  padding: 18px 35px 17px 35px;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  font-family: "PT-Sans";
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown
  .dropdown-content {
  display: none;
  position: absolute;
  width: 250px;
  background-color: #f9f9f9;
  transform: translateY(100%);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: 1;
  bottom: 0;
  left: 0;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown
  .dropdown-content
  .link-1 {
  border-top: 2px solid #f5a93f;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown
  .dropdown-content
  a {
  display: flex;
  color: black;
  text-align: start;
  justify-content: start;
  width: 250px;
  padding: 18px 35px 17px 35px;
  text-decoration: none;
  font-size: 15px;
  transition: all 700ms ease;
}

.secondary-navbar
  .navbar-sections-wrapper
  .secondary-navbar-right
  .links
  .dropdown
  .dropdown-content
  a:hover {
  background-color: #f5a93f;
  color: #fff;
}

/*! footer */
.footer {
  background-color: #0e2c50;
}

.footer .footer-row {
  margin: 0 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer-contact-us {
  padding: 3% 0;
  overflow: hidden;
}

.footer .footer-contact-us .input-div {
  width: 50%;
  display: flex;
  align-items: center;
}

.footer .footer-contact-us .footer-social-media {
  width: 20%;
}

.footer .footer-row .input-div .input {
  padding: 20px 36px;
  width: 100%;
  font-size: 17px;
  border-radius: 30px 0 0 30px;
  height: 100%;
  border: none;
  outline: none;
}

.footer .footer-row .input-div .button {
  padding: 20px 36px;
  height: 100%;
  background-color: #f5a93f;
  color: #fff;
  border: none;
  font-size: 17px;
  border-radius: 30px;
  margin-left: -30px;
  transition: background-color 700ms ease;
}

.footer .footer-row .input-div .button:hover {
  background-color: #13bbea !important;
}

.footer .footer-row .social-media {
  display: flex;
  column-gap: 10px;
}
.footer .footer-row .social-media .icon {
  color: #000;
}

.footer
  .footer-row
  .social-media
  .icon-facebook:hover
  #footer-icons-bi-facebook {
  color: #13bbea !important;
}

.footer .footer-row .social-media .icons {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #213d5e;
  border-radius: 50%;
}

.footer .footer-row .social-media .icons .bi {
  font-size: 20px;
  transition: color 500ms ease;
}

.footer
  .footer-row
  .social-media
  .icon-instagram:hover
  #footer-icons-bi-instagram {
  color: #13bbea !important;
}

.footer .border-div {
  color: #fff;
  background-image: url(../img/iletisim/border-4.png);
  margin-bottom: 100px;
  height: 17px;
}

.footer .footer-our-about-informations {
  align-items: start;
  justify-content: space-around;
  margin-bottom: 100px;
  column-gap: 20px;
}

.footer .footer-our-about-informations .informations {
  display: block;
  color: #fff;
  width: 25%;
}

.footer .footer-our-about-informations .information-4 {
  width: 35%;
}

.footer .footer-our-about-informations .informations .title {
  margin-bottom: 30px;
  font-size: 23px;
}

.footer .footer-our-about-informations .informations .content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 30px;
  font-family: "PT-Sans", sans-serif;
}

.footer .footer-our-about-informations .unique .title {
  position: relative;
  font-family: "Playfair-Display", sans-serif;
}

.footer .footer-our-about-informations .unique .title::after {
  content: "";
  position: absolute;
  background-color: #13bbea;
  width: 33px;
  height: 2px;
  left: 0;
  bottom: -10px;
}

.footer .footer-our-about-informations .unique .content {
  line-height: 35px;
}

.footer .footer-our-about-informations .unique .content ul li {
  font-family: "PT-Sans", sans-serif;
}

.footer .footer-our-about-informations .informations .content li {
  list-style-type: none;
  font-family: "PT-Sans", sans-serif;
}

.footer .footer-our-about-informations .informations .content li a {
  text-decoration: none;
  color: #fff;
  font-family: "PT-Sans", sans-serif;
}

.footer .copy-right {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a213d;
  padding: 40px 0;
  color: #fff;
  opacity: 0.5;
}

.footer .copy-right .content {
  text-align: center;
  font-family: "PT-Sans", sans-serif;
}

/*! For MainPage  */

/*? Section-1 for main page*/

.main-introduction .main-introduction-wrapper {
  display: flex;
  padding: 5% 6% 5% 8%;
  margin-bottom: 50px;
  width: 100%;
  --bs-gutter-x: unset;
}

.main-introduction .main-introduction-wrapper .main-introduction-left {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-align: start;
  padding: 0 15% 0 0;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .main-introduction-title-wrapper
  .small-title {
  font-size: 1vw;
  color: #638dc1;
  font-family: "Playfair-Display";
  font-weight: 400;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .main-introduction-title-wrapper
  .big-title {
  font-size: 4vw;
  margin-bottom: 25px;
  font-weight: 500;
  font-family: "Playfair-Display";
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .content-div
  .content {
  font-size: 1vw;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .content-div
  .content {
  margin-bottom: 2.2vw;
  padding-right: 19%;
  font-weight: 700;
  opacity: 0.7;
  font-family: "PT-Sans", sans-serif;
  font-weight: 700;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .col-buttons {
  display: flex;
  column-gap: 10px;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .col-buttons
  .buttons {
  text-decoration: none;
  padding: 22px 35px;
  background-color: #000;
  color: #fff;
  border-radius: 40px;
  font-size: 1vw;
  cursor: pointer;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .col-buttons
  .button {
  background-color: #f5a93f;
  transition: all 700ms ease;
  font-family: "PT-Sans", sans-serif;
  font-weight: 700;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-left
  .col-buttons
  .button:hover {
  background-color: #13bbea;
}

.main-introduction .main-introduction-wrapper .main-introduction-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-right
  .border-background {
  background-image: url(../img/main-page/background-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -10;
}

.main-introduction
  .main-introduction-wrapper
  .main-introduction-right
  .main-water-treatment-png {
  width: 100%;
  height: auto;
}

/*? Section 2 for main page*/
.products-section {
  position: relative;
  background-color: #f3f9ff;
}

.products-section .products-title {
  display: flex;
  padding: 100px 20%;
  justify-content: center;
  align-items: center;
  background: #f3f9ff;
  padding-bottom: 30px;
}

.products-section .products-title .title-wrapper .title {
  justify-content: start;
  font-size: 2.5vw;
  position: relative;
  align-items: start;
  font-family: "Playfair-Display", serif;
  font-weight: 400;
}

.products-section .products-title .content-wrapper .content {
  line-height: 26px;
  font-family: "PT-Sans", serif;
  font-weight: 100;
  font-size: 18px;
  opacity: 0.9;
}

.products-section .products-title .col-border {
  width: 3px;
  height: 70px;
  background-color: #346bae;
}

.products-section .products-title .title-wrapper .title::after {
  content: "";
  background-image: url(../img/main-page/wave-icon-1.png);
  right: 0px;
  bottom: -15px;
  position: absolute;
  width: 33px;
  height: 8px;
  z-index: 2;
  background-repeat: no-repeat;
}

.products-section .products-content {
  padding: 5% 0;
  display: flex;
  justify-content: center;
  column-gap: 2%;
}

.swiper {
  width: 100%;
  height: 100%;
}

/* will be title rotate when hover to title */

.products-section
  .products-content
  .swiper
  .swiper-wrapper
  .swiper-slide
  .products
  .product-content-wrapper
  .title {
  cursor: pointer;
  color: #000;
  transition: color 600ms ease;
}

.products-section
  .products-content
  .swiper
  .swiper-wrapper
  .swiper-slide
  .products
  .product-content-wrapper
  .title:hover {
  color: #f5a93f;
}

/* will be image rotate when hover to image  */

#rotate-image {
  transform: rotateY(0);
  width: 80%;
  transition: transform 600ms ease;
}

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products:hover
  #rotate-image {
  transform: rotateY(180deg);
}

/* left and top borders */

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products:hover
  .border-one::after {
  height: 100%;
}

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products:hover
  .border-one::before {
  width: 100%;
}

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products
  .border-one::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background-color: #13bbea;
  transition: height 800ms ease;
}

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products
  .border-one::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background-color: #13bbea;
  transition: width 800ms ease;
}

/* right and bottom borders */

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products:hover
  .border-two::after {
  height: 100%;
}

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products:hover
  .border-two::before {
  width: 100%;
}

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products
  .border-two::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 0;
  background-color: #13bbea;
  transition: height 800ms ease;
}

.products-section
  .products-content
  .swiper
  .swiper-slide
  .products
  .border-two::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #13bbea;
  transition: width 800ms ease;
}

/* right and bottom borders finish*/

.products-section .products-content .swiper .swiper-slide .products:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.products-section
  .products-content
  .swiper
  .swiper-wrapper
  .swiper-slide
  .products
  .product-content-wrapper {
  padding: 50px 35px;
  width: 20vw;
  background-color: #fff;
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .img-div {
  height: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .amount-content {
  display: flex;
  justify-content: center;
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .amount-content
  .text {
  background-color: #eeeeee;
  padding: 3px 17px;
  border-radius: 30px;
  opacity: 0.7;
  margin-bottom: 28px;
  font-size: 1vw;
  cursor: default;
  font-family: "PT-Sans", sans-serif;
}

.products-section .products-content .swiper .swiper-wrapper .swiper-slide {
  padding-bottom: 30px;
}

.products-section
  .products-content
  .swiper
  .swiper-wrapper
  .swiper-slide
  .products
  .product-content-wrapper
  .title {
  font-size: 1.2vw;
  margin-bottom: 17px;
  text-align: center;
  height: 93px;
  line-height: 30px;
  font-weight: 600;
  font-family: "Playfair-Display";
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .content {
  text-align: center;
  font-size: 1vw;
  opacity: 0.8;
  margin-bottom: 3vw;
  cursor: default;
  font-family: "PT Sans", sans-serif;
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .button-div {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0 7%;
  border-radius: 30px;
  text-align: center;
  padding: 10px 39px;
  border: 2px solid #13bbea;
  text-decoration: none;
  transition: all 0.5s ease;
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .button-div
  .button {
  font-size: 0.9vw;
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .button-div
  .button
  .bi::before {
  font-weight: 900 !important;
}

.products-section
  .products-content
  .products
  .product-content-wrapper
  .button-div:hover {
  background: #f5a93f;
  border-color: #f5a93f;
  color: #fff;
}

.products-section .products-content .border-div .border-row {
  position: absolute;
}

.products-section .products-content .border-div .border-row-1 {
  top: -20px;
  width: 100%;
  height: 100px;
  left: 0;
  z-index: 2;
  background-repeat: repeat-x;
  background-image: url(../img/main-page/border-1.png);
}

.products-section .products-content .border-div .border-row-2 {
  bottom: -20px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: 0;
  background-repeat: repeat-x;
  background-image: url(../img/main-page/border-2.png);
}

.swiper-pagination-bullet {
  padding: 5px;
}

/*? Section 3 for main page*/
.incentive-section {
  background-color: #fff;
  padding: 10% 0px;
}

.incentive-section .video-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.incentive-section .video-wrapper {
  width: 100%;
  padding: 100px 20%;
}

.incentive-section .video-wrapper .video {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 65px !important;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.incentive-section .video-wrapper .photo {
  width: 100%;
  height: auto;
}

.incentive-section .video-wrapper .video .play-button {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  background-color: #fff;
  border-radius: 50%;
}

.incentive-section .video-wrapper .video .play-button .icon::before {
  font-size: 50px;
}

.incentive-section .video-wrapper .video-content {
  display: flex;
  justify-content: center;
}

.incentive-section .video-wrapper .video-content .video-content-left-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
}

.incentive-section
  .video-wrapper
  .video-content
  .video-content-left-wrapper
  .title {
  display: flex;
  justify-content: center;
  font-weight: 400;
  position: relative;
  font-size: 2.3vw;
  margin: 0px 15px;
}

.incentive-section
  .video-wrapper
  .video-content
  .video-content-left-wrapper
  .title {
  text-align: end;
  font-family: "Playfair-Display", serif;
  font-weight: 400;
}

.incentive-section
  .video-wrapper
  .video-content
  .video-content-left-wrapper
  .title::before {
  content: "";
  right: 0;
  bottom: -15px;
  position: absolute;
  background: url(../img/main-page/wave-icon-1.png);
  width: 33px;
  height: 8px;
  z-index: 2;
  background-repeat: no-repeat;
}

.incentive-section .video-wrapper .video-content .border {
  width: 4px;
  height: auto;
  background-color: #346bae;
}

.incentive-section .video-wrapper .video-content .video-content-right-wrapper {
  width: 50%;
  display: flex;
  align-items: center;
}

.incentive-section
  .video-wrapper
  .video-content
  .video-content-right-wrapper
  .content {
  font-size: 20px;
  padding-left: 30px;
  display: flex;
  justify-content: center;
  line-height: 26px;
  font-family: "PT-Sans", serif;
  font-weight: 100;
  opacity: 0.9;
}

.incentive-section .photo-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.incentive-section .photo-wrapper .photos .encouraging-visual {
  width: 100%;
  height: auto;
  transition: all 600ms ease;
}

.incentive-section .photo-wrapper .photos .encouraging-visual:hover {
  opacity: 0.4;
  transform: scale(1.05);
}

.incentive-section .photo-wrapper .photos .img-div {
  transition: all 600ms ease;
  overflow: hidden;
}

.incentive-section .photo-wrapper .photos .img-div:hover {
  background: #13bbea;
}

/*? .harmful-substances-water-section for main page */
.harmful-substances-water-section {
  margin-top: 50px;
  background-color: #f3f9ff;
  position: relative;
}

.harmful-substances-water-section .harmful-substances-water-title {
  margin-bottom: 3%;
}

.harmful-substances-water-section .harmful-substances-water-title .main-title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 2.2vw;
  padding-bottom: 30px;
  position: relative;
  font-weight: 500;
  z-index: 2;
  font-family: "Playfair-Display";
}

.harmful-substances-water-section
  .harmful-substances-water-title
  .main-title::before {
  content: "";
  bottom: 0;
  width: 33px;
  height: 8px;
  background: url(../img/main-page/wave-icon-1.png);
  position: absolute;
}

.harmful-substances-water-section .harmful-substances-water-content {
  display: flex;
  justify-content: center;
  margin: 0 5%;
  margin-bottom: 5%;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-top
  .glass-image-div {
  display: flex;
  justify-content: center;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-bottom
  .elements-information-wrapper {
  display: flex;
  column-gap: 10px;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-bottom
  .elements-information-wrapper
  .text {
  white-space: normal;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-bottom
  .elements-information-wrapper {
  width: 315px;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-bottom
  .elements-information-wrapper
  .text
  .title {
  font-size: 1.2vw;
  font-weight: 700;
  opacity: 0.8;
  font-family: "Playfair-Display", sans-serif;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-bottom
  .elements-information-wrapper
  .text
  .title-content {
  font-size: 0.9vw;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 15px;
  font-family: "Playfair-Display", sans-serif;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-bottom
  .elements-information-wrapper
  .text
  .content {
  font-size: 0.8vw;
  opacity: 0.6;
  font-family: "PT-Sans", sans-serif;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-bottom
  .elements-information-wrapper
  .element-symbol {
  font-size: 40px;
  color: #13bbea;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-middle
  .glass-image-div {
  position: relative;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-middle
  .glass-image-div
  img {
  position: relative;
  z-index: 1;
}

.harmful-substances-water-section
  .harmful-substances-water-content
  .content-middle
  .glass-image-div
  .private-image {
  position: absolute;
  background-image: url(../img/main-page/private-img.webp);
  width: 460px;
  height: 460px;
  z-index: 0;
  right: 50%;
  top: 0;
  transform: translateX(50%);
}

.harmful-substances-water-section .border .border-row {
  position: absolute;
  width: 100%;
  height: 63px;
  z-index: 1;
}

.harmful-substances-water-section .border .border-row-1 {
  background: url(../img/main-page/border-1.png);
  top: -20px;
  width: 100%;
  height: 63px;
}

.harmful-substances-water-section .border .border-row-2 {
  background: url(../img/main-page/border-2.png);
  bottom: -20px;
}

/*? Section 5 for main page */
.company-description {
  display: flex;
  position: relative;
  margin-bottom: 100px;
}

.company-description .description-left {
  width: 50%;
}

.company-description .bg-image {
  background-image: url(../img/main-page/background-1.png);
  background-color: #346bae;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

#there-is-border-radius-image {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-description .description-left .image .photo {
  border-radius: 40% 65% 47% 60%;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.company-description .description-right {
  width: 50%;
  padding-left: 5%;
  margin-top: 100px;
  padding-right: 10%;
}

.company-description .description-right .small-col .title {
  color: #fff;
  font-size: 2.4vw;
  position: relative;
  margin-bottom: 50px;
}

.company-description .description-right .small-col .title::after {
  content: "";
  left: 0;
  bottom: -27px;
  position: absolute;
  background: url(../img/main-page/wave-icon-1.png);
  width: 33px;
  height: 8px;
  z-index: 3;
  background-repeat: no-repeat;
}

.company-description .description-right .small-col .content {
  font-size: 0.8vw;
  color: #fff;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 25px;
  font-family: "PT-Sans", sans-serif;
}

.company-description .description-right .small-col .materials {
  list-style-type: none;
}

.company-description .description-right .small-col .materials .list-item {
  color: white;
  font-size: 1vw;
  font-weight: 700;
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
}

.company-description
  .description-right
  .small-col
  .materials
  .list-item::before {
  content: "\2714";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 16px;
  height: 26px;
  color: #f5a93f;
  font-family: "Font Awesome 5 Free";
  z-index: 3;
  background-repeat: no-repeat;
}

.company-description .description-right .small-col .buttons {
  margin: 10% 0;
}

.company-description .description-right .small-col .button {
  color: #fff;
  padding: 4% 10%;
  border-radius: 40px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  z-index: 5;
  position: relative;
  text-decoration: none;
}

.company-description .description-right .small-col .button-1 {
  background-color: #f5a93f;
  transition: background-color 700ms ease;
  font-size: 0.9vw;
  font-family: "PT-Sans", sans-serif;
}

.company-description .description-right .small-col .button-1:hover {
  background-color: #13bbea;
}

/*? Section 6 for main page*/
.our-business-life-section {
  margin-bottom: 100px;
}

.our-business-life-section .our-business-life-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 14%;
  margin-bottom: 100px;
}

.our-business-life-section .our-business-life-wrapper .title-wrapper,
.our-business-life-section .our-business-life-wrapper .content-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}

.our-business-life-section .our-business-life-wrapper .title-wrapper {
  justify-content: end;
}

.our-business-life-section .our-business-life-wrapper .title-wrapper::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #346bae;
  right: 0;
  top: 0;
}

.our-business-life-section .our-business-life-wrapper .title-wrapper .title {
  font-size: 2.6vw;
  font-weight: 400;
  position: relative;
  margin-right: 40px;
  font-family: "Playfair-Display", sans-serif;
}

.our-business-life-section
  .our-business-life-wrapper
  .title-wrapper
  .title::after {
  content: "";
  position: absolute;
  width: 33px;
  height: 8px;
  background: url(../img/main-page/wave-icon-1.png);
  right: 0;
  bottom: -15px;
}

.our-business-life-section
  .our-business-life-wrapper
  .content-wrapper
  .content {
  font-size: 1vw;
  padding: 0 40px;
  line-height: 26px;
  font-family: "PT-Sans", sans-serif;
}

.our-business-life-section .row-2 .col {
  display: flex;
  justify-content: center;
  column-gap: 80px;
}

/*! For About Us Page  */

/*? Section 1 for aboutus page */
.section-1-for-aboutus-page .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-aboutus-page .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/about-us/wave-border.png);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-aboutus-page .banner-section .title-wrapper {
  position: relative;
}

.section-1-for-aboutus-page .banner-section .title-wrapper .title {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  color: #fff;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-aboutus-page .banner-section .title-wrapper .little-title {
  font-size: 17px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*? crumb */

.crumb {
  margin: 100px 0 0 100px;
}

.crumb a {
  text-decoration: none;
  color: #000;
  transition: .2s ease;
}

.crumb a:hover {
  color: #13bbea;
}

.crumb-current {
  color: #13bbea;
}

/*? Section 2 for aboutus page */

.section-2-for-aboutus-page {
  margin: 100px 20%;
  display: flex;
  flex-direction: column;
}

.section-2-for-aboutus-page .about-the-company {
  display: flex;
  justify-content: center;
  column-gap: 120px;
  flex-direction: column;
}

.section-2-for-aboutus-page .about-the-company .main-title {
  font-size: 45px;
  text-align: center;
  position: relative;
  margin-bottom: 9%;
}

.section-2-for-aboutus-page .about-the-company .main-title::after {
  content: "";
  right: 50%;
  transform: translateX(50%);
  bottom: -15px;
  position: absolute;
  background: url(../img/about-us/wave-icon-1.png);
  width: 33px;
  height: 8px;
  z-index: 2;
  background-repeat: no-repeat;
}

.section-2-for-aboutus-page
  .content-about-the-company
  .the-company-informations {
  margin-bottom: 70px;
  position: relative;
}

.section-2-for-aboutus-page
  .content-about-the-company
  .the-company-informations::after {
  content: "";
  position: absolute;
  background-image: url(../img/about-us/wave-icon-3.png);
  width: 80px;
  height: 5px;
  right: 50%;
  transform: translateX(50%);
  bottom: -40px;
}

.section-2-for-aboutus-page .content-about-the-company .last-content::after {
  content: unset;
}

.section-2-for-aboutus-page
  .content-about-the-company
  .the-company-informations
  .text {
  font-size: 21px;
  text-align: center;
  color: #000;
  font-weight: 600;
  font-family: "PT-Sans", sans-serif;
}

/*! for water purifier models page */

/*? Section-1 for water purifier models page*/
.section-1-for-water-purifier-models .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-water-purifier-models .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-water-purifier-models .banner-section .title-wrapper {
  position: relative;
}

.section-1-for-water-purifier-models .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 0 8px #316472;
  font-family: "Playfair-Display", sans-serif;
  text-align: center;
}

.section-1-for-water-purifier-models .banner-section h5 {
  font-size: 17px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
  font-family: "Playfair-Display", sans-serif;
}

/*? Section-2 for water purifier models page */

.section-2-for-water-purifier-models {
  position: relative;
  background-color: #fff;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
  flex-direction: column;
  row-gap: 30px;
  padding: 10%;
  position: relative;
}

.section-2-for-water-purifier-models .products-col {
  background-color: #f3f9ff;
  border-radius: 50px;
  width: 300px;
  position: relative;
}

.section-2-for-water-purifier-models .products-col .wrapper {
  padding: 54px 35px;
  height: 617px;
  display: flex;
  flex-direction: column;
}

.section-2-for-water-purifier-models .products-col .wrapper .img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
}

.section-2-for-water-purifier-models .products-col .wrapper .img .photo {
  width: 70%;
  margin-bottom: 30px;
  display: flex;
}

.section-2-for-water-purifier-models .products-col .wrapper .title {
  font-size: 21px;
  margin-bottom: 17px;
  font-weight: 600;
  text-align: center;
  height: 93px;
  font-family: "Playfair-Display", sans-serif;
}

.section-2-for-water-purifier-models
  .products-col
  .wrapper
  .content-div
  .content {
  text-align: center;
  opacity: 0.8;
  text-align: center;
  position: absolute;
  opacity: 0.8;
  font-size: 16px;
  position: absolute;
  bottom: 16%;
  display: flex;
  right: 30%;
  margin-bottom: 25px;
  transform: translateX(20%);
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-water-purifier-models .products-col .wrapper .price {
  display: flex;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 35px;
}

.section-2-for-water-purifier-models
  .products-col
  .wrapper
  .price
  .scratch-price {
  text-decoration: line-through;
  color: #cccccc;
  display: flex;
}

.section-2-for-water-purifier-models .products-col .wrapper .price .real-price {
  color: #f5a93f;
  display: flex;
}

.section-2-for-water-purifier-models .products-col .wrapper .button {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.section-2-for-water-purifier-models .products-col .wrapper .button .button-a {
  text-decoration: none;
  position: absolute;
  bottom: 6%;
}

.section-2-for-water-purifier-models
  .products-col
  .wrapper
  .button
  .button-section {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-radius: 30px;
  text-align: center;
  padding: 10px 39px;
  border: 2px solid #13bbea;
  text-decoration: none;
  transition: all 0.5s ease;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-water-purifier-models
  .products-col
  .wrapper
  .button
  .button-section:hover {
  background: #f5a93f;
  border-color: #f5a93f;
  color: #fff;
}

.section-2-for-water-purifier-models .border .border-row {
  position: absolute;
}

.section-2-for-water-purifier-models .border .border-row-1 {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: -0;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-1.png);
}

.section-2-for-water-purifier-models .border .border-row-2 {
  position: absolute;
  bottom: -22px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: 3;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-2.png);
}

/*! for water purifier models for apartment */

/*? Section-1 for water purifier models for apartment */
.section-1-water-purifier-models-for-apartment .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-water-purifier-models-for-apartment .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-water-purifier-models-for-apartment .banner-section .title-wrapper {
  position: relative;
}

.section-1-water-purifier-models-for-apartment .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 0 8px #316472;
  text-align: center;
}

.section-1-water-purifier-models-for-apartment .banner-section h5 {
  font-size: 17px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*? Section-2 for water purifier models for apartment */

.section-2-water-purifier-models-for-apartment {
  position: relative;
  background-color: #fff;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
  flex-direction: column;
  row-gap: 30px;
  padding: 10%;
  position: relative;
}

.section-2-water-purifier-models-for-apartment .products-col {
  background-color: #f3f9ff;
  border-radius: 50px;
  width: 300px;
  position: relative;
}

.section-2-water-purifier-models-for-apartment .products-col .wrapper {
  padding: 54px 35px;
  height: 617px;
}

.section-2-water-purifier-models-for-apartment .products-col .wrapper .img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .img
  .photo {
  margin-bottom: 30px;
  display: flex;
}

.section-2-water-purifier-models-for-apartment .products-col .wrapper .title {
  font-size: 21px;
  margin-bottom: 17px;
  font-weight: 600;
  text-align: center;
  font-family: "Playfair-Display", sans-serif;
  height: 93px;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .content-div
  .content {
  text-align: center;
  opacity: 0.8;
  text-align: center;
  position: absolute;
  opacity: 0.8;
  font-size: 16px;
  position: absolute;
  bottom: 16%;
  display: flex;
  right: 30%;
  margin-bottom: 25px;
  transform: translateX(20%);
  font-family: "PT-Sans", sans-serif;
}

.section-2-water-purifier-models-for-apartment .products-col .wrapper .price {
  display: flex;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 35px;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .price
  .scratch-price {
  text-decoration: line-through;
  color: #cccccc;
  display: flex;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .price
  .real-price {
  color: #f5a93f;
  display: flex;
}

.section-2-water-purifier-models-for-apartment .products-col .wrapper .button {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .button
  .button-a {
  text-decoration: none;
  position: absolute;
  bottom: 6%;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .button
  .button-section {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-radius: 30px;
  text-align: center;
  padding: 10px 39px;
  border: 2px solid #13bbea;
  text-decoration: none;
  transition: all 0.5s ease;
  font-family: "PT-Sans", sans-serif;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .button
  .button-section:hover {
  background: #f5a93f;
  border-color: #f5a93f;
  color: #fff;
}

.section-2-water-purifier-models-for-apartment .border .border-row {
  position: absolute;
}

.section-2-water-purifier-models-for-apartment .border .border-row-1 {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: -0;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-1.png);
}

.section-2-water-purifier-models-for-apartment .border .border-row-2 {
  position: absolute;
  bottom: -22px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: 3;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-2.png);
}

/*! For water treatment minerals */

/*? Section-1 for water treatment minerals */
.section-1-for-water-treatment-minerals .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-water-treatment-minerals .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-water-treatment-minerals .banner-section .title-wrapper {
  position: relative;
}

.section-1-for-water-treatment-minerals .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-water-treatment-minerals .banner-section h5 {
  font-size: 17px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*? Section-2 for water treatment minerals */

.section-2-for-water-treatment-minerals {
  position: relative;
  background-color: #fff;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
  flex-direction: column;
  row-gap: 30px;
  padding: 10%;
  position: relative;
}

.section-2-for-water-treatment-minerals .products-col {
  background-color: #f3f9ff;
  border-radius: 50px;
  width: 300px;
  position: relative;
}

.section-2-for-water-treatment-minerals .products-col .wrapper {
  padding: 54px 35px;
  height: 520px;
}

.section-2-for-water-treatment-minerals .products-col .wrapper .img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
}

.section-2-for-water-treatment-minerals .products-col .wrapper .img .photo {
  margin-bottom: 30px;
  display: flex;
}

.section-2-for-water-treatment-minerals .products-col .wrapper .title {
  font-size: 23px;
  margin-bottom: 17px;
  font-weight: 600;
  text-align: center;
  font-family: "Playfair-Display", sans-serif;
  height: 55px;
}

.section-2-for-water-treatment-minerals
  .products-col
  .wrapper
  .content-div
  .content {
  text-align: center;
  opacity: 0.8;
  text-align: center;
  justify-content: center;
  opacity: 0.8;
  font-size: 16px;
  display: flex;
  margin-bottom: 25px;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-water-treatment-minerals .products-col .wrapper .price {
  display: flex;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 35px;
}

.section-2-for-water-treatment-minerals
  .products-col
  .wrapper
  .price
  .scratch-price {
  text-decoration: line-through;
  color: #cccccc;
  display: flex;
}

.section-2-for-water-treatment-minerals
  .products-col
  .wrapper
  .price
  .real-price {
  color: #f5a93f;
  display: flex;
}

.section-2-for-water-treatment-minerals .products-col .wrapper .button {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.section-2-for-water-treatment-minerals
  .products-col
  .wrapper
  .button
  .button-a {
  text-decoration: none;
  position: absolute;
  bottom: 6%;
}

.section-2-for-water-treatment-minerals
  .products-col
  .wrapper
  .button
  .button-section {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-radius: 30px;
  text-align: center;
  padding: 10px 39px;
  border: 2px solid #13bbea;
  text-decoration: none;
  transition: all 0.5s ease;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-water-treatment-minerals
  .products-col
  .wrapper
  .button
  .button-section:hover {
  background: #f5a93f;
  border-color: #f5a93f;
  color: #fff;
}

.section-2-for-water-treatment-minerals .border .border-row {
  position: absolute;
}

.section-2-for-water-treatment-minerals .border .border-row-1 {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: -0;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-1.png);
}

.section-2-for-water-treatment-minerals .border .border-row-2 {
  position: absolute;
  bottom: -22px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: 3;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-2.png);
}

/*! For industrial water-treatment systems */

/*? Section-1 for İndustrial Water Treatment Systems*/
.section-1-for-industrial-water-treatment-systems .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-industrial-water-treatment-systems .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-industrial-water-treatment-systems
  .banner-section
  .title-wrapper {
  position: relative;
}

.section-1-for-industrial-water-treatment-systems .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-align: center;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-industrial-water-treatment-systems .banner-section h5 {
  font-size: 17px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*? Section-2 for İndustrial Water Treatment Systems */

.section-2-for-industrial-water-treatment-systems {
  position: relative;
  background-color: #fff;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
  flex-direction: column;
  row-gap: 30px;
  padding: 10%;
  position: relative;
}

.section-2-for-industrial-water-treatment-systems .products-col {
  background-color: #f3f9ff;
  border-radius: 50px;
  width: 300px;
  position: relative;
}

.section-2-for-industrial-water-treatment-systems .products-col .wrapper {
  padding: 54px 35px;
  height: 570px;
}

.section-2-for-industrial-water-treatment-systems .products-col .wrapper .img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-2-water-purifier-models-for-apartment
  .products-col
  .wrapper
  .img
  .photo {
  margin-bottom: 30px;
  display: flex;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .title {
  font-size: 23px;
  margin-bottom: 17px;
  font-weight: 600;
  text-align: center;
  height: 55px;
  font-family: "Playfair-Display", sans-serif;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .content-div
  .content {
  text-align: center;
  opacity: 0.8;
  text-align: center;
  opacity: 0.8;
  font-size: 16px;
  display: flex;
  margin-bottom: 25px;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .price {
  display: flex;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 35px;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .price
  .scratch-price {
  text-decoration: line-through;
  color: #cccccc;
  display: flex;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .price
  .real-price {
  color: #f5a93f;
  display: flex;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .button {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .button
  .button-a {
  text-decoration: none;
  position: absolute;
  bottom: 6%;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .button
  .button-section {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-radius: 30px;
  text-align: center;
  padding: 10px 39px;
  border: 2px solid #13bbea;
  text-decoration: none;
  transition: all 0.5s ease;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-industrial-water-treatment-systems
  .products-col
  .wrapper
  .button
  .button-section:hover {
  background: #f5a93f;
  border-color: #f5a93f;
  color: #fff;
}

.section-2-for-industrial-water-treatment-systems .border .border-row {
  position: absolute;
}

.section-2-for-industrial-water-treatment-systems .border .border-row-1 {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: -0;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-1.png);
}

.section-2-for-industrial-water-treatment-systems .border .border-row-2 {
  position: absolute;
  bottom: -22px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: 3;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-2.png);
}

/*! For water-treatment filter and spare parts */

/*? Section-1 for Water Treatnent Filter And Spare Parts*/
.section-1-for-water-treatment-filter-and-spare-parts .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-water-treatment-filter-and-spare-parts .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-water-treatment-filter-and-spare-parts
  .banner-section
  .title-wrapper {
  position: relative;
}

.section-1-for-water-treatment-filter-and-spare-parts .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-align: center;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-water-treatment-filter-and-spare-parts .banner-section h5 {
  font-size: 17px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*? Section-2 for Water Treatment Filter And Spare Parts */

.section-2-for-water-treatment-filter-and-spare-parts {
  position: relative;
  background-color: #fff;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
  flex-direction: column;
  row-gap: 30px;
  padding: 10%;
  position: relative;
}

.section-2-for-water-treatment-filter-and-spare-parts .products-col {
  background-color: #f3f9ff;
  border-radius: 50px;
  width: 300px;
  position: relative;
}

.section-2-for-water-treatment-filter-and-spare-parts .products-col .wrapper {
  padding: 54px 35px;
  height: 474px;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .img
  .photo {
  margin-bottom: 30px;
  display: flex;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .title {
  font-size: 21px;
  margin-bottom: 17px;
  font-weight: 600;
  text-align: center;
  font-family: "Playfair-Display", sans-serif;
  height: 55px;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .content-div
  .content {
  text-align: center;
  opacity: 0.8;
  text-align: center;
  opacity: 0.8;
  font-size: 16px;
  display: flex;
  margin-bottom: 25px;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .price {
  display: flex;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 35px;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .price
  .scratch-price {
  text-decoration: line-through;
  color: #cccccc;
  display: flex;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .price
  .real-price {
  color: #f5a93f;
  display: flex;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .button {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .button
  .button-a {
  text-decoration: none;
  position: absolute;
  bottom: 6%;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .button
  .button-section {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-radius: 30px;
  text-align: center;
  padding: 10px 39px;
  border: 2px solid #13bbea;
  text-decoration: none;
  transition: all 0.5s ease;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-water-treatment-filter-and-spare-parts
  .products-col
  .wrapper
  .button
  .button-section:hover {
  background: #f5a93f;
  border-color: #f5a93f;
  color: #fff;
}

.section-2-for-water-treatment-filter-and-spare-parts .border .border-row {
  position: absolute;
}

.section-2-for-water-treatment-filter-and-spare-parts .border .border-row-1 {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: -0;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-1.png);
}

.section-2-for-water-treatment-filter-and-spare-parts .border .border-row-2 {
  position: absolute;
  bottom: -22px;
  width: 100%;
  height: 65px;
  left: 0;
  z-index: 3;
  background-repeat: repeat-x;
  background-image: url(../img/urun/border-2.png);
}

/*! For-blog */
/*? Section-1-for-blog */
.section-1-for-blog .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-blog .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-blog .banner-section .title-wrapper {
  position: relative;
}

.section-1-for-blog .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-blog .banner-section h5 {
  font-size: 15px;
  font-weight: 300;
  text-align: right;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*! Section 2 forblog */

.section-2-for-blog {
  padding: 7% 19%;
}

.section-2-for-blog .products-container {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  column-gap: 20px;
  width: 100%;
  height: auto;
}

.section-2-for-blog .products-container .products-col {
  color: #000;
  text-decoration: none;
}

.section-2-for-blog .products-container .products-col .photo {
  margin-bottom: 25px;
}

.section-2-for-blog .products-container .date h4 {
  display: flex;
  font-size: 17px;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 7px;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-blog .products-container .products-col .title h2 {
  font-size: 28px;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 20px;
}

.section-2-for-blog .products-container .products-col .content h3 {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.6;
  line-height: 26px;
  margin-bottom: 50px;
  font-family: "PT-Sans", sans-serif;
}

/*! For communication */
/*? Section 1 For Communication */
.section-1-for-communication .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-communication .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-communication .banner-section .title-wrapper {
  position: relative;
}

.section-1-for-communication .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-communication .banner-section h5 {
  font-size: 15px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*? Section 2 for communication */

.section-2-for-communication {
  display: flex;
  justify-content: center;
  margin: 100px 19%;
  column-gap: 20px;
}

.section-2-for-communication .send-message-section {
  width: 792px;
}

.section-2-for-communication .send-message-section .title {
  font-size: 20px;
  position: relative;
  margin-bottom: 80px;
  font-weight: 300;
}

.section-2-for-communication .send-message-section .title h2 {
  font-size: 30px;
  font-weight: 500;
}

.section-2-for-communication .send-message-section .title::after {
  content: "";
  background-image: url(../img/iletisim/wave-icon-1.png);
  position: absolute;
  width: 33px;
  height: 8px;
  bottom: -25px;
  left: 0;
}

.section-2-for-communication .send-message-section .inputs .for-inputs-row {
  display: flex;
}

.section-2-for-communication
  .send-message-section
  .inputs
  .for-inputs-row
  .input-div
  .input-title {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-communication
  .send-message-section
  .inputs
  .for-inputs-row
  .input-div
  .input {
  padding: 20px 20px;
  border: none;
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 70px;
  margin-bottom: 50px;
  text-align: start;
  height: 55px;
  font-size: 16px;
}

.section-2-for-communication
  .send-message-section
  .inputs
  .for-inputs-row-3
  .input-div
  .input {
  border: none;
  background-color: #f8f8f8;
  border-radius: 30px;
  margin-bottom: 50px;
}

.section-2-for-communication .send-message-section .buttons .button {
  border: 2px solid #f5a93f;
  padding: 16px 40px;
  opacity: 0.8;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  background-color: #fff;
  border-radius: 30px;
  transition: all 1s ease;
  font-family: "PT-Sans", sans-serif;
}

.section-2-for-communication .send-message-section .buttons .button:hover {
  border: 2px solid #13bbea;
  background-color: #13bbea;
}

.section-2-for-communication .contact-us-section .title {
  position: relative;
  margin-bottom: 15%;
}

.section-2-for-communication .contact-us-section .title h2 {
  font-size: 30px;
  font-weight: 500;
}

.section-2-for-communication .contact-us-section .title::after {
  content: "";
  background-image: url(../img/iletisim/wave-icon-1.png);
  position: absolute;
  width: 33px;
  height: 8px;
  bottom: -25px;
  left: 0;
}

.section-2-for-communication .contact-us-section ul {
  list-style: none;
}

.section-2-for-communication .contact-us-section ul li {
  display: flex;
}

.section-2-for-communication
  .contact-us-section
  ul
  li:hover
  .section-2-for-communication
  .contact-us-section
  ul
  li
  .icon {
  background-color: #213d5e;
}

.section-2-for-communication .contact-us-section ul li .icon {
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  max-height: 50px;
  border-radius: 50%;
  background-color: #f3f9ff;
}

.section-2-for-communication .contact-us-section ul li {
  display: flex;
  column-gap: 20px;
  align-items: center;
  padding-bottom: 15px;
  transition: all 0.5s ease;
}

.section-2-for-communication .contact-us-section ul li .content a:hover {
  color: #f5a93f;
}

.section-2-for-communication .contact-us-section ul li:hover {
  color: #f5a93f;
}

.contact-us-title-span {
  transition: all 0.5s ease;
}

.section-2-for-communication
  .contact-us-section
  ul
  li:hover
  .contact-us-title-span {
  color: #f5a93f !important;
}

.section-2-for-communication .contact-us-section ul li .content {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-family: "PT-Sans", sans-serif;
  color: #000;
}

.section-2-for-communication .contact-us-section ul li .content a {
  color: #000;
  font-family: "PT-Sans", sans-serif;
  text-decoration: none;
}

.section-2-for-communication .contact-us-section ul li .content span {
  font-weight: 700;
  font-family: "Playfair-Display", sans-serif;
}

/*! For Product Properties */

/*? Section 1 for product properties */
.section-1-for-product-properties .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-product-properties .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-product-properties .banner-section .title-wrapper {
  position: relative;
}

.section-1-for-product-properties .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-product-properties .banner-section h5 {
  font-size: 15px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-shadow: 0 0 8px #316472;
}

/*? Section 2 for product properties */
.section-2-for-product-properties .product-properties-and-images {
  display: flex;
  margin: 5% 0;
  column-gap: 5%;
  justify-content: center;
}

.section-2-for-product-properties
.product-properties-and-images
.product-images-wrapper {
  margin-bottom: 8%;
}

.section-2-for-product-properties
  .product-properties-and-images
  .product-images-wrapper h3 {
  max-width: 700px;
}

.section-2-for-product-properties
  .product-properties-and-images
  .product-images-wrapper
  h5 {
  font-size: 14px;
}

.section-2-for-product-properties
  .product-properties-and-images
  .product-images-wrapper
  .img {
  border: 1px solid #979797;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 500px;
}

.section-2-for-product-properties
.product-properties-and-images
.product-properties-wrapper
.product-properties {
  display: flex;
  flex-direction: column;
  row-gap: 27px;
  margin-top: 40px;
  min-width: 600px;
}

.section-2-for-product-properties
  .product-properties-and-images
  .product-properties-wrapper
  .product-properties
  .title {
  font-size: 30px;
  font-family: "Playfair-Display", sans-serif;
}

.section-2-for-product-properties
  .product-properties-and-images
  .product-properties-wrapper
  .product-properties
  .content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.section-2-for-product-properties
  .product-properties-and-images
  .product-properties-wrapper
  .product-properties
  .content
  .content-item {
  font-size: 20px;
  max-width: 600px;
  font-family: 'PT-Sans,', sans-serif;
}

.section-2-for-product-properties .other-products {
  display: flex;
  justify-content: center;
  margin: 0% 15%;
}

.section-2-for-product-properties .other-products .other-products-section {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.section-2-for-product-properties
  .other-products
  .other-products-section
  .section-title
  .title {
  font-size: 33px;
  font-family: "Raleway", sans-serif;
}

.section-2-for-product-properties
  .other-products
  .other-products-section
  .section-content {
  display: flex;
  column-gap: 20px;
}

.section-2-for-product-properties
.other-products
.other-products-section
.section-content
.properties {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 10%;
  width: 16%;
}

.section-2-for-product-properties
  .other-products
  .other-products-section
  .section-content
  .properties
  a {
  color: #000;
  text-decoration: none;
}

.section-2-for-product-properties
  .other-products
  .other-products-section
  .section-content
  .properties
  .img-div {
  width: 215px;
  height: 146px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bbbbbb;
  margin-bottom: 10px;
}

.section-2-for-product-properties
.other-products
.other-products-section
.section-content
.properties
.img-div
img {
  object-fit: contain;
  object-position: center;
  max-width: 215px;
  max-height: 120px;
  width: 70%;
}

.section-2-for-product-properties
  .other-products
  .other-products-section
  .section-content
  .properties
  .img-name {
  font-size: 22px;
  font-weight: 500;
  opacity: 0.8;
  font-family: "PT-Sans", sans-serif;
  text-align: center;
  transition: color 600ms ease;
}

.section-2-for-product-properties
  .other-products
  .other-products-section
  .section-content
  .properties:hover
  .img-name {
  color: #f5a93f;
}
/*! For Mini Blog */
/*? Section 1 For Communication */
.section-1-for-mini-blog .banner-section {
  background-image: url(../img/water-background.webp);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 13% 0px 15% 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.section-1-for-mini-blog .banner-section::before {
  content: "";
  position: absolute;
  background: url(../img/urun/wave-border.webp);
  bottom: 0;
  height: 143px;
  width: 100%;
}

.section-1-for-mini-blog .banner-section .title-wrapper {
  position: relative;
}

.section-1-for-mini-blog .banner-section h3 {
  font-size: 73px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 0 8px #316472;
}

.section-1-for-mini-blog .banner-section h5 {
  font-size: 15px;
  font-weight: 300;
  position: absolute;
  right: 5px;
  text-align: right;
  text-shadow: 0 0 8px #316472;
}

/*? Section 2 for mini blog */
.section-2-for-mini-blog .mini-blog-sections {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.section-2-for-mini-blog {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: start;
  padding: 5% 20%;
}

.section-2-for-mini-blog .mini-blog-img .blog-image {
  width: 100%;
  height: auto;
}

.section-2-for-mini-blog .mini-blog-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-2-for-mini-blog .mini-blog-sections .title {
  font-size: 40px;
  font-weight: 600;
  opacity: 0.8;
  font-family: "Playfair-Display", sans-serif;
}

.section-2-for-mini-blog .mini-blog-sections .content {
  font-weight: 400;
  font-size: 1.125rem;
  font-family: "PT-Sans", sans-serif;
}
