@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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");
.hidden-svg {
  display: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

header {
  padding: 22px 0;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}
header a.logo {
  display: flex;
  align-items: center;
  height: 84px;
}
header a.logo img {
  height: 100%;
}
header .contact {
  display: inline-flex;
  align-items: center;
}
header .contact .icon-container {
  -webkit-mask-image: url("../img/hexagon.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  background-color: #29bc3a;
  width: 33px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .contact .icon-container .icon {
  width: 17px;
  fill: #fff;
}
header .contact .text {
  margin-left: 8px;
}
header .contact .text small {
  font-size: 13px;
  color: #6d6e71;
  font-style: italic;
  display: block;
}
header .contact .text span {
  font-size: 15px;
  color: #1e1d23;
  font-weight: 700;
}
header .lang > ul li {
  position: relative;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
header .lang > ul li a {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 12px;
}
header .lang > ul li a img {
  width: 25px;
  height: 16px;
}
header .lang > ul li a span {
  font-size: 14px;
  font-weight: 700;
  color: #1e1d23;
  margin-left: 15px;
}
header .lang > ul li ul {
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  transition: all 0.5s ease;
  left: 0;
  display: none;
  background-color: #efecec;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 5;
}
header .lang > ul li ul li {
  border-radius: 0;
}
header .lang > ul li ul li:hover {
  background-color: #ccc;
}
header .lang > ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
header .lang > ul li:hover {
  background-color: #fafafa;
}
header .lang > ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
header .lang > ul li:focus-within > ul {
  visibility: visible;
  opacity: 1;
  display: block;
}

body.over .menuback {
  background-color: rgba(16, 25, 34, 0.49);
  position: fixed;
  inset: 0;
  z-index: 97;
}
body.over header {
  z-index: 99;
}
body.over .header-menu {
  z-index: 98;
}

.header-menu {
  position: fixed;
  top: 128px;
  z-index: 98;
  width: 100%;
}
.header-menu .inner {
  background-color: #101922;
  height: 76px;
  position: relative;
}
.header-menu .inner:after {
  content: "";
  position: absolute;
  left: 100%;
  width: 100vw;
  top: 0;
  bottom: 0;
  background-color: #101922;
}
.header-menu .inner ul.menu {
  display: inline-flex;
}
.header-menu .inner ul.menu > li {
  position: relative;
  display: flex;
  align-items: center;
}
.header-menu .inner ul.menu > li a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  padding: 0 38px;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-menu .inner ul.menu > li:before {
  content: "";
  background-color: #4a4a4d;
  width: 2px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.header-menu .inner ul.menu > li:after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #faa61a;
  transition: all ease 0.3s;
  opacity: 0;
}
.header-menu .inner ul.menu > li:hover:after {
  opacity: 1;
}
.header-menu .inner ul.menu > li.home a {
  width: 76px;
  height: 76px;
  background-color: #29bc3a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.header-menu .inner ul.menu > li.home:before {
  display: none;
}
.header-menu .inner ul.menu > li.home svg {
  width: 50%;
  height: 50%;
  fill: #fff;
}
.header-menu .inner ul.menu > li.over-sub:before {
  display: none;
}
.header-menu .inner ul.menu > li.subMenu {
  transition: all ease 0.3s;
}
.header-menu .inner ul.menu > li.subMenu .dropdown {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: all ease 0.3s;
}
.header-menu .inner ul.menu > li.subMenu.over {
  background-color: #faa61a;
}
.header-menu .inner ul.menu > li.subMenu.over .dropdown {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
}
.header-menu .inner ul.menu > li.subMenu.over:before {
  display: none;
}
.header-menu .inner ul.menu > li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
}
.header-menu .inner ul.menu > li .dropdown ul li {
  width: 300px;
  transition: width ease 0.3s;
}
.header-menu .inner ul.menu > li .dropdown ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.header-menu .inner ul.menu > li .dropdown ul li a {
  padding: 20px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background-color: #faa61a;
  display: flex;
  align-items: center;
}
.header-menu .inner ul.menu > li .dropdown ul li a:hover {
  background-color: #29bc3a;
}
.header-menu .inner ul.menu > li .dropdown ul li:hover {
  width: 330px;
  border-bottom: 1px solid rgba(41, 188, 58, 0.5);
}
.header-menu .inner .search {
  margin-left: auto;
}
.header-menu .inner .search form {
  display: inline-flex;
}
.header-menu .inner .search form input {
  background-color: transparent;
  color: #848484;
  font-size: 13px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #848484;
  outline: none;
  width: 200px;
}
.header-menu .inner .search form input::-webkit-input-placeholder {
  color: #848484;
  font-size: 13px;
  font-weight: 300;
}
.header-menu .inner .search form input:-moz-placeholder {
  color: #848484;
  font-size: 13px;
  font-weight: 300;
}
.header-menu .inner .search form input::-moz-placeholder {
  color: #848484;
  font-size: 13px;
  font-weight: 300;
}
.header-menu .inner .search form input:-ms-input-placeholder {
  color: #848484;
  font-size: 13px;
  font-weight: 300;
}
.header-menu .inner .search form button {
  -webkit-mask-image: url("../img/hexagon.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  background-color: #29bc3a;
  margin-left: 14px;
  border: none;
  outline: none;
  width: 33px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-menu .inner .search form button .icon {
  width: 17px;
  fill: #fff;
}

section.slider .swiper-container {
  width: 100%;
  height: 100%;
}
section.slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
section.slider .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.slider .swiper-slide .inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 128px;
}
section.slider .swiper-slide .inner .text {
  display: flex;
  flex-direction: column;
}
section.slider .swiper-slide .inner .text h4 {
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  text-align: left;
}
section.slider .swiper-slide .inner .text h4 b {
  font-weight: 900;
  font-size: 42px;
}
section.slider .swiper-slide .inner .text h4 span {
  font-size: 38px;
  font-weight: 900;
  color: #29bc3a;
}
section.slider .swiper-slide .inner .text a {
  font-size: 16px;
  background-color: #29bc3a;
  color: #fff;
  display: inline-flex;
  padding: 20px 18px;
  align-items: center;
  width: 220px;
  font-weight: 400;
  margin-top: 30px;
  border-radius: 3px;
  transition: all ease 0.3s;
}
section.slider .swiper-slide .inner .text a:hover {
  background-color: #fff;
  color: #29bc3a;
}
section.slider .swiper-slide .inner .text a:hover .icon-container {
  background-color: #29bc3a;
}
section.slider .swiper-slide .inner .text a:hover .icon-container .icon {
  fill: #fff;
}
section.slider .swiper-slide .inner .text a b {
  font-weight: 700;
  margin-left: 3px;
}
section.slider .swiper-slide .inner .text a .icon-container {
  width: 38px;
  height: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: all ease 0.3s;
}
section.slider .swiper-slide .inner .text a .icon-container .icon {
  fill: #29bc3a;
  width: 11px;
  height: 15px;
}
section.slider .swiper-slide .inner .img {
  position: absolute;
  bottom: 0;
  right: 0;
}
section.corporate {
  background-color: #101922;
  padding-bottom: 100px;
  position: relative;
}
section.corporate:before {
  content: "";
  background-image: url("../img/about-bg.png");
  width: 810px;
  height: 999px;
  position: absolute;
  top: -90px;
  right: 0;
  z-index: 1;
}
section.corporate .brands {
  width: 100%;
  background-color: #fff;
  margin-top: -93px;
  position: relative;
  z-index: 9;
  margin-bottom: 140px;
}
section.corporate .brands .brand {
  height: 193px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #353535;
  font-size: 26px;
  font-weight: 800;
  border-right: 1px solid #2e292a;
  background-color: #fff;
}
section.corporate .brands .brand.image {
  background-color: #29bc3a;
  border-right: none;
}
section.corporate .brands .brand.image img {
  width: 60%;
}
section.corporate .brands .col:last-child .brand {
  border-right: 0;
}
section.corporate .image-container {
  position: relative;
}
section.corporate .image-container:after {
  content: "";
  background-image: url("../img/about-dots.png");
  width: 229px;
  height: 257px;
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: 0;
}
section.corporate .image-container img {
  min-width: 80%;
  position: relative;
  z-index: 5;
}
section.corporate .image-container a {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  padding: 20px 0;
  background-color: #29bc3a;
  width: 210px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  right: 0;
  z-index: 6;
}
section.corporate .image-container a .icon {
  fill: #fff;
  margin-left: 10px;
  width: 24px;
  height: 13px;
}
section.corporate .text {
  padding-left: 40px;
  padding-top: 50px;
  position: relative;
  z-index: 5;
}
section.corporate .text h4 {
  font-size: 45px;
  color: #29bc3a;
  font-weight: 700;
  margin-bottom: 15px;
}
section.corporate .text h4 b {
  font-weight: 800;
}
section.corporate .text span {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 30px;
  display: block;
}
section.corporate .text p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-align: justify;
}

section.news {
  padding: 90px 0;
}
section.news .left {
  width: 50%;
  display: flex;
  align-items: center;
}
section.news .left h4 {
  font-size: 45px;
  color: #3f3f3f;
  font-weight: 400;
  border-left: 6px solid #29bc3a;
  padding-left: 18px;
  line-height: 48px;
}
section.news .left h4 b {
  font-weight: 800;
}
section.news .left a {
  font-size: 18px;
  color: #3f3f3f;
  font-weight: 300;
  margin-left: 30px;
  padding-left: 6px;
  border-left: 1px solid #3f3f3f;
  line-height: 18px;
}
section.news .left a b {
  font-weight: 700;
}
section.news .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  gap: 10px;
}
section.news .right .arrow {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #29bc3a;
  cursor: pointer;
}
section.news .right .arrow .icon {
  width: 24px;
  height: 13px;
  fill: #fff;
}
section.news .owl-news {
  margin-top: 40px;
}
section.news .owl-news .item {
  height: 370px;
  overflow: hidden;
}
section.news .owl-news .item .image {
  height: 100%;
  width: 100%;
  display: block;
}
section.news .owl-news .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.news .owl-news .item .desc {
  background-color: #29bc3a;
  padding: 20px 15px;
  transform: translateY(0);
  transition: all ease 0.3s;
}
section.news .owl-news .item .desc p {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
  line-height: 18px;
}
section.news .owl-news .item:hover .desc {
  transform: translateY(-100%);
}
section.news .item {
  height: 370px;
  overflow: hidden;
}
section.news .item .image {
  height: 100%;
  width: 100%;
  display: block;
}
section.news .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.news .item .desc {
  background-color: #29bc3a;
  padding: 20px 15px;
  transform: translateY(0);
  transition: all ease 0.3s;
}
section.news .item .desc p {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
  line-height: 18px;
}
section.news .item:hover .desc {
  transform: translateY(-100%);
}

section.videos {
  padding-bottom: 90px;
}
section.videos .owl-videos .item {
  position: relative;
  background-color: #3f3f3f;
  cursor: pointer;
  display: block;
}
section.videos .owl-videos .item:after {
  content: "";
  -webkit-mask-image: url("../img/video.svg");
  -webkit-mask-repeat: no-repeat;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: #fff;
}
section.videos .owl-videos .item .bg {
  opacity: 0.54;
  padding-bottom: 48.05%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.videos .owl-videos .item .text {
  position: absolute;
  bottom: 25px;
  left: 24px;
  color: #fff;
}
section.videos .owl-videos .item .text h4 {
  font-weight: 400;
  font-size: 32px;
}
section.videos .owl-videos .item .text p {
  font-weight: 300;
  font-size: 17px;
  margin: 0;
}
section.videos .owl-catalog .item .catalog h4 {
  font-size: 28px;
  color: #3f3f3f;
  font-weight: 300;
  margin-bottom: 20px;
}
section.videos .owl-catalog .item .catalog h4 b {
  font-weight: 800;
}
section.videos .owl-catalog .item .catalog a {
  color: #29bc3a;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
section.videos .owl-catalog .item .catalog a .icon {
  width: 26px;
  height: 26px;
  fill: #29bc3a;
  margin-right: 10px;
}
section.videos .owl-catalog .item .catalog .img {
  position: relative;
}
section.videos .owl-catalog .item .catalog .img img {
  width: auto;
  height: 332px;
}
section.videos .owl-catalog .item .catalog .img:after {
  content: "";
  background-image: url(../img/katalog_bg.png);
  background-repeat: no-repeat;
  width: 229px;
  height: 257px;
  position: absolute;
  top: 74px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
section.videos .owl-dots {
  text-align: center;
  padding-top: 15px;
}
section.videos .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #c6c6c6;
  margin: 0 3px;
}
section.videos .owl-dots button.owl-dot.active {
  background-color: #29bc3a;
}
section.videos .owl-dots button.owl-dot:focus {
  outline: none;
}

footer {
  background-color: #6d6e71;
  padding: 50px 0;
  margin-top: 100px;
}
footer .contact-banner {
  background-color: #fff;
  box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.35);
  padding: 40px;
  margin-top: -110px;
}
footer .contact-banner .items {
  display: flex;
  align-items: center;
}
footer .contact-banner .items .item {
  display: flex;
  align-items: center;
  margin-right: 15px;
  flex: 2;
}
footer .contact-banner .items .item.phone p {
  color: #101922;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
footer .contact-banner .items .item.phone p span {
  font-size: 13px;
  margin-right: 8px;
}
footer .contact-banner .items .item:first-child {
  flex: 3;
}
footer .contact-banner .items .item .icon {
  min-width: 18px;
  width: 18px;
  height: 24px;
  fill: #29bc3a;
  margin-right: 10px;
  padding-right: 10px;
  box-sizing: content-box;
}
footer .contact-banner .items .item p {
  font-size: 14px;
  color: #101922;
  font-weight: 400;
  margin: 0;
}
footer .contact-banner .socials {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .contact-banner .socials a {
  margin: 0 10px;
}
footer .contact-banner .socials a .icon {
  width: 33px;
  height: 33px;
}
footer .footer-inner {
  padding-top: 50px;
}
footer .footer-inner .footer-logo img {
  max-width: 80%;
}
footer .footer-inner .footer-menu li {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  position: relative;
}
footer .footer-inner .footer-menu li.title:after {
  content: "•";
  color: #29bc3a;
  position: absolute;
  top: 0;
  left: -10px;
}
footer .footer-inner .footer-menu li a {
  font-size: 12px;
  color: #dcdcdc;
}
footer .footer-inner .footer-menu li a:hover {
  color: #fff;
}

.footer-copyright {
  height: 55px;
  display: flex;
  align-items: center;
}
.footer-copyright p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 300;
  color: #6d6e71;
}
.footer-copyright p b {
  font-weight: 800;
}
.footer-copyright a {
  margin-left: auto;
}
.page-header {
  background-repeat: no-repeat;
  background-position: center;
  height: 459px;
  width: 100%;
}

main.page-content aside.sidebar {
  background-color: #29bc3a;
  max-width: 80%;
  margin-top: -90px;
  position: sticky;
  top: 210px;
}
main.page-content aside.sidebar h4 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 800;
  display: flex;
  align-items: center;
  padding: 12px 0 12px 30px;
  height: 90px;
  margin: 0;
}
main.page-content aside.sidebar ul {
  padding: 15px 0 0 0;
  margin: 0;
}
main.page-content aside.sidebar ul li {
  padding: 0 15px;
  transition: all ease 0.3s;
  position: relative;
}
main.page-content aside.sidebar ul li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #29bc3a;
  width: 55px;
  z-index: -1;
  opacity: 0;
  transition: all ease 0.3s;
}
main.page-content aside.sidebar ul li:before {
  content: "";
  -webkit-mask-image: url("../img/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  width: 24px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 0px;
  background: #fff;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transition: all ease 0.3s;
}
main.page-content aside.sidebar ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  padding: 20px 15px;
  display: block;
  border-bottom: 1px solid rgba(198, 230, 201, 0.48);
}
main.page-content aside.sidebar ul li:hover, main.page-content aside.sidebar ul li.active {
  background-color: #faa61a;
}
main.page-content aside.sidebar ul li:hover:after, main.page-content aside.sidebar ul li.active:after {
  opacity: 1;
  right: -55px;
  z-index: 1;
  background-color: #faa61a;
}
main.page-content aside.sidebar ul li:hover:before, main.page-content aside.sidebar ul li.active:before {
  opacity: 1;
  right: -38px;
  z-index: 10;
}
main.page-content aside.sidebar ul li:hover a, main.page-content aside.sidebar ul li.active a {
  border-bottom-color: #faa61a;
}
main.page-content .inner {
  padding: 50px 0;
}
main.page-content .inner h4 {
  font-weight: 300;
  font-size: 34px;
  color: #101922;
  margin-bottom: 30px;
}
main.page-content .inner p {
  font-size: 17px;
  color: #101922;
  font-weight: 400;
}

.product-item .image {
  border: 1px solid #b4b4b4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item .image img {
  max-width: 80%;
}
.product-item .image .hover {
  opacity: 0;
  position: absolute;
  inset: 0;
  background-color: rgba(56, 56, 56, 0.76);
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-item .image .hover:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #29bc3a;
  transform: rotate(45deg) scale(1.5);
  z-index: 0;
}
.product-item .image .hover a {
  width: 68px;
  height: 68px;
  border-radius: 100%;
  background-color: #29bc3a;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 11px;
  font-weight: 400;
  z-index: 9;
}
.product-item .image .hover a .icon {
  width: 24px;
  height: 13px;
  fill: #fff;
  margin-top: 4px;
}
.product-item .title {
  display: flex;
  align-items: center;
  color: #58595b;
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
}
.product-item .title .icon {
  min-width: 5px;
  width: 5px;
  max-height: 10px;
  fill: #58595b;
  margin-right: 5px;
}
.product-item:hover .title {
  color: #29bc3a;
}
.product-item:hover .title .icon {
  fill: #29bc3a;
}
.product-item:hover .image .hover {
  opacity: 1;
}

.product-title {
  height: 80px;
  display: inline-flex;
}
.product-title h4 {
  font-size: 27px;
  color: #ffffff;
  font-weight: 800;
  background-color: #29bc3a;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.product-title .icon-container {
  background-color: #faa61a;
  height: 100%;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-title .icon-container .icon {
  fill: #fff;
  max-width: 50%;
}

body.urun .page-content {
  margin-top: -40px;
}
body.haber .page-content {
  margin-top: -40px;
}
body.iletisim .page-content {
  margin-top: -40px;
}

.product-slider .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-slider .gallery-top {
  height: 460px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #b4b4b4;
}
.product-slider .gallery-top .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
}
.product-slider .gallery-thumbs {
  height: 130px;
  box-sizing: border-box;
  padding: 10px 0;
}
.product-slider .gallery-thumbs .swiper-slide {
  background-position: center;
  border: 1px solid #b4b4b4;
  width: 100px;
  height: 100%;
  opacity: 0.4;
  background-size: 80%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.product-slider .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.product-text .title {
  color: #101922;
  font-size: 29px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.product-text .title .icon {
  min-width: 10px;
  width: 10px;
  max-height: 22px;
  fill: #101922;
  margin-right: 10px;
}
.product-text .item-feature {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}
.product-text .item-feature .item {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.product-text .item-feature .item span {
  width: 50%;
}
.product-text .share {
  border-bottom: 1px solid #c8c8c8;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.product-text .share span {
  font-size: 15px;
  font-weight: 400;
  color: #faa61a;
}
.product-text .share ul {
  display: flex;
  align-items: center;
}
.product-text .share ul li {
  width: 22px;
  height: 22px;
  margin: 0 10px;
}
.product-text .share ul li a {
  display: flex;
}
.product-text .share ul li a svg {
  color: #666666;
}

.product-detail {
  padding: 50px 0;
}

.product-price-form {
  margin-top: 60px;
  user-select: none;
  overflow: hidden;
}
.product-price-form .header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  cursor: pointer;
}
.product-price-form .header h5 {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  background-color: #29bc3a;
  display: flex;
  align-items: center;
  padding: 13px 24px;
  width: 100%;
  height: 100%;
  margin: 0;
}
.product-price-form .header h5 b {
  font-weight: 800;
  margin-left: 5px;
}
.product-price-form .header .icon {
  background-color: #faa61a;
  height: 100%;
  width: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-price-form .header .icon svg {
  color: #fff;
  width: 17px;
  height: 12px;
  transform: rotate(0);
  transition: all ease 0.3s;
}
.product-price-form .content {
  padding: 30px 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.product-price-form .content form > div {
  margin-bottom: 1rem;
}
.product-price-form .content form input, .product-price-form .content form textarea {
  border: none;
  outline: none;
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
  border-bottom: 1px solid #6a6565;
  padding: 12px 10px;
  width: 100%;
  resize: none;
}
.product-price-form .content form input::-webkit-input-placeholder, .product-price-form .content form textarea::-webkit-input-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
.product-price-form .content form input:-moz-placeholder, .product-price-form .content form textarea:-moz-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
.product-price-form .content form input::-moz-placeholder, .product-price-form .content form textarea::-moz-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
.product-price-form .content form input:-ms-input-placeholder, .product-price-form .content form textarea:-ms-input-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
.product-price-form .content form button {
  background-color: #29bc3a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border: none;
  border-radius: 3px;
}
.product-price-form.open .header .icon svg {
  transform: rotate(-180deg);
}
.product-price-form.open .content {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
}

img {
  max-width: 100%;
}

body.haber section.inner {
  padding: 0;
}

body.iletisim .page-content {
  padding-bottom: 120px;
}
body.iletisim .contact-info {
  padding-top: 50px;
  margin-bottom: 100px;
}
body.iletisim .contact-info .firm-title {
  font-size: 27px;
  color: #101922;
  font-weight: 300;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  width: 100%;
}
body.iletisim .contact-info .firm-title b {
  font-weight: 800;
  display: block;
}
body.iletisim .contact-info .contact-items .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
body.iletisim .contact-info .contact-items .item .icon-container {
  width: 22px;
  height: 22px;
  background-color: #29bc3a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
body.iletisim .contact-info .contact-items .item .icon-container .icon {
  fill: #fff;
  max-height: 10px;
}
body.iletisim .contact-info .contact-items .item p {
  margin-bottom: 0;
}
body.iletisim .contact-info .map-container {
  margin-top: 100px;
}
body.iletisim .contact-info .map-container > a {
  background-color: #faa61a;
  display: inline-block;
  padding: 14px 12px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
body.iletisim .contact-info .map-container #map {
  width: 100%;
  height: 450px;
}
body.iletisim .contact-info .map-container #map .mapboxgl-ctrl-bottom-left {
  display: none !important;
}
body.iletisim .contact-info .map-container #map .mapboxgl-ctrl-bottom-right {
  display: none;
}
body.iletisim .contact-form {
  margin-top: 50px;
}
body.iletisim .contact-form form input, body.iletisim .contact-form form textarea {
  border: none;
  color: #6a6565;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 10px;
  width: 100%;
  resize: none;
  border-bottom: 1px solid #6a6565;
}
body.iletisim .contact-form form input::-webkit-input-placeholder, body.iletisim .contact-form form textarea::-webkit-input-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
body.iletisim .contact-form form input:-moz-placeholder, body.iletisim .contact-form form textarea:-moz-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
body.iletisim .contact-form form input::-moz-placeholder, body.iletisim .contact-form form textarea::-moz-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
body.iletisim .contact-form form input:-ms-input-placeholder, body.iletisim .contact-form form textarea:-ms-input-placeholder {
  font-size: 16px;
  color: #6a6565;
  font-weight: 300;
}
body.iletisim .contact-form form button {
  background-color: #29bc3a;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  padding: 20px 50px;
  border: none;
  margin-top: 40px;
}

.page-images .page-image {
  display: block;
  height: 250px;
}
.page-images .page-image img {
  height: 100%;
  object-fit: cover;
}
.insankaynaklariform {}
.insankaynaklariform input {
  border: none;
  color: #6a6565;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 10px;
  width: 100%;
  resize: none;
  border-bottom: 1px solid #6a6565;
}
.insankaynaklariform textarea {
  border: none;
  color: #6a6565;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 10px;
  width: 100%;
  resize: none;
  border-bottom: 1px solid #6a6565;
}
.insankaynaklariform select {
  border: none;
  color: #6a6565;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 10px;
  width: 100%;
  resize: none;
  border-bottom: 1px solid #6a6565;
}
.insankaynaklariform button {
  background-color: #29bc3a;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  padding: 20px 50px;
  border: none;
  margin-top: 40px;
}
.form-group {
  margin-bottom: 2rem;
}
/*# sourceMappingURL=custom.css.map */
