@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
}

a {
  color: inherit;
}

.content {
  width: 100%;
  max-width: 1248px;
  margin: auto;
}

header {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 120px;
  position: sticky;
  z-index: 2;
  top: 0;
  background-color: #ffffff;
}
header .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
}
header .content .logo {
  width: 10%;
}
header .content .logo img {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .content nav {
  height: 100%;
  width: 50%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
header .content nav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: 100%;
}
header .content nav ul li a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
header .content nav ul li.dropdown > div:first-child {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
header .content nav ul li.dropdown .dropdown-icon {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 10px;
  margin-left: 10px;
}
header .content nav ul li .mega-menu {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
}
header .content nav ul li .mega-menu .megamenu-content {
  max-width: 1248px;
  margin: auto;
  padding: 5% 0;
}
header .content nav ul li .mega-menu h2 {
  color: #023775;
  padding-bottom: 10px;
}
header .content nav ul li .mega-menu p {
  color: #3c4c4f;
}
header .content nav ul li .mega-menu .megamenu-boxes {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}
header .content nav ul li .mega-menu .megamenu-boxes .highlight-box {
  width: 19%;
  height: 100%;
  position: absolute;
  border-radius: 14px;
  opacity: 0;
  transition: transform 0.5s ease, background-color 0.3s ease, opacity 0.5s ease;
  pointer-events: none;
}
header .content nav ul li .mega-menu .megamenu-boxes .megamenu-box {
  background-color: #f2f3f6;
  border-radius: 14px;
  width: 19%;
  transition: background-color 0.5s ease-in-out, transform 0.5s ease;
}
header .content nav ul li .mega-menu .megamenu-boxes .megamenu-box a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  height: 250px;
}
header .content nav ul li .mega-menu .megamenu-boxes .megamenu-box a img {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 100px;
  z-index: 2;
}
header .content nav ul li .mega-menu .megamenu-boxes .megamenu-box a p {
  padding: 0 15px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 2;
  text-align: center;
}
header .content nav ul li .mega-menu .megamenu-boxes .megamenu-box a:hover p {
  color: #ffffff;
}
header .content nav ul li .mega-menu .megamenu-boxes .megamenu-box a:hover img {
  filter: brightness(100);
}
header .content .search {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
  width: 15%;
  justify-content: space-evenly;
}
header .content .search span {
  color: #7e8a95;
}
header .content .lang {
  width: 5%;
}
header .content .lang a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
header .content .contact {
  width: 10%;
  text-align: end;
}
header .content .contact p {
  color: #0083a3;
  font-weight: 600;
}
header .content .contact p:nth-child(2) {
  color: #7e8a95;
  font-weight: 600;
}
header .content .dealer {
  width: 10%;
}
header .content .dealer a {
  display: block;
  background: #0083a3;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
  padding: 7px 0;
  font-weight: 500;
  font-size: 14px;
}
header .content .dealer a:hover {
  color: #0083a3;
  background: #fad926;
}

a.mobileDealer {
  display: block;
  background: #0083a3;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
  padding: 15px 0;
  font-weight: 500;
  font-size: 14px;
}
a.mobileDealer:hover {
  color: #0083a3;
  background: #fad926;
}

section.main-slider {
  height: calc(100vh - 120px);
  position: relative;
}
section.main-slider video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.main-slider .owl-carousel,
section.main-slider .owl-stage-outer,
section.main-slider .owl-stage,
section.main-slider .owl-item,
section.main-slider .item {
  height: 100%;
}
section.main-slider .owl-carousel > img,
section.main-slider .owl-stage-outer > img,
section.main-slider .owl-stage > img,
section.main-slider .owl-item > img,
section.main-slider .item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.main-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 100%;
  max-width: 1248px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  transform: translateX(-50%);
}
section.main-slider .owl-dots .owl-dot {
  width: 32px;
  height: 32px;
  position: relative;
}
section.main-slider .owl-dots .owl-dot span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  background: #d9d9d9;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
section.main-slider .owl-dots .owl-dot.active span {
  width: 100%;
}
section.main-slider .owl-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  width: 100%;
  gap: 20px;
  max-width: 1248px;
  justify-content: flex-end;
  z-index: 3;
  left: 50%;
  bottom: 50%;
  transform: translateX(-50%);
}
section.main-slider .slider-heading {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
section.main-slider .slider-heading h1 {
  color: #ffffff;
  font-family: Poppins;
  font-size: 86px;
  font-weight: 700;
  line-height: 94px;
  width: 50%;
}
section.main-slider .slider-heading span {
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  line-height: 94px;
}
section.main-slider .slider-boxes {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  width: 100%;
  bottom: 5%;
  z-index: 1;
}
section.main-slider .slider-boxes .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.main-slider .slider-boxes .slider-box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  max-width: 19%;
  height: 300px;
  border-radius: 14px;
  background: linear-gradient(180deg, #0051b0 0%, #023775 100%);
}
section.main-slider .slider-boxes .slider-box:nth-child(2) {
  background: linear-gradient(180deg, #0083a3 0%, #1cc3ec 100%);
}
section.main-slider .slider-boxes .slider-box:nth-child(3) {
  background: linear-gradient(180deg, #008d30 0%, #00907f 100%);
}
section.main-slider .slider-boxes .slider-box:nth-child(4) {
  background: linear-gradient(180deg, #fad926 0%, #fab226 100%);
}
section.main-slider .slider-boxes .slider-box:nth-child(5) {
  background: linear-gradient(180deg, #73b629 0%, #325f02 100%);
}
section.main-slider .slider-boxes .slider-box p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 40px 10px 0 10px;
  text-align: center;
}
section.main-slider .slider-boxes .slider-box img {
  filter: brightness(100);
}
section.main-slider .slider-boxes .slider-box svg {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 0;
}
section.main-slider .slider-boxes .slider-box:hover svg {
  height: 50px;
}

.products {
  padding: 5% 0;
  background-color: #f4f4f4;
}
.products .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.products h2 {
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  width: 70%;
}
.products p {
  color: #023775;
  font-size: 16px;
  font-weight: 600;
}
.products .products-heading {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 50px;
}
.products .products-heading div:nth-child(2) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
}
.products .products-heading div:nth-child(2) > a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.products .accordion-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.products .accordion-container .accordion-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  flex: 1;
  height: 700px;
  border-radius: 20px;
}
.products .accordion-container .accordion-item strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.products .accordion-container .accordion-item:hover {
  background-color: #ffffff !important;
}
.products .accordion-container .accordion-item.meyveler {
  background-color: #0051b0;
}
.products .accordion-container .accordion-item.meyveler:hover .caption img:nth-child(1) {
  content: url(/uploads/gubreler/meyveler2.webp);
}
.products .accordion-container .accordion-item.meyveler:hover .caption strong {
  color: #0051b0;
}
.products .accordion-container .accordion-item.sebzeler {
  background-color: #0083a3;
}
.products .accordion-container .accordion-item.sebzeler:hover .caption img:nth-child(1) {
  content: url(/uploads/gubreler/sebzeler2.webp);
}
.products .accordion-container .accordion-item.sebzeler:hover .caption strong {
  color: #0083a3;
}
.products .accordion-container .accordion-item.baklagiller {
  background-color: #73b629;
}
.products .accordion-container .accordion-item.baklagiller:hover .caption img:nth-child(1) {
  content: url(/uploads/gubreler/bakliyatlar2.webp);
}
.products .accordion-container .accordion-item.baklagiller:hover .caption strong {
  color: #73b629;
}
.products .accordion-container .accordion-item.tahilurunleri {
  background-color: #00907f;
}
.products .accordion-container .accordion-item.tahilurunleri:hover .caption img:nth-child(1) {
  content: url(/uploads/gubreler/tahillar2.webp);
}
.products .accordion-container .accordion-item.tahilurunleri:hover .caption strong {
  color: #00907f;
}
.products .accordion-container .accordion-item.yaglitohumlar {
  background-color: #fab226;
}
.products .accordion-container .accordion-item.yaglitohumlar:hover .caption img:nth-child(1) {
  content: url(/uploads/gubreler/yagli-tohumlar2.webp);
}
.products .accordion-container .accordion-item.yaglitohumlar:hover .caption strong {
  color: #fab226;
}
.products .accordion-container .accordion-item .caption {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.products .accordion-container .accordion-item .caption {
  cursor: pointer;
}
.products .accordion-container .accordion-item .list {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 0%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.products .accordion-container .accordion-item .list .inner {
  padding: 30px;
  position: absolute;
  background: #ffffff;
}
.products .accordion-container .accordion-item .list .inner .product-search {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fff;
  box-shadow: 0px 20px 34px -20px rgba(0, 0, 0, 0.25);
}
.products .accordion-container .accordion-item .list .inner .product-search input {
  border-style: solid;
  border-color: #ebebeb;
  border-width: 1px 0 1px 1px;
  border-radius: 10px 0 0 10px;
  width: 80%;
  padding: 20px;
}
.products .accordion-container .accordion-item .list .inner .product-search button {
  width: 20%;
  background: #fff;
  border-style: solid;
  border-color: #ebebeb;
  border-width: 1px 1px 1px 0;
  border-radius: 0 10px 10px 0;
  padding: 20px;
}
.products .accordion-container .accordion-item .list .inner .inner-content {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.products .accordion-container .accordion-item .list .inner .inner-content .inner-content-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  max-width: 140px;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  height: 150px;
}
.products .accordion-container .accordion-item .list .inner .inner-content .inner-content-item:hover {
  background-color: #ebebeb;
}
.products .accordion-container .accordion-item .list .inner .inner-content .inner-content-item .item-image {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 70%;
}
.products .accordion-container .accordion-item .list .inner .inner-content .inner-content-item .item-image img {
  width: 60%;
  height: auto;
}
.products .accordion-container .accordion-item .list .inner .inner-content .inner-content-item .item-title {
  border-top: 1px solid #ebebeb;
  text-align: center;
  width: 100%;
  height: 30%;
  padding: 0;
  font-size: 12px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.products .accordion-container .accordion-item.accordion-active {
  background-color: #ffffff;
}
.products .accordion-container .accordion-item.accordion-active.meyveler .caption img:nth-child(1) {
  content: url("../images/gubreler/meyveler2.webp");
}
.products .accordion-container .accordion-item.accordion-active.meyveler .caption strong {
  color: #0083a3;
}
.products .accordion-container .accordion-item.accordion-active.sebzeler .caption img:nth-child(1) {
  content: url("../images/gubreler/sebzeler2.webp");
}
.products .accordion-container .accordion-item.accordion-active.sebzeler .caption strong {
  color: #008d2d;
}
.products .accordion-container .accordion-item.accordion-active.bakliyatlar .caption img:nth-child(1) {
  content: url("../images/gubreler/bakliyatlar2.webp");
}
.products .accordion-container .accordion-item.accordion-active.bakliyatlar .caption strong {
  color: #fab226;
}
.products .accordion-container .accordion-active {
  flex: 4;
}
.products .accordion-container .accordion-active .caption {
  width: 25%;
}
.products .accordion-container .accordion-active .list {
  width: 75%;
}

.home-boxes {
  padding: 5% 0;
}
.home-boxes .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-boxes .content .surudurlebilirlik {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background-image: url("../images/homeboxes/sürüdürlebilirlik.webp");
  flex: 1;
  max-width: 48%;
  height: 600px;
  padding: 40px;
  background-position: center top;
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  align-items: flex-end;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 180% auto;
}
.home-boxes .content .surudurlebilirlik:hover {
  background-size: 190% auto;
}
.home-boxes .content .homebox-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1;
  max-width: 48%;
  justify-content: space-between;
}
.home-boxes .content .homebox-container .belgeler {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background-image: url("../images/homeboxes/belgeler.webp");
  max-height: 48%;
  background-position: 100%;
  flex: 1;
  padding: 40px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  align-items: flex-end;
}
.home-boxes .content .homebox-container .destek {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #00907f 0%, #00907f 100%);
  max-height: 48%;
  flex: 1;
  border-radius: 14px;
  padding: 40px;
}
.home-boxes .content .homebox-container .destek div:nth-child(1) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
.home-boxes .content .homebox-container .destek div:nth-child(2) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 50%;
}
.home-boxes .content .homebox-container .destek h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  width: 50%;
}
.home-boxes .content .homebox-container .destek span {
  color: #ffffff;
  font-weight: 600;
  font-size: 40px;
}

.news {
  padding: 5% 0;
}
.news .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.news .news-heading {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
}
.news .news-heading h2 {
  color: #000000;
  font-size: 24px;
  padding: 0;
}
.news .news-heading h3 {
  color: #004a98;
  font-size: 26px;
  width: 50%;
}
.news .news-heading hr {
  border-color: #004a98;
  width: 30%;
}
.news .news-heading .carousel-nav button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.news #news-carousel {
  width: 70%;
}

.blog-post {
  padding: 10px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.blog-post a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.blog-post h2 {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  padding: 20px 0;
}
.blog-post .img-hover-zoom {
  overflow: hidden;
  border-radius: 16px;
}
.blog-post img {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
}
.blog-post .blog-info {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.blog-post .blog-info > div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 25%;
}
.blog-post .blog-info > div span:nth-of-type(1) {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.blog-post .blog-info > div .arrow-border {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 0;
  border: 1px solid black;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.blog-post .blog-info > div .arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
}
.blog-post:hover .arrow-border {
  width: 110% !important;
}
.blog-post:hover img {
  transform: scale(1.2);
}
.blog-post:hover .blog-info div > span:nth-of-type(1) {
  margin-left: 10px;
}

.whyus .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background-image: url("../images/whyus/whyus.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
}
.whyus .content .overlay {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  padding: 40px;
  justify-content: space-evenly;
}
.whyus .content .overlay h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
}
.whyus .content .overlay p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5%;
}
.whyus .content .overlay .whyus-box-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.whyus .content .overlay .whyus-box-container .whyus-box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  flex: 1;
  min-height: 250px;
  border-radius: 14px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.whyus .content .overlay .whyus-box-container .whyus-box p {
  align-content: end;
}
.whyus .content .overlay .whyus-box-container .whyus-box:hover {
  background-color: #ffffff;
}
.whyus .content .overlay .whyus-box-container .whyus-box:hover p {
  color: #000000;
}
.whyus .content .overlay .whyus-box-container .whyus-box:hover:nth-child(1) img {
  content: url("../images/whyus/whyus-box1-black.webp");
}
.whyus .content .overlay .whyus-box-container .whyus-box:hover:nth-child(2) img {
  content: url("../images/whyus/whyus-box2-black.webp");
}
.whyus .content .overlay .whyus-box-container .whyus-box:hover:nth-child(3) img {
  content: url("../images/whyus/whyus-box3-black.webp");
}
.whyus .content .overlay .whyus-box-container .whyus-box:hover:nth-child(4) img {
  content: url("../images/whyus/whyus-box4-black.webp");
}

footer {
  background-color: #f4f4f4;
  padding-top: 5%;
  margin-top: 5%;
}
footer .top {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .top .e-bulten {
  width: 50%;
  border-radius: 14px;
  padding: 30px;
  background: linear-gradient(103deg, #005692 0.79%, #0083a3 100%);
}
footer .top .e-bulten .inputHolder {
  margin: 15px 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .top .e-bulten h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
footer .top .e-bulten span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
footer .top .e-bulten input:not(input[type=checkbox]) {
  height: 50px;
  border-radius: 14px;
  border: none;
}
footer .top .e-bulten input[type=text] {
  width: 75%;
  padding: 20px;
  background: #023775;
  color: #fff;
}
footer .top .e-bulten input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .top .e-bulten input[type=submit] {
  color: #005692;
  width: 20%;
  background-color: #ffffff;
  cursor: pointer;
}
footer .top .e-bulten label {
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
footer .top .e-bulten label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
footer .top .e-bulten label a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  text-decoration-line: underline;
}
footer .top .e-bulten label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #023775;
  border-radius: 4px;
}
footer .top .e-bulten label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
footer .top .e-bulten label input:checked ~ .checkmark:after {
  display: block;
}
footer .top .e-bulten label .checkmark:after {
  left: 10px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
footer .top .e-katalog {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 47%;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 14px;
  padding: 30px;
  background: linear-gradient(138deg, #0083a3 0%, #00907f 100%);
}
footer .top .e-katalog div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .top .e-katalog div:nth-child(1) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
footer .top .e-katalog div:nth-child(1) span img {
  margin-left: 20px;
}
footer .top .e-katalog div img {
  border-radius: 4px;
}
footer .top .e-katalog h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
footer .top .e-katalog span,
footer .top .e-katalog a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
footer .top .satis-noktalari {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  border-radius: 14px;
  padding: 30px;
  background-image: url("../images/satis-noktalari.webp");
}
footer .top .satis-noktalari h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
footer .footer-main {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  justify-content: space-between;
}
footer .footer-main .footer-menu {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  justify-content: space-between;
}
footer .footer-main .footer-menu .footer-menu-item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
}
footer .footer-main .footer-menu .footer-menu-item .footer-menu-title {
  color: #023775;
  font-size: 16px;
  font-weight: 600;
}
footer .footer-main .footer-menu .footer-menu-item ul {
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  line-height: 34px;
}
footer .footer-main .footer-social {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 25%;
  padding: 30px;
  justify-content: space-between;
  border-radius: 14px;
  border-radius: 14px;
  max-height: 200px;
  background: #73b729;
}
footer .footer-main .footer-social strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  width: 70%;
}
footer .footer-main .footer-social .social-links {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}
footer .footer-main .footer-social .social-links a {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
footer .footer-main .footer-social .social-links a:hover {
  transform: scale(1.4);
}
footer .footer-copyright {
  padding: 40px 0;
  border-top: 1px solid rgba(2, 55, 117, 0.2);
}
footer .footer-copyright span {
  color: #2d2a26;
  font-size: 14px;
  font-weight: 300;
}
footer .footer-copyright a {
  color: #023775;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb {
  display: flex;
  padding: 30px 0;
}

.breadcrumb li {
  margin-right: 10px;
}

.breadcrumb li a {
  color: #2d2a26;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 10px;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb .active {
  color: #0083a3;
  font-size: 12px;
  font-weight: 500;
  pointer-events: none;
}

.page-name {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-radius: 100px;
  background-color: #0083a3;
  max-width: 160px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
}

.page-title {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 30px;
  justify-content: space-between;
}
.page-title h2 {
  color: #000000;
  font-size: 34px;
  font-weight: 400;
  width: 70%;
}
.page-title .carousel-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 10%;
  justify-content: space-between;
}
.page-title .carousel-nav button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

#aboutus-carousel {
  margin-top: 30px;
}
#aboutus-carousel .owl-item img {
  border-radius: 16px !important;
}

.about-us {
  margin: 30px 0;
}
.about-us h3 {
  color: #0083a3;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
}
.about-us h4 {
  color: #0083a3;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
}
.about-us .line {
  width: 50px;
  height: 1px;
  background-color: #000000;
}
.about-us p, .about-us ul, .about-us ol {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
}
.about-us p strong, .about-us ul strong, .about-us ol strong {
  font-weight: 500;
}
.about-us ul {
  padding-left: 25px;
}
.about-us ul li {
  list-style: disc;
  padding-bottom: 10px;
}
.about-us ul ul, .about-us ol ul {
  margin-top: 0;
}
.about-us table {
  width: 100%;
}
.about-us table td {
  font-size: 16px;
  padding: 5px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.about-us table td:last-child {
  border-right: none;
}

.milestone-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.milestone-container .milestone-heading {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 32%;
}
.milestone-container .milestone-heading h1 {
  color: #0083a3;
  font-size: 36px;
  font-weight: 300;
}
.milestone-container .milestone {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 32%;
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  background-color: #005692;
}
.milestone-container .milestone span:nth-child(2) {
  font-size: 40px;
  font-weight: 300;
  margin-top: 30px;
}
.milestone-container .milestone span:nth-child(3) {
  font-size: 16px;
  font-weight: 400;
}
.milestone-container .milestone:nth-child(3) {
  background-color: #0083a3;
}
.milestone-container .milestone:nth-child(4) {
  margin-top: 2%;
  background-color: #008d2d;
}
.milestone-container .milestone:nth-child(5) {
  margin-top: 2%;
  background-color: #00907f;
}
.milestone-container .milestone:nth-child(6) {
  margin-top: 2%;
  background-color: #fab226;
}

.category-filter {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  width: 30%;
}
.category-filter #category-select {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #accdef;
  padding: 16px;
  background: #fff;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog {
  background-color: #f4f7fa;
}

.bg-soft {
  background-color: #f4f7fa;
}

#blog-carousel {
  padding-bottom: 30px;
  margin-top: 40px;
}
#blog-carousel .item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
  border-radius: 20px;
  padding: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#blog-carousel .item span {
  text-align: center;
  width: 30%;
  border-radius: 6px;
  padding: 10px;
  background-color: #ffffff;
}
#blog-carousel .item p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
}
#blog-carousel .owl-dots {
  margin-top: 20px !important;
}
#blog-carousel .owl-dot span {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#blog-carousel .owl-dot.active span {
  width: 30px !important;
  background-color: #0083a3;
}

.blog-heading {
  margin-top: 50px;
}
.blog-heading h1 {
  text-align: center;
  color: #000000;
  font-size: 36px;
  font-weight: 300;
}
.blog-heading h1 strong:nth-child(4) {
  color: #00907f;
  font-size: 36px;
  font-weight: 700;
}

.blog-category-filter {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 2% 0;
  gap: 40px;
}
.blog-category-filter .blog-category-select {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 30%;
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid #7e8a95;
  background: #f5f5f7;
}
.blog-category-filter .blog-category-select span:nth-child(1) {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}
.blog-category-filter .blog-category-select span:nth-child(2) {
  color: #2d2a26;
  font-size: 20px;
  font-weight: 300;
  margin-top: 10px;
}
.blog-category-filter .blog-category-select.bcsactive {
  background-color: #0083a3;
  border: none;
}
.blog-category-filter .blog-category-select.bcsactive span {
  color: #ffffff;
}

.blog-category-select.bcsactive {
  background-color: #007bff;
  color: white;
}

#hs-carousel {
  margin-top: 40px;
}

.hsform {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5% 0;
}
.hsform input,
.hsform textarea {
  font-family: "Poppins";
  margin-top: 20px;
  padding: 15px 30px;
}
.hsform input {
  width: 48%;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid #accdef;
  background: #fff;
}
.hsform input[type=file] {
  padding: 0;
  border: none;
  margin: 0;
  border-radius: 0;
}
.hsform .custom-file-upload {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #ccc;
  margin-top: 20px;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #accdef;
  background: #fff;
}
.hsform .custom-file-upload span:nth-child(2) {
  text-align: end;
}
.hsform .custom-file-upload span:nth-child(2) svg {
  margin-left: 4px;
}
.hsform textarea {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  border: 1px solid #accdef;
  background: #fff;
  resize: none;
}
.hsform input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.hsform span {
  width: 50%;
}
.hsform input[type=submit] {
  width: 50%;
}
.hsform label.privacy {
  color: #000000;
  font-size: 16px;
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  margin-top: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hsform label.privacy .hs-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
  border-color: #accdef;
  border-radius: 4px;
}
.hsform label.privacy .hs-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.hsform label.privacy input:checked ~ .hs-checkmark:after {
  display: block;
}
.hsform label.privacy .hs-checkmark:after {
  left: 10px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hsform .arrow-button {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}
.hsform .arrow-button button {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
}

.contact-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.contact-container .destek {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #00907f 0%, #00907f 100%);
  width: 38%;
  border-radius: 14px;
  padding: 40px;
}
.contact-container .destek div:nth-child(1) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
.contact-container .destek div:nth-child(2) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 50%;
}
.contact-container .destek h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  width: 50%;
}
.contact-container .destek a {
  color: #ffffff;
  font-weight: 600;
  font-size: 36px;
}
.contact-container .contact-box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 30%;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e3ebf2;
  background-color: #fff;
}
.contact-container .contact-box a:nth-child(2) {
  display: flex;
  gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.contact-container .contact-box a:nth-child(3) {
  color: #00907f;
  font-size: 16px;
  font-weight: 700;
}

.contact-section .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.contact-section .content .map {
  width: 48%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 1px solid #e3ebf2;
  overflow: hidden;
}
.contact-section .content .map iframe {
  width: 100%;
  height: 100%;
}
.contact-section .content .contact-form {
  width: 48%;
  padding: 40px;
  border-radius: 10px;
  background: linear-gradient(138deg, #0083a3 0%, #00907f 100%);
}
.contact-section .content .contact-form > div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.contact-section .content .contact-form p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
.contact-section .content .contact-form input,
.contact-section .content .contact-form textarea {
  margin-top: 20px;
  padding: 15px 30px;
}
.contact-section .content .contact-form input:nth-child(-n+2) {
  width: 100%;
}
.contact-section .content .contact-form input {
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid #accdef;
  background: #fff;
}
.contact-section .content .contact-form textarea {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  border: 1px solid #accdef;
  background: #fff;
  font-family: "Poppins";
  resize: none;
}
.contact-section .content .contact-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact-section .content .contact-form span {
  width: 50%;
}
.contact-section .content .contact-form input[type=submit] {
  width: 50%;
}
.contact-section .content .contact-form label.privacy {
  color: #ffffff;
  font-size: 12px;
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  margin-top: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contact-section .content .contact-form label.privacy .hs-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
  border-color: #accdef;
  border-radius: 4px;
}
.contact-section .content .contact-form label.privacy .hs-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.contact-section .content .contact-form label.privacy input:checked ~ .hs-checkmark:after {
  display: block;
}
.contact-section .content .contact-form label.privacy .hs-checkmark:after {
  left: 10px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contact-section .content .contact-form button {
  border-radius: 10px;
  background: #ffffff;
  color: #023775;
  text-align: center;
  font-size: 16px;
  padding: 15px 30px;
  font-weight: 400;
  border: none;
  margin-top: 20px;
  align-self: flex-end;
}

.gubreler-category-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gubreler-category-container .gubreler-category-filter {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  background-color: #f2f3f6;
  padding: 20px 15px;
  align-items: center;
  width: 19%;
}
.gubreler-category-container .gubreler-category-filter:nth-child(1).active {
  background: linear-gradient(180deg, #0051b0 0%, #023775 100%);
  color: #ffffff;
}
.gubreler-category-container .gubreler-category-filter:nth-child(2).active {
  background: linear-gradient(180deg, #0083A3 0%, #1CC3EC 100%);
  color: #ffffff;
}
.gubreler-category-container .gubreler-category-filter:nth-child(3).active {
  background: linear-gradient(180deg, #008D30 0%, #00907F 100%);
  color: #ffffff;
}
.gubreler-category-container .gubreler-category-filter:nth-child(4).active {
  background: linear-gradient(180deg, #FAD926 0%, #FAB226 100%);
  color: #ffffff;
}
.gubreler-category-container .gubreler-category-filter:nth-child(5).active {
  background: linear-gradient(180deg, #73b629 0%, #325f02 100%);
  color: #ffffff;
}
.gubreler-category-container .gubreler-category-filter.active img {
  filter: brightness(100);
}
.gubreler-category-container .gubreler-category-filter img {
  width: 20%;
  height: 40px;
}
.gubreler-category-container .gubreler-category-filter img path {
  stroke: #6d7480;
}
.gubreler-category-container .gubreler-category-filter span {
  font-size: 14px;
  width: 80%;
  padding-left: 10px;
}

.masonry-gallery {
  display: flex;
  max-height: 400px;
  margin-top: 40px;
}
.masonry-gallery img {
  border-radius: 16px;
}

.left-image {
  flex: 0 0 50%;
  margin-right: 10px;
}

.left-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.right-images {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.right-row {
  display: flex;
  height: 48%;
  justify-content: space-between;
}

.right-row img {
  object-fit: cover;
  width: 48%;
  height: 100%;
}
.right-row img.stamp {
  object-fit: contain;
}
.right-row svg {
  width: 48%;
  height: 100%;
}

.gubreler-products {
  margin-top: 40px;
}
.gubreler-products h3 {
  color: #005692;
  font-size: 26px;
  font-weight: 600;
}
.gubreler-products p {
  color: #3c4c4f;
  font-size: 16px;
  font-weight: 400;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 2%;
  margin-top: 40px;
}
.products-container .product {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d4e1e4;
  background: #fff;
  /*background-image: url(../images/products/product-bg.svg);*/
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: 10%;
  margin: 10px 0;
}
.products-container .product:hover {
  background-size: 60%;
}
.products-container .product:hover img {
  width: 50%;
}
.products-container .product:hover span {
  opacity: 1;
}
.products-container .product img {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 60%;
  height: auto;
  z-index: 22;
}
.products-container .product p:nth-child(1) {
  width: 100%;
  color: #005692;
  font-size: 10px;
  font-weight: 600;
}
.products-container .product p:nth-child(3) {
  width: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.products-container .product p:nth-child(4) {
  width: 100%;
  color: #6d7480;
  font-size: 12px;
  font-weight: 300;
}
.products-container .product span {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  align-items: start;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-info .product-description {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 48%;
}
.product-info .product-description .product-heading {
  display: flex;
  justify-content: space-between;
}
.product-info .product-description .product-heading div {
  width: calc(100% - 130px);
}
.product-info .product-description .product-heading img {
  width: 130px;
  height: auto;
  display: block;
}
.product-info .product-description p:nth-child(1) {
  color: #0083a3;
  font-size: 12px;
  font-weight: 600;
}
.product-info .product-description h1 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
}
.product-info .product-description .line {
  width: 50px;
  height: 1px;
  background-color: #000000;
  margin: 20px 0;
}
.product-info .product-description a.orderBtn {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  width: 50%;
  border-radius: 10px;
  background-color: rgba(126, 138, 149, 0.2);
  color: #000001;
  font-size: 16px;
  margin: 20px 0;
}
.product-info .product-description .product-info-box {
  padding-top: 30px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-info .product-description .product-info-box a:nth-child(-n+2) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 25%;
  height: 200px;
  justify-content: space-between;
  border-radius: 10px;
  padding: 20px;
}
.product-info .product-description .product-info-box a:nth-child(-n+2) p {
  color: #ffffff;
  font-size: 16px;
}
.product-info .product-description .product-info-box a:nth-of-type(1) {
  background-color: #005692;
}
.product-info .product-description .product-info-box a:nth-of-type(2) {
  background-color: #00907f;
}
.product-info .product-description .product-info-box div:nth-of-type(1) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 72%;
  justify-content: start;
  border-radius: 10px;
  border: 1px solid #d4e1e4;
  padding: 0 15px;
}
.product-info .product-description .product-info-box .packaging img {
  width: 70px;
  height: auto;
  display: block;
  margin-left: 15px;
}
.product-info p:nth-of-type(2) {
  color: #262626;
  font-size: 14px;
  font-weight: 400;
}
.product-info .product-gallery {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 48%;
  padding: 20px;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #d4e1e4;
  background: linear-gradient(180deg, #f6f6f6 40%, rgba(255, 255, 255, 0) 100%);
  background: #fff;
}
.product-info .product-gallery .main-image {
  width: 50%;
  margin-bottom: 20px;
  cursor: pointer;
}
.product-info .product-gallery .main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-info .product-gallery #product-carousel {
  width: 90%;
}
.product-info .product-gallery .product-thumbnail {
  cursor: pointer;
  border-radius: 20px;
  background: #f4f4f4;
  padding: 20px;
}
.product-info .product-gallery .owl-stage-outer {
  position: relative;
}
.product-info .product-gallery .owl-nav button {
  position: absolute;
  top: 50% !important;
}
.product-info .product-gallery .owl-nav button:nth-child(1) {
  left: -6%;
}
.product-info .product-gallery .owl-nav button:nth-child(2) {
  right: -6%;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-image {
  max-width: 80%;
  max-height: 80%;
  object-fit: cover;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.single-product-content {
  background-color: #f4f4f4;
  padding: 5% 0;
  margin-top: 5%;
}
.single-product-content table {
  width: 100%;
  border-spacing: 0;
}
.single-product-content table td {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #d2e0e3;
  padding: 20px 0;
}
.single-product-content table td:last-child {
  text-align: right;
}
.single-product-content .content:nth-of-type(1) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.single-product-content .content:nth-of-type(1) div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-product-content .content:nth-of-type(1) div:not(:first-child) {
  border-bottom: 1px solid #d2e0e3;
  padding: 20px 0;
}
.single-product-content .content:nth-of-type(1) h2,
.single-product-content .content:nth-of-type(1) span {
  color: #0083a3;
  font-size: 20px;
  font-weight: 600;
}
.single-product-content .content:nth-of-type(1) p {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}
.single-product-content .content:nth-of-type(2) {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  margin-top: 5%;
}
.single-product-content .content:nth-of-type(2) h2 {
  color: #0083a3;
  font-size: 20px;
  font-weight: 600;
}
.single-product-content .content:nth-of-type(2) .application-table-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-product-content .content:nth-of-type(2) .application-table-container .application-table {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 48%;
  margin-top: 40px;
}
.single-product-content .content:nth-of-type(2) .application-table-container .application-table div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-product-content .content:nth-of-type(2) .application-table-container .application-table div:not(:first-child) {
  align-items: center;
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid #ebebeb;
}
.single-product-content .content:nth-of-type(2) .application-table-container .application-table div:not(:first-child) p {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}
.single-product-content .content:nth-of-type(2) .application-table-container .application-table div:not(:first-child) p img {
  width: 30px;
  height: 30px;
}
.single-product-content .application-table-boxes {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.single-product-content .application-table-boxes div {
  width: 48%;
  padding: 40px;
  border-radius: 14px;
}
.single-product-content .application-table-boxes div svg {
  margin-bottom: 20px;
}
.single-product-content .application-table-boxes div h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
.single-product-content .application-table-boxes div p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.single-product-content .application-table-boxes div:nth-of-type(1) {
  background: #49a398;
}
.single-product-content .application-table-boxes div:nth-of-type(2) {
  background: #dc7b7b;
}

.banner {
  background-image: url(../images/hs/hs1.webp);
  height: 50vh;
  background-repeat: no-repeat;
  background-size: cover;
  align-content: center;
}
.banner span:nth-of-type(1) {
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  line-height: 94px; /* 235% */
}
.banner span:nth-of-type(2) {
  color: #ffffff;
  font-size: 86px;
  font-weight: 700;
  line-height: 94px; /* 109.302% */
}

.other-products {
  margin-top: 5%;
}
.other-products h2 {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

.single-blog .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-blog .content > article {
  width: 65%;
}
.single-blog .content > article .single-blog-heading {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.single-blog .content > article .single-blog-heading h1 {
  color: #000000;
  font-size: 26px;
  font-weight: 400;
  width: 70%;
}
.single-blog .content > article .single-blog-heading span {
  text-align: end;
  width: 30%;
}
.single-blog .content > article > img {
  width: 100%;
  height: auto;
  margin-top: 5%;
  border-radius: 20px;
}
.single-blog .content > article .single-blog-content {
  margin: 20px 0;
}
.single-blog .content > article .single-blog-content h2 {
  color: #0083a3;
  font-size: 16px;
  margin: 30px 0 15px 0;
}
.single-blog .content > article .single-blog-content p {
  color: #000000;
  font-size: 16px;
  font-weight: 300;
}
.single-blog .content > article .single-blog-content table {
  width: 100%;
  border-spacing: 0;
  border: none;
  margin: 20px 0;
}
.single-blog .content > article .single-blog-content table td {
  padding: 10px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
}
.single-blog .content > article .single-blog-content table td:last-child {
  border-right: none;
}
.single-blog .content > article .single-blog-content ul {
  margin: 20px 0;
}
.single-blog .content > article .single-blog-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.single-blog .content > article .single-blog-gallery img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.single-blog .content > article hr {
  opacity: 0.2;
  background: #000000;
  margin: 5% 0;
}
.single-blog .content > article .single-blog-social-share .social-buttons {
  padding-top: 20px;
}
.single-blog .content aside {
  width: 30%;
}
.single-blog .content aside ul {
  margin-top: 10%;
}
.single-blog .content aside ul li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #000000;
  font-weight: 300;
  padding: 20px 0;
  border-bottom: 1px solid rgba(172, 205, 239, 0.5);
}
.single-blog .content aside .aside-blog-posts {
  display: grid;
  gap: 20px;
}

.hgbg .content {
  padding: 40px 0;
}
.hgbg .content h1 {
  color: #000000;
  font-size: 30px;
  font-weight: 700;
}
.hgbg .content p {
  color: darkblue;
  font-size: 16px;
  font-weight: 600;
  width: 40%;
}
.hgbg .hgbg-category {
  position: sticky;
  top: 120px;
  background-color: #f4f7fa;
}
.hgbg .hgbg-category-select {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hgbg .hgbg-category-select .hgbg-category {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 24%;
  border-radius: 10px;
  border: 1px solid #d4e1e4;
  background: #f2f3f6;
  padding: 0 20px;
}
.hgbg .hgbg-category-select .hgbg-category.active {
  background: #0083a3;
  color: #ffffff;
}
.hgbg .hgbg-category-select .hgbg-category div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.hgbg .hgbg-search {
  width: 24%;
}
.hgbg .hgbg-search .product-search {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.hgbg .hgbg-search .product-search input {
  border-style: solid;
  border-color: #ebebeb;
  border-width: 1px 0 1px 1px;
  border-radius: 10px 0 0 10px;
  width: 80%;
  padding: 20px;
}
.hgbg .hgbg-search .product-search button {
  text-align: end;
  width: 20%;
  background: #fff;
  border-style: solid;
  border-color: #ebebeb;
  border-width: 1px 1px 1px 0;
  border-radius: 0 10px 10px 0;
  padding: 20px;
}

.hgbg-products {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.hgbg-products .hgbg-product {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  cursor: pointer;
}
.hgbg-products .hgbg-product .hgbg-image {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.hgbg-products .hgbg-product .hgbg-image img {
  width: 80%;
  height: auto;
}
.hgbg-products .hgbg-product .hgbg-title {
  border-top: 1px solid #ebebeb;
  text-align: center;
  width: 100%;
  height: 30%;
  padding: 10px;
  font-size: 14px;
}
.hgbg-products .hgbg-product:hover {
  background-color: #ebebeb;
}

.hgbg-product-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation-name: slideInBg;
  -webkit-animation-duration: 4s;
  animation-name: slideInBg;
  animation-duration: 0.4s;
  animation-direction: alternate;
}
.hgbg-product-modal.hide {
  -webkit-animation-name: slideOutBg;
  -webkit-animation-duration: 4s;
  animation-name: slideOutBg;
  animation-duration: 0.4s;
  animation-direction: alternate;
}
.hgbg-product-modal .modal-content {
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  height: 60%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  animation-direction: alternate;
}
.hgbg-product-modal .modal-content.hide {
  -webkit-animation-name: slideOut;
  -webkit-animation-duration: 0.4s;
  animation-name: slideOut;
  animation-duration: 0.4s;
  animation-direction: alternate;
}
.hgbg-product-modal .modal-content .content {
  padding: 40px 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  overflow-y: scroll;
}
.hgbg-product-modal .modal-content .content > div:nth-of-type(1) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.hgbg-product-modal .modal-content .content .modal-title {
  color: #0083a3;
  font-size: 26px;
  font-weight: 600;
}
.hgbg-product-modal .modal-content .content .modal-desc {
  margin: 15px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  width: 60%;
}
.hgbg-product-modal .modal-content .content .modal-close {
  color: black;
  font-size: 28px;
  cursor: pointer;
}

@-webkit-keyframes slideIn {
  from {
    height: 0;
  }
  to {
    height: 60%;
  }
}
@keyframes slideIn {
  from {
    height: 0;
  }
  to {
    height: 60%;
  }
}
@-webkit-keyframes slideOut {
  from {
    height: 60%;
  }
  to {
    height: 0;
  }
}
@keyframes slideOut {
  from {
    height: 60%;
  }
  to {
    height: 0;
  }
}
@-webkit-keyframes slideInBg {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes slideInBg {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@-webkit-keyframes slideOutBg {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes slideOutBg {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
.searchArea {
  width: 100%;
}
.searchArea span {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  padding: 30px 0 10px;
}
.searchArea .searchForm {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.searchArea .searchForm input[type=text] {
  border-style: solid;
  border-color: #ebebeb;
  border-width: 1px 0 1px 1px;
  border-radius: 10px 0 0 10px;
  width: 80%;
  padding: 20px;
}
.searchArea .searchForm input[type=submit] {
  width: 20%;
  background: #0083a3;
  border-style: solid;
  border-color: #0083a3;
  border-width: 1px 1px 1px 0;
  border-radius: 0 10px 10px 0;
  padding: 20px;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 1248px) {
  section:not(.fw) {
    margin-left: 20px;
    margin-right: 20px;
  }
  section.products {
    margin: 0;
    padding: 20px;
  }
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.main-slider .slider-heading {
    padding: 1%;
  }
  section.main-slider .slider-heading h1 {
    font-size: 60px;
  }
  section.main-slider .slider-heading span {
    font-size: 40px;
  }
  section.main-slider .slider-boxes .content {
    justify-content: space-evenly;
  }
  section.main-slider .slider-boxes .slider-box {
    height: 250px;
  }
  section.main-slider .owl-nav {
    left: 49%;
  }
  section.main-slider .owl-dots {
    left: 51%;
  }
  .blog-info > div {
    width: 28%;
  }
}
@media screen and (max-width: 1024px) {
  section.main-slider .owl-nav {
    display: none;
  }
  section.main-slider .owl-dots {
    bottom: 40%;
  }
  section.main-slider .owl-item img {
    height: 100%;
    object-fit: cover;
  }
  section.main-slider .slider-heading {
    top: 10%;
  }
  section.main-slider .slider-heading .content span {
    font-size: 30px;
    width: 100%;
    line-height: normal;
  }
  section.main-slider .slider-heading .content h1 {
    font-size: 40px;
    width: 100%;
    line-height: normal;
  }
  section.main-slider .slider-boxes .content .slider-box {
    height: 70px;
    max-width: 70px;
    flex: 1 1 70px;
    justify-content: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*&:nth-of-type(n + 3) {
      margin-top: 2% !important;
    }*/
  }
  section.main-slider .slider-boxes .content .slider-box img {
    width: auto;
    height: 30px;
  }
  section.main-slider .slider-boxes .content .slider-box p {
    display: none;
    font-size: 12px;
    padding-top: 0;
  }
  section.products .products-heading {
    width: 100%;
  }
  section.products .products-heading > div:nth-of-type(2) {
    padding: 20px 0;
  }
  section.products .accordion-container {
    width: 100%;
  }
  section.products .accordion-container .accordion-item {
    flex: 1 1 100%;
    height: 150px;
  }
  section.products .accordion-container .accordion-item .caption {
    flex-direction: row;
  }
  section.products .accordion-container .accordion-item .caption > img:nth-of-type(1) {
    width: 40px;
    height: 40px;
  }
  section.products .accordion-container .accordion-item .caption > img:nth-of-type(2) {
    width: 80px;
    height: 80px;
  }
  section.products .accordion-container .accordion-item .caption strong {
    writing-mode: horizontal-tb;
    font-size: 14px;
  }
  section.products .accordion-container .accordion-item .list .inner .inner-content {
    grid-template-columns: repeat(4, 1fr);
  }
  section.products .accordion-container .list {
    height: 0;
  }
  section.products .accordion-container .accordion-active .caption {
    width: 100%;
  }
  section.products .accordion-container .accordion-active .list {
    width: 100%;
    height: 400px;
    overflow: scroll;
  }
  section.products .accordion-container .accordion-active .inner {
    width: 100%;
  }
  .home-boxes .content .homebox-container .destek > div:nth-of-type(2) {
    align-content: start;
  }
  .home-boxes .content .homebox-container .destek > div:nth-of-type(2) img {
    width: 150px;
    height: 150px;
  }
  .news .content .news-heading {
    width: 100%;
    gap: 10px;
  }
  .news .content #news-carousel {
    width: 100%;
  }
  .whyus .content .overlay {
    padding: 30px;
  }
  .whyus .content .overlay h2 {
    font-size: 18px;
  }
  .whyus .content .overlay p {
    font-size: 14px;
  }
  .whyus .content .overlay .whyus-box-container {
    gap: 0;
    justify-content: space-between;
  }
  .whyus .content .overlay .whyus-box-container .whyus-box {
    flex: 1%;
    min-height: 200px;
    max-width: 24%;
    padding: 20px;
  }
  .whyus .content .overlay .whyus-box-container .whyus-box p {
    font-size: 12px;
  }
  .gubreler-category-container .gubreler-category-filter {
    padding: 5px 10px;
    justify-content: space-between;
    width: 48%;
    font-size: 12px;
  }
  .gubreler-category-container .gubreler-category-filter:nth-of-type(n + 3) {
    margin-top: 4%;
  }
  .gubreler-category-container .gubreler-category-filter svg {
    width: 20%;
  }
  .gubreler-category-container .gubreler-category-filter span {
    width: 70%;
  }
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .products-container .product {
    padding: 10px;
    background-position: 50% 30%;
  }
  .page-title h2 {
    font-size: 26px;
    width: 100%;
  }
  .page-title .carousel-nav {
    margin-top: 30px;
    width: 100%;
  }
  .milestone-container .milestone-heading {
    width: 100%;
    padding: 30px;
  }
  .milestone-container .milestone-heading h1 {
    font-size: 26px;
  }
  .milestone-container .milestone {
    width: 100%;
  }
  .milestone-container .milestone:nth-child(n+2) {
    margin-top: 2%;
  }
  .category-filter {
    width: 100%;
    padding: 10px 0;
  }
  .blog-posts {
    grid-template-columns: repeat(1, 1fr);
  }
  #blog-carousel .item span {
    width: 40%;
  }
  #blog-carousel .item p {
    font-size: 18px;
  }
  #blog-carousel .owl-dots {
    margin-top: 20px;
  }
  #blog-carousel .owl-dot span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #blog-carousel .owl-dot.active span {
    width: 30px;
    background-color: #0083a3;
  }
  .blog-heading {
    margin-top: 20px;
  }
  .blog-category-filter {
    gap: 0;
    justify-content: space-between;
  }
  .blog-category-filter .blog-category-select {
    flex-direction: row;
    justify-content: center;
    width: 30%;
    padding: 20px 5px;
  }
  .blog-category-filter .blog-category-select span:nth-child(1) {
    font-size: 14px;
  }
  .blog-category-filter .blog-category-select span:nth-child(2) {
    font-size: 14px;
    margin-top: 0;
  }
  .hsform .custom-file-upload {
    font-size: 12px;
  }
  .hsform .custom-file-upload span:nth-child(1) {
    width: 70%;
  }
  .hsform .custom-file-upload span:nth-child(2) {
    width: 20%;
    text-align: end;
  }
  .hsform label.privacy {
    font-size: 12px;
  }
  .contact-container .destek {
    width: 100%;
  }
  .contact-container .destek h2 {
    font-size: 16px;
    width: 100%;
  }
  .contact-container .destek a {
    font-size: 40px;
  }
  .contact-container .contact-box {
    width: 100%;
    gap: 10px;
  }
  .contact-section .content {
    flex-direction: column-reverse;
  }
  .contact-section .content .map {
    width: 100%;
  }
  .contact-section .content .map img {
    width: 100%;
  }
  .contact-section .content .contact-form {
    width: 100%;
  }
  .hgbg .content {
    padding: 20px 0;
  }
  .hgbg .content p {
    width: 100%;
  }
  .hgbg .hgbg-category-select .hgbg-category {
    justify-content: center;
    width: 32%;
    font-size: 14px;
  }
  .hgbg .hgbg-category-select .hgbg-category svg {
    width: 30px;
  }
  .hgbg .hgbg-category-select .hgbg-category div {
    justify-content: center;
    gap: 4px;
  }
  .hgbg .hgbg-search {
    width: 100%;
    margin-top: 20px;
  }
  .hgbg-products {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
  }
  .hgbg-product-modal .modal-content {
    padding: 0 10px;
    overflow: scroll;
  }
  .hgbg-product-modal .modal-content .content > div:nth-of-type(1) > div {
    width: 80%;
  }
  .hgbg-product-modal .modal-content .content .modal-desc {
    width: 100%;
  }
  .single-blog .content > article {
    width: 100%;
  }
  .single-blog .content > article .single-blog-heading h1 {
    width: 100%;
  }
  .single-blog .content > article .single-blog-heading span {
    text-align: start;
    width: 100%;
  }
  .single-blog .content aside {
    width: 100%;
    margin-top: 20px;
  }
  .single-blog .content aside ul {
    margin-top: 0;
  }
  .single-blog .aside-blog-posts {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .content.product-info .product-description a:nth-child(4) {
    margin: 4% 0;
  }
  .content.product-info .product-description .product-info-box a:nth-child(-n+2) {
    width: 48%;
  }
  .content.product-info .product-description .product-info-box div:nth-of-type(1) {
    margin-top: 4%;
    width: 100%;
  }
  .content.product-info .product-gallery #product-carousel {
    align-content: center;
  }
  .banner {
    margin-top: 4%;
  }
  .banner span:nth-of-type(1) {
    font-size: 30px;
  }
  .banner span:nth-of-type(2) {
    font-size: 50px;
  }
  footer .top {
    gap: 0;
  }
  footer .top .e-bulten {
    width: 100%;
    height: 250px;
    margin-bottom: 4%;
  }
  footer .top .e-bulten form {
    margin-top: 20px;
  }
  footer .top .e-katalog {
    width: 48%;
    height: 250px;
  }
  footer .top .satis-noktalari {
    width: 48%;
    height: 250px;
    background-size: cover;
    background-position: bottom;
  }
  footer .footer-main {
    padding: 20px 0 0 0;
    justify-content: center;
  }
  footer .footer-main .footer-menu {
    width: 100%;
  }
  footer .footer-main .footer-menu .footer-menu-item {
    width: 32%;
  }
  footer .footer-main .footer-menu .footer-menu-item .footer-menu-title {
    font-size: 14px;
  }
  footer .footer-main .footer-menu .footer-menu-item ul {
    font-size: 12px;
  }
  footer .footer-main .footer-social {
    width: 50%;
    margin-top: 20px;
  }
  footer .footer-main .footer-social .social-links {
    padding-top: 20px;
  }
  footer .footer-copyright {
    padding: 20px 0;
  }
  .products-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .products-container .product {
    padding: 10px;
    background-position: 50% 30%;
  }
  .page-title h2 {
    font-size: 26px;
    width: 100%;
  }
  .page-title .carousel-nav {
    margin-top: 30px;
    width: 100%;
  }
  .milestone-container .milestone-heading {
    width: 48%;
    padding: 30px;
  }
  .milestone-container .milestone-heading h1 {
    font-size: 26px;
  }
  .milestone-container .milestone {
    width: 49%;
  }
  .milestone-container .milestone:nth-child(n+2) {
    margin-top: 2%;
  }
  .category-filter {
    width: 100%;
    padding: 10px 0;
  }
  .blog-posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container .destek {
    width: 100%;
  }
  .contact-container .destek h2 {
    font-size: 16px;
    width: 100%;
  }
  .contact-container .destek a {
    font-size: 40px;
  }
  .contact-container .contact-box {
    width: 48%;
    gap: 0;
    margin-top: 20px;
  }
  .contact-section .content {
    flex-direction: column-reverse;
  }
  .contact-section .content .map {
    width: 100%;
    height: auto;
  }
  .contact-section .content .map img {
    width: 100%;
    height: auto;
  }
  .contact-section .content .contact-form {
    width: 100%;
  }
  .hgbg .content {
    padding: 20px 0;
  }
  .hgbg .content p {
    width: 100%;
  }
  .hgbg .hgbg-category-select .hgbg-category {
    justify-content: center;
    width: 32%;
    font-size: 16px;
    padding: 10px 20px;
  }
  .hgbg .hgbg-category-select .hgbg-category svg {
    width: 30px;
  }
  .hgbg .hgbg-category-select .hgbg-category div {
    justify-content: center;
    gap: 4px;
  }
  .hgbg .hgbg-search {
    width: 100%;
    margin-top: 20px;
  }
  .hgbg-products {
    grid-template-columns: repeat(6, 1fr);
    margin-top: 0;
  }
  .hgbg-product-modal .modal-content {
    padding: 0 10px;
    overflow: scroll;
  }
  .hgbg-product-modal .modal-content .content > div:nth-of-type(1) > div {
    width: 80%;
  }
  .hgbg-product-modal .modal-content .content .modal-desc {
    width: 100%;
  }
}
@media screen and (min-width: 780px) {
  header#mobile-header {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  section.main-slider {
    height: calc(100dvh - 120px);
    width: 100%;
    overflow: hidden;
  }
  section.products .content {
    padding: 5% 0;
  }
  section.products .products-heading {
    width: 100%;
  }
  section.products .products-heading > div:nth-of-type(2) {
    padding: 20px 0;
  }
  section.products .accordion-container .accordion-item .list .inner .inner-content {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-boxes .content {
    flex-direction: column;
  }
  .home-boxes .content .surudurlebilirlik {
    max-width: 100%;
    flex: auto;
    min-height: 300px;
  }
  .home-boxes .content .homebox-container {
    max-width: 100%;
    margin-top: 20px;
    gap: 20px;
  }
  .home-boxes .content .homebox-container .belgeler {
    min-height: 300px;
  }
  .home-boxes .content .homebox-container .destek {
    min-height: 300px;
  }
  .whyus .content .overlay .whyus-box-container .whyus-box {
    flex-direction: column;
    flex: 1 1 48%;
    min-height: 150px;
    max-width: 48%;
    justify-content: space-between;
  }
  .whyus .content .overlay .whyus-box-container .whyus-box p {
    font-size: 12px;
  }
  .whyus .content .overlay .whyus-box-container .whyus-box img {
    width: 50px;
    height: 50px;
  }
  .whyus .content .overlay .whyus-box-container .whyus-box:nth-last-of-type(-n + 2) {
    margin-top: 4%;
  }
  .gubreler-category-container .gubreler-category-filter {
    padding: 5px 10px;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 0 !important;
  }
  .gubreler-category-container .gubreler-category-filter svg {
    width: 20%;
  }
  .gubreler-category-container .gubreler-category-filter span {
    width: 70%;
  }
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .products-container .product {
    padding: 10px;
    background-position: 50% 30%;
  }
  .page-title h2 {
    font-size: 26px;
    width: 100%;
  }
  .page-title .carousel-nav {
    margin-top: 30px;
    width: 100%;
  }
  .milestone-container .milestone-heading {
    width: 100%;
    padding: 30px;
  }
  .milestone-container .milestone-heading h1 {
    font-size: 26px;
  }
  .milestone-container .milestone {
    width: 100%;
  }
  .milestone-container .milestone:nth-child(n+2) {
    margin-top: 2%;
  }
  .category-filter {
    width: 100%;
    padding: 10px 0;
  }
  .blog-posts {
    grid-template-columns: repeat(1, 1fr);
  }
  #blog-carousel .item span {
    width: 40%;
  }
  #blog-carousel .item p {
    font-size: 18px;
  }
  #blog-carousel .owl-dots {
    margin-top: 20px;
  }
  #blog-carousel .owl-dot span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #blog-carousel .owl-dot.active span {
    width: 30px;
    background-color: #0083a3;
  }
  .blog-heading {
    margin-top: 20px;
  }
  .blog-category-filter {
    gap: 0;
    justify-content: space-between;
  }
  .blog-category-filter .blog-category-select {
    flex-direction: row;
    justify-content: center;
    width: 30%;
    padding: 20px 5px;
  }
  .blog-category-filter .blog-category-select span:nth-child(1) {
    font-size: 14px;
  }
  .blog-category-filter .blog-category-select span:nth-child(2) {
    font-size: 14px;
    margin-top: 0;
  }
  .hsform .custom-file-upload {
    font-size: 12px;
  }
  .hsform .custom-file-upload span:nth-child(1) {
    width: 70%;
  }
  .hsform .custom-file-upload span:nth-child(2) {
    width: 20%;
    text-align: end;
  }
  .hsform label.privacy {
    font-size: 12px;
  }
  .contact-container .destek {
    width: 100%;
  }
  .contact-container .destek h2 {
    font-size: 16px;
    width: 100%;
  }
  .contact-container .destek a {
    font-size: 40px;
  }
  .contact-container .contact-box {
    width: 100%;
    gap: 10px;
  }
  .contact-section .content {
    flex-direction: column-reverse;
  }
  .contact-section .content .map {
    width: 100%;
  }
  .contact-section .content .map img {
    width: 100%;
  }
  .contact-section .content .contact-form {
    width: 100%;
  }
  .hgbg .content {
    padding: 20px 0;
  }
  .hgbg .content p {
    width: 100%;
  }
  .hgbg .hgbg-category-select .hgbg-category {
    justify-content: center;
    width: 32%;
    font-size: 14px;
  }
  .hgbg .hgbg-category-select .hgbg-category svg {
    width: 30px;
  }
  .hgbg .hgbg-category-select .hgbg-category div {
    justify-content: center;
    gap: 4px;
  }
  .hgbg .hgbg-search {
    width: 100%;
    margin-top: 20px;
  }
  .hgbg-products {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
  }
  .hgbg-product-modal .modal-content {
    padding: 0 10px;
    overflow: scroll;
  }
  .hgbg-product-modal .modal-content .content > div:nth-of-type(1) > div {
    width: 80%;
  }
  .hgbg-product-modal .modal-content .content .modal-desc {
    width: 100%;
  }
  .single-blog .content > article {
    width: 100%;
  }
  .single-blog .content > article .single-blog-heading h1 {
    width: 100%;
  }
  .single-blog .content > article .single-blog-heading span {
    text-align: start;
    width: 100%;
  }
  .single-blog .content aside {
    width: 100%;
    margin-top: 20px;
  }
  .single-blog .content aside ul {
    margin-top: 0;
  }
  .single-blog .aside-blog-posts {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .content.product-info .product-description {
    width: 100%;
  }
  .content.product-info .product-description a:nth-child(4) {
    margin: 4% 0;
  }
  .content.product-info .product-description .product-info-box a:nth-child(-n+2) {
    width: 48%;
  }
  .content.product-info .product-description .product-info-box div:nth-of-type(1) {
    margin-top: 4%;
    width: 100%;
  }
  .content.product-info .product-gallery {
    width: 100%;
  }
  .single-product-content .application-table-boxes {
    gap: 10px;
  }
  .single-product-content .application-table-boxes div {
    width: 100%;
  }
  .banner {
    margin-top: 4%;
  }
  .banner span:nth-of-type(1) {
    font-size: 30px;
  }
  .banner span:nth-of-type(2) {
    font-size: 50px;
  }
  .blog-post .blog-info > div {
    width: 28%;
  }
  header#header {
    display: none;
  }
  header#mobile-header {
    height: 120px;
    position: sticky;
    z-index: 2;
    top: 0;
    background-color: #ffffff;
  }
  header#mobile-header .content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  header#mobile-header .content .logo {
    width: 22%;
  }
  header#mobile-header .content .search {
    width: 22%;
  }
  header#mobile-header .content .search span {
    color: #7e8a95;
  }
  header#mobile-header .content .contact {
    width: 22%;
    text-align: end;
  }
  header#mobile-header .content .contact p {
    font-size: 14px;
    color: #0083a3;
    font-weight: 600;
  }
  header#mobile-header .content .contact p:nth-child(2) {
    font-size: 14px;
    color: #7e8a95;
    font-weight: 600;
  }
  header#mobile-header .content .hamburger-menu {
    width: 22%;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: end;
  }
  header#mobile-header .content .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header#mobile-header .content .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header#mobile-header .content .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  header#mobile-header .content .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header#mobile-header .content .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header#mobile-header .content .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  header#mobile-header .content .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header#mobile-header .mobile-menu {
    display: none;
    height: 0;
    overflow: hidden;
    position: relative;
    animation-name: mobileMenu;
    animation-duration: 400ms;
  }
  header#mobile-header .mobile-menu nav ul {
    color: #000000;
    background-color: white;
  }
  header#mobile-header .mobile-menu nav ul li {
    padding: 10px;
  }
  @-webkit-keyframes mobileMenu {
    from {
      height: 0;
    }
    to {
      height: 400px;
    }
  }
  @keyframes mobileMenu {
    from {
      height: 0;
    }
    to {
      height: 400px;
    }
  }
  footer .top {
    gap: 20px;
  }
  footer .top .e-bulten {
    width: 100%;
    height: 250px;
    margin-bottom: 0;
  }
  footer .top .e-bulten form {
    margin-top: 20px;
  }
  footer .top .e-katalog {
    width: 100%;
    height: 250px;
  }
  footer .top .satis-noktalari {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: bottom;
  }
  footer .footer-main {
    padding: 20px 0 0 0;
  }
  footer .footer-main .footer-menu {
    width: 100%;
  }
  footer .footer-main .footer-menu .footer-menu-item {
    width: 32%;
  }
  footer .footer-main .footer-menu .footer-menu-item .footer-menu-title {
    font-size: 14px;
  }
  footer .footer-main .footer-menu .footer-menu-item ul {
    font-size: 12px;
  }
  footer .footer-main .footer-social {
    width: 100%;
    margin-top: 20px;
  }
  footer .footer-main .footer-social .social-links {
    padding-top: 20px;
  }
  footer .footer-copyright {
    padding: 20px 0;
  }
  .contact-container .contact-box {
    width: 100%;
    gap: 10px;
  }
  .blog-post .blog-info > div {
    width: 18%;
  }
}
@media screen and (max-width: 480px) {
  .blog-post .blog-info > div {
    width: 28%;
  }
}
/***********************************************************************************************************************
MessageBox - A jQuery Plugin to replace Javascript's window.alert(), window.confirm() and window.prompt() functions
    Author          : Gaspare Sganga
    Version         : 2.0.1
    License         : MIT
    Documentation   : http://gasparesganga.com/labs/jquery-message-box/
***********************************************************************************************************************/
/*
    You can customize your MessageBox style directly in this file 
    or override some classes/styles using an external CSS file loaded after this.
*/
/* Overlay */
.messagebox_overlay {
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 9999;
}

.messagebox_overlay *:focus {
  outline: 0;
}

/* MessageBox */
.messagebox {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 10pt;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  color: #303030;
  background-color: #fcfcfc;
  border: 1px solid #c8c8c8;
  box-shadow: 0px 2px 4px #a0a0a0;
  max-height: 90%; /* This value is useful only when "top" option is set to "auto" */
  max-width: 90%;
  min-width: 300px;
}

/* Content */
.messagebox_content {
  padding: 20px;
  padding-bottom: 0; /* In order to preserve "padding-bottom" when the content is taller than the MessageBox and thus scrolled on the Y-axis, use the following's :after pseudo-class "height" value instead of "padding-bottom" here! */
}

.messagebox_content:after {
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 20px; /* Use this value as if it was #messagebox_content's "padding-bottom" to preserve it when the content overflows Y-axis and the scrollbar is shown */
}

/* Input's Label */
.messagebox_content_label {
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 10px;
  font-style: italic;
}

/* Input (it applies to selects too) */
.messagebox_content_input {
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 10px;
  padding: 3px;
  color: #303030;
  border: 1px solid #909090;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  text-align: left;
}

.messagebox_content_input:hover {
  border-color: #707070;
}

.messagebox_content_input:focus {
  border-color: #707070;
  box-shadow: inset 0px 0px 3px #ffd540;
}

/* Input's style when placed inside a label */
.messagebox_content_label .messagebox_content_input {
  margin-top: 4px;
}

/* Select's "fake placeholder" */
.messagebox_content_input_selectplaceholder {
  color: #909090;
}

/* Buttons */
.messagebox_buttons {
  background-color: #f5f5f5;
  border-top: 1px solid #c8c8c8;
  padding: 10px 20px;
  text-align: center;
}

.messagebox_buttons button {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  min-width: 75px;
  margin: 0px 4px;
  padding: 5px 10px;
  cursor: pointer;
  color: #404040;
  background-color: #e9e9e9;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 51%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid #c0c0c0;
  border-radius: 2px;
}

.messagebox_buttons button:hover {
  color: #202020;
  background-color: #f0f0f0;
}

.messagebox_buttons button:active {
  background-color: #e6e6e6;
  border: 1px solid #a0a0a0;
  box-shadow: inset 0px 0px 6px #d0d0d0;
}

.messagebox_buttons button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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